create-issflow 1.0.3 → 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 (42) hide show
  1. package/README.md +61 -56
  2. package/bin/cli.js +269 -259
  3. package/package.json +32 -28
  4. package/template/.claude/agents/debugger.md +47 -47
  5. package/template/.claude/agents/e2e-runner.md +66 -66
  6. package/template/.claude/agents/implementer.md +79 -75
  7. package/template/.claude/agents/planner.md +93 -71
  8. package/template/.claude/agents/researcher.md +103 -103
  9. package/template/.claude/agents/synthesizer.md +78 -72
  10. package/template/.claude/agents/test-author.md +70 -70
  11. package/template/.claude/commands/change-request.md +53 -0
  12. package/template/.claude/commands/log-decision.md +33 -33
  13. package/template/.claude/commands/log-issue.md +28 -28
  14. package/template/.claude/commands/overview.md +114 -99
  15. package/template/.claude/commands/phase.md +230 -202
  16. package/template/.claude/commands/propose.md +71 -0
  17. package/template/.claude/commands/quick.md +30 -30
  18. package/template/.claude/commands/replan.md +68 -63
  19. package/template/.claude/commands/store-wisdom.md +195 -195
  20. package/template/.claude/commands/synthesize.md +26 -26
  21. package/template/.claude/commands/unstuck.md +40 -40
  22. package/template/.claude/hooks/pre-compact.js +42 -0
  23. package/template/.claude/hooks/session-start.js +137 -0
  24. package/template/.claude/hooks/subagent-stop.js +18 -0
  25. package/template/.claude/istartsoft-flow/METHODOLOGY.md +403 -229
  26. package/template/.claude/skills/caveman/SKILL.md +39 -39
  27. package/template/.claude/skills/code-standards/SKILL.md +61 -0
  28. package/template/.claude/skills/code-standards/references/architecture.md +61 -0
  29. package/template/.claude/skills/code-standards/references/naming.md +60 -0
  30. package/template/.claude/skills/grill-me/SKILL.md +31 -10
  31. package/template/.claude/skills/karpathy-guidelines/SKILL.md +34 -34
  32. package/template/.claude/skills/security/SKILL.md +70 -0
  33. package/template/.claude/skills/security/references/pentest-checklist.md +46 -0
  34. package/template/.claude/skills/security/references/secure-coding.md +50 -0
  35. package/template/.claude/skills/security/references/standards.md +60 -0
  36. package/template/.claude/skills/security/references/threat-modeling.md +36 -0
  37. package/template/.claude/skills/ux-design/SKILL.md +113 -99
  38. package/template/.claude/skills/ux-design/{wireframe-template.md → references/wireframe-template.md} +95 -95
  39. package/template/.claude/templates/proposal.html +126 -0
  40. package/template/.claude/hooks/pre-compact.sh +0 -25
  41. package/template/.claude/hooks/session-start.sh +0 -120
  42. package/template/.claude/hooks/subagent-stop.sh +0 -11
