@ennamjsc/agents-scaffold 1.1.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.
Files changed (46) hide show
  1. package/dist/index.js +674 -0
  2. package/dist/index.js.map +1 -0
  3. package/package.json +42 -0
  4. package/templates/_shared/.claude/agents/project-owner.md +19 -0
  5. package/templates/_shared/.claude/agents/reviewer.md +24 -0
  6. package/templates/_shared/.claude/agents/team-lead.md +20 -0
  7. package/templates/_shared/.claude/commands/boot.md +14 -0
  8. package/templates/_shared/.claude/commands/checkpoint.md +28 -0
  9. package/templates/_shared/.claude/commands/escalate.md +26 -0
  10. package/templates/_shared/.claude/commands/memory.md +12 -0
  11. package/templates/_shared/.claude/hooks/session-start.ps1 +3 -0
  12. package/templates/_shared/.claude/hooks/session-start.sh +4 -0
  13. package/templates/_shared/.claude/settings.json.hbs +17 -0
  14. package/templates/_shared/.gitignore.append +12 -0
  15. package/templates/_shared/.mcp.json.hbs +25 -0
  16. package/templates/_shared/.serena/checkpoint/.gitkeep +1 -0
  17. package/templates/_shared/.serena/memories/INDEX.md +13 -0
  18. package/templates/_shared/.serena/memories/backlog/.gitkeep +1 -0
  19. package/templates/_shared/.serena/memories/comms/active/.gitkeep +1 -0
  20. package/templates/_shared/.serena/memories/comms/resolved/.gitkeep +1 -0
  21. package/templates/_shared/.serena/memories/decisions/.gitkeep +1 -0
  22. package/templates/_shared/.serena/memories/services/.gitkeep +1 -0
  23. package/templates/_shared/AGENTS.md +75 -0
  24. package/templates/_shared/CLAUDE.md.partial.hbs +286 -0
  25. package/templates/_shared/docs/superpowers/plans/.gitkeep +1 -0
  26. package/templates/_shared/docs/superpowers/specs/.gitkeep +1 -0
  27. package/templates/flutter/.claude/agents/mobile-dev.md +21 -0
  28. package/templates/flutter/.mcp.json.partial.hbs +9 -0
  29. package/templates/flutter/CLAUDE.md.partial.hbs +26 -0
  30. package/templates/go/.claude/agents/backend-dev-go.md +22 -0
  31. package/templates/go/CLAUDE.md.partial.hbs +28 -0
  32. package/templates/local-root/CLAUDE.md.partial.hbs +50 -0
  33. package/templates/next/.claude/agents/web-dev.md +23 -0
  34. package/templates/next/.mcp.json.partial.hbs +13 -0
  35. package/templates/next/CLAUDE.md.partial.hbs +35 -0
  36. package/templates/python/.claude/agents/backend-dev-python.md +21 -0
  37. package/templates/python/CLAUDE.md.partial.hbs +27 -0
  38. package/templates/qa/.claude/agents/qa-tester.md +23 -0
  39. package/templates/qa/.claude/commands/qa-report.md +13 -0
  40. package/templates/qa/.claude/commands/qa-run.md +13 -0
  41. package/templates/qa/.mcp.json.partial.hbs +8 -0
  42. package/templates/qa/CLAUDE.md.partial.hbs +20 -0
  43. package/templates/qa/evidence/.gitkeep +1 -0
  44. package/templates/qa/qa/.gitkeep +1 -0
  45. package/templates/qa/test-cases/README.md +11 -0
  46. package/templates/qa/test-cases/TEMPLATE.md +25 -0
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,11 @@
1
+ # Test Cases
2
+
3
+ This directory holds the QA test suite. One file per case, named `<id>.md` (e.g. `LOGIN-001.md`).
4
+
5
+ ## Priority levels
6
+
7
+ - **P0** — Smoke / blocker. Run every release. Failure blocks release.
8
+ - **P1** — High-value flows. Run weekly. Failure raises a Jira blocker.
9
+ - **P2** — Edge cases. Run on demand.
10
+
11
+ Copy `TEMPLATE.md` to start a new case.
@@ -0,0 +1,25 @@
1
+ ---
2
+ id: <CASE-ID>
3
+ priority: P0|P1|P2
4
+ jira: <PROJECT-NNN or empty>
5
+ target: <URL or screen name>
6
+ ---
7
+
8
+ # <Case ID> — <Short title>
9
+
10
+ ## Preconditions
11
+
12
+ - ...
13
+
14
+ ## Steps
15
+
16
+ 1. ...
17
+ 2. ...
18
+
19
+ ## Expected outcome
20
+
21
+ - ...
22
+
23
+ ## Pass criteria
24
+
25
+ - ...