mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-03-11 17:21:03 +08:00
- Introduced `fixer` role for implementing code fixes based on RCA reports, including phases for parsing RCA, planning fixes, implementing changes, and documenting results. - Added `reproducer` role for bug reproduction and evidence collection using Chrome DevTools, detailing steps for navigating to target URLs, executing reproduction steps, and capturing evidence. - Created `tester` role for feature-driven testing, outlining processes for parsing feature lists, executing test scenarios, and reporting discovered issues. - Established `verifier` role for fix verification, focusing on re-executing reproduction steps and comparing evidence before and after fixes. - Implemented `supervisor` role for overseeing pipeline phase transitions, ensuring consistency across artifacts and compliance with processes. - Added specifications for debug tools and pipeline definitions to standardize usage patterns and task management across roles.
88 lines
1.1 KiB
Plaintext
88 lines
1.1 KiB
Plaintext
# Git
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# History and temp files
|
|
.history/
|
|
*.log
|
|
*.tmp
|
|
|
|
# Development files
|
|
.vscode/
|
|
.idea/
|
|
*.md
|
|
!README.md
|
|
!CLAUDE.md
|
|
|
|
# Workflow runtime data
|
|
.workflow/
|
|
.ccw/
|
|
|
|
# Test files
|
|
test/
|
|
tests/
|
|
*.test.js
|
|
*.spec.js
|
|
|
|
# Build artifacts
|
|
node_modules/
|
|
*.tgz
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Documentation (keep only essential)
|
|
CHANGELOG.md
|
|
CONTRIBUTING.md
|
|
COMMAND_REFERENCE.md
|
|
COMMAND_SPEC.md
|
|
FAQ.md
|
|
GETTING_STARTED.md
|
|
GETTING_STARTED_CN.md
|
|
|
|
# PowerShell installer (not needed for npm)
|
|
Install-Claude.ps1
|
|
install-remote.ps1
|
|
*.mcp.json
|
|
# ccw internal files
|
|
ccw/node_modules/
|
|
ccw/*.md
|
|
|
|
# Python development files
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
.venv/
|
|
.pytest_cache/
|
|
*.egg-info/
|
|
.coverage
|
|
|
|
# Development indexes and caches
|
|
.ace-tool/
|
|
**/.ace-tool/
|
|
|
|
# Source maps (optional - remove if you want to ship them)
|
|
# *.map
|
|
|
|
# Workflow runtime data (reinforce)
|
|
**/.workflow/
|
|
*.db
|
|
*.db-shm
|
|
*.db-wal
|
|
|
|
# codex-lens development files
|
|
codex-lens/.venv/
|
|
codex-lens/.pytest_cache/
|
|
codex-lens/tests/
|
|
codex-lens/docs/
|
|
codex-lens/.coverage
|
|
codex-lens/*.db
|
|
codex-lens/_*.txt
|
|
codex-lens/.workflow/
|
|
|
|
# Claude skills (development only)
|
|
.claude/skills/team-designer/
|