ai-ops-cli 0.2.0 → 0.2.2
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 +23 -0
- package/data/rules/communication.yaml +3 -2
- package/dist/bin/index.js +242 -236
- package/dist/bin/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,6 +22,7 @@ The CLI treats these as separate sources of truth:
|
|
|
22
22
|
|
|
23
23
|
- interactive project initialization (`ai-ops init`)
|
|
24
24
|
- skill package installation and lifecycle management (`ai-ops skill ...`)
|
|
25
|
+
- spec pipeline directory scaffolding (`ai-ops spec init`)
|
|
25
26
|
- source drift checks (`ai-ops diff`)
|
|
26
27
|
- deterministic re-apply (`ai-ops update`)
|
|
27
28
|
- managed cleanup (`ai-ops uninstall`)
|
|
@@ -73,6 +74,12 @@ ai-ops update --force
|
|
|
73
74
|
|
|
74
75
|
# Remove project-managed files
|
|
75
76
|
ai-ops uninstall
|
|
77
|
+
|
|
78
|
+
# Initialize spec pipeline directory structure
|
|
79
|
+
ai-ops spec init
|
|
80
|
+
|
|
81
|
+
# Force re-create even if specs/ already exists
|
|
82
|
+
ai-ops spec init --force
|
|
76
83
|
```
|
|
77
84
|
|
|
78
85
|
## CLI Surface
|
|
@@ -83,6 +90,7 @@ ai-ops [command]
|
|
|
83
90
|
Commands:
|
|
84
91
|
init Initialize AI tool rules for a project
|
|
85
92
|
skill Manage agent skills
|
|
93
|
+
spec Manage spec pipeline
|
|
86
94
|
update Update installed rules
|
|
87
95
|
diff Show diff between installed and current rules
|
|
88
96
|
uninstall Remove installed rules and manifest
|
|
@@ -93,6 +101,21 @@ Options:
|
|
|
93
101
|
-h, --help Display help
|
|
94
102
|
```
|
|
95
103
|
|
|
104
|
+
### `ai-ops spec` subcommands
|
|
105
|
+
|
|
106
|
+
```text
|
|
107
|
+
ai-ops spec init [options]
|
|
108
|
+
|
|
109
|
+
Initialize the specs/ directory structure for AI-collaborative spec pipelines.
|
|
110
|
+
Creates:
|
|
111
|
+
specs/README.md — usage guide
|
|
112
|
+
specs/baseline/ — baseline spec documents
|
|
113
|
+
specs/delta/ — delta (incremental change) spec documents
|
|
114
|
+
|
|
115
|
+
Options:
|
|
116
|
+
--force Overwrite existing specs/ directory
|
|
117
|
+
```
|
|
118
|
+
|
|
96
119
|
Notes:
|
|
97
120
|
|
|
98
121
|
- Project installation state is tracked in `.ai-ops-manifest.json`.
|
|
@@ -7,5 +7,6 @@ priority: 85
|
|
|
7
7
|
content:
|
|
8
8
|
constraints:
|
|
9
9
|
- "DO NOT use filler phrases like 'Certainly,' 'Of course,' 'Here is the code,' 'I understand,' 'Great question.' Just output the solution."
|
|
10
|
-
|
|
11
|
-
- '
|
|
10
|
+
- 'Only source code and inline code comments may be written in English.'
|
|
11
|
+
- 'All non-code outputs MUST be in Korean unless the user explicitly requests English.'
|
|
12
|
+
guidelines: []
|