@softspark/ai-toolkit 1.3.13 → 1.3.15

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.
Files changed (39) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/LICENSE +1 -1
  3. package/README.md +59 -18
  4. package/app/ARCHITECTURE.md +2 -1
  5. package/app/agents/backend-specialist.md +8 -0
  6. package/app/agents/code-reviewer.md +9 -0
  7. package/app/agents/database-architect.md +8 -0
  8. package/app/agents/debugger.md +8 -0
  9. package/app/agents/devops-implementer.md +8 -0
  10. package/app/agents/documenter.md +8 -0
  11. package/app/agents/frontend-specialist.md +8 -0
  12. package/app/agents/performance-optimizer.md +8 -0
  13. package/app/agents/security-auditor.md +25 -1
  14. package/app/agents/test-engineer.md +9 -0
  15. package/app/skills/analyze/SKILL.md +15 -0
  16. package/app/skills/api-patterns/SKILL.md +10 -0
  17. package/app/skills/ci-cd-patterns/SKILL.md +10 -0
  18. package/app/skills/clean-code/SKILL.md +10 -0
  19. package/app/skills/cve-scan/SKILL.md +134 -0
  20. package/app/skills/cve-scan/scripts/cve_scan.py +412 -0
  21. package/app/skills/database-patterns/SKILL.md +10 -0
  22. package/app/skills/debug/SKILL.md +16 -0
  23. package/app/skills/docs/SKILL.md +16 -0
  24. package/app/skills/git-mastery/SKILL.md +10 -0
  25. package/app/skills/onboard/SKILL.md +15 -0
  26. package/app/skills/performance-profiling/SKILL.md +10 -0
  27. package/app/skills/plan/SKILL.md +16 -0
  28. package/app/skills/refactor/SKILL.md +16 -0
  29. package/app/skills/review/SKILL.md +58 -3
  30. package/app/skills/security-patterns/SKILL.md +10 -0
  31. package/app/skills/tdd/SKILL.md +6 -0
  32. package/app/skills/testing-patterns/SKILL.md +10 -0
  33. package/app/skills/workflow/SKILL.md +3 -3
  34. package/kb/reference/architecture-overview.md +20 -3
  35. package/kb/reference/skills-catalog.md +60 -3
  36. package/llms-full.txt +81 -6
  37. package/manifest.json +3 -3
  38. package/package.json +2 -2
  39. package/scripts/check_deps.py +52 -0
@@ -81,6 +81,16 @@ async def resource():
81
81
 
82
82
  ---
83
83
 
84
+ ## Common Rationalizations
85
+
86
+ | Excuse | Why It's Wrong |
87
+ |--------|----------------|
88
+ | "It's an internal API, security doesn't matter" | Internal APIs get exposed — lateral movement is attackers' primary technique |
89
+ | "The framework handles security" | Frameworks provide tools, not guarantees — misconfiguration is OWASP #5 |
90
+ | "We'll add auth later" | Unauthenticated endpoints in production get discovered within hours |
91
+ | "Nobody would exploit this" | Automated scanners don't care about your threat model — they scan everything |
92
+ | "It's behind a VPN" | VPNs are perimeter defense — zero trust assumes breach already happened |
93
+
84
94
  ## Reference Guides
85
95
 
86
96
  For authentication patterns (JWT, passwords, token strategy), see [reference/authentication.md](reference/authentication.md).
@@ -172,3 +172,9 @@ Before marking work complete:
172
172
  - [ ] Edge cases and errors covered
173
173
 
174
174
  Can't check all boxes? You skipped TDD. Start over.
