ai-sprint-kit 2.0.2 → 2.0.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/README.md +14 -14
- package/lib/messages.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@ AI Sprint transforms Claude Code into a team of 9 specialized AI agents with 11
|
|
|
11
11
|
## Features
|
|
12
12
|
|
|
13
13
|
- **9 AI Agents** - planner, implementer, tester, reviewer, security, devops, docs, debugger, researcher
|
|
14
|
-
- **11 Commands** - /plan, /code, /test, /review, /secure, /deploy, /docs, /debug, /scan, /validate, /auto
|
|
14
|
+
- **11 Commands** - /ai-sprint-plan, /ai-sprint-code, /ai-sprint-test, /ai-sprint-review, /ai-sprint-secure, /ai-sprint-deploy, /ai-sprint-docs, /ai-sprint-debug, /ai-sprint-scan, /ai-sprint-validate, /ai-sprint-auto
|
|
15
15
|
- **Memory System** - Persistent context across sessions
|
|
16
16
|
- **Security-First** - Built-in SAST, secrets scanning, dependency audit
|
|
17
17
|
|
|
@@ -42,23 +42,23 @@ Visit [ai-sprint-kit.app.data-espresso.com](https://ai-sprint-kit.app.data-espre
|
|
|
42
42
|
## Commands
|
|
43
43
|
|
|
44
44
|
```
|
|
45
|
-
/plan - Create implementation plans
|
|
46
|
-
/code - Generate or refactor code
|
|
47
|
-
/test - Generate and run tests
|
|
48
|
-
/review - Code quality review
|
|
49
|
-
/secure - Security scanning (SAST + secrets + deps)
|
|
50
|
-
/deploy - CI/CD setup and deployment
|
|
51
|
-
/docs - Generate documentation
|
|
52
|
-
/debug - Investigate issues
|
|
53
|
-
/scan - Index codebase for AI context
|
|
54
|
-
/validate - Pre-commit validation
|
|
55
|
-
/auto - Full autonomous development cycle
|
|
45
|
+
/ai-sprint-plan - Create implementation plans
|
|
46
|
+
/ai-sprint-code - Generate or refactor code
|
|
47
|
+
/ai-sprint-test - Generate and run tests
|
|
48
|
+
/ai-sprint-review - Code quality review
|
|
49
|
+
/ai-sprint-secure - Security scanning (SAST + secrets + deps)
|
|
50
|
+
/ai-sprint-deploy - CI/CD setup and deployment
|
|
51
|
+
/ai-sprint-docs - Generate documentation
|
|
52
|
+
/ai-sprint-debug - Investigate issues
|
|
53
|
+
/ai-sprint-scan - Index codebase for AI context
|
|
54
|
+
/ai-sprint-validate - Pre-commit validation
|
|
55
|
+
/ai-sprint-auto - Full autonomous development cycle
|
|
56
56
|
```
|
|
57
57
|
|
|
58
58
|
## Support
|
|
59
59
|
|
|
60
|
-
- GitHub Issues: [ai-sprint-
|
|
61
|
-
-
|
|
60
|
+
- GitHub Issues: [ai-sprint-pro/issues](https://github.com/apiasak/ai-sprint-pro/issues)
|
|
61
|
+
- Website: [ai-sprint-kit.app.data-espresso.com](https://ai-sprint-kit.app.data-espresso.com)
|
|
62
62
|
|
|
63
63
|
## License
|
|
64
64
|
|
package/lib/messages.js
CHANGED
|
@@ -44,9 +44,9 @@ Accept it, then run ${chalk.yellow('ai-sprint init')} again.
|
|
|
44
44
|
${chalk.green.bold('AI Sprint Pro installed!')}
|
|
45
45
|
|
|
46
46
|
${chalk.cyan('Next steps:')}
|
|
47
|
-
1. Review ${chalk.gray('.
|
|
47
|
+
1. Review ${chalk.gray('CLAUDE.md')} for overview
|
|
48
48
|
2. Start Claude Code: ${chalk.gray('claude')}
|
|
49
|
-
3. Try: ${chalk.gray('/plan, /code, /test, /secure')}
|
|
49
|
+
3. Try: ${chalk.gray('/ai-sprint-plan, /ai-sprint-code, /ai-sprint-test, /ai-sprint-secure')}
|
|
50
50
|
`
|
|
51
51
|
};
|
|
52
52
|
|