@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/data/version.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
- "version": "1.0.0",
3
- "lastUpdated": "2026-05-14",
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": {
@@ -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/data/workflows/sdlc.md`](https://github.com/aicgen/aicgen/blob/main/data/workflows/sdlc.md) and injected into every generated config at `aicgen init` time.
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.