almightygpt 0.5.2 → 0.5.3
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 +6 -6
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ Requires Node.js 18+.
|
|
|
35
35
|
```bash
|
|
36
36
|
# 1. Initialize the Convention Pack in any repo
|
|
37
37
|
cd ~/your-project
|
|
38
|
-
almightygpt init --stack node-ts # or python-django / python-fastapi / rails / go
|
|
38
|
+
almightygpt init --stack node-ts # or next-js / python-django / python-fastapi / rails / go
|
|
39
39
|
|
|
40
40
|
# 2. Set at least one provider API key (read once, never stored)
|
|
41
41
|
export OPENAI_API_KEY=sk-...
|
|
@@ -72,12 +72,12 @@ All commands accept `--json` for machine-readable output. The `review`
|
|
|
72
72
|
command streams JSON events one per line, suitable for tooling (the VS
|
|
73
73
|
Code extension uses this directly).
|
|
74
74
|
|
|
75
|
-
##
|
|
75
|
+
## Six supported stack templates
|
|
76
76
|
|
|
77
|
-
`node-ts`, `python-django`, `python-fastapi`, `rails`, `go` —
|
|
78
|
-
with a stack-tuned `CLAUDE.md` for the Worker AI, an
|
|
79
|
-
covering that stack's typical secret-bearing paths, and
|
|
80
|
-
sensible `context.include` / `context.exclude` globs.
|
|
77
|
+
`node-ts`, `next-js`, `python-django`, `python-fastapi`, `rails`, `go` —
|
|
78
|
+
each ships with a stack-tuned `CLAUDE.md` for the Worker AI, an
|
|
79
|
+
`.almightyignore` covering that stack's typical secret-bearing paths, and
|
|
80
|
+
a config with sensible `context.include` / `context.exclude` globs.
|
|
81
81
|
|
|
82
82
|
## Four real provider adapters
|
|
83
83
|
|
package/dist/index.js
CHANGED
|
@@ -15,7 +15,7 @@ program
|
|
|
15
15
|
.name("almightygpt")
|
|
16
16
|
.description("The convention and tooling for multi-AI development. " +
|
|
17
17
|
"One AI writes, another AI reviews.")
|
|
18
|
-
.version("0.5.
|
|
18
|
+
.version("0.5.3");
|
|
19
19
|
program.addCommand(createInitCommand());
|
|
20
20
|
program.addCommand(createReviewCommand());
|
|
21
21
|
program.addCommand(createRunsCommand());
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "almightygpt",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.3",
|
|
4
4
|
"description": "AlmightyGPT CLI — the convention and tooling for multi-AI development",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@almightygpt/core": "^0.5.1",
|
|
22
|
-
"@almightygpt/templates": "^0.
|
|
22
|
+
"@almightygpt/templates": "^0.6.0",
|
|
23
23
|
"chalk": "^5.3.0",
|
|
24
24
|
"commander": "^12.0.0"
|
|
25
25
|
},
|