agents-templated 2.2.20 → 2.2.21
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/package.json +1 -1
- package/templates/CLAUDE.md +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agents-templated",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.21",
|
|
4
4
|
"description": "Technology-agnostic development template with multi-AI agent support (Cursor, Copilot, VSCode, Gemini), security-first patterns, and comprehensive testing guidelines",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
package/templates/CLAUDE.md
CHANGED
|
@@ -50,23 +50,23 @@ Skills add capability only. They must not override security, testing, or core co
|
|
|
50
50
|
|
|
51
51
|
| Subagent | Path | Invoke when... |
|
|
52
52
|
|----------|------|----------------|
|
|
53
|
-
| planner | `.claude/agents/planner.md` |
|
|
54
|
-
| architect | `.claude/agents/architect.md` |
|
|
55
|
-
| backend-specialist | `.claude/agents/backend-specialist.md` |
|
|
56
|
-
| frontend-specialist | `.claude/agents/frontend-specialist.md` |
|
|
57
|
-
| database-migrator | `.claude/agents/database-migrator.md` |
|
|
58
|
-
| deployment-specialist | `.claude/agents/deployment-specialist.md` |
|
|
59
|
-
| performance-specialist | `.claude/agents/performance-specialist.md` |
|
|
60
|
-
| qa-specialist | `.claude/agents/qa-specialist.md` |
|
|
61
|
-
| e2e-runner | `.claude/agents/e2e-runner.md` |
|
|
62
|
-
| code-reviewer | `.claude/agents/code-reviewer.md` |
|
|
63
|
-
| security-reviewer | `.claude/agents/security-reviewer.md` |
|
|
64
|
-
| refactor-cleaner | `.claude/agents/refactor-cleaner.md` |
|
|
65
|
-
| build-error-resolver | `.claude/agents/build-error-resolver.md` |
|
|
66
|
-
| compatibility-checker | `.claude/agents/compatibility-checker.md` |
|
|
67
|
-
| dependency-auditor | `.claude/agents/dependency-auditor.md` |
|
|
68
|
-
| doc-updater | `.claude/agents/doc-updater.md` |
|
|
69
|
-
| test-data-builder | `.claude/agents/test-data-builder.md` |
|
|
53
|
+
| planner | `.claude/agents/planner.md` | Break work into phased, testable execution plans when implementation scope must be sequenced, not when code fixes are already scoped and ready. |
|
|
54
|
+
| architect | `.claude/agents/architect.md` | Define system-level design decisions and ADR-ready trade-offs when architecture choices are material, not for routine implementation tasks. |
|
|
55
|
+
| backend-specialist | `.claude/agents/backend-specialist.md` | Implement backend APIs, services, and persistence logic after planning is complete, not for build-fix or compatibility-governance ownership. |
|
|
56
|
+
| frontend-specialist | `.claude/agents/frontend-specialist.md` | Implement UI behavior, accessibility, and client interactions for scoped frontend phases, not for backend implementation or release-governance tasks. |
|
|
57
|
+
| database-migrator | `.claude/agents/database-migrator.md` | Plan and validate schema/data migrations with rollback safety when persistence contracts change, not for general feature implementation. |
|
|
58
|
+
| deployment-specialist | `.claude/agents/deployment-specialist.md` | Plan deployment execution and rollback-safe rollout gates when release movement is required, not for feature coding or QA verdict ownership. |
|
|
59
|
+
| performance-specialist | `.claude/agents/performance-specialist.md` | Run explicit profile or load evaluations for performance decisions when orchestrator mode is declared, not for ambiguous or mode-inferred requests. |
|
|
60
|
+
| qa-specialist | `.claude/agents/qa-specialist.md` | Execute design-mode test planning or validation-mode regression verdicts with explicit orchestrator mode, not as a self-selected mixed QA function. |
|
|
61
|
+
| e2e-runner | `.claude/agents/e2e-runner.md` | Execute end-to-end journey validation with deterministic setup when integration behavior must be proven, not for unit-level or design-only testing. |
|
|
62
|
+
| code-reviewer | `.claude/agents/code-reviewer.md` | Review diffs for correctness, risk, and policy alignment before merge, not for dependency-risk auditing or documentation synchronization ownership. |
|
|
63
|
+
| security-reviewer | `.claude/agents/security-reviewer.md` | Perform conditional security review when trigger thresholds are met, not as an always-on mandatory step when risk signals are absent. |
|
|
64
|
+
| refactor-cleaner | `.claude/agents/refactor-cleaner.md` | Remove dead code and simplify safely in bounded increments when cleanup is requested, not for repeated build-repair loops beyond retry policy. |
|
|
65
|
+
| build-error-resolver | `.claude/agents/build-error-resolver.md` | Fix build, type, and lint failures with minimal diffs when the build is red, not for broad feature work or architectural refactors. |
|
|
66
|
+
| compatibility-checker | `.claude/agents/compatibility-checker.md` | Assess backward compatibility and contract-version impacts when interfaces change, not for code implementation or release documentation updates. |
|
|
67
|
+
| dependency-auditor | `.claude/agents/dependency-auditor.md` | Audit dependency risk, CVEs, and upgrade hygiene when package risk is in scope, not for code-style review or feature implementation. |
|
|
68
|
+
| doc-updater | `.claude/agents/doc-updater.md` | Synchronize README and architecture documentation with implemented behavior after changes land, not for deciding code correctness or dependency risk. |
|
|
69
|
+
| test-data-builder | `.claude/agents/test-data-builder.md` | Generate deterministic fixtures, seeds, and synthetic datasets for downstream validation/load phases, not for feature coding or final QA verdict ownership. |
|
|
70
70
|
|
|
71
71
|
### Subagent Auto-Routing Rules
|
|
72
72
|
|