ai-sprint-kit 2.1.2 → 2.1.4
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/bin/ai-sprint.js +10 -7
- package/package.json +2 -2
package/bin/ai-sprint.js
CHANGED
|
@@ -176,13 +176,16 @@ program
|
|
|
176
176
|
.description('Show AI Sprint Pro features')
|
|
177
177
|
.action(() => {
|
|
178
178
|
console.log(chalk.blue.bold('\nAI Sprint Pro Framework\n'));
|
|
179
|
-
console.log(chalk.cyan('Agents (
|
|
180
|
-
console.log(chalk.gray(' planner, implementer, tester, reviewer'));
|
|
181
|
-
console.log(chalk.gray('
|
|
182
|
-
console.log(chalk.
|
|
183
|
-
console.log(chalk.
|
|
184
|
-
console.log(chalk.gray(' /
|
|
185
|
-
console.log(chalk.gray(' /
|
|
179
|
+
console.log(chalk.cyan('Agents (12):'));
|
|
180
|
+
console.log(chalk.gray(' planner, implementer, tester, reviewer, security'));
|
|
181
|
+
console.log(chalk.gray(' devops, docs, debugger, researcher, verifier'));
|
|
182
|
+
console.log(chalk.gray(' browser-tester, deployment-smoke'));
|
|
183
|
+
console.log(chalk.cyan('\nCommands (15):'));
|
|
184
|
+
console.log(chalk.gray(' /ai-sprint-plan, /ai-sprint-code, /ai-sprint-test'));
|
|
185
|
+
console.log(chalk.gray(' /ai-sprint-review, /ai-sprint-secure, /ai-sprint-deploy'));
|
|
186
|
+
console.log(chalk.gray(' /ai-sprint-docs, /ai-sprint-debug, /ai-sprint-scan'));
|
|
187
|
+
console.log(chalk.gray(' /ai-sprint-validate, /ai-sprint-browser-test'));
|
|
188
|
+
console.log(chalk.gray(' /ai-sprint-orchestrate, /ai-sprint-setup, /ai-sprint-auto\n'));
|
|
186
189
|
});
|
|
187
190
|
|
|
188
191
|
program
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-sprint-kit",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "CLI installer for AI Sprint autonomous development framework - requires license",
|
|
5
5
|
"main": "lib/installer.js",
|
|
6
6
|
"bin": {
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"ai-sprint-kit": "bin/ai-sprint.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"test": "node
|
|
11
|
+
"test": "node test/test.js",
|
|
12
12
|
"link": "npm link",
|
|
13
13
|
"unlink": "npm unlink -g ai-sprint-kit"
|
|
14
14
|
},
|