package/README.md CHANGED
@@ -1,56 +1,61 @@
1
- # create-issflow
2
-
3
- Scaffold the **iStartSoftFlow** AI-coding workflow into any project. Stack-agnostic
4
- and tool-agnostic. Non-destructive: it never overwrites your files.
5
-
6
- ## Use
7
-
8
- ```bash
9
- cd my-project
10
- npx create-issflow # prompts for your AI tool
11
- npx create-issflow --tool=claude # or pass it: claude | codex | cursor | gemini | aider | all
12
- # then open your tool — Claude Code fires the SessionStart hook automatically
13
- /overview # bootstrap the project
14
- ```
15
-
16
- Flags:
17
- - `--tool=<name>` — pick the target tool (skips the prompt). `all` writes every adapter.
18
- - `--dry-run` — print what would happen, write nothing.
19
- - `--force` — overwrite existing kit files (default keeps yours; conflicts are
20
- written as `<file>.issflow-new` for you to merge).
21
- - `-h`, `--help` — usage.
22
-
23
- ## What it installs
24
-
25
- The portable kit (every tool) in `<project>/.claude/`:
26
-
27
- - `agents/` — planner · researcher · implementer · test-author · debugger · e2e-runner · synthesizer
28
- - `commands/` — `/overview` `/phase` `/quick` `/replan` `/synthesize` `/store-wisdom` `/log-issue` `/log-decision` `/unstuck`
29
- - `skills/` — caveman · grill-me · karpathy-guidelines · ux-design
30
- - `hooks/` — session-start · pre-compact · subagent-stop
31
- - `istartsoft-flow/METHODOLOGY.md` — the full methodology (single source of truth)
32
-
33
- Plus a root `AGENTS.md` (the open standard) and the per-tool adapter:
34
-
35
- | Tool | Adds |
36
- |------|------|
37
- | `claude` | merges hooks into `.claude/settings.json` |
38
- | `codex` | nothing extra — `AGENTS.md` is read natively |
39
- | `cursor` | `.cursor/rules/` + `.cursor/commands/` + `.cursor/hooks.json` |
40
- | `gemini` | `GEMINI.md` pointer |
41
- | `aider` | `.aider.conf.yml` that loads the methodology |
42
- | `all` | every adapter above |
43
-
44
- It also un-ignores the workflow dirs in `.gitignore` if `.claude/*` was ignored.
45
-
46
- ## Loop
47
-
48
- `design-research → grill → plan → implement → test → deploy`, one vertical slice
49
- per phase. Stack-agnostic: declare your stack in `docs/OVERVIEW.md`; Phase 0
50
- (infra) is N/A when infra is managed. Planning source of truth stays in your
51
- PRD / architecture / stories (e.g. BMAD / iSSM).
52
-
53
- ## Maintainers
54
-
55
- The kit lives in the repo's `.claude/`. After editing it, run `bash build.sh` to
56
- refresh `template/`, then bump `version` and publish.
1
+ # create-issflow
2
+
3
+ Scaffold the **iStartSoftFlow** AI-coding workflow into any project. Stack-agnostic
4
+ and tool-agnostic. Non-destructive: it never overwrites your files.
5
+
6
+ ## Use
7
+
8
+ ```bash
9
+ cd my-project
10
+ npx create-issflow # prompts for your AI tool
11
+ npx create-issflow --tool=claude # or pass it: claude | codex | cursor | gemini | aider | all
12
+ # then open your tool — Claude Code fires the SessionStart hook automatically
13
+ /overview # bootstrap the project
14
+ ```
15
+
16
+ Flags:
17
+ - `--tool=<name>` — pick the target tool (skips the prompt). `all` writes every adapter.
18
+ - `--dry-run` — print what would happen, write nothing.
19
+ - `--force` — overwrite existing kit files (default keeps yours; conflicts are
20
+ written as `<file>.issflow-new` for you to merge).
21
+ - `-h`, `--help` — usage.
22
+
23
+ ## What it installs
24
+
25
+ The portable kit (every tool) in `<project>/.claude/`:
26
+
27
+ - `agents/` — planner · researcher · implementer · test-author · debugger · e2e-runner · synthesizer
28
+ - `commands/` — `/overview` `/propose` `/phase` `/change-request` `/replan` `/quick` `/synthesize` `/store-wisdom` `/log-issue` `/log-decision` `/unstuck`
29
+ - `skills/` — caveman · grill-me · karpathy-guidelines · ux-design
30
+ - `hooks/` — session-start · pre-compact · subagent-stop
31
+ - `istartsoft-flow/METHODOLOGY.md` — the full methodology (single source of truth)
32
+
33
+ Plus a root `AGENTS.md` (the open standard) and the per-tool adapter:
34
+
35
+ | Tool | Adds |
36
+ |------|------|
37
+ | `claude` | merges hooks into `.claude/settings.json` |
38
+ | `codex` | nothing extra — `AGENTS.md` is read natively |
39
+ | `cursor` | `.cursor/rules/` + `.cursor/commands/` + `.cursor/hooks.json` |
40
+ | `gemini` | `GEMINI.md` pointer |
41
+ | `aider` | `.aider.conf.yml` that loads the methodology |
42
+ | `all` | every adapter above |
43
+
44
+ It also un-ignores the workflow dirs in `.gitignore` if `.claude/*` was ignored.
45
+
46
+ ## Loop
47
+
48
+ `design-research → grill → plan → implement → test → deploy`, one vertical slice
49
+ per phase. Stack-agnostic: declare your stack in `docs/OVERVIEW.md`; Phase 0
50
+ (infra) is N/A when infra is managed. Planning source of truth stays in your
51
+ PRD / architecture / stories (e.g. BMAD / iSSM).
52
+
53
+ ## Maintainers
54
+
55
+ The kit lives in the repo's `.claude/`. After editing it, run `npm run build`
56
+ (pure Node — cmd / PowerShell / sh) to refresh `template/`, then `npm version patch`
57
+ and `npm publish`. `prepublishOnly` rebuilds `template/` on publish automatically.
58
+
59
+ Everything is cross-platform: the installer and `build.js` are pure Node, and the
60
+ lifecycle hooks are Node scripts (`node .claude/hooks/*.js`) — no bash/jq/python,
61
+ so the kit runs the same on macOS, Windows, and Linux.