@softspark/ai-toolkit 2.6.2 → 2.7.0

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.
@@ -23,7 +23,7 @@ All functionality is unified under skills. Task and hybrid skills are user-invoc
23
23
  | **2 — Multi-agent workflow** | `/workflow <type>` | Cross-cutting task with known pattern |
24
24
  | **3 — Custom parallelism** | `/orchestrate`, `/swarm` | No predefined workflow matches |
25
25
 
26
- ## Task Skills (30)
26
+ ## Task Skills (32)
27
27
 
28
28
  Task skills execute a specific action. Invoked via slash commands. `disable-model-invocation: true`.
29
29
 
@@ -60,6 +60,7 @@ Task skills execute a specific action. Invoked via slash commands. `disable-mode
60
60
  | **hipaa-validate** | `/hipaa-validate` | medium | Scan codebase for HIPAA compliance issues: PHI exposure, missing audit logging, unencrypted transmission/storage, access control gaps, temp file exposure, and missing BAA references |
61
61
  | **a11y-validate** | `/a11y-validate` | medium | Scan codebase for accessibility violations: WCAG 2.1 Level AA, EN 301 549, European Accessibility Act (EAA / EU 2019/882). Covers semantics, keyboard, focus, color contrast, forms, media, ARIA, motion, mobile (React Native + Flutter), and EAA accessibility-statement documentation. |
62
62
  | **seo-validate** | `/seo-validate` | medium | Scan codebase for SEO issues: W3C semantics, meta/OG tags, Schema.org, hreflang, Core Web Vitals (LCP/INP/CLS), resource hints, GEO, SPA/SSG/CSR crawlability, technical SEO, accessibility-for-SEO. Framework-aware (Next/Nuxt/Astro/Gatsby/SvelteKit/Remix/Angular/Vue/static HTML). |
63
+ | **mcp-builder** | `/mcp-builder` | high | Build production-grade MCP servers using the 4-phase methodology (research, implement, test, evaluate). TypeScript/Python, stdio/streamable-http. |
63
64
 
64
65
  ## Hybrid Skills (31)
65
66
 
@@ -151,12 +152,16 @@ Hybrid skills combine slash-command invocation with domain knowledge that agents
151
152
  | **testing-patterns** | `skills/testing-patterns/` | Multi-language TDD: pytest, vitest, phpunit, go test, flutter |
152
153
  | **migration-patterns** | `skills/migration-patterns/` | Database migrations, API versioning, zero-downtime |
153
154
 
154
- ## Knowledge Skills - AI/RAG (2)
155
+ ## Knowledge Skills - AI/RAG (6)
155
156
 
156
157
  | Skill | Directory | Domain |
157
158
  |-------|-----------|--------|
158
159
  | **rag-patterns** | `skills/rag-patterns/` | RAG pipelines, chunking, reranking, evaluation |
159
160
  | **mcp-patterns** | `skills/mcp-patterns/` | MCP protocol, server/client design, tools |
161
+ | **prompt-caching-patterns** | `skills/prompt-caching-patterns/` | Anthropic prompt caching: TTL, breakpoints, hit rate, anti-patterns |
162
+ | **json-mode-patterns** | `skills/json-mode-patterns/` | Structured JSON output via tool-use; schema design; partial recovery |
163
+ | **content-moderation-patterns** | `skills/content-moderation-patterns/` | Two-stage moderation: pre-filter + LLM classifier; categories; thresholds |
164
+ | **model-routing-patterns** | `skills/model-routing-patterns/` | Haiku/Sonnet/Opus routing; escalation; sub-agent delegation; fallback |
160
165
 
161
166
  ## Knowledge Skills - Process (7)
162
167
 
package/llms-full.txt CHANGED
@@ -74,6 +74,7 @@
74
74
  - **clean-code**: Loaded when user asks about clean code, naming, or code quality
75
75
  - **command-creator**: Creates new Claude Code slash commands with frontmatter, workflow guidance, and validation
76
76
  - **commit**: Create Conventional Commits with pre-commit validation
77
+ - **content-moderation-patterns**: Loaded when user builds content moderation, safety filters, or policy enforcement with Claude. Covers pre-filter vs LLM-classify, category design, confidence thresholds, and human-in-the-loop.
77
78
  - **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'.
78
79
  - **csharp-patterns**: Loaded when user asks about C# or .NET development patterns
79
80
  - **cve-scan**: Scan project dependencies for known CVEs using native audit tools (npm, pip, composer, cargo, go, bundler, dart)
@@ -103,12 +104,15 @@
103
104
  - **instinct-review**: Review and manage learned instincts from past sessions
104
105
  - **introspect**: Agent self-debugging and recovery. Use when stuck in loops, making repeated errors, or quality degrades. Triggers: introspect, self-debug, stuck, loop, why failing.
105
106
  - **java-patterns**: Loaded when user asks about Java development patterns
107
+ - **json-mode-patterns**: Loaded when user needs structured JSON output from Claude. Covers tool-use-as-JSON-mode, schema design, parsing, partial recovery, and validation.
106
108
  - **kotlin-patterns**: Loaded when user asks about Kotlin development patterns
107
109
  - **lint**: Lint code with auto-detected tools and fix suggestions
110
+ - **mcp-builder**: Build production-grade MCP (Model Context Protocol) servers from scratch using the 4-phase methodology: research, implement, test, evaluate. Use when creating new MCP integrations for external APIs, databases, or internal services.
108
111
  - **mcp-patterns**: Loaded when user asks about MCP servers or tool protocol design
109
112
  - **mem-search**: Search past coding sessions using natural language. Finds relevant observations, decisions, and context from previous work.
110
113
  - **migrate**: Run database migrations with backup verification
111
114
  - **migration-patterns**: Loaded when user asks about database migrations or zero-downtime deploys
115
+ - **model-routing-patterns**: Loaded when user builds multi-model pipelines (Haiku/Sonnet/Opus). Covers cost-optimized routing, escalation, sub-agent delegation, and fallback chains.
112
116
  - **night-watch**: Run autonomous maintenance and dependency updates
113
117
  - **observability-patterns**: Loaded when user asks about logging, metrics, or tracing patterns
114
118
  - **onboard**: Generate project onboarding materials
@@ -123,6 +127,7 @@
123
127
  - **prd-to-issues**: Break a PRD into independently-grabbable GitHub issues using vertical slices with HITL/AFK tagging and dependency ordering. Use when user wants to convert a PRD to issues, create tickets, or break down a PRD into work items.
124
128
  - **prd-to-plan**: Convert a PRD into a phased implementation plan using tracer-bullet vertical slices. Use when user wants to break down a PRD, create an implementation plan, plan phases from a PRD, or mentions tracer bullets.
125
129
  - **predict**: Predict regressions and impact before changes land
130
+ - **prompt-caching-patterns**: Loaded when user builds with Anthropic API and needs to cut cost or latency via prompt caching. Covers TTL, cache breakpoints, stacking, invalidation, and measuring hit rate.
126
131
  - **qa-session**: Interactive QA session where user reports bugs conversationally and agent files GitHub issues with domain language. Explores codebase in background for context. Use when user wants to report bugs, do QA, file issues conversationally, or mentions QA session.
127
132
  - **rag-patterns**: Loaded when user asks about RAG systems, embeddings, or vector search
128
133
  - **refactor**: Refactor code for quality and maintainability
@@ -8725,7 +8730,7 @@ All functionality is unified under skills. Task and hybrid skills are user-invoc
8725
8730
  | **2 — Multi-agent workflow** | `/workflow <type>` | Cross-cutting task with known pattern |
8726
8731
  | **3 — Custom parallelism** | `/orchestrate`, `/swarm` | No predefined workflow matches |
8727
8732
 
8728
- ## Task Skills (30)
8733
+ ## Task Skills (32)
8729
8734
 
8730
8735
  Task skills execute a specific action. Invoked via slash commands. `disable-model-invocation: true`.
8731
8736
 
@@ -8762,6 +8767,7 @@ Task skills execute a specific action. Invoked via slash commands. `disable-mode
8762
8767
  | **hipaa-validate** | `/hipaa-validate` | medium | Scan codebase for HIPAA compliance issues: PHI exposure, missing audit logging, unencrypted transmission/storage, access control gaps, temp file exposure, and missing BAA references |
