mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-13 02:41:50 +08:00
84 lines
2.4 KiB
Markdown
84 lines
2.4 KiB
Markdown
---
|
|
name: analyze
|
|
description: Quick codebase analysis using CLI tools (codex/gemini/qwen)
|
|
usage: /cli:analyze [--tool <codex|gemini|qwen>] [--enhance] <analysis-target>
|
|
argument-hint: "[--tool codex|gemini|qwen] [--enhance] analysis target"
|
|
examples:
|
|
- /cli:analyze "authentication patterns"
|
|
- /cli:analyze --tool qwen "API security"
|
|
- /cli:analyze --tool codex --enhance "performance bottlenecks"
|
|
allowed-tools: SlashCommand(*), Bash(*), TodoWrite(*), Read(*), Glob(*)
|
|
---
|
|
|
|
# CLI Analyze Command (/cli:analyze)
|
|
|
|
## Purpose
|
|
|
|
Execute CLI tool analysis on codebase patterns, architecture, or code quality.
|
|
|
|
**Supported Tools**: codex, gemini (default), qwen
|
|
|
|
## Execution Flow
|
|
|
|
1. Parse tool selection (default: gemini)
|
|
2. If `--enhance`: Execute `/enhance-prompt` first
|
|
3. Detect analysis type and select template
|
|
4. Build and execute command
|
|
5. Return results
|
|
|
|
## Enhancement Integration
|
|
|
|
**When `--enhance` flag present**: Execute `/enhance-prompt "[analysis-target]"` first, then use enhanced output (INTENT/CONTEXT/ACTION) to build the analysis command.
|
|
|
|
|
|
## Command Template
|
|
|
|
**Gemini/Qwen**:
|
|
```bash
|
|
cd [dir] && ~/.claude/scripts/[gemini|qwen]-wrapper -p "
|
|
PURPOSE: [analysis goal]
|
|
TASK: [specific task]
|
|
CONTEXT: @{[file-patterns]} @{CLAUDE.md}
|
|
EXPECTED: [output format]
|
|
RULES: $(cat ~/.claude/workflows/cli-templates/prompts/[category]/[template].txt) | [constraints]
|
|
"
|
|
```
|
|
|
|
**Codex**:
|
|
```bash
|
|
codex -C [dir] --full-auto exec "
|
|
PURPOSE: [analysis goal]
|
|
TASK: [specific task]
|
|
CONTEXT: @{[file-patterns]} @{CLAUDE.md}
|
|
EXPECTED: [output format]
|
|
RULES: [constraints]
|
|
" --skip-git-repo-check -s danger-full-access
|
|
|
|
# With image attachment (e.g., UI screenshots, diagrams)
|
|
codex -C [dir] -i screenshot.png --full-auto exec "..." --skip-git-repo-check -s danger-full-access
|
|
```
|
|
|
|
## Examples
|
|
|
|
```bash
|
|
/cli:analyze "authentication patterns" # Gemini (default)
|
|
/cli:analyze --tool qwen "component architecture" # Qwen architecture
|
|
/cli:analyze --tool codex "performance bottlenecks" # Codex deep analysis
|
|
/cli:analyze --enhance "fix auth issues" # Enhanced prompt first
|
|
```
|
|
|
|
## File Pattern Logic
|
|
|
|
Auto-detect file patterns from keywords:
|
|
- "auth" → `@{**/*auth*}`
|
|
- "component" → `@{src/components/**/*}`
|
|
- "API" → `@{**/api/**/*}`
|
|
- "test" → `@{**/*.test.*}`
|
|
- Generic → `@{src/**/*}`
|
|
|
|
## Session Integration
|
|
|
|
- **Active Session**: Save results to `.workflow/WFS-[id]/.chat/analysis-[timestamp].md`
|
|
- **No Session**: Return results directly to user
|
|
|