aidevops 2.97.0 → 2.97.1
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 +8 -0
- package/VERSION +1 -1
- package/aidevops.sh +1 -1
- package/package.json +2 -1
- package/setup.sh +1 -1
package/README.md
CHANGED
|
@@ -625,6 +625,10 @@ The setup script offers to install these tools automatically.
|
|
|
625
625
|
- **[Codacy](https://www.codacy.com/)**: Multi-tool analysis (0 findings)
|
|
626
626
|
- **[CodeRabbit](https://coderabbit.ai/)**: AI-powered code reviews
|
|
627
627
|
- **[Snyk](https://snyk.io/)**: Security vulnerability scanning
|
|
628
|
+
- **[Socket](https://socket.dev/)**: Dependency security and supply chain protection
|
|
629
|
+
- **[Sentry](https://sentry.io/)**: Error monitoring and performance tracking
|
|
630
|
+
- **[Secretlint](https://github.com/secretlint/secretlint)**: Detect exposed secrets in code
|
|
631
|
+
- **[OSV Scanner](https://google.github.io/osv-scanner/)**: Google's vulnerability database scanner
|
|
628
632
|
- **[Qlty](https://qlty.sh/)**: Universal code quality platform (70+ linters, auto-fixes)
|
|
629
633
|
- **[Gemini Code Assist](https://cloud.google.com/gemini/docs/codeassist/overview)**: Google's AI-powered code completion and review
|
|
630
634
|
|
|
@@ -1265,6 +1269,10 @@ These are examples of subagents that have supporting MCPs enabled. See `.agent/`
|
|
|
1265
1269
|
| `@git-platforms` | GitHub, GitLab, Gitea | gh_grep, context7 |
|
|
1266
1270
|
| `@sentry` | Error monitoring, Next.js SDK setup | sentry |
|
|
1267
1271
|
| `@socket` | Dependency security scanning | socket |
|
|
1272
|
+
| `@security-analysis` | AI-powered vulnerability detection (OSV, Ferret, git history) | osv-scanner, gemini-cli-security |
|
|
1273
|
+
| `@secretlint` | Detect exposed secrets in code | (Docker-based) |
|
|
1274
|
+
| `@snyk` | Security vulnerability scanning | (API-based) |
|
|
1275
|
+
| `@auditing` | Code auditing services and security analysis | (API-based) |
|
|
1268
1276
|
| `@agent-review` | Session analysis, agent improvement (under build-agent/) | (read/write only) |
|
|
1269
1277
|
|
|
1270
1278
|
### **Setup for OpenCode**
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.97.
|
|
1
|
+
2.97.1
|
package/aidevops.sh
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aidevops",
|
|
3
|
-
"version": "2.97.
|
|
3
|
+
"version": "2.97.1",
|
|
4
4
|
"description": "AI DevOps Framework - AI-assisted development workflows, code quality, and deployment automation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@secretlint/secretlint-rule-preset-recommend": "^11.2.5",
|
|
44
|
+
"@secretlint/secretlint-rule-regexp": "^11.2.5",
|
|
44
45
|
"@types/bun": "latest",
|
|
45
46
|
"secretlint": "^11.2.5",
|
|
46
47
|
"typescript": "^5.0.0"
|
package/setup.sh
CHANGED