ECC/skills
Alexis Le Dain 04c68e483a
Add React language track with agents, skills, rules, and commands (#2024)
* feat(rules): add rules/react/ track

Five rule files mirroring per-language convention (coding-style,
hooks, patterns, security, testing). Each has `paths:` glob
frontmatter for auto-activation when editing matching files.

- coding-style.md: file extensions, naming, JSX, RSC boundary
- hooks.md: React hooks (NOT Claude Code hooks) — rules-of-hooks,
  dep arrays, cleanup, memoization, React 19 additions
- patterns.md: container/presentational split, state location
  decision tree, Suspense + error boundaries, forms, data fetching
- security.md: dangerouslySetInnerHTML, unsafe URL schemes,
  server-action validation, env-var leaks, CSP
- testing.md: RTL queries, userEvent, async, MSW, axe, anti-patterns

Each file extends typescript/* and common/* rules.

* feat(skills): add react-patterns, react-testing, react-performance

Three new skills under skills/ following the SKILL.md convention.

- react-patterns: React 18/19 idioms — hooks discipline, state
  location decision tree, server/client component boundary,
  Suspense + error boundaries, form actions (React 19), data
  fetching matrix, composition recipes, accessibility-first.
- react-testing: React Testing Library + Vitest/Jest, query
  priority order, userEvent, MSW network mocking, axe a11y
  assertions, RTL vs Playwright CT boundary, TDD workflow.
- react-performance: 70-rule performance ruleset adapted from
  Vercel Labs react-best-practices (MIT) across 8 priority
  categories — waterfalls, bundle size, server-side, client
  fetch, re-render, rendering, JS micro, advanced patterns.
  Includes Lighthouse / Web Vitals mapping and attribution to
  upstream.

Cross-links between the three skills and out to frontend-patterns,
accessibility, e2e-testing, tdd-workflow.

* feat(agents): add react-reviewer and react-build-resolver

Two new agents covering React-specific code review and build error
resolution, plus matching .kiro/ mirrors and a routing pointer
edit on typescript-reviewer.

- react-reviewer: slim React-only lanes (hooks rules,
  dangerouslySetInnerHTML, unsafe URL schemes, key prop, state
  mutation, derived-state-in-effect, server/client component
  boundary, accessibility, render performance, Server Action
  validation, env-var leaks). Explicitly delegates generic
  TypeScript/async/Node concerns to typescript-reviewer. Both
  agents should be invoked together on .tsx/.jsx PRs.
- react-build-resolver: React build/bundler/runtime hydration
  failures across Vite, webpack, Next.js, CRA, Parcel, esbuild,
  Bun, Rsbuild. Handles JSX/TSX compile errors, tsconfig fixes,
  Next.js App Router server/client boundary errors, hydration
  mismatches, duplicated React copies, Tailwind/PostCSS pipeline.
- .kiro/agents/react-reviewer.json + react-build-resolver.json:
  Kiro IDE format mirrors following the per-language precedent.
- typescript-reviewer: routing pointer added to its MEDIUM React
  block — defers to /react-review for React-specific concerns
  while keeping its block as fallback for repos that only invoke
  typescript-reviewer.

All agents carry the standard Prompt Defense Baseline stanza.

* feat(commands): add /react-review /react-build /react-test

Three new slash commands invoking the React agents.

- /react-review: invokes react-reviewer. Documents the routing
  rule with typescript-reviewer — both should run together on
  TSX/JSX PRs. Lists CRITICAL/HIGH/MEDIUM rule categories and
  the automated checks (eslint with react-hooks + jsx-a11y,
  tsc --noEmit, npm audit).
- /react-build: invokes react-build-resolver. Documents bundler
  detection, common failure patterns, fix strategy, and stop
  conditions.
- /react-test: enforces TDD with React Testing Library + Vitest
  or Jest, behavior-focused queries, userEvent + MSW patterns,
  axe accessibility assertions, coverage targets.

Each command file has the required description: frontmatter and
follows the per-language command convention (cpp-test, go-test,
kotlin-test, etc.).

* chore: wire react track into manifests and stack mappings

- agent.yaml: add react-patterns, react-performance, react-testing
  to the skills array; add react-build, react-review, react-test to
  the commands array (alphabetically inserted to satisfy the
  ci/agent-yaml-surface sync test).
- config/project-stack-mappings.json: extend the `react` stack
  entry — add "react" to rules array (was ["common","typescript",
  "web"]); add react-patterns, react-performance, react-testing,
  accessibility to the skills array.
- docs/COMMAND-REGISTRY.json: bump totalCommands 75 -> 78; add
  three new entries (react-build, react-review, react-test) with
  primaryAgents / allAgents / skills wiring. react-review's
  allAgents includes typescript-reviewer to reflect the dual-agent
  routing convention.
- CLAUDE.md: add Skills-table row mapping *.tsx / *.jsx /
  components/** to react-patterns + react-testing skills and
  the /react-review, /react-build, /react-test commands.

* chore(catalog): sync counts to 62 agents / 78 commands / 235 skills

Auto-generated via `node scripts/ci/catalog.js --write --text`
after the react track additions:

- 2 new agents: react-reviewer, react-build-resolver (60 -> 62)
- 3 new commands: react-build, react-review, react-test (75 -> 78)
- 3 new skills: react-patterns, react-performance, react-testing
  (232 -> 235)

Files updated by the catalog sync:
- .claude-plugin/plugin.json description string
- .claude-plugin/marketplace.json plugin description
- README.md quick-start summary, project tree, feature parity tables
- README.zh-CN.md quick-start summary
- AGENTS.md project structure summary
- docs/zh-CN/README.md parity table
- docs/zh-CN/AGENTS.md project structure summary

All counts now match the filesystem catalog (verified by
ci/catalog.test.js).

* feat(kiro): add react agent markdown companions to JSON entries

* feat(kiro): add react skills into manifests

* fix(ci): sync catalog counts, registry, and package files for react track

- .claude-plugin/{plugin,marketplace}.json: bump description counts to 62/235/78
- docs/COMMAND-REGISTRY.json: regenerate to include quality-gate and react commands
- package.json: add skills/react-{patterns,performance,testing}/ to files allowlist so npm-publish-surface aligns with install-modules manifest

* fix(react): address PR #2024 review feedback

Critical:
- Remove undefined/.claude/session-aliases.json containing __proto__ prototype-pollution
  fixture committed by accident in a7333c14

High:
- agents/react-build-resolver.md: replace brittle `test -o $(grep -l ...)` and
  `test -a -n $(grep ...)` detection with explicit `{ ... || grep -q ...; }` so
  bundler detection no longer breaks when grep returns empty
- agents/react-build-resolver.md: drop hardcoded `npm i react@^19 react-dom@^19`
  remediation; replace with version-agnostic pair-upgrade note that honors the
  project's installed major (17/18/19) — surgical fix principle
- commands/react-review.md: guard `tsc --noEmit -p tsconfig.json` with
  `[ -f tsconfig.json ] &&` so the review skips cleanly on JS-only projects

Medium:
- rules/react/security.md: correct the React-18-blocks-javascript-URL claim
  (React only warns in dev; production navigation is not blocked)
- rules/react/security.md: correct CRA env-var exposure row (CRA exposes
  REACT_APP_*, NODE_ENV, PUBLIC_URL — not 'all' variables)
- skills/react-testing/SKILL.md: instantiate QueryClient once outside the
  wrapper closure so React Query cache survives re-renders (flaky-test fix)
- skills/react-testing/SKILL.md: restore console.error spy with mockRestore()
  in a try/finally so the mock does not leak across tests
- commands/react-test.md: switch outer example-session fence to 4 backticks
  so the inner ```tsx/```bash blocks don't prematurely terminate it

* fix(kiro): mirror react-build-resolver react 19 conditional remediation

Discussion r3272907106 flagged the kiro json variant still carrying the hardcoded
'npm i react@^19 react-dom@^19' line that the .md companion already dropped.
Replace with the same conditional, version-agnostic guidance so both variants
stay in sync.

* fix(react): bump react-build example session fence to 4 backticks

Discussion r3272907144 flagged the same nested-fence issue in
commands/react-build.md that we fixed earlier in commands/react-test.md.
The outer triple-backtick text block was being prematurely terminated by
the inner bash/tsx fences inside the Example Session.

* fix(react): bump react-review example usage fence to 4 backticks

Discussion r3272907201 flagged the same nested-fence issue in
commands/react-review.md. The outer triple-backtick text block was
being prematurely terminated by the inner tsx/ts fences inside the
Example Usage transcript.

* fix(docs): clarify commands row as legacy shims in feature parity table

Discussion r3272912003: README comparison table said 'PASS: 78 commands'
while the install-section and quick-start prose use 'legacy command shims'.
Aligned the comparison-table cell to 'PASS: 78 commands (legacy shims)' so
the count word survives the catalog-validator regex while making the legacy
nature explicit.

Widened the catalog comparison-table commands regex to tolerate an optional
parenthetical after the count word, so both the existing 'X commands' and
the new 'X commands (legacy shims)' phrasings validate without breaking
older READMEs/translations.

* Update rules/react/security.md

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>

* fix(react): guard tsc in react-build-resolver diagnostic commands

Discussion r3288910205: the agent prompt instructed an unconditional
'tsc --noEmit -p tsconfig.json', which adds noise (or hard-fails) on
JavaScript-only projects with no tsconfig.json or no installed TypeScript.

Replaced with 'test -f tsconfig.json && npx --yes tsc --noEmit -p tsconfig.json'
in both variants:
- agents/react-build-resolver.md
- .kiro/agents/react-build-resolver.json (prompt string mirrored)

Mirrors the same guard already applied to commands/react-review.md in de135f61.

* fix(react): pin tsc resolution to local install in build resolver

Discussion r3289054157: previous fix used 'npx --yes tsc' which auto-installs
the latest TypeScript from npm when none is local, producing version drift
and non-reproducible typecheck results across machines.

Switched to 'npx --no-install tsc' in both variants so the diagnostic uses
only the project's pinned TypeScript and fails fast if it isn't installed:
- agents/react-build-resolver.md
- .kiro/agents/react-build-resolver.json (prompt string mirrored)

* feat(counts): resolve counts for agents, skills...

* fix(ci): regen command registry for golang-testing entry

Removes stale kotlin-patterns entry to satisfy command-registry:check.

* fix: keep local Claude settings out of React track PR

---------

Co-authored-by: AlexisLeDain <a.ledain@docoon.com>
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
Co-authored-by: Affaan Mustafa <affaan@dcube.ai>
2026-05-28 07:32:52 -04:00
..
accessibility fix: remove canonical Anthropic skill duplicates 2026-04-30 00:21:13 -04:00
agent-architecture-audit docs: salvage agent and motion workflow skills 2026-05-11 22:16:11 -04:00
agent-eval security: remove supply chain risks, external promotions, and unauthorized credits 2026-03-21 18:10:05 -07:00
agent-harness-construction feat: deliver v1.8.0 harness reliability and parity updates 2026-03-04 14:48:06 -08:00
agent-introspection-debugging feat: add agent introspection debugging skill 2026-04-05 20:10:54 -07:00
agent-payment-x402 docs: salvage x402 payment skill update 2026-05-11 20:55:21 -04:00
agent-sort feat: add agent-sort selective install workflow 2026-04-05 17:36:37 -07:00
agentic-engineering feat: deliver v1.8.0 harness reliability and parity updates 2026-03-04 14:48:06 -08:00
agentic-os docs: salvage agent and motion workflow skills 2026-05-11 22:16:11 -04:00
ai-first-engineering feat: deliver v1.8.0 harness reliability and parity updates 2026-03-04 14:48:06 -08:00
ai-regression-testing fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
android-clean-architecture fix: address PR review comments for Kotlin/Android/KMP docs 2026-03-10 20:53:39 -07:00
angular-developer feat: salvage Angular developer skill 2026-05-11 19:38:21 -04:00
api-connector-builder fix: resolve markdownlint violations 2026-04-08 15:40:26 -07:00
api-design fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
architecture-decision-records feat(skills): add architecture-decision-records skill (#555) 2026-03-20 00:20:25 -07:00
article-writing refactor: consolidate writing voice rules 2026-04-02 15:45:19 -07:00
automation-audit-ops feat: add ECC-native operator workflow skills 2026-04-05 16:31:26 -07:00
autonomous-agent-harness fix: harden agent instruction surfaces 2026-04-30 09:39:54 -04:00
autonomous-loops security: remove supply chain risks, external promotions, and unauthorized credits 2026-03-21 18:10:05 -07:00
backend-patterns docs: salvage focused skill curation updates (#1723) 2026-05-11 05:03:34 -04:00
benchmark fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
benchmark-optimization-loop feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
blender-motion-state-inspection Add Blender motion state inspection skill 2026-05-18 04:11:31 -04:00
blueprint docs: tighten blueprint install guidance 2026-03-10 19:23:00 -07:00
brand-voice feat(skills): add brand voice and network ops lanes 2026-04-01 19:41:03 -07:00
browser-qa fix(skills): add missing YAML frontmatter to 7 skills 2026-03-28 20:06:42 -04:00
bun-runtime fix: address PR review — skill template (When to use, How it works, Examples), bun.lock, next build note, rust-reviewer CI note, doc-lookup privacy/uncertainty 2026-03-16 14:03:40 -07:00
canary-watch fix: harden dashboard canary and IOC coverage 2026-05-15 02:06:46 -04:00
carrier-relationship-management fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
cisco-ios-patterns feat: salvage network diagnostics skills (#1731) 2026-05-11 08:33:00 -04:00
ck fix: port safe ci cleanup from backlog 2026-04-01 16:09:54 -07:00
claude-devfleet Add Claude DevFleet multi-agent orchestration skill (#505) 2026-03-16 13:35:50 -07:00
click-path-audit feat: add click-path-audit skill — finds state interaction bugs (#729) 2026-03-22 15:40:55 -07:00
clickhouse-io fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
code-tour feat: add code tour workflow 2026-04-05 15:42:58 -07:00
codebase-onboarding feat(skills): add codebase-onboarding skill (#553) 2026-03-20 00:20:20 -07:00
coding-standards docs: narrow coding standards scope 2026-04-05 20:05:50 -07:00
compose-multiplatform-patterns docs: tighten kotlin support examples 2026-03-10 20:53:39 -07:00
configure-ecc fix: integrate recent hook and docs PRs (#1905) 2026-05-14 21:37:28 -04:00
connections-optimizer refactor: extract social graph ranking core 2026-04-02 02:51:24 -07:00
content-engine refactor: consolidate writing voice rules 2026-04-02 15:45:19 -07:00
content-hash-cache-pattern fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
context-budget fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
continuous-agent-loop fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
continuous-learning fix: port continuous-learning observer fixes 2026-05-11 03:35:42 -04:00
continuous-learning-v2 fix(learning): add project registry maintenance 2026-05-19 12:51:18 -04:00
cost-aware-llm-pipeline fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
cost-tracking feat: salvage cost tracking and skill scout (#1815) 2026-05-12 14:23:46 -04:00
council feat: add council decision workflow 2026-04-05 15:27:54 -07:00
cpp-coding-standards fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
cpp-testing chore: replace external repo links with @username attribution 2026-03-03 12:32:35 -08:00
crosspost refactor: consolidate writing voice rules 2026-04-02 15:45:19 -07:00
csharp-testing feat: add C# and Dart language support 2026-04-02 17:48:43 -07:00
customer-billing-ops feat: add connected operator workflow skills 2026-04-01 02:37:42 -07:00
customs-trade-compliance fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
dart-flutter-patterns feat: add C# and Dart language support 2026-04-02 17:48:43 -07:00
dashboard-builder fix: resolve markdownlint violations 2026-04-08 15:40:26 -07:00
data-scraper-agent feat(skill): add data-scraper-agent — AI-powered public data collection for any source (#503) 2026-03-16 13:35:44 -07:00
data-throughput-accelerator feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
database-migrations feat(skills): add Kysely migration patterns to database-migrations (#731) 2026-03-22 15:40:53 -07:00
deep-research docs: salvage focused skill curation updates (#1723) 2026-05-11 05:03:34 -04:00
defi-amm-security fix: harden agent instruction surfaces 2026-04-30 09:39:54 -04:00
deployment-patterns fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
design-system fix(skills): add missing YAML frontmatter to 7 skills 2026-03-28 20:06:42 -04:00
django-celery feat: salvage Django Celery workflow (#1812) 2026-05-12 13:20:33 -04:00
django-patterns fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
django-security fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
django-tdd fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
django-verification fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
dmux-workflows security: remove supply chain risks, external promotions, and unauthorized credits 2026-03-21 18:10:05 -07:00
docker-patterns fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
documentation-lookup fix: address PR review — skill template (When to use, How it works, Examples), bun.lock, next build note, rust-reviewer CI note, doc-lookup privacy/uncertainty 2026-03-16 14:03:40 -07:00
dotnet-patterns feat: add C# and Dart language support 2026-04-02 17:48:43 -07:00
e2e-testing fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
ecc-guide docs: salvage ECC onboarding guide commands 2026-05-11 21:09:20 -04:00
ecc-tools-cost-audit feat: add ecc tools cost audit workflow 2026-04-05 15:19:56 -07:00
email-ops feat: add ECC-native operator workflow skills 2026-04-05 16:31:26 -07:00
energy-procurement fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
enterprise-agent-ops feat: deliver v1.8.0 harness reliability and parity updates 2026-03-04 14:48:06 -08:00
error-handling docs: salvage agent and motion workflow skills 2026-05-11 22:16:11 -04:00
eval-harness feat: deliver v1.8.0 harness reliability and parity updates 2026-03-04 14:48:06 -08:00
evm-token-decimals feat: add blockchain security skill bundle 2026-04-05 16:12:42 -07:00
exa-search docs: salvage focused skill curation updates (#1723) 2026-05-11 05:03:34 -04:00
fal-ai-media docs: salvage focused skill curation updates (#1723) 2026-05-11 05:03:34 -04:00
fastapi-patterns docs: salvage FastAPI review patterns 2026-05-11 07:44:26 -04:00
finance-billing-ops feat: add ECC-native operator workflow skills 2026-04-05 16:31:26 -07:00
flox-environments fix: bypass GateGuard file gates in subagents (#1710) 2026-05-11 01:51:24 -04:00
flutter-dart-code-review feat(agents): add flutter-reviewer agent and skill (#716) 2026-03-20 06:40:28 -07:00
foundation-models-on-device fix(skills): improve code examples in iOS 26 skills 2026-02-24 14:39:25 +09:00
frontend-a11y feat(skills): add frontend accessibility skill (#2048) 2026-05-25 14:09:14 -04:00
frontend-design-direction feat: salvage frontend design guidance (#1816) 2026-05-12 14:44:17 -04:00
frontend-patterns fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
frontend-slides docs: salvage focused stale PR contributions 2026-05-11 05:31:12 -04:00
fsharp-testing docs: salvage F# agent and language guidance 2026-05-11 21:43:17 -04:00
gan-style-harness fix: harden install planning and sync tracked catalogs 2026-03-31 22:57:48 -07:00
gateguard fix: add gateguard recovery escape hatch 2026-04-30 11:26:15 -04:00
git-workflow fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
github-ops feat: restore reusable ops skills from hermes branch 2026-04-05 13:30:55 -07:00
golang-patterns fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
golang-testing fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
google-workspace-ops feat: add connected operator workflow skills 2026-04-01 02:37:42 -07:00
healthcare-cdss-patterns fix: address Greptile review — frontmatter, CI safety, null guards 2026-03-27 04:02:44 +00:00
healthcare-emr-patterns fix: address Greptile review — frontmatter, CI safety, null guards 2026-03-27 04:02:44 +00:00
healthcare-eval-harness fix(docs): repair healthcare eval harness examples 2026-03-29 00:04:36 -04:00
healthcare-phi-compliance fix: address Greptile review — frontmatter, CI safety, null guards 2026-03-27 04:02:44 +00:00
hermes-imports feat(ecc2): finalize rc1 release surface 2026-04-28 22:10:04 -04:00
hexagonal-architecture fix: port ci and markdown cleanup from backlog 2026-04-02 17:09:21 -07:00
hipaa-compliance feat: add HIPAA entrypoint skill 2026-04-05 16:10:05 -07:00
homelab-network-readiness docs: salvage homelab network readiness skill 2026-05-11 13:24:05 -04:00
homelab-network-setup docs: salvage network operations patterns 2026-05-11 08:00:24 -04:00
homelab-pihole-dns feat: add homelab config skills (VLAN segmentation, Pi-hole DNS, WireGuard VPN) (#1838) 2026-05-12 21:20:53 -04:00
homelab-vlan-segmentation feat: add homelab config skills (VLAN segmentation, Pi-hole DNS, WireGuard VPN) (#1838) 2026-05-12 21:20:53 -04:00
homelab-wireguard-vpn feat: add homelab config skills (VLAN segmentation, Pi-hole DNS, WireGuard VPN) (#1838) 2026-05-12 21:20:53 -04:00
hookify-rules feat: restore reusable ops skills from hermes branch 2026-04-05 13:30:55 -07:00
inventory-demand-planning fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
investor-materials feat: add generic content and investor skills 2026-02-27 05:50:23 -08:00
investor-outreach refactor: consolidate writing voice rules 2026-04-02 15:45:19 -07:00
ios-icon-gen fix: bypass GateGuard file gates in subagents (#1710) 2026-05-11 01:51:24 -04:00
iterative-retrieval fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
ito-basket-compare feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
ito-data-atlas-agent feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
ito-market-intelligence feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
ito-trade-planner feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
java-coding-standards feat: add Quarkus handling 2026-05-12 09:30:26 -04:00
jira-integration fix: restore markdownlint baseline on main 2026-04-02 18:05:27 -07:00
jpa-patterns fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
knowledge-ops feat: restore reusable ops skills from hermes branch 2026-04-05 13:30:55 -07:00
kotlin-coroutines-flows docs: tighten kotlin support examples 2026-03-10 20:53:39 -07:00
kotlin-exposed-patterns feat: add kotlin commands and skill pack 2026-03-10 21:25:52 -07:00
kotlin-ktor-patterns feat: add kotlin commands and skill pack 2026-03-10 21:25:52 -07:00
kotlin-patterns feat: add kotlin commands and skill pack 2026-03-10 21:25:52 -07:00
kotlin-testing fix: align kotlin diagnostics and heading hierarchy 2026-03-12 23:53:23 -07:00
laravel-patterns feat: add laravel skills (#420) 2026-03-16 13:35:23 -07:00
laravel-plugin-discovery fix(skills): align laravel plugin discovery docs 2026-03-28 20:41:45 -04:00
laravel-security feat: add laravel skills (#420) 2026-03-16 13:35:23 -07:00
laravel-tdd feat: add laravel skills (#420) 2026-03-16 13:35:23 -07:00
laravel-verification fix(skills): add missing YAML frontmatter to 7 skills 2026-03-28 20:06:42 -04:00
latency-critical-systems feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
lead-intelligence refactor: extract social graph ranking core 2026-04-02 02:51:24 -07:00
liquid-glass-design fix(skills): improve code examples in iOS 26 skills 2026-02-24 14:39:25 +09:00
llm-trading-agent-security feat: add blockchain security skill bundle 2026-04-05 16:12:42 -07:00
logistics-exception-management fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
make-interfaces-feel-better feat: salvage frontend design guidance (#1816) 2026-05-12 14:44:17 -04:00
manim-video feat(skills): add brand voice and network ops lanes 2026-04-01 19:41:03 -07:00
market-research feat: add generic content and investor skills 2026-02-27 05:50:23 -08:00
marketing-campaign feat: add marketing campaign agent skill and command (#2031) 2026-05-25 14:10:35 -04:00
mcp-server-patterns docs: add capability surface selection guide 2026-04-06 14:21:28 -07:00
messages-ops feat: add ECC-native operator workflow skills 2026-04-05 16:31:26 -07:00
mle-workflow fix: tune machine learning workflow routing 2026-05-11 18:11:05 -04:00
motion-advanced docs: fix motion skill examples 2026-05-12 01:47:05 -04:00
motion-foundations docs: fix motion skill examples 2026-05-12 01:47:05 -04:00
motion-patterns docs: fix motion skill examples 2026-05-12 01:47:05 -04:00
motion-ui docs: salvage agent and motion workflow skills 2026-05-11 22:16:11 -04:00
mysql-patterns feat: salvage mysql patterns skill (#1733) 2026-05-11 09:14:33 -04:00
nanoclaw-repl feat: deliver v1.8.0 harness reliability and parity updates 2026-03-04 14:48:06 -08:00
nestjs-patterns feat: add nestjs development patterns 2026-04-02 18:27:51 -07:00
netmiko-ssh-automation feat: salvage network diagnostics skills (#1731) 2026-05-11 08:33:00 -04:00
network-bgp-diagnostics feat: salvage network diagnostics skills (#1731) 2026-05-11 08:33:00 -04:00
network-config-validation docs: salvage network operations patterns 2026-05-11 08:00:24 -04:00
network-interface-health docs: salvage network operations patterns 2026-05-11 08:00:24 -04:00
nextjs-turbopack fix(docs): wrap Next.js proxy reference link 2026-05-25 14:08:41 -04:00
nodejs-keccak256 feat: add blockchain security skill bundle 2026-04-05 16:12:42 -07:00
nutrient-document-processing security: remove supply chain risks, external promotions, and unauthorized credits 2026-03-21 18:10:05 -07:00
nuxt4-patterns feat: add nuxt 4 patterns skill (#702) 2026-03-20 04:44:31 -07:00
openclaw-persona-forge fix: sync skill frontmatter and catalog counts 2026-05-11 02:33:29 -04:00
opensource-pipeline feat(agents,skills): add opensource-pipeline — 3-agent workflow for safe public releases (#1036) 2026-03-31 14:06:23 -07:00
parallel-execution-optimizer feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
perl-patterns docs: tighten perl support guidance 2026-03-10 20:42:54 -07:00
perl-security docs: tighten perl support guidance 2026-03-10 20:42:54 -07:00
perl-testing feat: add Perl skills (patterns, security, testing) 2026-03-10 20:42:54 -07:00
plan-orchestrate feat: salvage plan orchestrate workflow 2026-05-11 20:40:39 -04:00
plankton-code-quality security: remove supply chain risks, external promotions, and unauthorized credits 2026-03-21 18:10:05 -07:00
postgres-patterns chore: replace external repo links with @username attribution 2026-03-03 12:32:35 -08:00
prediction-market-oracle-research feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
prediction-market-risk-review feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
prisma-patterns fix: integrate recent hook and docs PRs (#1905) 2026-05-14 21:37:28 -04:00
product-capability feat: add product capability planning lane 2026-04-05 16:58:02 -07:00
product-lens docs: separate product lens from capability planning 2026-04-05 16:59:54 -07:00
production-audit feat: salvage production audit skill (#1732) 2026-05-11 08:57:53 -04:00
production-scheduling fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
project-flow-ops feat: add connected operator workflow skills 2026-04-01 02:37:42 -07:00
prompt-optimizer feat: add Quarkus handling 2026-05-12 09:30:26 -04:00
python-patterns fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
python-testing fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
pytorch-patterns feat(skills): add pytorch-patterns skill (#550) 2026-03-19 20:49:34 -07:00
quality-nonconformance fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
quarkus-patterns docs: salvage Quarkus framework skills 2026-05-11 21:58:52 -04:00
quarkus-security docs: salvage Quarkus framework skills 2026-05-11 21:58:52 -04:00
quarkus-tdd docs: salvage Quarkus framework skills 2026-05-11 21:58:52 -04:00
quarkus-verification docs: salvage Quarkus framework skills 2026-05-11 21:58:52 -04:00
ralphinho-rfc-pipeline feat: deliver v1.8.0 harness reliability and parity updates 2026-03-04 14:48:06 -08:00
react-patterns Add React language track with agents, skills, rules, and commands (#2024) 2026-05-28 07:32:52 -04:00
react-performance Add React language track with agents, skills, rules, and commands (#2024) 2026-05-28 07:32:52 -04:00
react-testing Add React language track with agents, skills, rules, and commands (#2024) 2026-05-28 07:32:52 -04:00
recsys-pipeline-architect chore: clean up lint blockers 2026-05-16 03:30:30 -04:00
recursive-decision-ledger feat: publish ECC 2.0 skill pack surfaces 2026-05-25 14:02:05 -04:00
redis-patterns docs: salvage focused stale PR contributions 2026-05-11 05:31:12 -04:00
regex-vs-llm-structured-text fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
remotion-video-creation fix: port ci and markdown cleanup from backlog 2026-04-02 17:09:21 -07:00
repo-scan fix(skills): tighten repo-scan install flow 2026-03-28 20:29:51 -04:00
research-ops feat: add ECC-native operator workflow skills 2026-04-05 16:31:26 -07:00
returns-reverse-logistics fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
rules-distill fix: narrow unicode cleanup scope 2026-03-29 21:21:18 -04:00
rust-patterns fix: resolve Windows CI failures and markdown lint (#667) 2026-03-20 00:29:17 -07:00
rust-testing feat(agents): add Rust language support (#523) 2026-03-16 13:34:25 -07:00
safety-guard fix(skills): add missing YAML frontmatter to 7 skills 2026-03-28 20:06:42 -04:00
santa-method feat(skills): add santa-method - multi-agent adversarial verification (#760) 2026-03-22 15:41:04 -07:00
scientific-db-pubmed-database docs: salvage scientific research skills 2026-05-11 08:16:35 -04:00
scientific-db-uspto-database docs: salvage USPTO and gget skills 2026-05-11 11:43:35 -04:00
scientific-pkg-gget docs: salvage USPTO and gget skills 2026-05-11 11:43:35 -04:00
scientific-thinking-literature-review docs: salvage scientific research skills 2026-05-11 08:16:35 -04:00
scientific-thinking-scholar-evaluation docs: salvage scientific research skills 2026-05-11 08:16:35 -04:00
search-first docs: salvage focused skill curation updates (#1723) 2026-05-11 05:03:34 -04:00
security-bounty-hunter feat: add security bounty hunting skill 2026-04-05 16:13:53 -07:00
security-review docs: salvage focused skill curation updates (#1723) 2026-05-11 05:03:34 -04:00
security-scan fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
seo feat: add SEO audit support 2026-04-05 15:46:01 -07:00
skill-comply docs: salvage focused stale PR contributions 2026-05-11 05:31:12 -04:00
skill-scout feat: salvage cost tracking and skill scout (#1815) 2026-05-12 14:23:46 -04:00
skill-stocktake fix: sync skill frontmatter and catalog counts 2026-05-11 02:33:29 -04:00
social-graph-ranker refactor: extract social graph ranking core 2026-04-02 02:51:24 -07:00
social-publisher fix(docs): wrap integration reference links 2026-05-25 14:11:05 -04:00
springboot-patterns fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
springboot-security fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
springboot-tdd fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
springboot-verification fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
strategic-compact Delete skills/strategic-compact/suggest-compact.sh 2026-05-17 23:06:35 -04:00
swift-actor-persistence fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
swift-concurrency-6-2 fix(skills): improve code examples in iOS 26 skills 2026-02-24 14:39:25 +09:00
swift-protocol-di-testing fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
swiftui-patterns fix: correct SwiftUI skill ViewModel injection and Equatable comparison 2026-02-17 17:04:31 +02:00
tdd-workflow fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
team-builder feat(team-builder): use claude agents command for agent discovery (#1021) 2026-03-31 14:05:20 -07:00
terminal-ops feat: add ECC-native operator workflow skills 2026-04-05 16:31:26 -07:00
tinystruct-patterns Update/Add comprehensive tinystruct patterns reference documentation (#1895) 2026-05-14 21:18:19 -04:00
token-budget-advisor fix(skills): clarify token-budget-advisor triggers 2026-03-29 00:20:04 -04:00
ui-demo refactor: collapse legacy command bodies into skills 2026-04-01 02:25:42 -07:00
ui-to-vue docs: salvage ui-to-vue skill 2026-05-11 06:07:46 -04:00
uncloud docs(uncloud): add skill activation structure 2026-05-17 21:48:05 -04:00
unified-notifications-ops feat: add unified notifications ops 2026-04-05 15:33:26 -07:00
verification-loop fix: add origin metadata to skills for traceability 2026-02-23 19:00:57 +03:00
video-editing feat: add orchestration workflows and harness skills 2026-03-12 14:49:05 -07:00
videodb fix: narrow unicode cleanup scope 2026-03-29 21:21:18 -04:00
visa-doc-translate fix: harden unicode safety checks 2026-03-29 21:21:18 -04:00
vite-patterns docs: salvage focused stale PR contributions 2026-05-11 05:31:12 -04:00
windows-desktop-e2e feat(skills): enrich windows-desktop-e2e with trace/dpi/diagnostics (#1925) 2026-05-15 08:11:30 -04:00
workspace-surface-audit feat: add connected operator workflow skills 2026-04-01 02:37:42 -07:00
x-api docs: salvage focused skill curation updates (#1723) 2026-05-11 05:03:34 -04:00