8763
8768
  | **a11y-validate** | `/a11y-validate` | medium | Scan codebase for accessibility violations: WCAG 2.1 Level AA, EN 301 549, European Accessibility Act (EAA / EU 2019/882). Covers semantics, keyboard, focus, color contrast, forms, media, ARIA, motion, mobile (React Native + Flutter), and EAA accessibility-statement documentation. |
8764
8769
  | **seo-validate** | `/seo-validate` | medium | Scan codebase for SEO issues: W3C semantics, meta/OG tags, Schema.org, hreflang, Core Web Vitals (LCP/INP/CLS), resource hints, GEO, SPA/SSG/CSR crawlability, technical SEO, accessibility-for-SEO. Framework-aware (Next/Nuxt/Astro/Gatsby/SvelteKit/Remix/Angular/Vue/static HTML). |
8770
+ | **mcp-builder** | `/mcp-builder` | high | Build production-grade MCP servers using the 4-phase methodology (research, implement, test, evaluate). TypeScript/Python, stdio/streamable-http. |
8765
8771
 
8766
8772
  ## Hybrid Skills (31)
8767
8773
 
@@ -8853,12 +8859,16 @@ Hybrid skills combine slash-command invocation with domain knowledge that agents
8853
8859
  | **testing-patterns** | `skills/testing-patterns/` | Multi-language TDD: pytest, vitest, phpunit, go test, flutter |