175
+
176
+ ## Related Skills
177
+ - Feature complete? → `/review` to get a code review
178
+ - Need to plan the feature first? → `/plan` for task breakdown
179
+ - Want a full test coverage sweep? → `/workflow test-coverage`
180
+ - Debugging a test failure? → `/debug` for systematic root cause analysis
@@ -72,3 +72,13 @@ For PHP PHPUnit patterns, see [reference/php-phpunit.md](reference/php-phpunit.m
72
72
  For Go testing patterns, see [reference/go-testing.md](reference/go-testing.md).
73
73
 
74
74
  For Flutter/Dart testing patterns, see [reference/flutter-testing.md](reference/flutter-testing.md).
75
+
76
+ ## Common Rationalizations
77
+
78
+ | Excuse | Why It's Wrong |
79
+ |--------|----------------|
80
+ | "It's too simple to test" | Simple code breaks in integration — test the contract, not the complexity |
81
+ | "Tests slow down development" | Tests slow down bugs reaching production — that's the point |
82
+ | "We'll add tests later" | Untested code accumulates — later means never, and coverage gaps compound |
83
+ | "Mocking everything is fine" | Over-mocking tests the mocks, not the code — mock at boundaries only |
84
+ | "100% coverage means no bugs" | Coverage measures execution, not correctness — focus on behavior assertions |
@@ -188,13 +188,13 @@ Agent(subagent_type="code-reviewer", prompt="Review test quality — no
188
188
  # Sequential recon:
189
189
  Agent(subagent_type="explorer-agent", prompt="Map attack surface, entry points, data flows. READ-ONLY.")
190
190
  # Parallel audit:
191
- Agent(subagent_type="security-auditor", prompt="OWASP Top 10, injection, auth review. READ-ONLY.")
191
+ Agent(subagent_type="security-auditor", prompt="Run /cve-scan first, then OWASP Top 10, injection, auth review. READ-ONLY.")
192
192
  Agent(subagent_type="code-reviewer", prompt="Secrets in code, error handling, logging gaps. READ-ONLY.")
193
193
  Agent(subagent_type="devops-implementer", prompt="Infra misconfig, Docker hardening, network. READ-ONLY.")
194
194
  Agent(subagent_type="database-architect", prompt="SQL injection vectors, access controls, encryption. READ-ONLY.")
195
195
  # Sequential:
196
- Agent(subagent_type="tech-lead", prompt="Prioritize findings, assign severity (CVSS).")
197
- Agent(subagent_type="documenter", prompt="Security audit report + remediation checklist. Own files: kb/")
196
+ Agent(subagent_type="tech-lead", prompt="Prioritize findings including CVE scan results, assign severity (CVSS).")
197
+ Agent(subagent_type="documenter", prompt="Security audit report + CVE inventory + remediation checklist. Own files: kb/")
198
198
  ```
199
199
 
200
200
  **`codebase-onboarding`** — understand an unfamiliar codebase fast (READ-ONLY)
@@ -3,9 +3,9 @@ title: "AI Toolkit - Architecture Overview"
3
3
  category: reference
4
4
  service: ai-toolkit
5
5
  tags: [architecture, overview, design, structure]
6
- version: "1.3.10"
6
+ version: "1.3.15"
7
7
  created: "2026-03-23"
8
- last_updated: "2026-04-07"
8
+ last_updated: "2026-04-08"
9
9
  description: "Architecture of ai-toolkit: directory layout, global install model, skill tiers, and integration with projects."
10
10
  ---
11
11
 
@@ -166,7 +166,7 @@ Three tiers determine how to approach a task:
166
166
  | Type | Field | Invocation | Count |
167
167
  |------|-------|-----------|-------|
168
168
  | Task | `disable-model-invocation: true` | User via `/skill` only | 28 |
169
- | Hybrid | (neither) | User via `/skill` + agent knowledge | 30 |
169
+ | Hybrid | (neither) | User via `/skill` + agent knowledge | 31 |
170
170
  | Knowledge | `user-invocable: false` | Claude auto-loads | 32 |
171
171
 
172
172
  ## Multi-Agent Execution
@@ -178,6 +178,23 @@ Skills that spawn real parallel agents use:
178
178
 
179
179
  `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` must be set for Agent Teams (tmux-based) support.
180
180
 
181
+ ## Quality Guardrails
182
+
183
+ ### Anti-Rationalization Tables
184
+ 15 core skills include `## Common Rationalizations` tables — domain-specific excuses with rebuttals that prevent agent drift. Skills: `/review`, `/debug`, `/refactor`, `/tdd`, `/plan`, `/docs`, `/analyze`, `security-patterns`, `testing-patterns`, `api-patterns`, `ci-cd-patterns`, `clean-code`, `performance-profiling`, `git-mastery`, `database-patterns`.
185
+
186
+ ### Confidence Scoring & LLM-as-Judge (`/review`)
187
+ Review findings include per-issue confidence scores (1-10) and severity tiers (critical/major/minor/nit). A self-evaluation pass after review checks for anchoring bias, assumption vs verification, and calibrates confidence.
188
+
189
+ ### Agent Verification Checklists
190
+ 10 agents have `## Verification Checklist` — domain-specific exit criteria: `code-reviewer`, `test-engineer`, `security-auditor`, `debugger`, `backend-specialist`, `frontend-specialist`, `database-architect`, `performance-optimizer`, `devops-implementer`, `documenter`.
191
+
192
+ ### Skill Reference Routing
193
+ 7 core skills include `## Related Skills` suggesting follow-up skills: `/review`, `/debug`, `/plan`, `/refactor`, `/tdd`, `/docs`, `/analyze`.
194
+
195
+ ### Intent Capture Interview (`/onboard`)
196
+ Step 0 interview — 5 questions to capture undocumented project intent before setup.
197
+
181
198
  ## Component Relationships
182
199
 
183
200
  ```
@@ -3,9 +3,9 @@ title: "AI Toolkit - Skills Catalog"
3
3
  category: reference
4
4
  service: ai-toolkit
5
5
  tags: [skills, domain-knowledge, catalog, task-skills, hybrid-skills]
6
- version: "1.3.10"
6
+ version: "1.3.15"
7
7
  created: "2026-03-23"
8
- last_updated: "2026-04-07"
8
+ last_updated: "2026-04-08"
9
9
  description: "Complete skills catalog with task, hybrid, and knowledge skills. Includes effort levels, skill-scoped hooks, executable scripts, security auditor, and persona presets."
10
10
  ---
11
11
 
@@ -56,7 +56,7 @@ Task skills execute a specific action. Invoked via slash commands. `disable-mode
56
56
  | **prd-to-issues** | `/prd-to-issues` | medium | Break PRD into GitHub issues with vertical slices and HITL/AFK tagging |
57
57
  | **skill-audit** | `/skill-audit` | medium | Scan skills and agents for security risks: dangerous patterns, secrets, excessive permissions |
58
58
 
59
- ## Hybrid Skills (30)
59
+ ## Hybrid Skills (31)
60
60
 
61
61
  Hybrid skills combine slash-command invocation with domain knowledge that agents reference.
62
62
 
@@ -68,6 +68,7 @@ Hybrid skills combine slash-command invocation with domain knowledge that agents
68
68
  | **plan** | `/plan` | high | Create structured plan with task breakdown and agent assignments |
69
69
  | **refactor** | `/refactor` | high | Plan and execute code refactoring with safety checks (Tier 1 — single agent) |
70
70
  | **analyze** | `/analyze` | medium | Analyze code quality, complexity, and patterns |
71
+ | **cve-scan** | `/cve-scan` | medium | Scan project dependencies for known CVEs using native audit tools (npm, pip, composer, cargo, go, ruby, dart) |
71
72
  | **docs** | `/docs` | high | Generate/update docs: README, API docs, architecture notes, changelogs (Tier 1 — single agent) |
72
73
  | **search** | `/search` | medium | Search knowledge base (MCP tools with local fallback) |
73
74
  | **explain** | `/explain` | medium | Explain architecture of a file/module using Mermaid diagrams |
@@ -170,6 +171,62 @@ Hybrid skills combine slash-command invocation with domain knowledge that agents
170
171
  |-------|-----------|--------|
171
172
  | **hive-mind** | `skills/hive-mind/` | Multi-agent aggregation, consensus, swarm patterns |
172
173
 
174
+ ## Quality Guardrails
175
+
176
+ ### Anti-Rationalization Tables
177
+
178
+ 15 core skills include `## Common Rationalizations` — domain-specific tables of excuses and rebuttals that prevent agent drift and shortcut-taking:
179
+
180
+ | Skill | Example rationalization blocked |
181
+ |-------|---------------------------------|
182
+ | `/review` | "Small change, quick scan is enough" |
183
+ | `/debug` | "It must be a library bug" |
184
+ | `/refactor` | "It works, don't touch it" |
185
+ | `/tdd` | "Too simple to test" |
186
+ | `/plan` | "Planning is wasted time, just start coding" |
187
+ | `/docs` | "The code is self-documenting" |
188
+ | `/analyze` | "The linter is green, the code is fine" |
189
+ | `security-patterns` | "It's an internal API, security doesn't matter" |
190
+ | `testing-patterns` | "Tests slow down development" |
191
+ | `api-patterns` | "We'll version the API later" |
192
+ | `ci-cd-patterns` | "Manual deploys give us more control" |
193
+ | `clean-code` | "It's readable enough" |
194
+ | `performance-profiling` | "It feels slow, let me optimize this function" |
195
+ | `git-mastery` | "One big commit is simpler" |
196
+ | `database-patterns` | "We'll add indexes later when it's slow" |
197
+
198
+ ### Confidence Scoring (`/review`)
199
+
200
+ The `/review` skill outputs structured findings with:
201
+ - **Severity**: critical / major / minor / nit
202
+ - **Confidence score**: 1-10 per finding with calibration guide
203
+ - **Evidence requirement**: each finding must include file:line + reasoning
204
+
205
+ ### Self-Evaluation — LLM-as-Judge (`/review`)
206
+
207
+ After completing a review, the agent performs a self-evaluation pass:
208
+ 1. Verify vs assume — did I read actual code for each finding?
209
+ 2. Check the inverse — if X is a problem, is NOT-X also a problem elsewhere?
210
+ 3. Detect anchoring bias — did early findings bias toward similar patterns?
211
+ 4. Check unhappy paths — error handling, edge cases, failure modes
212
+ 5. Calibrate confidence — overconfident? re-examine weakest finding
213
+
214
+ ### Agent Verification Checklists
215
+
216
+ 10 key agents include `## Verification Checklist` — exit criteria before presenting results:
217
+ `code-reviewer`, `test-engineer`, `security-auditor`, `debugger`, `backend-specialist`, `frontend-specialist`, `database-architect`, `performance-optimizer`, `devops-implementer`, `documenter`.
218
+
219
+ ### Skill Reference Routing
220
+
221
+ 7 core skills include `## Related Skills` sections suggesting logical follow-up skills:
222
+ `/review`, `/debug`, `/plan`, `/refactor`, `/tdd`, `/docs`, `/analyze`.
223
+
224
+ ### Intent Capture Interview (`/onboard`)
225
+
226
+ Step 0 interview before setup — 5 targeted questions to capture undocumented project intent, customizing the generated `CLAUDE.md`.
227
+
228
+ ---
229
+
173
230
  ## Advanced Features
174
231
 
175
232
  ### Effort Levels
package/llms-full.txt CHANGED
@@ -63,6 +63,7 @@
63
63
  - **commit**: Create Conventional Commits with pre-commit validation
64
64
  - **council**: 4-perspective decision evaluation for architecture choices. Use when user wants multi-angle analysis, needs to decide between alternatives, or mentions 'council', 'evaluate decision', 'pros cons'.
65
65
  - **csharp-patterns**: Loaded when user asks about C# or .NET development patterns
66
+ - **cve-scan**: Scan project dependencies for known CVEs using native audit tools (npm, pip, composer, cargo, go, bundler, dart)
66
67
  - **database-patterns**: Loaded when user asks about database schema or query optimization
67
68
  - **debug**: Debug errors and trace root causes systematically
68
69
  - **debugging-tactics**: Loaded when user is debugging an issue or needs root cause analysis
@@ -933,9 +934,9 @@ title: "AI Toolkit - Architecture Overview"
933
934
  category: reference
934
935
  service: ai-toolkit
935
936
  tags: [architecture, overview, design, structure]
936
- version: "1.3.10"
937
+ version: "1.3.15"
937
938
  created: "2026-03-23"
938
- last_updated: "2026-04-07"
939
+ last_updated: "2026-04-08"
939
940
  description: "Architecture of ai-toolkit: directory layout, global install model, skill tiers, and integration with projects."
940
941
  ---
941
942
 
@@ -1096,7 +1097,7 @@ Three tiers determine how to approach a task:
1096
1097
  | Type | Field | Invocation | Count |
1097
1098
  |------|-------|-----------|-------|
1098
1099
  | Task | `disable-model-invocation: true` | User via `/skill` only | 28 |
1099
- | Hybrid | (neither) | User via `/skill` + agent knowledge | 30 |
1100
+ | Hybrid | (neither) | User via `/skill` + agent knowledge | 31 |
1100
1101
  | Knowledge | `user-invocable: false` | Claude auto-loads | 32 |
1101
1102
 
1102
1103
  ## Multi-Agent Execution
@@ -1108,6 +1109,23 @@ Skills that spawn real parallel agents use:
1108
1109
 
1109
1110
  `CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1` must be set for Agent Teams (tmux-based) support.
1110
1111
 
1112
+ ## Quality Guardrails
1113
+
1114
+ ### Anti-Rationalization Tables
1115
+ 15 core skills include `## Common Rationalizations` tables — domain-specific excuses with rebuttals that prevent agent drift. Skills: `/review`, `/debug`, `/refactor`, `/tdd`, `/plan`, `/docs`, `/analyze`, `security-patterns`, `testing-patterns`, `api-patterns`, `ci-cd-patterns`, `clean-code`, `performance-profiling`, `git-mastery`, `database-patterns`.
1116
+
1117
+ ### Confidence Scoring & LLM-as-Judge (`/review`)
1118
+ Review findings include per-issue confidence scores (1-10) and severity tiers (critical/major/minor/nit). A self-evaluation pass after review checks for anchoring bias, assumption vs verification, and calibrates confidence.
1119
+
1120
+ ### Agent Verification Checklists
1121
+ 10 agents have `## Verification Checklist` — domain-specific exit criteria: `code-reviewer`, `test-engineer`, `security-auditor`, `debugger`, `backend-specialist`, `frontend-specialist`, `database-architect`, `performance-optimizer`, `devops-implementer`, `documenter`.
1122
+
1123
+ ### Skill Reference Routing
1124
+ 7 core skills include `## Related Skills` suggesting follow-up skills: `/review`, `/debug`, `/plan`, `/refactor`, `/tdd`, `/docs`, `/analyze`.
1125
+
1126
+ ### Intent Capture Interview (`/onboard`)
1127
+ Step 0 interview — 5 questions to capture undocumented project intent before setup.
1128
+
1111
1129
  ## Component Relationships
1112
1130
 
1113
1131
  ```
@@ -4094,9 +4112,9 @@ title: "AI Toolkit - Skills Catalog"
4094
4112
  category: reference
4095
4113
  service: ai-toolkit
4096
4114
  tags: [skills, domain-knowledge, catalog, task-skills, hybrid-skills]
4097
- version: "1.3.10"
4115
+ version: "1.3.15"
4098
4116
  created: "2026-03-23"
4099
- last_updated: "2026-04-07"
4117
+ last_updated: "2026-04-08"
4100
4118
  description: "Complete skills catalog with task, hybrid, and knowledge skills. Includes effort levels, skill-scoped hooks, executable scripts, security auditor, and persona presets."
4101
4119
  ---
4102
4120
 
@@ -4147,7 +4165,7 @@ Task skills execute a specific action. Invoked via slash commands. `disable-mode
4147
4165
  | **prd-to-issues** | `/prd-to-issues` | medium | Break PRD into GitHub issues with vertical slices and HITL/AFK tagging |
4148
4166
  | **skill-audit** | `/skill-audit` | medium | Scan skills and agents for security risks: dangerous patterns, secrets, excessive permissions |
4149
4167
 
4150
- ## Hybrid Skills (30)
4168
+ ## Hybrid Skills (31)
4151
4169
 
4152
4170
  Hybrid skills combine slash-command invocation with domain knowledge that agents reference.
4153
4171
 
@@ -4159,6 +4177,7 @@ Hybrid skills combine slash-command invocation with domain knowledge that agents
4159
4177
  | **plan** | `/plan` | high | Create structured plan with task breakdown and agent assignments |
4160
4178
  | **refactor** | `/refactor` | high | Plan and execute code refactoring with safety checks (Tier 1 — single agent) |
4161
4179
  | **analyze** | `/analyze` | medium | Analyze code quality, complexity, and patterns |
4180
+ | **cve-scan** | `/cve-scan` | medium | Scan project dependencies for known CVEs using native audit tools (npm, pip, composer, cargo, go, ruby, dart) |
4162
4181
  | **docs** | `/docs` | high | Generate/update docs: README, API docs, architecture notes, changelogs (Tier 1 — single agent) |
4163
4182
  | **search** | `/search` | medium | Search knowledge base (MCP tools with local fallback) |
4164
4183
  | **explain** | `/explain` | medium | Explain architecture of a file/module using Mermaid diagrams |
@@ -4261,6 +4280,62 @@ Hybrid skills combine slash-command invocation with domain knowledge that agents
4261
4280
  |-------|-----------|--------|
4262
4281
  | **hive-mind** | `skills/hive-mind/` | Multi-agent aggregation, consensus, swarm patterns |
4263
4282
 
4283
+ ## Quality Guardrails
4284
+
4285
+ ### Anti-Rationalization Tables
4286
+
4287
+ 15 core skills include `## Common Rationalizations` — domain-specific tables of excuses and rebuttals that prevent agent drift and shortcut-taking:
4288
+
4289
+ | Skill | Example rationalization blocked |
4290
+ |-------|---------------------------------|
4291
+ | `/review` | "Small change, quick scan is enough" |
4292
+ | `/debug` | "It must be a library bug" |
4293
+ | `/refactor` | "It works, don't touch it" |
4294
+ | `/tdd` | "Too simple to test" |
4295
+ | `/plan` | "Planning is wasted time, just start coding" |
4296
+ | `/docs` | "The code is self-documenting" |
4297
+ | `/analyze` | "The linter is green, the code is fine" |
4298
+ | `security-patterns` | "It's an internal API, security doesn't matter" |
4299
+ | `testing-patterns` | "Tests slow down development" |
4300
+ | `api-patterns` | "We'll version the API later" |
4301
+ | `ci-cd-patterns` | "Manual deploys give us more control" |
4302
+ | `clean-code` | "It's readable enough" |
4303
+ | `performance-profiling` | "It feels slow, let me optimize this function" |
4304
+ | `git-mastery` | "One big commit is simpler" |
4305
+ | `database-patterns` | "We'll add indexes later when it's slow" |
4306
+
4307
+ ### Confidence Scoring (`/review`)
4308
+
4309
+ The `/review` skill outputs structured findings with:
4310
+ - **Severity**: critical / major / minor / nit
4311
+ - **Confidence score**: 1-10 per finding with calibration guide
4312
+ - **Evidence requirement**: each finding must include file:line + reasoning
4313
+
4314
+ ### Self-Evaluation — LLM-as-Judge (`/review`)
4315
+
4316
+ After completing a review, the agent performs a self-evaluation pass:
4317
+ 1. Verify vs assume — did I read actual code for each finding?
4318
+ 2. Check the inverse — if X is a problem, is NOT-X also a problem elsewhere?
4319
+ 3. Detect anchoring bias — did early findings bias toward similar patterns?
4320
+ 4. Check unhappy paths — error handling, edge cases, failure modes
4321
+ 5. Calibrate confidence — overconfident? re-examine weakest finding
4322
+
4323
+ ### Agent Verification Checklists
4324
+
4325
+ 10 key agents include `## Verification Checklist` — exit criteria before presenting results:
4326
+ `code-reviewer`, `test-engineer`, `security-auditor`, `debugger`, `backend-specialist`, `frontend-specialist`, `database-architect`, `performance-optimizer`, `devops-implementer`, `documenter`.
4327
+
4328
+ ### Skill Reference Routing
4329
+
4330
+ 7 core skills include `## Related Skills` sections suggesting logical follow-up skills:
4331
+ `/review`, `/debug`, `/plan`, `/refactor`, `/tdd`, `/docs`, `/analyze`.
4332
+
4333
+ ### Intent Capture Interview (`/onboard`)
4334
+
4335
+ Step 0 interview before setup — 5 targeted questions to capture undocumented project intent, customizing the generated `CLAUDE.md`.
4336
+
4337
+ ---
4338
+
4264
4339
  ## Advanced Features
4265
4340
 
4266
4341
  ### Effort Levels
package/manifest.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.3.12",
2
+ "version": "1.3.15",
3
3
  "components": {
4
4
  "agents": {
5
5
  "description": "44 specialized agents (orchestrator, backend, frontend, security, devops, etc.)",
@@ -9,7 +9,7 @@
9
9
  "tags": ["core", "agents"]
10
10
  },
11
11
  "skills": {
12
- "description": "90 skills (28 task + 30 hybrid + 32 knowledge)",
12
+ "description": "91 skills (28 task + 31 hybrid + 32 knowledge)",
13
13
  "path": "app/skills",
14
14
  "target": ".claude/skills",
15
15
  "type": "symlink",
@@ -90,7 +90,7 @@
90
90
  "default": true
91
91
  },
92
92
  "skills": {
93
- "description": "90 skills (task, hybrid, knowledge)",
93
+ "description": "91 skills (task, hybrid, knowledge)",
94
94
  "default": true
95
95
  },
96
96
  "rules-common": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@softspark/ai-toolkit",
3
- "version": "1.3.13",
4
- "description": "Professional-grade AI coding toolkit: 90 skills, 44 agents, multi-platform support (Claude, Cursor, Windsurf, Copilot, Gemini, Cline, Roo Code, Aider, Augment), machine-enforced safety constitution, persona presets, skill security auditor, expanded lifecycle hooks, 11 plugin packs, and benchmark tooling.",
3
+ "version": "1.3.15",
4
+ "description": "Professional-grade AI coding toolkit: 91 skills, 44 agents, multi-platform support (Claude, Cursor, Windsurf, Copilot, Gemini, Cline, Roo Code, Aider, Augment), machine-enforced safety constitution, persona presets, skill security auditor, expanded lifecycle hooks, 11 plugin packs, and benchmark tooling.",
5
5
  "keywords": [
6
6
  "claude",
7
7
  "claude-code",
@@ -96,6 +96,58 @@ OPTIONAL = [
96
96
  },
97
97
  "reason": "Running toolkit test suite (npm test)",
98
98
  },
99
+ {
100
+ "name": "pip-audit",
101
+ "check": "pip-audit",
102
+ "packages": {
103
+ "brew": "pip-audit # or: pip install pip-audit",
104
+ "apt": "pip-audit # pip install pip-audit",
105
+ "dnf": "pip-audit # pip install pip-audit",
106
+ "pacman": "pip-audit # pip install pip-audit",
107
+ "apk": "pip-audit # pip install pip-audit",
108
+ "zypper": "pip-audit # pip install pip-audit",
109
+ },
110
+ "reason": "CVE scanner (/cve-scan) for Python dependencies",
111
+ },
112
+ {
113
+ "name": "cargo-audit",
114
+ "check": "cargo-audit",
115
+ "packages": {
116
+ "brew": "cargo-audit # or: cargo install cargo-audit",
117
+ "apt": "cargo-audit # cargo install cargo-audit",
118
+ "dnf": "cargo-audit # cargo install cargo-audit",
119
+ "pacman": "cargo-audit # cargo install cargo-audit",
120
+ "apk": "cargo-audit # cargo install cargo-audit",
121
+ "zypper": "cargo-audit # cargo install cargo-audit",
122
+ },
123
+ "reason": "CVE scanner (/cve-scan) for Rust dependencies",
124
+ },
125
+ {
126
+ "name": "govulncheck",
127
+ "check": "govulncheck",
128
+ "packages": {
129
+ "brew": "govulncheck # go install golang.org/x/vuln/cmd/govulncheck@latest",
130
+ "apt": "govulncheck # go install golang.org/x/vuln/cmd/govulncheck@latest",
131
+ "dnf": "govulncheck # go install golang.org/x/vuln/cmd/govulncheck@latest",
132
+ "pacman": "govulncheck # go install golang.org/x/vuln/cmd/govulncheck@latest",
133
+ "apk": "govulncheck # go install golang.org/x/vuln/cmd/govulncheck@latest",
134
+ "zypper": "govulncheck # go install golang.org/x/vuln/cmd/govulncheck@latest",
135
+ },
136
+ "reason": "CVE scanner (/cve-scan) for Go dependencies",
137
+ },
138
+ {
139
+ "name": "bundle-audit",
140
+ "check": "bundle-audit",
141
+ "packages": {
142
+ "brew": "bundler-audit # or: gem install bundler-audit",
143
+ "apt": "bundler-audit # gem install bundler-audit",
144
+ "dnf": "bundler-audit # gem install bundler-audit",
145
+ "pacman": "bundler-audit # gem install bundler-audit",
146
+ "apk": "bundler-audit # gem install bundler-audit",
147
+ "zypper": "bundler-audit # gem install bundler-audit",
148
+ },
149
+ "reason": "CVE scanner (/cve-scan) for Ruby dependencies",
150
+ },
99
151
  ]
100
152
 
101
153