devflow-kit 0.9.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +167 -29
- package/LICENSE +1 -1
- package/README.md +179 -310
- package/dist/cli.js +3 -1
- package/dist/commands/init.d.ts +21 -0
- package/dist/commands/init.js +311 -576
- package/dist/commands/list.d.ts +3 -0
- package/dist/commands/list.js +20 -0
- package/dist/commands/uninstall.d.ts +10 -0
- package/dist/commands/uninstall.js +351 -78
- package/dist/plugins.d.ts +46 -0
- package/dist/plugins.js +162 -0
- package/dist/utils/cli.d.ts +5 -0
- package/dist/utils/cli.js +14 -0
- package/dist/utils/installer.d.ts +41 -0
- package/dist/utils/installer.js +177 -0
- package/dist/utils/paths.d.ts +10 -0
- package/dist/utils/paths.js +23 -3
- package/dist/utils/post-install.d.ts +68 -0
- package/dist/utils/post-install.js +427 -0
- package/dist/utils/safe-delete-install.d.ts +22 -0
- package/dist/utils/safe-delete-install.js +156 -0
- package/dist/utils/safe-delete.d.ts +12 -0
- package/dist/utils/safe-delete.js +83 -0
- package/package.json +18 -8
- package/plugins/devflow-audit-claude/.claude-plugin/plugin.json +7 -0
- package/plugins/devflow-audit-claude/README.md +46 -0
- package/plugins/devflow-audit-claude/agents/claude-md-auditor.md +134 -0
- package/plugins/devflow-audit-claude/commands/audit-claude.md +85 -0
- package/plugins/devflow-code-review/.claude-plugin/plugin.json +31 -0
- package/plugins/devflow-code-review/README.md +73 -0
- package/plugins/devflow-code-review/agents/git.md +272 -0
- package/plugins/devflow-code-review/agents/reviewer.md +119 -0
- package/plugins/devflow-code-review/agents/synthesizer.md +204 -0
- package/plugins/devflow-code-review/commands/code-review-teams.md +262 -0
- package/plugins/devflow-code-review/commands/code-review.md +141 -0
- package/plugins/devflow-code-review/skills/accessibility/SKILL.md +229 -0
- package/plugins/devflow-code-review/skills/accessibility/references/detection.md +171 -0
- package/plugins/devflow-code-review/skills/accessibility/references/patterns.md +670 -0
- package/plugins/devflow-code-review/skills/accessibility/references/violations.md +419 -0
- package/plugins/devflow-code-review/skills/agent-teams/SKILL.md +124 -0
- package/plugins/devflow-code-review/skills/agent-teams/references/cleanup.md +104 -0
- package/plugins/devflow-code-review/skills/agent-teams/references/communication.md +122 -0
- package/plugins/devflow-code-review/skills/agent-teams/references/team-patterns.md +217 -0
- package/plugins/devflow-code-review/skills/architecture-patterns/SKILL.md +153 -0
- package/plugins/devflow-code-review/skills/architecture-patterns/references/detection.md +337 -0
- package/plugins/devflow-code-review/skills/architecture-patterns/references/patterns.md +873 -0
- package/plugins/devflow-code-review/skills/architecture-patterns/references/violations.md +575 -0
- package/plugins/devflow-code-review/skills/complexity-patterns/SKILL.md +143 -0
- package/plugins/devflow-code-review/skills/complexity-patterns/references/detection.md +264 -0
- package/plugins/devflow-code-review/skills/complexity-patterns/references/patterns.md +487 -0
- package/plugins/devflow-code-review/skills/complexity-patterns/references/violations.md +361 -0
- package/plugins/devflow-code-review/skills/consistency-patterns/SKILL.md +140 -0
- package/plugins/devflow-code-review/skills/consistency-patterns/references/detection.md +207 -0
- package/plugins/devflow-code-review/skills/consistency-patterns/references/patterns.md +202 -0
- package/plugins/devflow-code-review/skills/consistency-patterns/references/violations.md +213 -0
- package/plugins/devflow-code-review/skills/database-patterns/SKILL.md +134 -0
- package/plugins/devflow-code-review/skills/database-patterns/references/detection.md +208 -0
- package/plugins/devflow-code-review/skills/database-patterns/references/patterns.md +394 -0
- package/plugins/devflow-code-review/skills/database-patterns/references/violations.md +332 -0
- package/plugins/devflow-code-review/skills/dependencies-patterns/SKILL.md +141 -0
- package/plugins/devflow-code-review/skills/dependencies-patterns/references/detection.md +181 -0
- package/plugins/devflow-code-review/skills/dependencies-patterns/references/patterns.md +225 -0
- package/plugins/devflow-code-review/skills/dependencies-patterns/references/violations.md +247 -0
- package/plugins/devflow-code-review/skills/documentation-patterns/SKILL.md +125 -0
- package/plugins/devflow-code-review/skills/documentation-patterns/references/detection.md +190 -0
- package/plugins/devflow-code-review/skills/documentation-patterns/references/patterns.md +189 -0
- package/plugins/devflow-code-review/skills/documentation-patterns/references/violations.md +163 -0
- package/plugins/devflow-code-review/skills/frontend-design/SKILL.md +254 -0
- package/plugins/devflow-code-review/skills/frontend-design/references/detection.md +184 -0
- package/plugins/devflow-code-review/skills/frontend-design/references/patterns.md +511 -0
- package/plugins/devflow-code-review/skills/frontend-design/references/violations.md +453 -0
- package/plugins/devflow-code-review/skills/performance-patterns/SKILL.md +154 -0
- package/plugins/devflow-code-review/skills/performance-patterns/references/detection.md +351 -0
- package/plugins/devflow-code-review/skills/performance-patterns/references/patterns.md +503 -0
- package/plugins/devflow-code-review/skills/performance-patterns/references/violations.md +354 -0
- package/plugins/devflow-code-review/skills/react/SKILL.md +276 -0
- package/plugins/devflow-code-review/skills/react/references/patterns.md +1331 -0
- package/plugins/devflow-code-review/skills/react/references/violations.md +565 -0
- package/plugins/devflow-code-review/skills/regression-patterns/SKILL.md +146 -0
- package/plugins/devflow-code-review/skills/regression-patterns/references/detection.md +237 -0
- package/plugins/devflow-code-review/skills/regression-patterns/references/patterns.md +226 -0
- package/plugins/devflow-code-review/skills/regression-patterns/references/violations.md +225 -0
- package/plugins/devflow-code-review/skills/review-methodology/SKILL.md +119 -0
- package/plugins/devflow-code-review/skills/review-methodology/references/patterns.md +186 -0
- package/plugins/devflow-code-review/skills/review-methodology/references/report-template.md +142 -0
- package/plugins/devflow-code-review/skills/review-methodology/references/violations.md +125 -0
- package/plugins/devflow-code-review/skills/security-patterns/SKILL.md +156 -0
- package/plugins/devflow-code-review/skills/security-patterns/references/detection.md +287 -0
- package/plugins/devflow-code-review/skills/security-patterns/references/patterns.md +507 -0
- package/plugins/devflow-code-review/skills/security-patterns/references/violations.md +237 -0
- package/plugins/devflow-code-review/skills/test-patterns/SKILL.md +183 -0
- package/plugins/devflow-code-review/skills/test-patterns/references/detection.md +149 -0
- package/plugins/devflow-code-review/skills/test-patterns/references/patterns.md +220 -0
- package/plugins/devflow-code-review/skills/test-patterns/references/report-template.md +108 -0
- package/plugins/devflow-code-review/skills/test-patterns/references/violations.md +221 -0
- package/plugins/devflow-core-skills/.claude-plugin/plugin.json +27 -0
- package/plugins/devflow-core-skills/README.md +50 -0
- package/plugins/devflow-core-skills/skills/accessibility/SKILL.md +229 -0
- package/plugins/devflow-core-skills/skills/accessibility/references/detection.md +171 -0
- package/plugins/devflow-core-skills/skills/accessibility/references/patterns.md +670 -0
- package/plugins/devflow-core-skills/skills/accessibility/references/violations.md +419 -0
- package/plugins/devflow-core-skills/skills/core-patterns/SKILL.md +162 -0
- package/plugins/devflow-core-skills/skills/core-patterns/references/checklist.md +276 -0
- package/plugins/devflow-core-skills/skills/core-patterns/references/code-smell-violations.md +144 -0
- package/plugins/devflow-core-skills/skills/core-patterns/references/detection.md +303 -0
- package/plugins/devflow-core-skills/skills/core-patterns/references/patterns.md +576 -0
- package/plugins/devflow-core-skills/skills/core-patterns/references/violations.md +369 -0
- package/plugins/devflow-core-skills/skills/docs-framework/SKILL.md +134 -0
- package/plugins/devflow-core-skills/skills/docs-framework/references/patterns.md +346 -0
- package/plugins/devflow-core-skills/skills/docs-framework/references/violations.md +221 -0
- package/plugins/devflow-core-skills/skills/frontend-design/SKILL.md +254 -0
- package/plugins/devflow-core-skills/skills/frontend-design/references/detection.md +184 -0
- package/plugins/devflow-core-skills/skills/frontend-design/references/patterns.md +511 -0
- package/plugins/devflow-core-skills/skills/frontend-design/references/violations.md +453 -0
- package/plugins/devflow-core-skills/skills/git-safety/SKILL.md +122 -0
- package/plugins/devflow-core-skills/skills/git-safety/references/detection.md +290 -0
- package/plugins/devflow-core-skills/skills/git-safety/references/patterns.md +289 -0
- package/plugins/devflow-core-skills/skills/git-safety/references/violations.md +18 -0
- package/plugins/devflow-core-skills/skills/git-workflow/SKILL.md +158 -0
- package/plugins/devflow-core-skills/skills/git-workflow/references/commit-patterns.md +115 -0
- package/plugins/devflow-core-skills/skills/git-workflow/references/commit-violations.md +77 -0
- package/plugins/devflow-core-skills/skills/git-workflow/references/pr-patterns.md +127 -0
- package/plugins/devflow-core-skills/skills/git-workflow/references/pr-violations.md +96 -0
- package/plugins/devflow-core-skills/skills/github-patterns/SKILL.md +153 -0
- package/plugins/devflow-core-skills/skills/github-patterns/references/patterns.md +572 -0
- package/plugins/devflow-core-skills/skills/github-patterns/references/violations.md +298 -0
- package/plugins/devflow-core-skills/skills/input-validation/SKILL.md +148 -0
- package/plugins/devflow-core-skills/skills/input-validation/references/detection.md +283 -0
- package/plugins/devflow-core-skills/skills/input-validation/references/patterns.md +361 -0
- package/plugins/devflow-core-skills/skills/input-validation/references/violations.md +224 -0
- package/plugins/devflow-core-skills/skills/react/SKILL.md +276 -0
- package/plugins/devflow-core-skills/skills/react/references/patterns.md +1331 -0
- package/plugins/devflow-core-skills/skills/react/references/violations.md +565 -0
- package/plugins/devflow-core-skills/skills/test-patterns/SKILL.md +183 -0
- package/plugins/devflow-core-skills/skills/test-patterns/references/detection.md +149 -0
- package/plugins/devflow-core-skills/skills/test-patterns/references/patterns.md +220 -0
- package/plugins/devflow-core-skills/skills/test-patterns/references/report-template.md +108 -0
- package/plugins/devflow-core-skills/skills/test-patterns/references/violations.md +221 -0
- package/plugins/devflow-core-skills/skills/typescript/SKILL.md +176 -0
- package/plugins/devflow-core-skills/skills/typescript/references/patterns.md +1105 -0
- package/plugins/devflow-core-skills/skills/typescript/references/violations.md +433 -0
- package/plugins/devflow-debug/.claude-plugin/plugin.json +18 -0
- package/plugins/devflow-debug/README.md +65 -0
- package/plugins/devflow-debug/agents/git.md +272 -0
- package/plugins/devflow-debug/commands/debug-teams.md +231 -0
- package/plugins/devflow-debug/commands/debug.md +160 -0
- package/plugins/devflow-debug/skills/agent-teams/SKILL.md +124 -0
- package/plugins/devflow-debug/skills/agent-teams/references/cleanup.md +104 -0
- package/plugins/devflow-debug/skills/agent-teams/references/communication.md +122 -0
- package/plugins/devflow-debug/skills/agent-teams/references/team-patterns.md +217 -0
- package/plugins/devflow-debug/skills/git-safety/SKILL.md +122 -0
- package/plugins/devflow-debug/skills/git-safety/references/detection.md +290 -0
- package/plugins/devflow-debug/skills/git-safety/references/patterns.md +289 -0
- package/plugins/devflow-debug/skills/git-safety/references/violations.md +18 -0
- package/plugins/devflow-implement/.claude-plugin/plugin.json +21 -0
- package/plugins/devflow-implement/README.md +71 -0
- package/plugins/devflow-implement/agents/coder.md +122 -0
- package/plugins/devflow-implement/agents/git.md +272 -0
- package/plugins/devflow-implement/agents/scrutinizer.md +80 -0
- package/plugins/devflow-implement/agents/shepherd.md +94 -0
- package/plugins/devflow-implement/agents/simplifier.md +62 -0
- package/plugins/devflow-implement/agents/skimmer.md +88 -0
- package/plugins/devflow-implement/agents/synthesizer.md +204 -0
- package/plugins/devflow-implement/agents/validator.md +86 -0
- package/plugins/devflow-implement/commands/implement-teams.md +608 -0
- package/plugins/devflow-implement/commands/implement.md +426 -0
- package/plugins/devflow-implement/skills/accessibility/SKILL.md +229 -0
- package/plugins/devflow-implement/skills/accessibility/references/detection.md +171 -0
- package/plugins/devflow-implement/skills/accessibility/references/patterns.md +670 -0
- package/plugins/devflow-implement/skills/accessibility/references/violations.md +419 -0
- package/plugins/devflow-implement/skills/agent-teams/SKILL.md +124 -0
- package/plugins/devflow-implement/skills/agent-teams/references/cleanup.md +104 -0
- package/plugins/devflow-implement/skills/agent-teams/references/communication.md +122 -0
- package/plugins/devflow-implement/skills/agent-teams/references/team-patterns.md +217 -0
- package/plugins/devflow-implement/skills/frontend-design/SKILL.md +254 -0
- package/plugins/devflow-implement/skills/frontend-design/references/detection.md +184 -0
- package/plugins/devflow-implement/skills/frontend-design/references/patterns.md +511 -0
- package/plugins/devflow-implement/skills/frontend-design/references/violations.md +453 -0
- package/plugins/devflow-implement/skills/implementation-patterns/SKILL.md +162 -0
- package/plugins/devflow-implement/skills/implementation-patterns/references/patterns.md +1063 -0
- package/plugins/devflow-implement/skills/implementation-patterns/references/violations.md +483 -0
- package/plugins/devflow-implement/skills/self-review/SKILL.md +149 -0
- package/plugins/devflow-implement/skills/self-review/references/patterns.md +405 -0
- package/plugins/devflow-implement/skills/self-review/references/report-template.md +253 -0
- package/plugins/devflow-implement/skills/self-review/references/violations.md +308 -0
- package/plugins/devflow-resolve/.claude-plugin/plugin.json +19 -0
- package/plugins/devflow-resolve/README.md +65 -0
- package/plugins/devflow-resolve/agents/git.md +272 -0
- package/plugins/devflow-resolve/agents/resolver.md +131 -0
- package/plugins/devflow-resolve/agents/simplifier.md +62 -0
- package/plugins/devflow-resolve/commands/resolve-teams.md +298 -0
- package/plugins/devflow-resolve/commands/resolve.md +237 -0
- package/plugins/devflow-resolve/skills/agent-teams/SKILL.md +124 -0
- package/plugins/devflow-resolve/skills/agent-teams/references/cleanup.md +104 -0
- package/plugins/devflow-resolve/skills/agent-teams/references/communication.md +122 -0
- package/plugins/devflow-resolve/skills/agent-teams/references/team-patterns.md +217 -0
- package/plugins/devflow-resolve/skills/implementation-patterns/SKILL.md +162 -0
- package/plugins/devflow-resolve/skills/implementation-patterns/references/patterns.md +1063 -0
- package/plugins/devflow-resolve/skills/implementation-patterns/references/violations.md +483 -0
- package/plugins/devflow-resolve/skills/security-patterns/SKILL.md +156 -0
- package/plugins/devflow-resolve/skills/security-patterns/references/detection.md +287 -0
- package/plugins/devflow-resolve/skills/security-patterns/references/patterns.md +507 -0
- package/plugins/devflow-resolve/skills/security-patterns/references/violations.md +237 -0
- package/plugins/devflow-self-review/.claude-plugin/plugin.json +7 -0
- package/plugins/devflow-self-review/README.md +38 -0
- package/plugins/devflow-self-review/agents/scrutinizer.md +80 -0
- package/plugins/devflow-self-review/agents/simplifier.md +62 -0
- package/plugins/devflow-self-review/agents/validator.md +86 -0
- package/plugins/devflow-self-review/commands/self-review.md +126 -0
- package/plugins/devflow-self-review/skills/core-patterns/SKILL.md +162 -0
- package/plugins/devflow-self-review/skills/core-patterns/references/checklist.md +276 -0
- package/plugins/devflow-self-review/skills/core-patterns/references/code-smell-violations.md +144 -0
- package/plugins/devflow-self-review/skills/core-patterns/references/detection.md +303 -0
- package/plugins/devflow-self-review/skills/core-patterns/references/patterns.md +576 -0
- package/plugins/devflow-self-review/skills/core-patterns/references/violations.md +369 -0
- package/plugins/devflow-self-review/skills/self-review/SKILL.md +149 -0
- package/plugins/devflow-self-review/skills/self-review/references/patterns.md +405 -0
- package/plugins/devflow-self-review/skills/self-review/references/report-template.md +253 -0
- package/plugins/devflow-self-review/skills/self-review/references/violations.md +308 -0
- package/plugins/devflow-specify/.claude-plugin/plugin.json +15 -0
- package/plugins/devflow-specify/README.md +46 -0
- package/plugins/devflow-specify/agents/skimmer.md +88 -0
- package/plugins/devflow-specify/agents/synthesizer.md +204 -0
- package/plugins/devflow-specify/commands/specify-teams.md +314 -0
- package/plugins/devflow-specify/commands/specify.md +179 -0
- package/plugins/devflow-specify/skills/agent-teams/SKILL.md +124 -0
- package/plugins/devflow-specify/skills/agent-teams/references/cleanup.md +104 -0
- package/plugins/devflow-specify/skills/agent-teams/references/communication.md +122 -0
- package/plugins/devflow-specify/skills/agent-teams/references/team-patterns.md +217 -0
- package/scripts/hooks/background-memory-update.sh +167 -0
- package/scripts/hooks/pre-compact-memory.sh +81 -0
- package/scripts/hooks/session-start-memory.sh +84 -0
- package/scripts/hooks/stop-update-memory.sh +81 -0
- package/shared/agents/coder.md +122 -0
- package/shared/agents/git.md +272 -0
- package/shared/agents/resolver.md +131 -0
- package/shared/agents/reviewer.md +119 -0
- package/shared/agents/scrutinizer.md +80 -0
- package/shared/agents/shepherd.md +94 -0
- package/shared/agents/simplifier.md +62 -0
- package/shared/agents/skimmer.md +88 -0
- package/shared/agents/synthesizer.md +204 -0
- package/shared/agents/validator.md +86 -0
- package/shared/skills/accessibility/SKILL.md +229 -0
- package/shared/skills/accessibility/references/detection.md +171 -0
- package/shared/skills/accessibility/references/patterns.md +670 -0
- package/shared/skills/accessibility/references/violations.md +419 -0
- package/shared/skills/agent-teams/SKILL.md +124 -0
- package/shared/skills/agent-teams/references/cleanup.md +104 -0
- package/shared/skills/agent-teams/references/communication.md +122 -0
- package/shared/skills/agent-teams/references/team-patterns.md +217 -0
- package/shared/skills/architecture-patterns/SKILL.md +153 -0
- package/shared/skills/architecture-patterns/references/detection.md +337 -0
- package/shared/skills/architecture-patterns/references/patterns.md +873 -0
- package/shared/skills/architecture-patterns/references/violations.md +575 -0
- package/shared/skills/complexity-patterns/SKILL.md +143 -0
- package/shared/skills/complexity-patterns/references/detection.md +264 -0
- package/shared/skills/complexity-patterns/references/patterns.md +487 -0
- package/shared/skills/complexity-patterns/references/violations.md +361 -0
- package/shared/skills/consistency-patterns/SKILL.md +140 -0
- package/shared/skills/consistency-patterns/references/detection.md +207 -0
- package/shared/skills/consistency-patterns/references/patterns.md +202 -0
- package/shared/skills/consistency-patterns/references/violations.md +213 -0
- package/shared/skills/core-patterns/SKILL.md +162 -0
- package/shared/skills/core-patterns/references/checklist.md +276 -0
- package/shared/skills/core-patterns/references/code-smell-violations.md +144 -0
- package/shared/skills/core-patterns/references/detection.md +303 -0
- package/shared/skills/core-patterns/references/patterns.md +576 -0
- package/shared/skills/core-patterns/references/violations.md +369 -0
- package/shared/skills/database-patterns/SKILL.md +134 -0
- package/shared/skills/database-patterns/references/detection.md +208 -0
- package/shared/skills/database-patterns/references/patterns.md +394 -0
- package/shared/skills/database-patterns/references/violations.md +332 -0
- package/shared/skills/dependencies-patterns/SKILL.md +141 -0
- package/shared/skills/dependencies-patterns/references/detection.md +181 -0
- package/shared/skills/dependencies-patterns/references/patterns.md +225 -0
- package/shared/skills/dependencies-patterns/references/violations.md +247 -0
- package/shared/skills/docs-framework/SKILL.md +134 -0
- package/shared/skills/docs-framework/references/patterns.md +346 -0
- package/shared/skills/docs-framework/references/violations.md +221 -0
- package/shared/skills/documentation-patterns/SKILL.md +125 -0
- package/shared/skills/documentation-patterns/references/detection.md +190 -0
- package/shared/skills/documentation-patterns/references/patterns.md +189 -0
- package/shared/skills/documentation-patterns/references/violations.md +163 -0
- package/shared/skills/frontend-design/SKILL.md +254 -0
- package/shared/skills/frontend-design/references/detection.md +184 -0
- package/shared/skills/frontend-design/references/patterns.md +511 -0
- package/shared/skills/frontend-design/references/violations.md +453 -0
- package/shared/skills/git-safety/SKILL.md +122 -0
- package/shared/skills/git-safety/references/detection.md +290 -0
- package/shared/skills/git-safety/references/patterns.md +289 -0
- package/shared/skills/git-safety/references/violations.md +18 -0
- package/shared/skills/git-workflow/SKILL.md +158 -0
- package/shared/skills/git-workflow/references/commit-patterns.md +115 -0
- package/shared/skills/git-workflow/references/commit-violations.md +77 -0
- package/shared/skills/git-workflow/references/pr-patterns.md +127 -0
- package/shared/skills/git-workflow/references/pr-violations.md +96 -0
- package/shared/skills/github-patterns/SKILL.md +153 -0
- package/shared/skills/github-patterns/references/patterns.md +572 -0
- package/shared/skills/github-patterns/references/violations.md +298 -0
- package/shared/skills/implementation-patterns/SKILL.md +162 -0
- package/shared/skills/implementation-patterns/references/patterns.md +1063 -0
- package/shared/skills/implementation-patterns/references/violations.md +483 -0
- package/shared/skills/input-validation/SKILL.md +148 -0
- package/shared/skills/input-validation/references/detection.md +283 -0
- package/shared/skills/input-validation/references/patterns.md +361 -0
- package/shared/skills/input-validation/references/violations.md +224 -0
- package/shared/skills/performance-patterns/SKILL.md +154 -0
- package/shared/skills/performance-patterns/references/detection.md +351 -0
- package/shared/skills/performance-patterns/references/patterns.md +503 -0
- package/shared/skills/performance-patterns/references/violations.md +354 -0
- package/shared/skills/react/SKILL.md +276 -0
- package/shared/skills/react/references/patterns.md +1331 -0
- package/shared/skills/react/references/violations.md +565 -0
- package/shared/skills/regression-patterns/SKILL.md +146 -0
- package/shared/skills/regression-patterns/references/detection.md +237 -0
- package/shared/skills/regression-patterns/references/patterns.md +226 -0
- package/shared/skills/regression-patterns/references/violations.md +225 -0
- package/shared/skills/review-methodology/SKILL.md +119 -0
- package/shared/skills/review-methodology/references/patterns.md +186 -0
- package/shared/skills/review-methodology/references/report-template.md +142 -0
- package/shared/skills/review-methodology/references/violations.md +125 -0
- package/shared/skills/security-patterns/SKILL.md +156 -0
- package/shared/skills/security-patterns/references/detection.md +287 -0
- package/shared/skills/security-patterns/references/patterns.md +507 -0
- package/shared/skills/security-patterns/references/violations.md +237 -0
- package/shared/skills/self-review/SKILL.md +149 -0
- package/shared/skills/self-review/references/patterns.md +405 -0
- package/shared/skills/self-review/references/report-template.md +253 -0
- package/shared/skills/self-review/references/violations.md +308 -0
- package/shared/skills/test-patterns/SKILL.md +183 -0
- package/shared/skills/test-patterns/references/detection.md +149 -0
- package/shared/skills/test-patterns/references/patterns.md +220 -0
- package/shared/skills/test-patterns/references/report-template.md +108 -0
- package/shared/skills/test-patterns/references/violations.md +221 -0
- package/shared/skills/typescript/SKILL.md +176 -0
- package/shared/skills/typescript/references/patterns.md +1105 -0
- package/shared/skills/typescript/references/violations.md +433 -0
- package/src/templates/claudeignore.template +188 -0
- package/src/templates/managed-settings.json +146 -0
- package/src/templates/settings.json +59 -0
- package/dist/cli.d.ts.map +0 -1
- package/dist/cli.js.map +0 -1
- package/dist/commands/init.d.ts.map +0 -1
- package/dist/commands/init.js.map +0 -1
- package/dist/commands/uninstall.d.ts.map +0 -1
- package/dist/commands/uninstall.js.map +0 -1
- package/dist/utils/git.d.ts.map +0 -1
- package/dist/utils/git.js.map +0 -1
- package/dist/utils/paths.d.ts.map +0 -1
- package/dist/utils/paths.js.map +0 -1
- package/src/claude/CLAUDE.md +0 -400
- package/src/claude/agents/devflow/audit-architecture.md +0 -132
- package/src/claude/agents/devflow/audit-complexity.md +0 -132
- package/src/claude/agents/devflow/audit-database.md +0 -132
- package/src/claude/agents/devflow/audit-dependencies.md +0 -132
- package/src/claude/agents/devflow/audit-documentation.md +0 -132
- package/src/claude/agents/devflow/audit-performance.md +0 -256
- package/src/claude/agents/devflow/audit-security.md +0 -259
- package/src/claude/agents/devflow/audit-tests.md +0 -132
- package/src/claude/agents/devflow/audit-typescript.md +0 -132
- package/src/claude/agents/devflow/brainstorm.md +0 -279
- package/src/claude/agents/devflow/catch-up.md +0 -345
- package/src/claude/agents/devflow/code-review.md +0 -307
- package/src/claude/agents/devflow/commit.md +0 -380
- package/src/claude/agents/devflow/debug.md +0 -476
- package/src/claude/agents/devflow/design.md +0 -491
- package/src/claude/agents/devflow/get-issue.md +0 -286
- package/src/claude/agents/devflow/pr-comments.md +0 -285
- package/src/claude/agents/devflow/project-state.md +0 -419
- package/src/claude/agents/devflow/pull-request.md +0 -493
- package/src/claude/agents/devflow/release.md +0 -1137
- package/src/claude/agents/devflow/tech-debt.md +0 -338
- package/src/claude/commands/devflow/brainstorm.md +0 -68
- package/src/claude/commands/devflow/breakdown.md +0 -125
- package/src/claude/commands/devflow/catch-up.md +0 -29
- package/src/claude/commands/devflow/code-review.md +0 -237
- package/src/claude/commands/devflow/commit.md +0 -17
- package/src/claude/commands/devflow/debug.md +0 -56
- package/src/claude/commands/devflow/design.md +0 -82
- package/src/claude/commands/devflow/devlog.md +0 -408
- package/src/claude/commands/devflow/get-issue.md +0 -16
- package/src/claude/commands/devflow/implement.md +0 -100
- package/src/claude/commands/devflow/plan.md +0 -223
- package/src/claude/commands/devflow/pull-request.md +0 -20
- package/src/claude/commands/devflow/release.md +0 -251
- package/src/claude/commands/devflow/resolve-comments.md +0 -583
- package/src/claude/scripts/statusline.sh +0 -47
- package/src/claude/settings.json +0 -6
- package/src/claude/skills/devflow/code-smell/SKILL.md +0 -428
- package/src/claude/skills/devflow/debug/SKILL.md +0 -119
- package/src/claude/skills/devflow/error-handling/SKILL.md +0 -597
- package/src/claude/skills/devflow/input-validation/SKILL.md +0 -514
- package/src/claude/skills/devflow/pattern-check/SKILL.md +0 -238
- package/src/claude/skills/devflow/research/SKILL.md +0 -138
- package/src/claude/skills/devflow/test-design/SKILL.md +0 -384
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,143 @@ All notable changes to DevFlow will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.0] - 2026-02-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Agent Teams integration** - Peer-to-peer agent collaboration across workflows
|
|
12
|
+
- `/code-review` uses adversarial review team with debate round and consensus findings
|
|
13
|
+
- `/implement` uses exploration and planning teams with debate, Shepherd↔Coder direct dialogue
|
|
14
|
+
- New `/debug` command for competing hypothesis investigation with agent teams
|
|
15
|
+
- `agent-teams` foundation skill with team spawning, challenge protocol, consensus formation
|
|
16
|
+
- Graceful fallback to parallel subagents when Agent Teams is unavailable
|
|
17
|
+
- **`devflow-debug` plugin** - New plugin for bug investigation
|
|
18
|
+
- `/debug` command spawns 3-5 hypothesis investigators
|
|
19
|
+
- Adversarial debate where agents actively disprove each other's theories
|
|
20
|
+
- Root cause analysis report with confidence levels
|
|
21
|
+
- **`accessibility` skill** - WCAG 2.1 AA patterns for keyboard navigation, ARIA, contrast
|
|
22
|
+
- Iron Law: EVERY INTERACTION MUST BE POSSIBLE WITHOUT A MOUSE
|
|
23
|
+
- Auto-triggers when creating UI components, forms, or interactive elements
|
|
24
|
+
- **`frontend-design` skill** - Intentional visual design patterns (Anthropic's 4 Dimensions)
|
|
25
|
+
- Iron Law: AESTHETICS MUST HAVE INTENT
|
|
26
|
+
- AI slop detection (purple-pink gradients, Inter without rationale, everything centered)
|
|
27
|
+
- Auto-triggers when working with CSS, styling, or visual design
|
|
28
|
+
- **Enhanced `react` skill** - Added 5 new categories from Vercel best practices
|
|
29
|
+
- Async Parallelization (Promise.all for independent fetches)
|
|
30
|
+
- Bundle Size (no barrel imports, lazy loading)
|
|
31
|
+
- Re-render Optimization (primitive deps, stable callbacks)
|
|
32
|
+
- Image Optimization (dimensions, lazy loading, aspect-ratio)
|
|
33
|
+
- Data Structure Performance (Set/Map for O(1) lookups)
|
|
34
|
+
- **Conditional frontend reviews** in `/code-review` command
|
|
35
|
+
- `react` review (if .tsx/.jsx files changed)
|
|
36
|
+
- `accessibility` review (if .tsx/.jsx files changed)
|
|
37
|
+
- `frontend-design` review (if .tsx/.jsx/.css/.scss files changed)
|
|
38
|
+
- **Glob pattern activation schema** for skills
|
|
39
|
+
- Skills can declare `activation.file-patterns` and `activation.exclude` in frontmatter
|
|
40
|
+
- Future-proofs for conditional skill loading
|
|
41
|
+
- **`github-patterns` skill** - Foundation skill for GitHub API interactions
|
|
42
|
+
- Rate limiting patterns (1-2s delays, 60s wait if <10 remaining)
|
|
43
|
+
- Comment deduplication algorithms
|
|
44
|
+
- Line-in-diff validation for PR comments
|
|
45
|
+
- Issue data parsing (acceptance criteria, dependencies)
|
|
46
|
+
- Branch name generation from issues
|
|
47
|
+
- Tech debt management patterns (archive on overflow)
|
|
48
|
+
- Iron Law: RESPECT RATE LIMITS OR FAIL GRACEFULLY
|
|
49
|
+
- **Unified `Git` agent** - Single parameterized agent for all git/GitHub operations
|
|
50
|
+
- `fetch-issue` operation: Fetches GitHub issue details with acceptance criteria and suggested branch name
|
|
51
|
+
- `comment-pr` operation: Creates PR inline comments with deduplication and rate limiting
|
|
52
|
+
- `manage-debt` operation: Updates tech debt backlog issue with semantic deduplication
|
|
53
|
+
- `create-release` operation: Creates GitHub release with version tag
|
|
54
|
+
- Replaces: GetIssue, Comment, TechDebt agents
|
|
55
|
+
- **`git-workflow` skill** - Unified commit and PR patterns (atomic commits, message format, PR quality)
|
|
56
|
+
- Iron Law: ATOMIC COMMITS OR NO COMMITS
|
|
57
|
+
- Auto-triggers when staging files, creating commits, or opening PRs
|
|
58
|
+
- **Iron Laws** - Every skill now has a single, non-negotiable core principle
|
|
59
|
+
- 24 Iron Laws across all skills (e.g., "NEVER THROW IN BUSINESS LOGIC", "NO FAKE SOLUTIONS")
|
|
60
|
+
- Automatically enforced when skills activate
|
|
61
|
+
- Consistent format: `## Iron Law` section in each SKILL.md
|
|
62
|
+
- **Clarification Gates** for `/specify` command
|
|
63
|
+
- Gate 0: Confirm understanding before exploration
|
|
64
|
+
- Gate 1: Validate scope and priorities after exploration
|
|
65
|
+
- Gate 2: Confirm acceptance criteria before issue creation
|
|
66
|
+
- No gate may be skipped - explicit user approval required
|
|
67
|
+
- **Security deny list** via OS-level managed settings (140 blocked operations)
|
|
68
|
+
- System destruction (rm -rf, dd, mkfs, shred)
|
|
69
|
+
- Code execution (curl|bash, eval, exec)
|
|
70
|
+
- Privilege escalation (sudo, su, doas, pkexec)
|
|
71
|
+
- Permission changes (chmod 777, chown root)
|
|
72
|
+
- System control (kill -9, reboot, shutdown)
|
|
73
|
+
- Data exfiltration (netcat, socat, telnet)
|
|
74
|
+
- Sensitive file reads (.env, SSH keys, AWS credentials)
|
|
75
|
+
- Package globals (npm -g, pip --system)
|
|
76
|
+
- Resource abuse (fork bombs, crypto miners)
|
|
77
|
+
- **`ENABLE_TOOL_SEARCH`** environment variable in settings
|
|
78
|
+
- Deferred MCP tool loading until needed
|
|
79
|
+
- ~85% token reduction for conversations with many MCP tools
|
|
80
|
+
- **Context usage percentage** in statusline
|
|
81
|
+
- Replaces binary "exceeds 200k" warning
|
|
82
|
+
- Color-coded: Green (<50%), Yellow (50-80%), Red (>80%)
|
|
83
|
+
- Calculated from `context_window.current_usage` data
|
|
84
|
+
- **Working Memory hooks** — Automatic session continuity via stop/session-start/pre-compact hooks (#59)
|
|
85
|
+
- Background haiku updater writes `.docs/WORKING-MEMORY.md` asynchronously
|
|
86
|
+
- SessionStart hook injects previous memory + git state on startup
|
|
87
|
+
- mkdir-based locking for concurrent session safety
|
|
88
|
+
- **Teams/no-teams command variants** — Install-time selection of Agent Teams vs parallel subagents (#61)
|
|
89
|
+
- `--teams`/`--no-teams` CLI flags with TTY confirmation prompt
|
|
90
|
+
- Variant-aware installer copies correct `.md` files
|
|
91
|
+
- `stripTeamsConfig()` removes teams env vars when disabled
|
|
92
|
+
|
|
93
|
+
### Changed
|
|
94
|
+
- **Lean agent and command redesign** - Major refactoring reducing 3,653 lines to 844 (-77%)
|
|
95
|
+
- Commands: `/implement` (479→182), `/specify` (631→179), `/devlog` (408→113), `/code-review` (312→136)
|
|
96
|
+
- Agents: Coder, Synthesizer, Reviewer, Git, Devlog, CatchUp, Skimmer, Simplifier
|
|
97
|
+
- Removed embedded bash scripts, verbose templates, redundant explanations
|
|
98
|
+
- Preserved all workflows, agent invocations, and architecture
|
|
99
|
+
- **Agent model assignments** - Simplified to inherit vs haiku
|
|
100
|
+
- `inherit`: Coder, Reviewer, Simplifier, Skimmer (use orchestrator's model)
|
|
101
|
+
- `haiku`: Synthesizer, Git, Devlog, CatchUp (fast, simple operations)
|
|
102
|
+
- `/specify` now requires explicit user confirmation at each gate
|
|
103
|
+
- Statusline shows actual percentage instead of just large context warning
|
|
104
|
+
- Settings template includes permissions.deny and env configuration
|
|
105
|
+
- Commit and PR patterns now auto-activate via skills instead of requiring explicit commands
|
|
106
|
+
- **Skills consolidation** — 28 skills merged to 24
|
|
107
|
+
- `test-design` + `tests-patterns` → `test-patterns`
|
|
108
|
+
- `commit` + `pull-request` → `git-workflow`
|
|
109
|
+
- `code-smell` absorbed into `core-patterns`
|
|
110
|
+
- `codebase-navigation` removed (redundant with Explore agent)
|
|
111
|
+
- `devflow-` prefix dropped from all skill names
|
|
112
|
+
- **Managed settings** replace `--override-settings` flag — OS-level deny list installed to system-managed path, non-overridable by user settings
|
|
113
|
+
- **CLAUDE.md creation removed** — opinionated template no longer forced on users during init
|
|
114
|
+
- **`--teams` default flipped to off** — Agent Teams now opt-in via `--teams` flag
|
|
115
|
+
- **`/review` renamed to `/code-review`** — Plugin directory, command files, CLI registry, and all cross-references updated for clarity
|
|
116
|
+
- **Landing page** — Reference badge and repo homepage URL added
|
|
117
|
+
|
|
118
|
+
### Removed
|
|
119
|
+
- **`/commit` command** - Replaced by `git-workflow` skill (use `git commit` directly)
|
|
120
|
+
- **`/pull-request` command** - Replaced by `git-workflow` skill (use `gh pr create` directly)
|
|
121
|
+
- **`/breakdown` command** - Removed (use natural conversation or TodoWrite directly)
|
|
122
|
+
- **`/release` command** - Removed (use manual release process)
|
|
123
|
+
- **`/resolve-comments` command** - Removed (address PR comments directly)
|
|
124
|
+
- **`/run` command** - Removed (use `/implement` for full lifecycle)
|
|
125
|
+
- **`Commit` agent** - Patterns moved to `git-workflow` skill
|
|
126
|
+
- **`PullRequest` agent** - Patterns moved to `git-workflow` skill
|
|
127
|
+
- **`Release` agent** - Removed (use manual release process)
|
|
128
|
+
- **`/catch-up` command** - Superseded by Working Memory hooks (automatic context restoration)
|
|
129
|
+
- **`/devlog` command** - Superseded by Working Memory hooks (automatic session logging)
|
|
130
|
+
- **`catch-up` agent** - No longer needed with automatic Working Memory
|
|
131
|
+
- **`devlog` agent** - No longer needed with automatic Working Memory
|
|
132
|
+
- **`GetIssue` agent** - Replaced by Git agent (operation: fetch-issue)
|
|
133
|
+
- **`Comment` agent** - Replaced by Git agent (operation: comment-pr)
|
|
134
|
+
- **`TechDebt` agent** - Replaced by Git agent (operation: manage-debt)
|
|
135
|
+
|
|
136
|
+
### Fixed
|
|
137
|
+
- **Statusline base branch detection** — Layered 4-tier fallback (branch reflog → HEAD reflog → `gh pr view` cache → main/master) replaces hardcoded main/master check; fixes incorrect diff stats for branches off `develop`, `staging`, etc. (#70)
|
|
138
|
+
- **Stale CLAUDE.md in files array** — Removed from `package.json` after CLAUDE.md creation was dropped
|
|
139
|
+
- **Skimmer agent** — Use `npx rskim` to eliminate global install requirement (#60)
|
|
140
|
+
- **Working Memory throttle race** — Marker file prevents concurrent updater spawns during Agent Teams sessions (#62)
|
|
141
|
+
- **Working Memory diagnostics** — stderr captured to log file instead of swallowed (#62)
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
8
145
|
## [0.9.0] - 2025-12-04
|
|
9
146
|
|
|
10
147
|
### Added
|
|
@@ -74,7 +211,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
74
211
|
- Trust agent judgment after safety checks pass
|
|
75
212
|
- Only abort for genuine issues (secrets, credentials)
|
|
76
213
|
- Faster workflow without back-and-forth
|
|
77
|
-
- **`/
|
|
214
|
+
- **`/run` command** - Streamlined from 507 to ~100 lines (renamed from `/implement`)
|
|
78
215
|
- Removed over-engineered interactive triage
|
|
79
216
|
- Focus on efficient task execution
|
|
80
217
|
- Only stop for genuine design decisions
|
|
@@ -127,7 +264,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
127
264
|
- Tracks completion status
|
|
128
265
|
|
|
129
266
|
#### Enhanced Audit System
|
|
130
|
-
- **Three-category reporting** - All 9
|
|
267
|
+
- **Three-category reporting** - All 9 review agents refactored for clearer feedback
|
|
131
268
|
- **🔴 Issues in Your Changes** - NEW vulnerabilities/problems introduced (BLOCKING)
|
|
132
269
|
- **⚠️ Issues in Code You Touched** - Problems near your changes (SHOULD FIX)
|
|
133
270
|
- **ℹ️ Pre-existing Issues** - Legacy problems unrelated to PR (INFORMATIONAL)
|
|
@@ -142,7 +279,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
142
279
|
|
|
143
280
|
#### Code Review Command Rewrite
|
|
144
281
|
- **Completely rewritten `/code-review` command** - Better orchestration and synthesis
|
|
145
|
-
- Orchestrates all
|
|
282
|
+
- Orchestrates all review sub-agents in parallel for faster execution
|
|
146
283
|
- Synthesizes findings from three-category reports
|
|
147
284
|
- Generates actionable summary with clear priorities
|
|
148
285
|
- Separates blocking issues from informational findings
|
|
@@ -244,7 +381,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
244
381
|
- Automatic activation based on conversation context
|
|
245
382
|
|
|
246
383
|
#### Smart Interactive Commands
|
|
247
|
-
- **/
|
|
384
|
+
- **/run command** - Orchestrator for guided feature implementation (originally `/implement`)
|
|
248
385
|
- Interactive workflow for planning, research, and execution
|
|
249
386
|
- Integrates with project-state agent for context gathering
|
|
250
387
|
- Guides through research, design, implementation, and testing phases
|
|
@@ -304,12 +441,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
304
441
|
|
|
305
442
|
### Fixed
|
|
306
443
|
- **Statusline path resolution** - Use absolute paths instead of tilde (~) for reliable execution
|
|
307
|
-
- **Audit report organization** - Formalized structured storage for all
|
|
308
|
-
- Branch-specific directories: `.docs/
|
|
444
|
+
- **Audit report organization** - Formalized structured storage for all review reports
|
|
445
|
+
- Branch-specific directories: `.docs/reviews/<branch-name>/`
|
|
309
446
|
- Timestamped reports for historical tracking
|
|
310
|
-
- Standardized naming: `<
|
|
447
|
+
- Standardized naming: `<review-type>-report.<timestamp>.md`
|
|
311
448
|
- Standalone directory for direct agent invocations
|
|
312
|
-
- Applied consistently across all 9
|
|
449
|
+
- Applied consistently across all 9 review agents
|
|
313
450
|
|
|
314
451
|
### Added
|
|
315
452
|
- **Release notes persistence** - Save comprehensive release notes to `.docs/releases/RELEASE_NOTES_v<version>.md`
|
|
@@ -373,10 +510,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
373
510
|
- Never overwrites without explicit permission
|
|
374
511
|
|
|
375
512
|
#### TypeScript Auditor Sub-Agent
|
|
376
|
-
- **
|
|
513
|
+
- **review-typescript** - Specialized TypeScript code quality and type safety auditor
|
|
377
514
|
- Conditional execution: Runs only if .ts/.tsx files changed OR tsconfig.json exists
|
|
378
515
|
- Built-in detection logic (gracefully skips non-TypeScript projects)
|
|
379
|
-
- Comprehensive
|
|
516
|
+
- Comprehensive reviews: type safety config, `any` usage, type assertions, branded types
|
|
380
517
|
- Advanced patterns: discriminated unions, immutability, Result types
|
|
381
518
|
- Code quality: naming conventions, dependency injection, pure functions
|
|
382
519
|
- Severity-based reporting (CRITICAL/HIGH/MEDIUM/LOW) with file:line references
|
|
@@ -424,17 +561,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
424
561
|
13. Provide verification links and next steps
|
|
425
562
|
|
|
426
563
|
### Changed
|
|
427
|
-
- **Pre-commit workflow** - Integrated
|
|
564
|
+
- **Pre-commit workflow** - Integrated review-typescript into 5-agent review
|
|
428
565
|
- Conditionally executes for TypeScript projects
|
|
429
566
|
- No manual configuration needed
|
|
430
|
-
- **Pre-PR workflow** - Integrated
|
|
567
|
+
- **Pre-PR workflow** - Integrated review-typescript into comprehensive review
|
|
431
568
|
- Automatic TypeScript detection and execution
|
|
432
|
-
- Preserves existing
|
|
569
|
+
- Preserves existing review orchestration patterns
|
|
433
570
|
|
|
434
571
|
### Documentation
|
|
435
572
|
- Added `/release` command to README commands table
|
|
436
573
|
- Added `release` sub-agent to README sub-agents table
|
|
437
|
-
- Added `
|
|
574
|
+
- Added `review-typescript` sub-agent to README sub-agents table
|
|
438
575
|
- Created "Creating a Release" workflow section in README
|
|
439
576
|
- Documented smart CLAUDE.md installation behavior
|
|
440
577
|
- Included release automation in integration examples
|
|
@@ -443,7 +580,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
443
580
|
## [0.2.0] - 2025-10-16
|
|
444
581
|
|
|
445
582
|
### Added
|
|
446
|
-
- **
|
|
583
|
+
- **review-documentation sub-agent** - Ensures documentation stays aligned with code
|
|
447
584
|
- Validates README accuracy (installation, usage, examples)
|
|
448
585
|
- Checks API documentation matches actual function signatures
|
|
449
586
|
- Detects stale code comments and commented-out code
|
|
@@ -469,12 +606,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
469
606
|
|
|
470
607
|
### Changed
|
|
471
608
|
- **Pre-commit strategy** - Lightweight 5-agent review for fast feedback
|
|
472
|
-
- Core
|
|
609
|
+
- Core reviews: Security, Performance, Architecture, Tests, Complexity
|
|
473
610
|
- Typical execution: 30-60 seconds
|
|
474
|
-
- Additional
|
|
611
|
+
- Additional reviews available on explicit request
|
|
475
612
|
- **Pre-pr strategy** - Comprehensive 7-8 agent review
|
|
476
|
-
- All core
|
|
477
|
-
- Conditional Database
|
|
613
|
+
- All core reviews plus Dependencies and Documentation
|
|
614
|
+
- Conditional Database review (only if DB files changed)
|
|
478
615
|
- Typical execution: 2-3 minutes
|
|
479
616
|
- Thorough branch review before PR creation
|
|
480
617
|
- **Path handling** - No longer assumes HOME environment variable
|
|
@@ -493,8 +630,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
493
630
|
- **Hardcoded path assumptions** - Proper fallbacks and environment overrides
|
|
494
631
|
|
|
495
632
|
### Documentation
|
|
496
|
-
- Added
|
|
497
|
-
- Clarified
|
|
633
|
+
- Added review-documentation to sub-agents table in README
|
|
634
|
+
- Clarified review strategies for pre-commit vs pre-pr
|
|
498
635
|
- Updated workflow examples with refined command usage
|
|
499
636
|
|
|
500
637
|
## [0.1.2] - 2025-10-05
|
|
@@ -545,13 +682,13 @@ DevFlow is an Agentic Development Toolkit designed to enhance Claude Code with i
|
|
|
545
682
|
- `/debug [issue]` - Systematic debugging with issue-specific investigation
|
|
546
683
|
|
|
547
684
|
#### Sub-Agents (Audit Specialists)
|
|
548
|
-
- `
|
|
549
|
-
- `
|
|
550
|
-
- `
|
|
551
|
-
- `
|
|
552
|
-
- `
|
|
553
|
-
- `
|
|
554
|
-
- `
|
|
685
|
+
- `review-security` - Security vulnerability detection and analysis
|
|
686
|
+
- `review-performance` - Performance optimization and bottleneck detection
|
|
687
|
+
- `review-architecture` - Software architecture and design pattern analysis
|
|
688
|
+
- `review-tests` - Test quality and coverage analysis
|
|
689
|
+
- `review-dependencies` - Dependency management and security analysis
|
|
690
|
+
- `review-complexity` - Code complexity and maintainability assessment
|
|
691
|
+
- `review-database` - Database design and optimization review
|
|
555
692
|
|
|
556
693
|
#### Workflow Sub-Agents
|
|
557
694
|
- `catch-up` - Project status and context restoration with validation
|
|
@@ -560,7 +697,7 @@ DevFlow is an Agentic Development Toolkit designed to enhance Claude Code with i
|
|
|
560
697
|
#### Features
|
|
561
698
|
- **Smart Statusline** - Real-time project context display with git status and cost tracking
|
|
562
699
|
- **Security & Optimization** - Automatic `.claudeignore` file creation for token efficiency
|
|
563
|
-
- **Parallel Sub-Agent Execution** - Run multiple
|
|
700
|
+
- **Parallel Sub-Agent Execution** - Run multiple reviews simultaneously for better performance
|
|
564
701
|
- **Git Safety** - Sequential git operations to prevent lock file conflicts
|
|
565
702
|
- **Structured Documentation** - Organized tracking in `.docs/` directory
|
|
566
703
|
|
|
@@ -583,6 +720,7 @@ devflow init
|
|
|
583
720
|
|
|
584
721
|
---
|
|
585
722
|
|
|
723
|
+
[1.0.0]: https://github.com/dean0x/devflow/compare/v0.9.0...v1.0.0
|
|
586
724
|
[0.9.0]: https://github.com/dean0x/devflow/releases/tag/v0.9.0
|
|
587
725
|
[0.8.1]: https://github.com/dean0x/devflow/releases/tag/v0.8.1
|
|
588
726
|
[0.8.0]: https://github.com/dean0x/devflow/releases/tag/v0.8.0
|
package/LICENSE
CHANGED