8854
8860
  | **migration-patterns** | `skills/migration-patterns/` | Database migrations, API versioning, zero-downtime |
8855
8861
 
8856
- ## Knowledge Skills - AI/RAG (2)
8862
+ ## Knowledge Skills - AI/RAG (6)
8857
8863
 
8858
8864
  | Skill | Directory | Domain |
8859
8865
  |-------|-----------|--------|
8860
8866
  | **rag-patterns** | `skills/rag-patterns/` | RAG pipelines, chunking, reranking, evaluation |
8861
8867
  | **mcp-patterns** | `skills/mcp-patterns/` | MCP protocol, server/client design, tools |
8868
+ | **prompt-caching-patterns** | `skills/prompt-caching-patterns/` | Anthropic prompt caching: TTL, breakpoints, hit rate, anti-patterns |
8869
+ | **json-mode-patterns** | `skills/json-mode-patterns/` | Structured JSON output via tool-use; schema design; partial recovery |
8870
+ | **content-moderation-patterns** | `skills/content-moderation-patterns/` | Two-stage moderation: pre-filter + LLM classifier; categories; thresholds |
8871
+ | **model-routing-patterns** | `skills/model-routing-patterns/` | Haiku/Sonnet/Opus routing; escalation; sub-agent delegation; fallback |
8862
8872
 
8863
8873
  ## Knowledge Skills - Process (7)
8864
8874
 
package/manifest.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.6.2",
2
+ "version": "2.7.0",
3
3
  "components": {
4
4
  "agents": {
5
5
  "description": "44 specialized agents (orchestrator, backend, frontend, security, devops, etc.)",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@softspark/ai-toolkit",
3
- "version": "2.6.2",
4
- "description": "Professional-grade AI coding toolkit: 94 skills, 44 agents, multi-platform support (Claude, Cursor, Windsurf, Copilot, Gemini, Cline, Roo Code, Aider, Augment, Google Antigravity, Codex CLI, opencode), machine-enforced safety constitution, persona presets, skill security auditor, expanded lifecycle hooks, 11 plugin packs, and benchmark tooling.",
3
+ "version": "2.7.0",
4
+ "description": "Professional-grade AI coding toolkit: 99 skills, 44 agents, multi-platform support (Claude, Cursor, Windsurf, Copilot, Gemini, Cline, Roo Code, Aider, Augment, Google Antigravity, Codex CLI, opencode), 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",