great-cto 0.1.3 → 1.0.101
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/README.md +9 -2
- package/dist/bootstrap.js +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -75,10 +75,17 @@ npx great-cto init [options]
|
|
|
75
75
|
|
|
76
76
|
## Requirements
|
|
77
77
|
|
|
78
|
-
- Node.js ≥
|
|
79
|
-
- Git (to clone the plugin repo)
|
|
78
|
+
- **Node.js ≥ 18.17.0** (Node 18 / 20 / 22 all tested in CI)
|
|
79
|
+
- **Git** (to clone the plugin repo)
|
|
80
80
|
- [Claude Code](https://claude.com/claude-code)
|
|
81
81
|
|
|
82
|
+
## Trust signals
|
|
83
|
+
|
|
84
|
+
- Zero runtime dependencies — only Node built-ins (`node:fs`, `node:path`, etc.)
|
|
85
|
+
- 47 unit tests covering stack detection, archetype scoring, settings merge
|
|
86
|
+
- CI matrix: Node 18/20/22 × Ubuntu/macOS/Windows
|
|
87
|
+
- Source: [`packages/cli/src/`](https://github.com/avelikiy/great_cto/tree/main/packages/cli/src) — ~1.2k LOC TypeScript
|
|
88
|
+
|
|
82
89
|
## License
|
|
83
90
|
|
|
84
91
|
MIT — same as the plugin.
|
package/dist/bootstrap.js
CHANGED
|
@@ -28,6 +28,14 @@ stack: ${stackLine}
|
|
|
28
28
|
languages: ${detection.languages.join(", ") || "to be defined"}
|
|
29
29
|
package-manager: ${detection.packageManager ?? "none"}
|
|
30
30
|
|
|
31
|
+
## Phase
|
|
32
|
+
|
|
33
|
+
phase: implementation
|
|
34
|
+
|
|
35
|
+
> Values: planning | implementation | review | release. SessionStart hook
|
|
36
|
+
> loads phase-specific context (skips QA/CSO/perf for planning; skips
|
|
37
|
+
> brainstorm/RFC for release). Switch in chat: "move to review phase".
|
|
38
|
+
|
|
31
39
|
## Team
|
|
32
40
|
|
|
33
41
|
size: ${teamSize}
|
package/package.json
CHANGED