@aicgen/aicgen 1.1.1 → 1.2.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/.agents/plugins/marketplace.json +20 -0
- package/.codex/hooks/aicgen_session_start.py +16 -0
- package/.codex/hooks.json +25 -0
- package/.codex/instructions.md +8165 -0
- package/.gitmodules +2 -1
- package/AGENTS.md +43 -11
- package/README.md +83 -27
- package/claude.md +32 -3
- package/data/README.md +52 -14
- package/data/agentic/README.md +22 -0
- package/data/agentic/capabilities.yml +150 -0
- package/data/agentic/migration-gemini-to-antigravity.md +11 -0
- package/data/guideline-mappings.yml +0 -99
- package/data/version.json +3 -3
- package/data/workflows/README.md +22 -1
- package/dist/index.js +13811 -12774
- package/jest.config.js +1 -0
- package/package.json +5 -6
- package/data/templates/hooks/testing.json +0 -17
package/data/version.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"lastUpdated": "2026-05-
|
|
2
|
+
"version": "1.2.0",
|
|
3
|
+
"lastUpdated": "2026-05-26",
|
|
4
4
|
"totalGuidelines": 99,
|
|
5
|
+
"totalWorkflows": 6,
|
|
5
6
|
"categories": {
|
|
6
7
|
"Language": 39,
|
|
7
8
|
"Architecture": 21,
|
|
@@ -45,7 +46,6 @@
|
|
|
45
46
|
"levels": {
|
|
46
47
|
"basic": 23,
|
|
47
48
|
"standard": 83,
|
|
48
|
-
"expert": 99,
|
|
49
49
|
"full": 99
|
|
50
50
|
},
|
|
51
51
|
"datasources": {
|
package/data/workflows/README.md
CHANGED
|
@@ -8,6 +8,13 @@ aicgen injects a structured 6-command SDLC workflow into every generated assista
|
|
|
8
8
|
/spec → /research → /plan → /build → /check → /ship
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
For Codex, aicgen generates a project-local `aicgen-sdlc` plugin and exposes
|
|
12
|
+
namespaced commands to avoid conflicts with built-in Codex commands:
|
|
13
|
+
|
|
14
|
+
```
|
|
15
|
+
/aicgen-spec → /aicgen-research → /aicgen-plan → /aicgen-build → /aicgen-check → /aicgen-ship
|
|
16
|
+
```
|
|
17
|
+
|
|
11
18
|
| Step | Command | Output artifact |
|
|
12
19
|
|------|---------|----------------|
|
|
13
20
|
| 1 | [`/spec [name]`](sdlc/spec.md) | `docs/specs/{name}.md` |
|
|
@@ -26,6 +33,20 @@ aicgen injects a structured 6-command SDLC workflow into every generated assista
|
|
|
26
33
|
- [/check](sdlc/check.md) — Verify implementation against spec and run tests
|
|
27
34
|
- [/ship](sdlc/ship.md) — Pre-flight checks and PR description draft
|
|
28
35
|
|
|
36
|
+
## Codex plugin commands
|
|
37
|
+
|
|
38
|
+
When Codex is selected in `aicgen configure` or `aicgen init`, aicgen generates
|
|
39
|
+
a project-local `aicgen-sdlc` plugin plus `.agents/plugins/marketplace.json`.
|
|
40
|
+
Restart Codex from the generated project root, or add the marketplace manually,
|
|
41
|
+
so Codex can load the plugin. Use the namespaced commands in Codex:
|
|
42
|
+
|
|
43
|
+
- `/aicgen-spec` — aicgen `/spec`
|
|
44
|
+
- `/aicgen-research` — aicgen `/research`
|
|
45
|
+
- `/aicgen-plan` — aicgen `/plan`
|
|
46
|
+
- `/aicgen-build` — aicgen `/build`
|
|
47
|
+
- `/aicgen-check` — aicgen `/check`
|
|
48
|
+
- `/aicgen-ship` — aicgen `/ship`
|
|
49
|
+
|
|
29
50
|
## Output directory
|
|
30
51
|
|
|
31
52
|
All spec and plan artifacts are saved to the `docs/` directory in the user's project. This directory is created automatically if it does not exist.
|
|
@@ -48,4 +69,4 @@ docs/
|
|
|
48
69
|
|
|
49
70
|
## Source
|
|
50
71
|
|
|
51
|
-
Command definitions are maintained in [`aicgen
|
|
72
|
+
Command definitions are maintained in [`aicgen-data/workflows/sdlc.md`](https://github.com/aicgen/aicgen-data/blob/main/workflows/sdlc.md) and injected into every generated config at `aicgen init` time.
|