mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-11 02:33:51 +08:00
- Updated intelligent-tools-strategy.md to include `--skip-git-repo-check` for Codex write access and development commands. - Improved context gathering and analysis processes in mcp-tool-strategy.md with additional examples and guidelines for file searching. - Introduced new command concept-enhanced.md for enhanced intelligent analysis with parallel CLI execution and design blueprint generation. - Added context-gather.md command for intelligent collection of project context based on task descriptions, generating standardized JSON context packages.
4.9 KiB
4.9 KiB
name, description, usage, argument-hint, examples
| name | description | usage | argument-hint | examples | ||
|---|---|---|---|---|---|---|
| test-gen | Generate comprehensive test workflow based on completed implementation tasks | /workflow:test-gen [session-id] | WFS-session-id |
|
Workflow Test Generation Command
Overview
Analyzes completed implementation sessions and generates comprehensive test requirements, then calls workflow:plan to create test workflow.
Usage
/workflow:test-gen # Auto-detect active session
/workflow:test-gen WFS-session-id # Analyze specific session
Dynamic Session ID Resolution
The ${SESSION_ID} variable is dynamically resolved based on:
- Command argument: If session-id provided as argument, use it directly
- Auto-detection: If no argument, detect from active session markers
- Format: Always in format
WFS-session-name
# Example resolution logic:
# If argument provided: SESSION_ID = "WFS-user-auth"
# If no argument: SESSION_ID = $(find .workflow/ -name '.active-*' | head -1 | sed 's/.*active-//')
Implementation Flow
Step 1: Identify Target Session
# Auto-detect active session (if no session-id provided)
find .workflow/ -name '.active-*' | head -1 | sed 's/.*active-//'
# Use provided session-id or detected session-id
# SESSION_ID = provided argument OR detected active session
Step 2: Get Session Start Time
cat .workflow/WFS-${SESSION_ID}/workflow-session.json | jq -r .created_at
Step 3: Git Change Analysis (using session start time)
git log --since="$(cat .workflow/WFS-${SESSION_ID}/workflow-session.json | jq -r .created_at)" --name-only --pretty=format: | sort -u | grep -v '^$'
Step 4: Filter Code Files
git log --since="$(cat .workflow/WFS-${SESSION_ID}/workflow-session.json | jq -r .created_at)" --name-only --pretty=format: | sort -u | grep -E '\.(js|ts|jsx|tsx|py|java|go|rs)$'
Step 5: Load Session Context
cat .workflow/WFS-${SESSION_ID}/.summaries/IMPL-*-summary.md 2>/dev/null
Step 6: Extract Focus Paths
find .workflow/WFS-${SESSION_ID}/.task/ -name '*.json' -exec jq -r '.context.focus_paths[]?' {} \;
Step 7: Gemini Analysis and Planning Document Generation
cd project-root && ~/.claude/scripts/gemini-wrapper -p "
PURPOSE: Analyze implementation and generate comprehensive test planning document
TASK: Review changed files and implementation context to create detailed test planning document
CONTEXT: Changed files: [changed_files], Implementation summaries: [impl_summaries], Focus paths: [focus_paths]
EXPECTED: Complete test planning document including:
- Test strategy analysis
- Critical test scenarios identification
- Edge cases and error conditions
- Test priority matrix
- Resource requirements
- Implementation approach recommendations
- Specific test cases with acceptance criteria
RULES: Generate structured markdown document suitable for workflow planning. Focus on actionable test requirements based on actual implementation changes.
" > .workflow/WFS-${SESSION_ID}/.process/GEMINI_TEST_PLAN.md
Step 8: Generate Combined Test Requirements Document
mkdir -p .workflow/WFS-${SESSION_ID}/.process
cat > .workflow/WFS-${SESSION_ID}/.process/TEST_REQUIREMENTS.md << 'EOF'
# Test Requirements Summary for WFS-${SESSION_ID}
## Analysis Data Sources
- Git change analysis results
- Implementation summaries and context
- Gemini-generated test planning document
## Reference Documents
- Detailed test plan: GEMINI_TEST_PLAN.md
- Implementation context: IMPL-*-summary.md files
## Integration Note
This document combines analysis data with Gemini-generated planning document for comprehensive test workflow generation.
EOF
Step 9: Call Workflow Plan with Gemini Planning Document
/workflow:plan .workflow/WFS-${SESSION_ID}/.process/GEMINI_TEST_PLAN.md
Simple Bash Commands
Basic Operations
- Find active session:
find .workflow/ -name '.active-*' - Get git changes:
git log --since='date' --name-only - Filter code files:
grep -E '\.(js|ts|py)$' - Load summaries:
cat .workflow/WFS-*/summaries/*.md - Extract JSON data:
jq -r '.context.focus_paths[]' - Create directory:
mkdir -p .workflow/session/.process - Write file:
cat > file << 'EOF'
Gemini CLI Integration
- Planning command:
~/.claude/scripts/gemini-wrapper -p "prompt" > GEMINI_TEST_PLAN.md - Context loading: Include changed files and implementation context
- Document generation: Creates comprehensive test planning document
- Direct handoff: Pass Gemini planning document to workflow:plan
No Complex Logic
- No variables or functions
- No conditional statements
- No loops or complex pipes
- Direct bash commands only
- Gemini CLI for intelligent analysis
Related Commands
/workflow:plan- Called to generate test workflow/workflow:execute- Executes generated test tasks/workflow:status- Shows test workflow progress