@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.
- package/dist/index.js +674 -0
- package/dist/index.js.map +1 -0
- package/package.json +42 -0
- package/templates/_shared/.claude/agents/project-owner.md +19 -0
- package/templates/_shared/.claude/agents/reviewer.md +24 -0
- package/templates/_shared/.claude/agents/team-lead.md +20 -0
- package/templates/_shared/.claude/commands/boot.md +14 -0
- package/templates/_shared/.claude/commands/checkpoint.md +28 -0
- package/templates/_shared/.claude/commands/escalate.md +26 -0
- package/templates/_shared/.claude/commands/memory.md +12 -0
- package/templates/_shared/.claude/hooks/session-start.ps1 +3 -0
- package/templates/_shared/.claude/hooks/session-start.sh +4 -0
- package/templates/_shared/.claude/settings.json.hbs +17 -0
- package/templates/_shared/.gitignore.append +12 -0
- package/templates/_shared/.mcp.json.hbs +25 -0
- package/templates/_shared/.serena/checkpoint/.gitkeep +1 -0
- package/templates/_shared/.serena/memories/INDEX.md +13 -0
- package/templates/_shared/.serena/memories/backlog/.gitkeep +1 -0
- package/templates/_shared/.serena/memories/comms/active/.gitkeep +1 -0
- package/templates/_shared/.serena/memories/comms/resolved/.gitkeep +1 -0
- package/templates/_shared/.serena/memories/decisions/.gitkeep +1 -0
- package/templates/_shared/.serena/memories/services/.gitkeep +1 -0
- package/templates/_shared/AGENTS.md +75 -0
- package/templates/_shared/CLAUDE.md.partial.hbs +286 -0
- package/templates/_shared/docs/superpowers/plans/.gitkeep +1 -0
- package/templates/_shared/docs/superpowers/specs/.gitkeep +1 -0
- package/templates/flutter/.claude/agents/mobile-dev.md +21 -0
- package/templates/flutter/.mcp.json.partial.hbs +9 -0
- package/templates/flutter/CLAUDE.md.partial.hbs +26 -0
- package/templates/go/.claude/agents/backend-dev-go.md +22 -0
- package/templates/go/CLAUDE.md.partial.hbs +28 -0
- package/templates/local-root/CLAUDE.md.partial.hbs +50 -0
- package/templates/next/.claude/agents/web-dev.md +23 -0
- package/templates/next/.mcp.json.partial.hbs +13 -0
- package/templates/next/CLAUDE.md.partial.hbs +35 -0
- package/templates/python/.claude/agents/backend-dev-python.md +21 -0
- package/templates/python/CLAUDE.md.partial.hbs +27 -0
- package/templates/qa/.claude/agents/qa-tester.md +23 -0
- package/templates/qa/.claude/commands/qa-report.md +13 -0
- package/templates/qa/.claude/commands/qa-run.md +13 -0
- package/templates/qa/.mcp.json.partial.hbs +8 -0
- package/templates/qa/CLAUDE.md.partial.hbs +20 -0
- package/templates/qa/evidence/.gitkeep +1 -0
- package/templates/qa/qa/.gitkeep +1 -0
- package/templates/qa/test-cases/README.md +11 -0
- 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
|
+
- ...
|