gitextract_l9p2frou/ ├── .agents/ │ ├── plugins/ │ │ └── marketplace.json │ └── skills/ │ ├── agent-introspection-debugging/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── agent-sort/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── api-design/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── article-writing/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── backend-patterns/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── brand-voice/ │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ └── openai.yaml │ │ └── references/ │ │ └── voice-profile-schema.md │ ├── bun-runtime/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── coding-standards/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── content-engine/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── crosspost/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── deep-research/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── dmux-workflows/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── documentation-lookup/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── e2e-testing/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── eval-harness/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── everything-claude-code/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── exa-search/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── fal-ai-media/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── frontend-patterns/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── frontend-slides/ │ │ ├── SKILL.md │ │ ├── STYLE_PRESETS.md │ │ └── agents/ │ │ └── openai.yaml │ ├── investor-materials/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── investor-outreach/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── market-research/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── mcp-server-patterns/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── mle-workflow/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── nextjs-turbopack/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── product-capability/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── security-review/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── strategic-compact/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── tdd-workflow/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── verification-loop/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── video-editing/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ └── x-api/ │ ├── SKILL.md │ └── agents/ │ └── openai.yaml ├── .claude/ │ ├── commands/ │ │ ├── add-language-rules.md │ │ ├── database-migration.md │ │ └── feature-development.md │ ├── ecc-tools.json │ ├── enterprise/ │ │ └── controls.md │ ├── homunculus/ │ │ └── instincts/ │ │ └── inherited/ │ │ └── everything-claude-code-instincts.yaml │ ├── identity.json │ ├── package-manager.json │ ├── research/ │ │ └── everything-claude-code-research-playbook.md │ ├── rules/ │ │ ├── everything-claude-code-guardrails.md │ │ └── node.md │ ├── skills/ │ │ └── everything-claude-code/ │ │ └── SKILL.md │ └── team/ │ └── everything-claude-code-team-config.json ├── .claude-plugin/ │ ├── PLUGIN_SCHEMA_NOTES.md │ ├── README.md │ ├── marketplace.json │ └── plugin.json ├── .codebuddy/ │ ├── README.md │ ├── README.zh-CN.md │ ├── install.js │ ├── install.sh │ ├── uninstall.js │ └── uninstall.sh ├── .codex/ │ ├── AGENTS.md │ ├── agents/ │ │ ├── docs-researcher.toml │ │ ├── explorer.toml │ │ └── reviewer.toml │ └── config.toml ├── .codex-plugin/ │ ├── README.md │ └── plugin.json ├── .cursor/ │ ├── hooks/ │ │ ├── adapter.js │ │ ├── after-file-edit.js │ │ ├── after-mcp-execution.js │ │ ├── after-shell-execution.js │ │ ├── after-tab-file-edit.js │ │ ├── before-mcp-execution.js │ │ ├── before-read-file.js │ │ ├── before-shell-execution.js │ │ ├── before-submit-prompt.js │ │ ├── before-tab-file-read.js │ │ ├── pre-compact.js │ │ ├── session-end.js │ │ ├── session-start.js │ │ ├── stop.js │ │ ├── subagent-start.js │ │ └── subagent-stop.js │ ├── hooks.json │ ├── rules/ │ │ ├── common-agents.md │ │ ├── common-coding-style.md │ │ ├── common-development-workflow.md │ │ ├── common-git-workflow.md │ │ ├── common-hooks.md │ │ ├── common-patterns.md │ │ ├── common-performance.md │ │ ├── common-security.md │ │ ├── common-testing.md │ │ ├── golang-coding-style.md │ │ ├── golang-hooks.md │ │ ├── golang-patterns.md │ │ ├── golang-security.md │ │ ├── golang-testing.md │ │ ├── kotlin-coding-style.md │ │ ├── kotlin-hooks.md │ │ ├── kotlin-patterns.md │ │ ├── kotlin-security.md │ │ ├── kotlin-testing.md │ │ ├── php-coding-style.md │ │ ├── php-hooks.md │ │ ├── php-patterns.md │ │ ├── php-security.md │ │ ├── php-testing.md │ │ ├── python-coding-style.md │ │ ├── python-hooks.md │ │ ├── python-patterns.md │ │ ├── python-security.md │ │ ├── python-testing.md │ │ ├── swift-coding-style.md │ │ ├── swift-hooks.md │ │ ├── swift-patterns.md │ │ ├── swift-security.md │ │ ├── swift-testing.md │ │ ├── typescript-coding-style.md │ │ ├── typescript-hooks.md │ │ ├── typescript-patterns.md │ │ ├── typescript-security.md │ │ └── typescript-testing.md │ └── skills/ │ ├── article-writing/ │ │ └── SKILL.md │ ├── bun-runtime/ │ │ └── SKILL.md │ ├── content-engine/ │ │ └── SKILL.md │ ├── documentation-lookup/ │ │ └── SKILL.md │ ├── frontend-slides/ │ │ ├── SKILL.md │ │ └── STYLE_PRESETS.md │ ├── investor-materials/ │ │ └── SKILL.md │ ├── investor-outreach/ │ │ └── SKILL.md │ ├── market-research/ │ │ └── SKILL.md │ ├── mcp-server-patterns/ │ │ └── SKILL.md │ └── nextjs-turbopack/ │ └── SKILL.md ├── .gemini/ │ └── GEMINI.md ├── .github/ │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── copilot-task.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── copilot-instructions.md │ ├── dependabot.yml │ ├── prompts/ │ │ ├── build-fix.prompt.md │ │ ├── code-review.prompt.md │ │ ├── plan.prompt.md │ │ ├── refactor.prompt.md │ │ ├── security-review.prompt.md │ │ └── tdd.prompt.md │ ├── release.yml │ └── workflows/ │ ├── ci.yml │ ├── maintenance.yml │ ├── monthly-metrics.yml │ ├── release.yml │ ├── reusable-release.yml │ ├── reusable-test.yml │ ├── reusable-validate.yml │ └── supply-chain-watch.yml ├── .gitignore ├── .kiro/ │ ├── README.md │ ├── agents/ │ │ ├── architect.json │ │ ├── architect.md │ │ ├── build-error-resolver.json │ │ ├── build-error-resolver.md │ │ ├── chief-of-staff.json │ │ ├── chief-of-staff.md │ │ ├── code-reviewer.json │ │ ├── code-reviewer.md │ │ ├── database-reviewer.json │ │ ├── database-reviewer.md │ │ ├── doc-updater.json │ │ ├── doc-updater.md │ │ ├── e2e-runner.json │ │ ├── e2e-runner.md │ │ ├── go-build-resolver.json │ │ ├── go-build-resolver.md │ │ ├── go-reviewer.json │ │ ├── go-reviewer.md │ │ ├── harness-optimizer.json │ │ ├── harness-optimizer.md │ │ ├── loop-operator.json │ │ ├── loop-operator.md │ │ ├── planner.json │ │ ├── planner.md │ │ ├── python-reviewer.json │ │ ├── python-reviewer.md │ │ ├── refactor-cleaner.json │ │ ├── refactor-cleaner.md │ │ ├── security-reviewer.json │ │ ├── security-reviewer.md │ │ ├── tdd-guide.json │ │ └── tdd-guide.md │ ├── docs/ │ │ ├── longform-guide.md │ │ ├── security-guide.md │ │ └── shortform-guide.md │ ├── hooks/ │ │ ├── README.md │ │ ├── auto-format.kiro.hook │ │ ├── code-review-on-write.kiro.hook │ │ ├── console-log-check.kiro.hook │ │ ├── doc-file-warning.kiro.hook │ │ ├── extract-patterns.kiro.hook │ │ ├── git-push-review.kiro.hook │ │ ├── quality-gate.kiro.hook │ │ ├── session-summary.kiro.hook │ │ ├── tdd-reminder.kiro.hook │ │ └── typecheck-on-edit.kiro.hook │ ├── install.sh │ ├── scripts/ │ │ ├── format.sh │ │ └── quality-gate.sh │ ├── settings/ │ │ └── mcp.json.example │ ├── skills/ │ │ ├── agentic-engineering/ │ │ │ └── SKILL.md │ │ ├── api-design/ │ │ │ └── SKILL.md │ │ ├── backend-patterns/ │ │ │ └── SKILL.md │ │ ├── coding-standards/ │ │ │ └── SKILL.md │ │ ├── database-migrations/ │ │ │ └── SKILL.md │ │ ├── deployment-patterns/ │ │ │ └── SKILL.md │ │ ├── docker-patterns/ │ │ │ └── SKILL.md │ │ ├── e2e-testing/ │ │ │ └── SKILL.md │ │ ├── frontend-patterns/ │ │ │ └── SKILL.md │ │ ├── golang-patterns/ │ │ │ └── SKILL.md │ │ ├── golang-testing/ │ │ │ └── SKILL.md │ │ ├── postgres-patterns/ │ │ │ └── SKILL.md │ │ ├── python-patterns/ │ │ │ └── SKILL.md │ │ ├── python-testing/ │ │ │ └── SKILL.md │ │ ├── search-first/ │ │ │ └── SKILL.md │ │ ├── security-review/ │ │ │ └── SKILL.md │ │ ├── tdd-workflow/ │ │ │ └── SKILL.md │ │ └── verification-loop/ │ │ └── SKILL.md │ └── steering/ │ ├── coding-style.md │ ├── dev-mode.md │ ├── development-workflow.md │ ├── git-workflow.md │ ├── golang-patterns.md │ ├── lessons-learned.md │ ├── patterns.md │ ├── performance.md │ ├── python-patterns.md │ ├── research-mode.md │ ├── review-mode.md │ ├── security.md │ ├── swift-patterns.md │ ├── testing.md │ ├── typescript-patterns.md │ └── typescript-security.md ├── .markdownlint.json ├── .mcp.json ├── .npmignore ├── .opencode/ │ ├── .npmignore │ ├── MIGRATION.md │ ├── README.md │ ├── commands/ │ │ ├── build-fix.md │ │ ├── checkpoint.md │ │ ├── code-review.md │ │ ├── e2e.md │ │ ├── eval.md │ │ ├── evolve.md │ │ ├── go-build.md │ │ ├── go-review.md │ │ ├── go-test.md │ │ ├── harness-audit.md │ │ ├── instinct-export.md │ │ ├── instinct-import.md │ │ ├── instinct-status.md │ │ ├── learn.md │ │ ├── loop-start.md │ │ ├── loop-status.md │ │ ├── model-route.md │ │ ├── orchestrate.md │ │ ├── plan.md │ │ ├── projects.md │ │ ├── promote.md │ │ ├── quality-gate.md │ │ ├── refactor-clean.md │ │ ├── rust-build.md │ │ ├── rust-review.md │ │ ├── rust-test.md │ │ ├── security-scan.md │ │ ├── security.md │ │ ├── setup-pm.md │ │ ├── skill-create.md │ │ ├── tdd.md │ │ ├── test-coverage.md │ │ ├── update-codemaps.md │ │ ├── update-docs.md │ │ └── verify.md │ ├── index.ts │ ├── instructions/ │ │ └── INSTRUCTIONS.md │ ├── opencode.json │ ├── package.json │ ├── plugins/ │ │ ├── ecc-hooks.ts │ │ ├── index.ts │ │ └── lib/ │ │ └── changed-files-store.ts │ ├── prompts/ │ │ └── agents/ │ │ ├── architect.txt │ │ ├── build-error-resolver.txt │ │ ├── code-reviewer.txt │ │ ├── cpp-build-resolver.txt │ │ ├── cpp-reviewer.txt │ │ ├── database-reviewer.txt │ │ ├── doc-updater.txt │ │ ├── docs-lookup.txt │ │ ├── e2e-runner.txt │ │ ├── go-build-resolver.txt │ │ ├── go-reviewer.txt │ │ ├── harness-optimizer.txt │ │ ├── java-build-resolver.txt │ │ ├── java-reviewer.txt │ │ ├── kotlin-build-resolver.txt │ │ ├── kotlin-reviewer.txt │ │ ├── loop-operator.txt │ │ ├── planner.txt │ │ ├── python-reviewer.txt │ │ ├── refactor-cleaner.txt │ │ ├── rust-build-resolver.txt │ │ ├── rust-reviewer.txt │ │ ├── security-reviewer.txt │ │ └── tdd-guide.txt │ ├── tools/ │ │ ├── changed-files.ts │ │ ├── check-coverage.ts │ │ ├── format-code.ts │ │ ├── git-summary.ts │ │ ├── index.ts │ │ ├── lint-check.ts │ │ ├── run-tests.ts │ │ └── security-audit.ts │ └── tsconfig.json ├── .prettierrc ├── .qwen/ │ └── QWEN.md ├── .tool-versions ├── .trae/ │ ├── README.md │ ├── README.zh-CN.md │ ├── install.sh │ └── uninstall.sh ├── .vscode/ │ └── settings.json ├── .yarnrc.yml ├── .zed/ │ └── settings.json ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── COMMANDS-QUICK-REF.md ├── CONTRIBUTING.md ├── EVALUATION.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── REPO-ASSESSMENT.md ├── RULES.md ├── SECURITY.md ├── SOUL.md ├── SPONSORING.md ├── SPONSORS.md ├── TROUBLESHOOTING.md ├── VERSION ├── WORKING-CONTEXT.md ├── agent.yaml ├── agents/ │ ├── a11y-architect.md │ ├── architect.md │ ├── build-error-resolver.md │ ├── chief-of-staff.md │ ├── code-architect.md │ ├── code-explorer.md │ ├── code-reviewer.md │ ├── code-simplifier.md │ ├── comment-analyzer.md │ ├── conversation-analyzer.md │ ├── cpp-build-resolver.md │ ├── cpp-reviewer.md │ ├── csharp-reviewer.md │ ├── dart-build-resolver.md │ ├── database-reviewer.md │ ├── django-build-resolver.md │ ├── django-reviewer.md │ ├── doc-updater.md │ ├── docs-lookup.md │ ├── e2e-runner.md │ ├── fastapi-reviewer.md │ ├── flutter-reviewer.md │ ├── fsharp-reviewer.md │ ├── gan-evaluator.md │ ├── gan-generator.md │ ├── gan-planner.md │ ├── go-build-resolver.md │ ├── go-reviewer.md │ ├── harmonyos-app-resolver.md │ ├── harness-optimizer.md │ ├── healthcare-reviewer.md │ ├── homelab-architect.md │ ├── java-build-resolver.md │ ├── java-reviewer.md │ ├── kotlin-build-resolver.md │ ├── kotlin-reviewer.md │ ├── loop-operator.md │ ├── mle-reviewer.md │ ├── network-architect.md │ ├── network-config-reviewer.md │ ├── network-troubleshooter.md │ ├── opensource-forker.md │ ├── opensource-packager.md │ ├── opensource-sanitizer.md │ ├── performance-optimizer.md │ ├── planner.md │ ├── pr-test-analyzer.md │ ├── python-reviewer.md │ ├── pytorch-build-resolver.md │ ├── refactor-cleaner.md │ ├── rust-build-resolver.md │ ├── rust-reviewer.md │ ├── security-reviewer.md │ ├── seo-specialist.md │ ├── silent-failure-hunter.md │ ├── swift-build-resolver.md │ ├── swift-reviewer.md │ ├── tdd-guide.md │ ├── type-design-analyzer.md │ └── typescript-reviewer.md ├── commands/ │ ├── aside.md │ ├── auto-update.md │ ├── build-fix.md │ ├── checkpoint.md │ ├── code-review.md │ ├── cost-report.md │ ├── cpp-build.md │ ├── cpp-review.md │ ├── cpp-test.md │ ├── ecc-guide.md │ ├── evolve.md │ ├── fastapi-review.md │ ├── feature-dev.md │ ├── flutter-build.md │ ├── flutter-review.md │ ├── flutter-test.md │ ├── gan-build.md │ ├── gan-design.md │ ├── go-build.md │ ├── go-review.md │ ├── go-test.md │ ├── gradle-build.md │ ├── harness-audit.md │ ├── hookify-configure.md │ ├── hookify-help.md │ ├── hookify-list.md │ ├── hookify.md │ ├── instinct-export.md │ ├── instinct-import.md │ ├── instinct-status.md │ ├── jira.md │ ├── kotlin-build.md │ ├── kotlin-review.md │ ├── kotlin-test.md │ ├── learn-eval.md │ ├── learn.md │ ├── loop-start.md │ ├── loop-status.md │ ├── model-route.md │ ├── multi-backend.md │ ├── multi-execute.md │ ├── multi-frontend.md │ ├── multi-plan.md │ ├── multi-workflow.md │ ├── plan-prd.md │ ├── plan.md │ ├── pm2.md │ ├── pr.md │ ├── project-init.md │ ├── projects.md │ ├── promote.md │ ├── prp-commit.md │ ├── prp-implement.md │ ├── prp-plan.md │ ├── prp-pr.md │ ├── prp-prd.md │ ├── prune.md │ ├── python-review.md │ ├── quality-gate.md │ ├── refactor-clean.md │ ├── resume-session.md │ ├── review-pr.md │ ├── rust-build.md │ ├── rust-review.md │ ├── rust-test.md │ ├── santa-loop.md │ ├── save-session.md │ ├── security-scan.md │ ├── sessions.md │ ├── setup-pm.md │ ├── skill-create.md │ ├── skill-health.md │ ├── test-coverage.md │ ├── update-codemaps.md │ └── update-docs.md ├── commitlint.config.js ├── config/ │ └── project-stack-mappings.json ├── contexts/ │ ├── dev.md │ ├── research.md │ └── review.md ├── docs/ │ ├── ANTIGRAVITY-GUIDE.md │ ├── ARCHITECTURE-IMPROVEMENTS.md │ ├── COMMAND-AGENT-MAP.md │ ├── COMMAND-REGISTRY.json │ ├── ECC-2.0-GA-ROADMAP.md │ ├── ECC-2.0-REFERENCE-ARCHITECTURE.md │ ├── ECC-2.0-SESSION-ADAPTER-DISCOVERY.md │ ├── HERMES-OPENCLAW-MIGRATION.md │ ├── HERMES-SETUP.md │ ├── JOYCODE-GUIDE.md │ ├── MANUAL-ADAPTATION-GUIDE.md │ ├── MEGA-PLAN-REPO-PROMPTS-2026-03-12.md │ ├── PHASE1-ISSUE-BUNDLE-2026-03-12.md │ ├── PLAN-PRD-PATTERN.md │ ├── PR-399-REVIEW-2026-03-12.md │ ├── PR-QUEUE-TRIAGE-2026-03-13.md │ ├── QWEN-GUIDE.md │ ├── SELECTIVE-INSTALL-ARCHITECTURE.md │ ├── SELECTIVE-INSTALL-DESIGN.md │ ├── SESSION-ADAPTER-CONTRACT.md │ ├── SKILL-DEVELOPMENT-GUIDE.md │ ├── SKILL-PLACEMENT-POLICY.md │ ├── TROUBLESHOOTING.md │ ├── architecture/ │ │ ├── agentshield-enterprise-research-roadmap.md │ │ ├── cross-harness.md │ │ ├── discussion-response-playbook.md │ │ ├── evaluator-rag-prototype.md │ │ ├── harness-adapter-compliance.md │ │ ├── hud-status-session-control.md │ │ ├── observability-readiness.md │ │ └── progress-sync-contract.md │ ├── business/ │ │ ├── metrics-and-sponsorship.md │ │ └── social-launch-copy.md │ ├── capability-surface-selection.md │ ├── continuous-learning-v2-spec.md │ ├── drafts/ │ │ └── release-1.10.1-announcement.md │ ├── examples/ │ │ ├── product-capability-template.md │ │ └── project-guidelines-template.md │ ├── fixes/ │ │ ├── HOOK-FIX-20260421-ADDENDUM.md │ │ ├── HOOK-FIX-20260421.md │ │ ├── INSTALL-HOOK-WRAPPER-FIX-20260422.md │ │ ├── PATCH-SETTINGS-SIMPLE-FIX-20260422.md │ │ ├── apply-hook-fix.sh │ │ ├── install_hook_wrapper.ps1 │ │ └── patch_settings_cl_v2_simple.ps1 │ ├── hook-bug-workarounds.md │ ├── ja-JP/ │ │ ├── AGENTS.md │ │ ├── CHANGELOG.md │ │ ├── CLAUDE.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── COMMANDS-QUICK-REF.md │ │ ├── CONTRIBUTING.md │ │ ├── EVALUATION.md │ │ ├── GLOSSARY.md │ │ ├── README.md │ │ ├── RULES.md │ │ ├── SECURITY.md │ │ ├── SOUL.md │ │ ├── SPONSORING.md │ │ ├── SPONSORS.md │ │ ├── TROUBLESHOOTING.md │ │ ├── agents/ │ │ │ ├── a11y-architect.md │ │ │ ├── architect.md │ │ │ ├── build-error-resolver.md │ │ │ ├── chief-of-staff.md │ │ │ ├── code-architect.md │ │ │ ├── code-explorer.md │ │ │ ├── code-reviewer.md │ │ │ ├── code-simplifier.md │ │ │ ├── comment-analyzer.md │ │ │ ├── conversation-analyzer.md │ │ │ ├── cpp-build-resolver.md │ │ │ ├── cpp-reviewer.md │ │ │ ├── csharp-reviewer.md │ │ │ ├── dart-build-resolver.md │ │ │ ├── database-reviewer.md │ │ │ ├── django-build-resolver.md │ │ │ ├── django-reviewer.md │ │ │ ├── doc-updater.md │ │ │ ├── docs-lookup.md │ │ │ ├── e2e-runner.md │ │ │ ├── fastapi-reviewer.md │ │ │ ├── flutter-reviewer.md │ │ │ ├── fsharp-reviewer.md │ │ │ ├── gan-evaluator.md │ │ │ ├── gan-generator.md │ │ │ ├── gan-planner.md │ │ │ ├── go-build-resolver.md │ │ │ ├── go-reviewer.md │ │ │ ├── harmonyos-app-resolver.md │ │ │ ├── harness-optimizer.md │ │ │ ├── healthcare-reviewer.md │ │ │ ├── homelab-architect.md │ │ │ ├── java-build-resolver.md │ │ │ ├── java-reviewer.md │ │ │ ├── kotlin-build-resolver.md │ │ │ ├── kotlin-reviewer.md │ │ │ ├── loop-operator.md │ │ │ ├── mle-reviewer.md │ │ │ ├── network-architect.md │ │ │ ├── network-config-reviewer.md │ │ │ ├── network-troubleshooter.md │ │ │ ├── opensource-forker.md │ │ │ ├── opensource-packager.md │ │ │ ├── opensource-sanitizer.md │ │ │ ├── performance-optimizer.md │ │ │ ├── planner.md │ │ │ ├── pr-test-analyzer.md │ │ │ ├── python-reviewer.md │ │ │ ├── pytorch-build-resolver.md │ │ │ ├── refactor-cleaner.md │ │ │ ├── rust-build-resolver.md │ │ │ ├── rust-reviewer.md │ │ │ ├── security-reviewer.md │ │ │ ├── seo-specialist.md │ │ │ ├── silent-failure-hunter.md │ │ │ ├── swift-build-resolver.md │ │ │ ├── swift-reviewer.md │ │ │ ├── tdd-guide.md │ │ │ ├── type-design-analyzer.md │ │ │ └── typescript-reviewer.md │ │ ├── commands/ │ │ │ ├── README.md │ │ │ ├── aside.md │ │ │ ├── auto-update.md │ │ │ ├── build-fix.md │ │ │ ├── checkpoint.md │ │ │ ├── claw.md │ │ │ ├── code-review.md │ │ │ ├── context-budget.md │ │ │ ├── cost-report.md │ │ │ ├── cpp-build.md │ │ │ ├── cpp-review.md │ │ │ ├── cpp-test.md │ │ │ ├── devfleet.md │ │ │ ├── docs.md │ │ │ ├── e2e.md │ │ │ ├── ecc-guide.md │ │ │ ├── eval.md │ │ │ ├── evolve.md │ │ │ ├── fastapi-review.md │ │ │ ├── feature-dev.md │ │ │ ├── flutter-build.md │ │ │ ├── flutter-review.md │ │ │ ├── flutter-test.md │ │ │ ├── gan-build.md │ │ │ ├── gan-design.md │ │ │ ├── go-build.md │ │ │ ├── go-review.md │ │ │ ├── go-test.md │ │ │ ├── gradle-build.md │ │ │ ├── harness-audit.md │ │ │ ├── hookify-configure.md │ │ │ ├── hookify-help.md │ │ │ ├── hookify-list.md │ │ │ ├── hookify.md │ │ │ ├── instinct-export.md │ │ │ ├── instinct-import.md │ │ │ ├── instinct-status.md │ │ │ ├── jira.md │ │ │ ├── kotlin-build.md │ │ │ ├── kotlin-review.md │ │ │ ├── kotlin-test.md │ │ │ ├── learn-eval.md │ │ │ ├── learn.md │ │ │ ├── loop-start.md │ │ │ ├── loop-status.md │ │ │ ├── model-route.md │ │ │ ├── multi-backend.md │ │ │ ├── multi-execute.md │ │ │ ├── multi-frontend.md │ │ │ ├── multi-plan.md │ │ │ ├── multi-workflow.md │ │ │ ├── orchestrate.md │ │ │ ├── plan-prd.md │ │ │ ├── plan.md │ │ │ ├── pm2.md │ │ │ ├── pr.md │ │ │ ├── project-init.md │ │ │ ├── projects.md │ │ │ ├── promote.md │ │ │ ├── prompt-optimize.md │ │ │ ├── prp-commit.md │ │ │ ├── prp-implement.md │ │ │ ├── prp-plan.md │ │ │ ├── prp-pr.md │ │ │ ├── prp-prd.md │ │ │ ├── prune.md │ │ │ ├── python-review.md │ │ │ ├── quality-gate.md │ │ │ ├── refactor-clean.md │ │ │ ├── resume-session.md │ │ │ ├── review-pr.md │ │ │ ├── rules-distill.md │ │ │ ├── rust-build.md │ │ │ ├── rust-review.md │ │ │ ├── rust-test.md │ │ │ ├── santa-loop.md │ │ │ ├── save-session.md │ │ │ ├── security-scan.md │ │ │ ├── sessions.md │ │ │ ├── setup-pm.md │ │ │ ├── skill-create.md │ │ │ ├── skill-health.md │ │ │ ├── tdd.md │ │ │ ├── test-coverage.md │ │ │ ├── update-codemaps.md │ │ │ ├── update-docs.md │ │ │ └── verify.md │ │ ├── contexts/ │ │ │ ├── dev.md │ │ │ ├── research.md │ │ │ └── review.md │ │ ├── examples/ │ │ │ ├── CLAUDE.md │ │ │ ├── django-api-CLAUDE.md │ │ │ ├── go-microservice-CLAUDE.md │ │ │ ├── harmonyos-app-CLAUDE.md │ │ │ ├── laravel-api-CLAUDE.md │ │ │ ├── rust-api-CLAUDE.md │ │ │ ├── saas-nextjs-CLAUDE.md │ │ │ └── user-CLAUDE.md │ │ ├── hooks/ │ │ │ └── README.md │ │ ├── plugins/ │ │ │ └── README.md │ │ ├── rules/ │ │ │ ├── README.md │ │ │ ├── angular/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── arkts/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── common/ │ │ │ │ ├── agents.md │ │ │ │ ├── code-review.md │ │ │ │ ├── coding-style.md │ │ │ │ ├── development-workflow.md │ │ │ │ ├── git-workflow.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── performance.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── cpp/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── csharp/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── dart/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── fsharp/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── golang/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── java/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── kotlin/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── perl/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── php/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── python/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── fastapi.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── ruby/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── rust/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── swift/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── typescript/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ └── web/ │ │ │ ├── coding-style.md │ │ │ ├── design-quality.md │ │ │ ├── hooks.md │ │ │ ├── patterns.md │ │ │ ├── performance.md │ │ │ ├── security.md │ │ │ └── testing.md │ │ ├── skills/ │ │ │ ├── README.md │ │ │ ├── accessibility/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-architecture-audit/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-eval/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-harness-construction/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-introspection-debugging/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-payment-x402/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-sort/ │ │ │ │ └── SKILL.md │ │ │ ├── agentic-engineering/ │ │ │ │ └── SKILL.md │ │ │ ├── agentic-os/ │ │ │ │ └── SKILL.md │ │ │ ├── ai-first-engineering/ │ │ │ │ └── SKILL.md │ │ │ ├── ai-regression-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── android-clean-architecture/ │ │ │ │ └── SKILL.md │ │ │ ├── angular-developer/ │ │ │ │ └── SKILL.md │ │ │ ├── api-connector-builder/ │ │ │ │ └── SKILL.md │ │ │ ├── api-design/ │ │ │ │ └── SKILL.md │ │ │ ├── architecture-decision-records/ │ │ │ │ └── SKILL.md │ │ │ ├── article-writing/ │ │ │ │ └── SKILL.md │ │ │ ├── automation-audit-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── autonomous-agent-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── autonomous-loops/ │ │ │ │ └── SKILL.md │ │ │ ├── backend-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── benchmark/ │ │ │ │ └── SKILL.md │ │ │ ├── blueprint/ │ │ │ │ └── SKILL.md │ │ │ ├── brand-voice/ │ │ │ │ └── SKILL.md │ │ │ ├── browser-qa/ │ │ │ │ └── SKILL.md │ │ │ ├── bun-runtime/ │ │ │ │ └── SKILL.md │ │ │ ├── canary-watch/ │ │ │ │ └── SKILL.md │ │ │ ├── carrier-relationship-management/ │ │ │ │ └── SKILL.md │ │ │ ├── cisco-ios-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── ck/ │ │ │ │ └── SKILL.md │ │ │ ├── claude-devfleet/ │ │ │ │ └── SKILL.md │ │ │ ├── click-path-audit/ │ │ │ │ └── SKILL.md │ │ │ ├── clickhouse-io/ │ │ │ │ └── SKILL.md │ │ │ ├── code-tour/ │ │ │ │ └── SKILL.md │ │ │ ├── codebase-onboarding/ │ │ │ │ └── SKILL.md │ │ │ ├── coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── compose-multiplatform-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── configure-ecc/ │ │ │ │ └── SKILL.md │ │ │ ├── connections-optimizer/ │ │ │ │ └── SKILL.md │ │ │ ├── content-engine/ │ │ │ │ └── SKILL.md │ │ │ ├── content-hash-cache-pattern/ │ │ │ │ └── SKILL.md │ │ │ ├── context-budget/ │ │ │ │ └── SKILL.md │ │ │ ├── continuous-agent-loop/ │ │ │ │ └── SKILL.md │ │ │ ├── continuous-learning/ │ │ │ │ └── SKILL.md │ │ │ ├── continuous-learning-v2/ │ │ │ │ ├── SKILL.md │ │ │ │ └── agents/ │ │ │ │ └── observer.md │ │ │ ├── cost-aware-llm-pipeline/ │ │ │ │ └── SKILL.md │ │ │ ├── cost-tracking/ │ │ │ │ └── SKILL.md │ │ │ ├── council/ │ │ │ │ └── SKILL.md │ │ │ ├── cpp-coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── cpp-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── crosspost/ │ │ │ │ └── SKILL.md │ │ │ ├── csharp-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── customer-billing-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── customs-trade-compliance/ │ │ │ │ └── SKILL.md │ │ │ ├── dart-flutter-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── dashboard-builder/ │ │ │ │ └── SKILL.md │ │ │ ├── data-scraper-agent/ │ │ │ │ └── SKILL.md │ │ │ ├── database-migrations/ │ │ │ │ └── SKILL.md │ │ │ ├── deep-research/ │ │ │ │ └── SKILL.md │ │ │ ├── defi-amm-security/ │ │ │ │ └── SKILL.md │ │ │ ├── deployment-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── design-system/ │ │ │ │ └── SKILL.md │ │ │ ├── django-celery/ │ │ │ │ └── SKILL.md │ │ │ ├── django-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── django-security/ │ │ │ │ └── SKILL.md │ │ │ ├── django-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── django-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── dmux-workflows/ │ │ │ │ └── SKILL.md │ │ │ ├── docker-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── documentation-lookup/ │ │ │ │ └── SKILL.md │ │ │ ├── dotnet-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── e2e-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── ecc-guide/ │ │ │ │ └── SKILL.md │ │ │ ├── ecc-tools-cost-audit/ │ │ │ │ └── SKILL.md │ │ │ ├── email-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── energy-procurement/ │ │ │ │ └── SKILL.md │ │ │ ├── enterprise-agent-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── error-handling/ │ │ │ │ └── SKILL.md │ │ │ ├── eval-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── evm-token-decimals/ │ │ │ │ └── SKILL.md │ │ │ ├── exa-search/ │ │ │ │ └── SKILL.md │ │ │ ├── fal-ai-media/ │ │ │ │ └── SKILL.md │ │ │ ├── fastapi-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── finance-billing-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── flox-environments/ │ │ │ │ └── SKILL.md │ │ │ ├── flutter-dart-code-review/ │ │ │ │ └── SKILL.md │ │ │ ├── foundation-models-on-device/ │ │ │ │ └── SKILL.md │ │ │ ├── frontend-design-direction/ │ │ │ │ └── SKILL.md │ │ │ ├── frontend-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── frontend-slides/ │ │ │ │ ├── SKILL.md │ │ │ │ └── STYLE_PRESETS.md │ │ │ ├── fsharp-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── gan-style-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── gateguard/ │ │ │ │ └── SKILL.md │ │ │ ├── git-workflow/ │ │ │ │ └── SKILL.md │ │ │ ├── github-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── golang-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── golang-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── google-workspace-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── healthcare-cdss-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── healthcare-emr-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── healthcare-eval-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── healthcare-phi-compliance/ │ │ │ │ └── SKILL.md │ │ │ ├── hermes-imports/ │ │ │ │ └── SKILL.md │ │ │ ├── hexagonal-architecture/ │ │ │ │ └── SKILL.md │ │ │ ├── hipaa-compliance/ │ │ │ │ └── SKILL.md │ │ │ ├── homelab-network-readiness/ │ │ │ │ └── SKILL.md │ │ │ ├── homelab-network-setup/ │ │ │ │ └── SKILL.md │ │ │ ├── homelab-pihole-dns/ │ │ │ │ └── SKILL.md │ │ │ ├── homelab-vlan-segmentation/ │ │ │ │ └── SKILL.md │ │ │ ├── homelab-wireguard-vpn/ │ │ │ │ └── SKILL.md │ │ │ ├── hookify-rules/ │ │ │ │ └── SKILL.md │ │ │ ├── inventory-demand-planning/ │ │ │ │ └── SKILL.md │ │ │ ├── investor-materials/ │ │ │ │ └── SKILL.md │ │ │ ├── investor-outreach/ │ │ │ │ └── SKILL.md │ │ │ ├── ios-icon-gen/ │ │ │ │ └── SKILL.md │ │ │ ├── iterative-retrieval/ │ │ │ │ └── SKILL.md │ │ │ ├── java-coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── jira-integration/ │ │ │ │ └── SKILL.md │ │ │ ├── jpa-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── knowledge-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-coroutines-flows/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-exposed-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-ktor-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-plugin-discovery/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-security/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── lead-intelligence/ │ │ │ │ └── SKILL.md │ │ │ ├── liquid-glass-design/ │ │ │ │ └── SKILL.md │ │ │ ├── llm-trading-agent-security/ │ │ │ │ └── SKILL.md │ │ │ ├── logistics-exception-management/ │ │ │ │ └── SKILL.md │ │ │ ├── make-interfaces-feel-better/ │ │ │ │ └── SKILL.md │ │ │ ├── manim-video/ │ │ │ │ └── SKILL.md │ │ │ ├── market-research/ │ │ │ │ └── SKILL.md │ │ │ ├── mcp-server-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── messages-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── mle-workflow/ │ │ │ │ └── SKILL.md │ │ │ ├── motion-advanced/ │ │ │ │ └── SKILL.md │ │ │ ├── motion-foundations/ │ │ │ │ └── SKILL.md │ │ │ ├── motion-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── motion-ui/ │ │ │ │ └── SKILL.md │ │ │ ├── mysql-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── nanoclaw-repl/ │ │ │ │ └── SKILL.md │ │ │ ├── nestjs-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── netmiko-ssh-automation/ │ │ │ │ └── SKILL.md │ │ │ ├── network-bgp-diagnostics/ │ │ │ │ └── SKILL.md │ │ │ ├── network-config-validation/ │ │ │ │ └── SKILL.md │ │ │ ├── network-interface-health/ │ │ │ │ └── SKILL.md │ │ │ ├── nextjs-turbopack/ │ │ │ │ └── SKILL.md │ │ │ ├── nodejs-keccak256/ │ │ │ │ └── SKILL.md │ │ │ ├── nutrient-document-processing/ │ │ │ │ └── SKILL.md │ │ │ ├── nuxt4-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── openclaw-persona-forge/ │ │ │ │ └── SKILL.md │ │ │ ├── opensource-pipeline/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-security/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── plan-orchestrate/ │ │ │ │ └── SKILL.md │ │ │ ├── plankton-code-quality/ │ │ │ │ └── SKILL.md │ │ │ ├── postgres-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── product-capability/ │ │ │ │ └── SKILL.md │ │ │ ├── product-lens/ │ │ │ │ └── SKILL.md │ │ │ ├── production-audit/ │ │ │ │ └── SKILL.md │ │ │ ├── production-scheduling/ │ │ │ │ └── SKILL.md │ │ │ ├── project-flow-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── project-guidelines-example/ │ │ │ │ └── SKILL.md │ │ │ ├── prompt-optimizer/ │ │ │ │ └── SKILL.md │ │ │ ├── python-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── python-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── pytorch-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── quality-nonconformance/ │ │ │ │ └── SKILL.md │ │ │ ├── quarkus-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── quarkus-security/ │ │ │ │ └── SKILL.md │ │ │ ├── quarkus-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── quarkus-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── ralphinho-rfc-pipeline/ │ │ │ │ └── SKILL.md │ │ │ ├── redis-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── regex-vs-llm-structured-text/ │ │ │ │ └── SKILL.md │ │ │ ├── remotion-video-creation/ │ │ │ │ └── SKILL.md │ │ │ ├── repo-scan/ │ │ │ │ └── SKILL.md │ │ │ ├── research-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── returns-reverse-logistics/ │ │ │ │ └── SKILL.md │ │ │ ├── rules-distill/ │ │ │ │ └── SKILL.md │ │ │ ├── rust-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── rust-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── safety-guard/ │ │ │ │ └── SKILL.md │ │ │ ├── santa-method/ │ │ │ │ └── SKILL.md │ │ │ ├── scientific-db-pubmed-database/ │ │ │ │ └── SKILL.md │ │ │ ├── scientific-db-uspto-database/ │ │ │ │ └── SKILL.md │ │ │ ├── scientific-pkg-gget/ │ │ │ │ └── SKILL.md │ │ │ ├── scientific-thinking-literature-review/ │ │ │ │ └── SKILL.md │ │ │ ├── scientific-thinking-scholar-evaluation/ │ │ │ │ └── SKILL.md │ │ │ ├── search-first/ │ │ │ │ └── SKILL.md │ │ │ ├── security-bounty-hunter/ │ │ │ │ └── SKILL.md │ │ │ ├── security-review/ │ │ │ │ ├── SKILL.md │ │ │ │ └── cloud-infrastructure-security.md │ │ │ ├── security-scan/ │ │ │ │ └── SKILL.md │ │ │ ├── seo/ │ │ │ │ └── SKILL.md │ │ │ ├── skill-comply/ │ │ │ │ └── SKILL.md │ │ │ ├── skill-scout/ │ │ │ │ └── SKILL.md │ │ │ ├── skill-stocktake/ │ │ │ │ └── SKILL.md │ │ │ ├── social-graph-ranker/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-security/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── strategic-compact/ │ │ │ │ └── SKILL.md │ │ │ ├── swift-actor-persistence/ │ │ │ │ └── SKILL.md │ │ │ ├── swift-concurrency-6-2/ │ │ │ │ └── SKILL.md │ │ │ ├── swift-protocol-di-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── swiftui-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── tdd-workflow/ │ │ │ │ └── SKILL.md │ │ │ ├── team-builder/ │ │ │ │ └── SKILL.md │ │ │ ├── terminal-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── tinystruct-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── token-budget-advisor/ │ │ │ │ └── SKILL.md │ │ │ ├── ui-demo/ │ │ │ │ └── SKILL.md │ │ │ ├── ui-to-vue/ │ │ │ │ └── SKILL.md │ │ │ ├── unified-notifications-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── verification-loop/ │ │ │ │ └── SKILL.md │ │ │ ├── video-editing/ │ │ │ │ └── SKILL.md │ │ │ ├── videodb/ │ │ │ │ ├── SKILL.md │ │ │ │ └── reference/ │ │ │ │ ├── api-reference.md │ │ │ │ ├── capture-reference.md │ │ │ │ ├── capture.md │ │ │ │ ├── editor.md │ │ │ │ ├── generative.md │ │ │ │ ├── rtstream-reference.md │ │ │ │ ├── rtstream.md │ │ │ │ ├── search.md │ │ │ │ ├── streaming.md │ │ │ │ └── use-cases.md │ │ │ ├── visa-doc-translate/ │ │ │ │ ├── README.md │ │ │ │ └── SKILL.md │ │ │ ├── vite-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── windows-desktop-e2e/ │ │ │ │ └── SKILL.md │ │ │ ├── workspace-surface-audit/ │ │ │ │ └── SKILL.md │ │ │ └── x-api/ │ │ │ └── SKILL.md │ │ ├── the-longform-guide.md │ │ ├── the-openclaw-guide.md │ │ ├── the-security-guide.md │ │ └── the-shortform-guide.md │ ├── ko-KR/ │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── TERMINOLOGY.md │ │ ├── agents/ │ │ │ ├── architect.md │ │ │ ├── build-error-resolver.md │ │ │ ├── code-reviewer.md │ │ │ ├── database-reviewer.md │ │ │ ├── doc-updater.md │ │ │ ├── e2e-runner.md │ │ │ ├── go-build-resolver.md │ │ │ ├── go-reviewer.md │ │ │ ├── planner.md │ │ │ ├── refactor-cleaner.md │ │ │ ├── security-reviewer.md │ │ │ └── tdd-guide.md │ │ ├── commands/ │ │ │ ├── build-fix.md │ │ │ ├── checkpoint.md │ │ │ ├── code-review.md │ │ │ ├── e2e.md │ │ │ ├── eval.md │ │ │ ├── go-build.md │ │ │ ├── go-review.md │ │ │ ├── go-test.md │ │ │ ├── learn.md │ │ │ ├── orchestrate.md │ │ │ ├── plan.md │ │ │ ├── refactor-clean.md │ │ │ ├── setup-pm.md │ │ │ ├── tdd.md │ │ │ ├── test-coverage.md │ │ │ ├── update-codemaps.md │ │ │ ├── update-docs.md │ │ │ └── verify.md │ │ ├── examples/ │ │ │ ├── CLAUDE.md │ │ │ ├── django-api-CLAUDE.md │ │ │ ├── go-microservice-CLAUDE.md │ │ │ ├── rust-api-CLAUDE.md │ │ │ ├── saas-nextjs-CLAUDE.md │ │ │ ├── statusline.json │ │ │ └── user-CLAUDE.md │ │ ├── rules/ │ │ │ ├── agents.md │ │ │ ├── coding-style.md │ │ │ ├── git-workflow.md │ │ │ ├── hooks.md │ │ │ ├── patterns.md │ │ │ ├── performance.md │ │ │ ├── security.md │ │ │ └── testing.md │ │ └── skills/ │ │ ├── backend-patterns/ │ │ │ └── SKILL.md │ │ ├── clickhouse-io/ │ │ │ └── SKILL.md │ │ ├── coding-standards/ │ │ │ └── SKILL.md │ │ ├── continuous-learning/ │ │ │ └── SKILL.md │ │ ├── continuous-learning-v2/ │ │ │ └── SKILL.md │ │ ├── eval-harness/ │ │ │ └── SKILL.md │ │ ├── frontend-patterns/ │ │ │ └── SKILL.md │ │ ├── golang-patterns/ │ │ │ └── SKILL.md │ │ ├── golang-testing/ │ │ │ └── SKILL.md │ │ ├── iterative-retrieval/ │ │ │ └── SKILL.md │ │ ├── postgres-patterns/ │ │ │ └── SKILL.md │ │ ├── security-review/ │ │ │ ├── SKILL.md │ │ │ └── cloud-infrastructure-security.md │ │ ├── strategic-compact/ │ │ │ └── SKILL.md │ │ ├── tdd-workflow/ │ │ │ └── SKILL.md │ │ └── verification-loop/ │ │ └── SKILL.md │ ├── legacy-artifact-inventory.md │ ├── pt-BR/ │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── TERMINOLOGY.md │ │ ├── agents/ │ │ │ ├── architect.md │ │ │ ├── build-error-resolver.md │ │ │ ├── code-reviewer.md │ │ │ ├── database-reviewer.md │ │ │ ├── doc-updater.md │ │ │ ├── e2e-runner.md │ │ │ ├── go-build-resolver.md │ │ │ ├── go-reviewer.md │ │ │ ├── planner.md │ │ │ ├── refactor-cleaner.md │ │ │ ├── security-reviewer.md │ │ │ └── tdd-guide.md │ │ ├── commands/ │ │ │ ├── build-fix.md │ │ │ ├── checkpoint.md │ │ │ ├── code-review.md │ │ │ ├── e2e.md │ │ │ ├── eval.md │ │ │ ├── go-build.md │ │ │ ├── go-review.md │ │ │ ├── go-test.md │ │ │ ├── learn.md │ │ │ ├── orchestrate.md │ │ │ ├── plan.md │ │ │ ├── refactor-clean.md │ │ │ ├── setup-pm.md │ │ │ ├── tdd.md │ │ │ ├── test-coverage.md │ │ │ ├── update-codemaps.md │ │ │ ├── update-docs.md │ │ │ └── verify.md │ │ ├── examples/ │ │ │ ├── CLAUDE.md │ │ │ ├── django-api-CLAUDE.md │ │ │ ├── go-microservice-CLAUDE.md │ │ │ ├── rust-api-CLAUDE.md │ │ │ ├── saas-nextjs-CLAUDE.md │ │ │ └── user-CLAUDE.md │ │ └── rules/ │ │ ├── agents.md │ │ ├── coding-style.md │ │ ├── git-workflow.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── performance.md │ │ ├── security.md │ │ └── testing.md │ ├── releases/ │ │ ├── 1.10.0/ │ │ │ ├── discussion-announcement.md │ │ │ ├── release-notes.md │ │ │ └── x-thread.md │ │ ├── 1.8.0/ │ │ │ ├── linkedin-post.md │ │ │ ├── reference-attribution.md │ │ │ ├── release-notes.md │ │ │ ├── x-quote-eval-skills.md │ │ │ ├── x-quote-plankton-deslop.md │ │ │ └── x-thread.md │ │ ├── 2.0.0/ │ │ │ └── ecc-2-hypergrowth-release-command-center.md │ │ └── 2.0.0-rc.1/ │ │ ├── article-outline.md │ │ ├── demo-prompts.md │ │ ├── launch-checklist.md │ │ ├── linkedin-post.md │ │ ├── naming-and-publication-matrix.md │ │ ├── operator-readiness-dashboard-2026-05-15.md │ │ ├── operator-readiness-dashboard-2026-05-17.md │ │ ├── operator-readiness-dashboard-2026-05-18.md │ │ ├── operator-readiness-dashboard-2026-05-19.md │ │ ├── operator-readiness-dashboard-2026-05-20.md │ │ ├── owner-approval-packet-2026-05-19.md │ │ ├── owner-queue-cleanup-2026-05-18.md │ │ ├── partner-sponsor-talks-pack.md │ │ ├── preview-pack-manifest.md │ │ ├── publication-evidence-2026-05-12.md │ │ ├── publication-evidence-2026-05-13-post-hardening.md │ │ ├── publication-evidence-2026-05-13.md │ │ ├── publication-evidence-2026-05-15.md │ │ ├── publication-evidence-2026-05-16.md │ │ ├── publication-evidence-2026-05-17.md │ │ ├── publication-evidence-2026-05-18.md │ │ ├── publication-evidence-2026-05-19.md │ │ ├── publication-readiness.md │ │ ├── quickstart.md │ │ ├── release-name-plugin-publication-checklist-2026-05-18.md │ │ ├── release-notes.md │ │ ├── release-url-ledger-2026-05-18.md │ │ ├── release-url-ledger-2026-05-19.md │ │ ├── telegram-handoff.md │ │ ├── video-suite-production.md │ │ └── x-thread.md │ ├── ru/ │ │ └── README.md │ ├── security/ │ │ └── supply-chain-incident-response.md │ ├── skill-adaptation-policy.md │ ├── stale-pr-salvage-ledger.md │ ├── th/ │ │ └── README.md │ ├── token-optimization.md │ ├── tr/ │ │ ├── AGENTS.md │ │ ├── CHANGELOG.md │ │ ├── CLAUDE.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── SPONSORING.md │ │ ├── SPONSORS.md │ │ ├── TERMINOLOGY.md │ │ ├── TROUBLESHOOTING.md │ │ ├── agents/ │ │ │ ├── architect.md │ │ │ ├── build-error-resolver.md │ │ │ ├── chief-of-staff.md │ │ │ ├── code-reviewer.md │ │ │ ├── cpp-build-resolver.md │ │ │ ├── cpp-reviewer.md │ │ │ ├── database-reviewer.md │ │ │ ├── doc-updater.md │ │ │ ├── docs-lookup.md │ │ │ ├── e2e-runner.md │ │ │ ├── flutter-reviewer.md │ │ │ ├── go-build-resolver.md │ │ │ ├── go-reviewer.md │ │ │ ├── harness-optimizer.md │ │ │ ├── java-build-resolver.md │ │ │ ├── java-reviewer.md │ │ │ ├── kotlin-build-resolver.md │ │ │ ├── kotlin-reviewer.md │ │ │ ├── loop-operator.md │ │ │ ├── planner.md │ │ │ ├── python-reviewer.md │ │ │ ├── pytorch-build-resolver.md │ │ │ ├── refactor-cleaner.md │ │ │ ├── rust-build-resolver.md │ │ │ ├── rust-reviewer.md │ │ │ ├── security-reviewer.md │ │ │ ├── tdd-guide.md │ │ │ └── typescript-reviewer.md │ │ ├── commands/ │ │ │ ├── build-fix.md │ │ │ ├── checkpoint.md │ │ │ ├── code-review.md │ │ │ ├── e2e.md │ │ │ ├── eval.md │ │ │ ├── evolve.md │ │ │ ├── go-build.md │ │ │ ├── go-review.md │ │ │ ├── go-test.md │ │ │ ├── instinct-export.md │ │ │ ├── instinct-import.md │ │ │ ├── instinct-status.md │ │ │ ├── learn-eval.md │ │ │ ├── learn.md │ │ │ ├── multi-backend.md │ │ │ ├── multi-execute.md │ │ │ ├── multi-frontend.md │ │ │ ├── multi-plan.md │ │ │ ├── multi-workflow.md │ │ │ ├── orchestrate.md │ │ │ ├── plan.md │ │ │ ├── pm2.md │ │ │ ├── refactor-clean.md │ │ │ ├── sessions.md │ │ │ ├── setup-pm.md │ │ │ ├── skill-create.md │ │ │ ├── tdd.md │ │ │ ├── test-coverage.md │ │ │ ├── update-docs.md │ │ │ └── verify.md │ │ ├── contexts/ │ │ │ ├── dev.md │ │ │ ├── research.md │ │ │ └── review.md │ │ ├── examples/ │ │ │ ├── CLAUDE.md │ │ │ ├── README.md │ │ │ ├── statusline.json │ │ │ └── user-CLAUDE.md │ │ ├── rules/ │ │ │ ├── README.md │ │ │ ├── common/ │ │ │ │ ├── agents.md │ │ │ │ ├── coding-style.md │ │ │ │ ├── development-workflow.md │ │ │ │ ├── git-workflow.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── performance.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── golang/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── python/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ └── typescript/ │ │ │ ├── coding-style.md │ │ │ ├── hooks.md │ │ │ ├── patterns.md │ │ │ ├── security.md │ │ │ └── testing.md │ │ ├── skills/ │ │ │ ├── api-design/ │ │ │ │ └── SKILL.md │ │ │ ├── backend-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── continuous-learning/ │ │ │ │ └── SKILL.md │ │ │ ├── continuous-learning-v2/ │ │ │ │ └── SKILL.md │ │ │ ├── database-migrations/ │ │ │ │ └── SKILL.md │ │ │ ├── deployment-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── django-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── docker-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── e2e-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── eval-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── frontend-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── golang-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── golang-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── jpa-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-security/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── nextjs-turbopack/ │ │ │ │ └── SKILL.md │ │ │ ├── postgres-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── python-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── python-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── quarkus-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── quarkus-security/ │ │ │ │ └── SKILL.md │ │ │ ├── quarkus-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── quarkus-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── rust-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── rust-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── security-review/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-security/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── tdd-workflow/ │ │ │ │ └── SKILL.md │ │ │ └── verification-loop/ │ │ │ └── SKILL.md │ │ ├── the-longform-guide.md │ │ ├── the-security-guide.md │ │ └── the-shortform-guide.md │ ├── vi-VN/ │ │ └── README.md │ ├── zh-CN/ │ │ ├── AGENTS.md │ │ ├── CHANGELOG.md │ │ ├── CLAUDE.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── SPONSORING.md │ │ ├── SPONSORS.md │ │ ├── TROUBLESHOOTING.md │ │ ├── agents/ │ │ │ ├── architect.md │ │ │ ├── build-error-resolver.md │ │ │ ├── chief-of-staff.md │ │ │ ├── code-architect.md │ │ │ ├── code-explorer.md │ │ │ ├── code-reviewer.md │ │ │ ├── code-simplifier.md │ │ │ ├── comment-analyzer.md │ │ │ ├── conversation-analyzer.md │ │ │ ├── cpp-build-resolver.md │ │ │ ├── cpp-reviewer.md │ │ │ ├── csharp-reviewer.md │ │ │ ├── dart-build-resolver.md │ │ │ ├── database-reviewer.md │ │ │ ├── doc-updater.md │ │ │ ├── docs-lookup.md │ │ │ ├── e2e-runner.md │ │ │ ├── flutter-reviewer.md │ │ │ ├── gan-evaluator.md │ │ │ ├── gan-generator.md │ │ │ ├── gan-planner.md │ │ │ ├── go-build-resolver.md │ │ │ ├── go-reviewer.md │ │ │ ├── harness-optimizer.md │ │ │ ├── healthcare-reviewer.md │ │ │ ├── java-build-resolver.md │ │ │ ├── java-reviewer.md │ │ │ ├── kotlin-build-resolver.md │ │ │ ├── kotlin-reviewer.md │ │ │ ├── loop-operator.md │ │ │ ├── opensource-forker.md │ │ │ ├── opensource-packager.md │ │ │ ├── opensource-sanitizer.md │ │ │ ├── performance-optimizer.md │ │ │ ├── planner.md │ │ │ ├── pr-test-analyzer.md │ │ │ ├── python-reviewer.md │ │ │ ├── pytorch-build-resolver.md │ │ │ ├── refactor-cleaner.md │ │ │ ├── rust-build-resolver.md │ │ │ ├── rust-reviewer.md │ │ │ ├── security-reviewer.md │ │ │ ├── seo-specialist.md │ │ │ ├── silent-failure-hunter.md │ │ │ ├── tdd-guide.md │ │ │ ├── type-design-analyzer.md │ │ │ └── typescript-reviewer.md │ │ ├── commands/ │ │ │ ├── aside.md │ │ │ ├── auto-update.md │ │ │ ├── build-fix.md │ │ │ ├── checkpoint.md │ │ │ ├── claw.md │ │ │ ├── code-review.md │ │ │ ├── context-budget.md │ │ │ ├── cpp-build.md │ │ │ ├── cpp-review.md │ │ │ ├── cpp-test.md │ │ │ ├── devfleet.md │ │ │ ├── docs.md │ │ │ ├── e2e.md │ │ │ ├── eval.md │ │ │ ├── evolve.md │ │ │ ├── feature-dev.md │ │ │ ├── flutter-build.md │ │ │ ├── flutter-review.md │ │ │ ├── flutter-test.md │ │ │ ├── gan-build.md │ │ │ ├── gan-design.md │ │ │ ├── go-build.md │ │ │ ├── go-review.md │ │ │ ├── go-test.md │ │ │ ├── gradle-build.md │ │ │ ├── harness-audit.md │ │ │ ├── hookify-configure.md │ │ │ ├── hookify-help.md │ │ │ ├── hookify-list.md │ │ │ ├── hookify.md │ │ │ ├── instinct-export.md │ │ │ ├── instinct-import.md │ │ │ ├── instinct-status.md │ │ │ ├── jira.md │ │ │ ├── kotlin-build.md │ │ │ ├── kotlin-review.md │ │ │ ├── kotlin-test.md │ │ │ ├── learn-eval.md │ │ │ ├── learn.md │ │ │ ├── loop-start.md │ │ │ ├── loop-status.md │ │ │ ├── model-route.md │ │ │ ├── multi-backend.md │ │ │ ├── multi-execute.md │ │ │ ├── multi-frontend.md │ │ │ ├── multi-plan.md │ │ │ ├── multi-workflow.md │ │ │ ├── orchestrate.md │ │ │ ├── plan.md │ │ │ ├── pm2.md │ │ │ ├── projects.md │ │ │ ├── promote.md │ │ │ ├── prompt-optimize.md │ │ │ ├── prp-commit.md │ │ │ ├── prp-implement.md │ │ │ ├── prp-plan.md │ │ │ ├── prp-pr.md │ │ │ ├── prp-prd.md │ │ │ ├── prune.md │ │ │ ├── python-review.md │ │ │ ├── quality-gate.md │ │ │ ├── refactor-clean.md │ │ │ ├── resume-session.md │ │ │ ├── review-pr.md │ │ │ ├── rules-distill.md │ │ │ ├── rust-build.md │ │ │ ├── rust-review.md │ │ │ ├── rust-test.md │ │ │ ├── santa-loop.md │ │ │ ├── save-session.md │ │ │ ├── sessions.md │ │ │ ├── setup-pm.md │ │ │ ├── skill-create.md │ │ │ ├── skill-health.md │ │ │ ├── tdd.md │ │ │ ├── test-coverage.md │ │ │ ├── update-codemaps.md │ │ │ ├── update-docs.md │ │ │ └── verify.md │ │ ├── contexts/ │ │ │ ├── dev.md │ │ │ ├── research.md │ │ │ └── review.md │ │ ├── examples/ │ │ │ ├── CLAUDE.md │ │ │ ├── django-api-CLAUDE.md │ │ │ ├── go-microservice-CLAUDE.md │ │ │ ├── laravel-api-CLAUDE.md │ │ │ ├── rust-api-CLAUDE.md │ │ │ ├── saas-nextjs-CLAUDE.md │ │ │ └── user-CLAUDE.md │ │ ├── hooks/ │ │ │ └── README.md │ │ ├── plugins/ │ │ │ └── README.md │ │ ├── rules/ │ │ │ ├── README.md │ │ │ ├── common/ │ │ │ │ ├── agents.md │ │ │ │ ├── coding-style.md │ │ │ │ ├── development-workflow.md │ │ │ │ ├── git-workflow.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── performance.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── cpp/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── csharp/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── golang/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── java/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── kotlin/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── perl/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── php/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── python/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── rust/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ ├── swift/ │ │ │ │ ├── coding-style.md │ │ │ │ ├── hooks.md │ │ │ │ ├── patterns.md │ │ │ │ ├── security.md │ │ │ │ └── testing.md │ │ │ └── typescript/ │ │ │ ├── coding-style.md │ │ │ ├── hooks.md │ │ │ ├── patterns.md │ │ │ ├── security.md │ │ │ └── testing.md │ │ ├── skills/ │ │ │ ├── accessibility/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-eval/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-harness-construction/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-introspection-debugging/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-payment-x402/ │ │ │ │ └── SKILL.md │ │ │ ├── agent-sort/ │ │ │ │ └── SKILL.md │ │ │ ├── agentic-engineering/ │ │ │ │ └── SKILL.md │ │ │ ├── ai-first-engineering/ │ │ │ │ └── SKILL.md │ │ │ ├── ai-regression-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── android-clean-architecture/ │ │ │ │ └── SKILL.md │ │ │ ├── api-connector-builder/ │ │ │ │ └── SKILL.md │ │ │ ├── api-design/ │ │ │ │ └── SKILL.md │ │ │ ├── architecture-decision-records/ │ │ │ │ └── SKILL.md │ │ │ ├── article-writing/ │ │ │ │ └── SKILL.md │ │ │ ├── automation-audit-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── autonomous-agent-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── autonomous-loops/ │ │ │ │ └── SKILL.md │ │ │ ├── backend-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── benchmark/ │ │ │ │ └── SKILL.md │ │ │ ├── blueprint/ │ │ │ │ └── SKILL.md │ │ │ ├── brand-voice/ │ │ │ │ └── SKILL.md │ │ │ ├── browser-qa/ │ │ │ │ └── SKILL.md │ │ │ ├── bun-runtime/ │ │ │ │ └── SKILL.md │ │ │ ├── canary-watch/ │ │ │ │ └── SKILL.md │ │ │ ├── carrier-relationship-management/ │ │ │ │ └── SKILL.md │ │ │ ├── ck/ │ │ │ │ └── SKILL.md │ │ │ ├── claude-devfleet/ │ │ │ │ └── SKILL.md │ │ │ ├── click-path-audit/ │ │ │ │ └── SKILL.md │ │ │ ├── clickhouse-io/ │ │ │ │ └── SKILL.md │ │ │ ├── code-tour/ │ │ │ │ └── SKILL.md │ │ │ ├── codebase-onboarding/ │ │ │ │ └── SKILL.md │ │ │ ├── coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── compose-multiplatform-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── configure-ecc/ │ │ │ │ └── SKILL.md │ │ │ ├── connections-optimizer/ │ │ │ │ └── SKILL.md │ │ │ ├── content-engine/ │ │ │ │ └── SKILL.md │ │ │ ├── content-hash-cache-pattern/ │ │ │ │ └── SKILL.md │ │ │ ├── context-budget/ │ │ │ │ └── SKILL.md │ │ │ ├── continuous-agent-loop/ │ │ │ │ └── SKILL.md │ │ │ ├── continuous-learning/ │ │ │ │ └── SKILL.md │ │ │ ├── continuous-learning-v2/ │ │ │ │ ├── SKILL.md │ │ │ │ └── agents/ │ │ │ │ └── observer.md │ │ │ ├── cost-aware-llm-pipeline/ │ │ │ │ └── SKILL.md │ │ │ ├── council/ │ │ │ │ └── SKILL.md │ │ │ ├── cpp-coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── cpp-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── crosspost/ │ │ │ │ └── SKILL.md │ │ │ ├── csharp-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── customer-billing-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── customs-trade-compliance/ │ │ │ │ └── SKILL.md │ │ │ ├── dart-flutter-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── dashboard-builder/ │ │ │ │ └── SKILL.md │ │ │ ├── data-scraper-agent/ │ │ │ │ └── SKILL.md │ │ │ ├── database-migrations/ │ │ │ │ └── SKILL.md │ │ │ ├── deep-research/ │ │ │ │ └── SKILL.md │ │ │ ├── defi-amm-security/ │ │ │ │ └── SKILL.md │ │ │ ├── deployment-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── design-system/ │ │ │ │ └── SKILL.md │ │ │ ├── django-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── django-security/ │ │ │ │ └── SKILL.md │ │ │ ├── django-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── django-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── dmux-workflows/ │ │ │ │ └── SKILL.md │ │ │ ├── docker-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── documentation-lookup/ │ │ │ │ └── SKILL.md │ │ │ ├── dotnet-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── e2e-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── ecc-tools-cost-audit/ │ │ │ │ └── SKILL.md │ │ │ ├── email-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── energy-procurement/ │ │ │ │ └── SKILL.md │ │ │ ├── enterprise-agent-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── eval-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── evm-token-decimals/ │ │ │ │ └── SKILL.md │ │ │ ├── exa-search/ │ │ │ │ └── SKILL.md │ │ │ ├── fal-ai-media/ │ │ │ │ └── SKILL.md │ │ │ ├── finance-billing-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── flutter-dart-code-review/ │ │ │ │ └── SKILL.md │ │ │ ├── foundation-models-on-device/ │ │ │ │ └── SKILL.md │ │ │ ├── frontend-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── frontend-slides/ │ │ │ │ ├── SKILL.md │ │ │ │ └── STYLE_PRESETS.md │ │ │ ├── gan-style-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── gateguard/ │ │ │ │ └── SKILL.md │ │ │ ├── git-workflow/ │ │ │ │ └── SKILL.md │ │ │ ├── github-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── golang-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── golang-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── google-workspace-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── healthcare-cdss-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── healthcare-emr-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── healthcare-eval-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── healthcare-phi-compliance/ │ │ │ │ └── SKILL.md │ │ │ ├── hermes-imports/ │ │ │ │ └── SKILL.md │ │ │ ├── hexagonal-architecture/ │ │ │ │ └── SKILL.md │ │ │ ├── hipaa-compliance/ │ │ │ │ └── SKILL.md │ │ │ ├── hookify-rules/ │ │ │ │ └── SKILL.md │ │ │ ├── inventory-demand-planning/ │ │ │ │ └── SKILL.md │ │ │ ├── investor-materials/ │ │ │ │ └── SKILL.md │ │ │ ├── investor-outreach/ │ │ │ │ └── SKILL.md │ │ │ ├── iterative-retrieval/ │ │ │ │ └── SKILL.md │ │ │ ├── java-coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── jira-integration/ │ │ │ │ └── SKILL.md │ │ │ ├── jpa-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── knowledge-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-coroutines-flows/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-exposed-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-ktor-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── kotlin-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-plugin-discovery/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-security/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── laravel-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── lead-intelligence/ │ │ │ │ └── SKILL.md │ │ │ ├── liquid-glass-design/ │ │ │ │ └── SKILL.md │ │ │ ├── llm-trading-agent-security/ │ │ │ │ └── SKILL.md │ │ │ ├── logistics-exception-management/ │ │ │ │ └── SKILL.md │ │ │ ├── manim-video/ │ │ │ │ └── SKILL.md │ │ │ ├── market-research/ │ │ │ │ └── SKILL.md │ │ │ ├── mcp-server-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── messages-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── nanoclaw-repl/ │ │ │ │ └── SKILL.md │ │ │ ├── nestjs-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── nextjs-turbopack/ │ │ │ │ └── SKILL.md │ │ │ ├── nodejs-keccak256/ │ │ │ │ └── SKILL.md │ │ │ ├── nutrient-document-processing/ │ │ │ │ └── SKILL.md │ │ │ ├── nuxt4-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── opensource-pipeline/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-security/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── plankton-code-quality/ │ │ │ │ └── SKILL.md │ │ │ ├── postgres-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── product-capability/ │ │ │ │ └── SKILL.md │ │ │ ├── product-lens/ │ │ │ │ └── SKILL.md │ │ │ ├── production-scheduling/ │ │ │ │ └── SKILL.md │ │ │ ├── project-flow-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── prompt-optimizer/ │ │ │ │ └── SKILL.md │ │ │ ├── python-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── python-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── pytorch-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── quality-nonconformance/ │ │ │ │ └── SKILL.md │ │ │ ├── ralphinho-rfc-pipeline/ │ │ │ │ └── SKILL.md │ │ │ ├── regex-vs-llm-structured-text/ │ │ │ │ └── SKILL.md │ │ │ ├── remotion-video-creation/ │ │ │ │ └── SKILL.md │ │ │ ├── repo-scan/ │ │ │ │ └── SKILL.md │ │ │ ├── research-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── returns-reverse-logistics/ │ │ │ │ └── SKILL.md │ │ │ ├── rules-distill/ │ │ │ │ └── SKILL.md │ │ │ ├── rust-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── rust-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── safety-guard/ │ │ │ │ └── SKILL.md │ │ │ ├── santa-method/ │ │ │ │ └── SKILL.md │ │ │ ├── search-first/ │ │ │ │ └── SKILL.md │ │ │ ├── security-bounty-hunter/ │ │ │ │ └── SKILL.md │ │ │ ├── security-review/ │ │ │ │ ├── SKILL.md │ │ │ │ └── cloud-infrastructure-security.md │ │ │ ├── security-scan/ │ │ │ │ └── SKILL.md │ │ │ ├── seo/ │ │ │ │ └── SKILL.md │ │ │ ├── skill-comply/ │ │ │ │ └── SKILL.md │ │ │ ├── skill-stocktake/ │ │ │ │ └── SKILL.md │ │ │ ├── social-graph-ranker/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-security/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-tdd/ │ │ │ │ └── SKILL.md │ │ │ ├── springboot-verification/ │ │ │ │ └── SKILL.md │ │ │ ├── strategic-compact/ │ │ │ │ └── SKILL.md │ │ │ ├── swift-actor-persistence/ │ │ │ │ └── SKILL.md │ │ │ ├── swift-concurrency-6-2/ │ │ │ │ └── SKILL.md │ │ │ ├── swift-protocol-di-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── swiftui-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── tdd-workflow/ │ │ │ │ └── SKILL.md │ │ │ ├── team-builder/ │ │ │ │ └── SKILL.md │ │ │ ├── terminal-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── token-budget-advisor/ │ │ │ │ └── SKILL.md │ │ │ ├── ui-demo/ │ │ │ │ └── SKILL.md │ │ │ ├── unified-notifications-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── verification-loop/ │ │ │ │ └── SKILL.md │ │ │ ├── video-editing/ │ │ │ │ └── SKILL.md │ │ │ ├── videodb/ │ │ │ │ ├── SKILL.md │ │ │ │ └── reference/ │ │ │ │ ├── api-reference.md │ │ │ │ ├── capture-reference.md │ │ │ │ ├── capture.md │ │ │ │ ├── editor.md │ │ │ │ ├── generative.md │ │ │ │ ├── rtstream-reference.md │ │ │ │ ├── rtstream.md │ │ │ │ ├── search.md │ │ │ │ ├── streaming.md │ │ │ │ └── use-cases.md │ │ │ ├── visa-doc-translate/ │ │ │ │ ├── README.md │ │ │ │ └── SKILL.md │ │ │ ├── workspace-surface-audit/ │ │ │ │ └── SKILL.md │ │ │ └── x-api/ │ │ │ └── SKILL.md │ │ ├── the-longform-guide.md │ │ ├── the-openclaw-guide.md │ │ ├── the-security-guide.md │ │ └── the-shortform-guide.md │ └── zh-TW/ │ ├── CONTRIBUTING.md │ ├── README.md │ ├── TERMINOLOGY.md │ ├── agents/ │ │ ├── architect.md │ │ ├── build-error-resolver.md │ │ ├── code-reviewer.md │ │ ├── database-reviewer.md │ │ ├── doc-updater.md │ │ ├── e2e-runner.md │ │ ├── go-build-resolver.md │ │ ├── go-reviewer.md │ │ ├── planner.md │ │ ├── refactor-cleaner.md │ │ ├── security-reviewer.md │ │ └── tdd-guide.md │ ├── commands/ │ │ ├── build-fix.md │ │ ├── checkpoint.md │ │ ├── code-review.md │ │ ├── e2e.md │ │ ├── eval.md │ │ ├── go-build.md │ │ ├── go-review.md │ │ ├── go-test.md │ │ ├── learn.md │ │ ├── orchestrate.md │ │ ├── plan.md │ │ ├── refactor-clean.md │ │ ├── setup-pm.md │ │ ├── tdd.md │ │ ├── test-coverage.md │ │ ├── update-codemaps.md │ │ ├── update-docs.md │ │ └── verify.md │ ├── rules/ │ │ ├── agents.md │ │ ├── coding-style.md │ │ ├── git-workflow.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── performance.md │ │ ├── security.md │ │ └── testing.md │ └── skills/ │ ├── backend-patterns/ │ │ └── SKILL.md │ ├── clickhouse-io/ │ │ └── SKILL.md │ ├── coding-standards/ │ │ └── SKILL.md │ ├── continuous-learning/ │ │ └── SKILL.md │ ├── continuous-learning-v2/ │ │ └── SKILL.md │ ├── eval-harness/ │ │ └── SKILL.md │ ├── frontend-patterns/ │ │ └── SKILL.md │ ├── golang-patterns/ │ │ └── SKILL.md │ ├── golang-testing/ │ │ └── SKILL.md │ ├── iterative-retrieval/ │ │ └── SKILL.md │ ├── postgres-patterns/ │ │ └── SKILL.md │ ├── project-guidelines-example/ │ │ └── SKILL.md │ ├── security-review/ │ │ ├── SKILL.md │ │ └── cloud-infrastructure-security.md │ ├── strategic-compact/ │ │ └── SKILL.md │ ├── tdd-workflow/ │ │ └── SKILL.md │ └── verification-loop/ │ └── SKILL.md ├── ecc2/ │ ├── Cargo.toml │ ├── README.md │ └── src/ │ ├── comms/ │ │ └── mod.rs │ ├── config/ │ │ └── mod.rs │ ├── main.rs │ ├── notifications.rs │ ├── observability/ │ │ └── mod.rs │ ├── session/ │ │ ├── daemon.rs │ │ ├── manager.rs │ │ ├── mod.rs │ │ ├── output.rs │ │ ├── runtime.rs │ │ └── store.rs │ ├── tui/ │ │ ├── app.rs │ │ ├── dashboard.rs │ │ ├── mod.rs │ │ └── widgets.rs │ └── worktree/ │ └── mod.rs ├── ecc_dashboard.py ├── eslint.config.js ├── examples/ │ ├── CLAUDE.md │ ├── django-api-CLAUDE.md │ ├── evaluator-rag-prototype/ │ │ ├── agentshield-policy-exception/ │ │ │ ├── candidate-playbook.md │ │ │ ├── report.json │ │ │ ├── scenario.json │ │ │ ├── trace.json │ │ │ └── verifier-result.json │ │ ├── billing-marketplace-readiness/ │ │ │ ├── candidate-playbook.md │ │ │ ├── report.json │ │ │ ├── scenario.json │ │ │ ├── trace.json │ │ │ └── verifier-result.json │ │ ├── candidate-playbook.md │ │ ├── ci-failure-diagnosis/ │ │ │ ├── candidate-playbook.md │ │ │ ├── report.json │ │ │ ├── scenario.json │ │ │ ├── trace.json │ │ │ └── verifier-result.json │ │ ├── deep-analyzer-evidence/ │ │ │ ├── candidate-playbook.md │ │ │ ├── report.json │ │ │ ├── scenario.json │ │ │ ├── trace.json │ │ │ └── verifier-result.json │ │ ├── harness-config-quality/ │ │ │ ├── candidate-playbook.md │ │ │ ├── report.json │ │ │ ├── scenario.json │ │ │ ├── trace.json │ │ │ └── verifier-result.json │ │ ├── report.json │ │ ├── scenario.json │ │ ├── skill-quality-evidence/ │ │ │ ├── candidate-playbook.md │ │ │ ├── report.json │ │ │ ├── scenario.json │ │ │ ├── trace.json │ │ │ └── verifier-result.json │ │ ├── trace.json │ │ └── verifier-result.json │ ├── gan-harness/ │ │ └── README.md │ ├── go-microservice-CLAUDE.md │ ├── harmonyos-app-CLAUDE.md │ ├── hud-status-contract.json │ ├── laravel-api-CLAUDE.md │ ├── rust-api-CLAUDE.md │ ├── saas-nextjs-CLAUDE.md │ ├── statusline.json │ └── user-CLAUDE.md ├── hooks/ │ ├── README.md │ ├── hooks.json │ └── memory-persistence/ │ ├── README.md │ └── hooks.json ├── install.ps1 ├── install.sh ├── legacy-command-shims/ │ ├── README.md │ └── commands/ │ ├── agent-sort.md │ ├── claw.md │ ├── context-budget.md │ ├── devfleet.md │ ├── docs.md │ ├── e2e.md │ ├── eval.md │ ├── orchestrate.md │ ├── prompt-optimize.md │ ├── rules-distill.md │ ├── tdd.md │ └── verify.md ├── manifests/ │ ├── install-components.json │ ├── install-modules.json │ └── install-profiles.json ├── mcp-configs/ │ └── mcp-servers.json ├── package.json ├── plugins/ │ └── README.md ├── pyproject.toml ├── research/ │ └── ecc2-codebase-analysis.md ├── rules/ │ ├── README.md │ ├── angular/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── arkts/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── common/ │ │ ├── agents.md │ │ ├── code-review.md │ │ ├── coding-style.md │ │ ├── development-workflow.md │ │ ├── git-workflow.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── performance.md │ │ ├── security.md │ │ └── testing.md │ ├── cpp/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── csharp/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── dart/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── fsharp/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── golang/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── java/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── kotlin/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── perl/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── php/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── python/ │ │ ├── coding-style.md │ │ ├── fastapi.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── ruby/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── rust/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── swift/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── typescript/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ ├── web/ │ │ ├── coding-style.md │ │ ├── design-quality.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── performance.md │ │ ├── security.md │ │ └── testing.md │ └── zh/ │ ├── README.md │ ├── agents.md │ ├── code-review.md │ ├── coding-style.md │ ├── development-workflow.md │ ├── git-workflow.md │ ├── hooks.md │ ├── patterns.md │ ├── performance.md │ ├── security.md │ └── testing.md ├── schemas/ │ ├── ecc-install-config.schema.json │ ├── hooks.schema.json │ ├── install-components.schema.json │ ├── install-modules.schema.json │ ├── install-profiles.schema.json │ ├── install-state.schema.json │ ├── package-manager.schema.json │ ├── plugin.schema.json │ ├── provenance.schema.json │ └── state-store.schema.json ├── scripts/ │ ├── auto-update.js │ ├── build-opencode.js │ ├── catalog.js │ ├── ci/ │ │ ├── catalog.js │ │ ├── check-unicode-safety.js │ │ ├── generate-command-registry.js │ │ ├── scan-supply-chain-iocs.js │ │ ├── supply-chain-advisory-sources.js │ │ ├── validate-agents.js │ │ ├── validate-commands.js │ │ ├── validate-hooks.js │ │ ├── validate-install-manifests.js │ │ ├── validate-no-personal-paths.js │ │ ├── validate-rules.js │ │ ├── validate-skills.js │ │ └── validate-workflow-security.js │ ├── claw.js │ ├── codemaps/ │ │ └── generate.ts │ ├── codex/ │ │ ├── check-codex-global-state.sh │ │ ├── install-global-git-hooks.sh │ │ ├── merge-codex-config.js │ │ └── merge-mcp-config.js │ ├── codex-git-hooks/ │ │ ├── pre-commit │ │ └── pre-push │ ├── consult.js │ ├── discussion-audit.js │ ├── doctor.js │ ├── ecc.js │ ├── gan-harness.sh │ ├── gemini-adapt-agents.js │ ├── harness-adapter-compliance.js │ ├── harness-audit.js │ ├── hooks/ │ │ ├── auto-tmux-dev.js │ │ ├── bash-hook-dispatcher.js │ │ ├── block-no-verify.js │ │ ├── check-console-log.js │ │ ├── check-hook-enabled.js │ │ ├── config-protection.js │ │ ├── cost-tracker.js │ │ ├── design-quality-check.js │ │ ├── desktop-notify.js │ │ ├── doc-file-warning.js │ │ ├── ecc-context-monitor.js │ │ ├── ecc-metrics-bridge.js │ │ ├── ecc-statusline.js │ │ ├── evaluate-session.js │ │ ├── gateguard-fact-force.js │ │ ├── governance-capture.js │ │ ├── insaits-security-monitor.py │ │ ├── insaits-security-wrapper.js │ │ ├── mcp-health-check.js │ │ ├── observe-runner.js │ │ ├── plugin-hook-bootstrap.js │ │ ├── post-bash-build-complete.js │ │ ├── post-bash-command-log.js │ │ ├── post-bash-dispatcher.js │ │ ├── post-bash-pr-created.js │ │ ├── post-edit-accumulator.js │ │ ├── post-edit-console-warn.js │ │ ├── post-edit-format.js │ │ ├── post-edit-typecheck.js │ │ ├── pre-bash-commit-quality.js │ │ ├── pre-bash-dev-server-block.js │ │ ├── pre-bash-dispatcher.js │ │ ├── pre-bash-git-push-reminder.js │ │ ├── pre-bash-tmux-reminder.js │ │ ├── pre-compact.js │ │ ├── pre-write-doc-warn.js │ │ ├── quality-gate.js │ │ ├── run-with-flags-shell.sh │ │ ├── run-with-flags.js │ │ ├── session-activity-tracker.js │ │ ├── session-end-marker.js │ │ ├── session-end.js │ │ ├── session-start-bootstrap.js │ │ ├── session-start.js │ │ ├── stop-format-typecheck.js │ │ └── suggest-compact.js │ ├── install-apply.js │ ├── install-plan.js │ ├── lib/ │ │ ├── agent-compress.js │ │ ├── cost-estimate.js │ │ ├── cursor-agent-names.js │ │ ├── ecc_dashboard_runtime.py │ │ ├── github-discussions.js │ │ ├── harness-adapter-compliance.js │ │ ├── hook-flags.js │ │ ├── inspection.js │ │ ├── install/ │ │ │ ├── apply.js │ │ │ ├── config.js │ │ │ ├── request.js │ │ │ └── runtime.js │ │ ├── install-executor.js │ │ ├── install-lifecycle.js │ │ ├── install-manifests.js │ │ ├── install-state.js │ │ ├── install-targets/ │ │ │ ├── antigravity-project.js │ │ │ ├── claude-home.js │ │ │ ├── claude-project.js │ │ │ ├── codebuddy-project.js │ │ │ ├── codex-home.js │ │ │ ├── cursor-project.js │ │ │ ├── gemini-project.js │ │ │ ├── helpers.js │ │ │ ├── joycode-project.js │ │ │ ├── opencode-home.js │ │ │ ├── qwen-home.js │ │ │ ├── registry.js │ │ │ └── zed-project.js │ │ ├── mcp-config.js │ │ ├── observer-sessions.js │ │ ├── orchestration-session.js │ │ ├── package-manager.d.ts │ │ ├── package-manager.js │ │ ├── project-detect.js │ │ ├── resolve-ecc-root.js │ │ ├── resolve-formatter.js │ │ ├── session-adapters/ │ │ │ ├── canonical-session.js │ │ │ ├── claude-history.js │ │ │ ├── dmux-tmux.js │ │ │ └── registry.js │ │ ├── session-aliases.d.ts │ │ ├── session-aliases.js │ │ ├── session-bridge.js │ │ ├── session-manager.d.ts │ │ ├── session-manager.js │ │ ├── shell-split.js │ │ ├── shell-substitution.js │ │ ├── skill-evolution/ │ │ │ ├── dashboard.js │ │ │ ├── health.js │ │ │ ├── index.js │ │ │ ├── provenance.js │ │ │ ├── tracker.js │ │ │ └── versioning.js │ │ ├── skill-improvement/ │ │ │ ├── amendify.js │ │ │ ├── evaluate.js │ │ │ ├── health.js │ │ │ └── observations.js │ │ ├── state-store/ │ │ │ ├── index.js │ │ │ ├── migrations.js │ │ │ ├── queries.js │ │ │ └── schema.js │ │ ├── tmux-worktree-orchestrator.js │ │ ├── utils.d.ts │ │ └── utils.js │ ├── list-installed.js │ ├── loop-status.js │ ├── observability-readiness.js │ ├── operator-readiness-dashboard.js │ ├── orchestrate-codex-worker.sh │ ├── orchestrate-worktrees.js │ ├── orchestration-status.js │ ├── platform-audit.js │ ├── preview-pack-smoke.js │ ├── release-approval-gate.js │ ├── release-video-suite.js │ ├── release.sh │ ├── repair.js │ ├── session-inspect.js │ ├── sessions-cli.js │ ├── setup-package-manager.js │ ├── skill-create-output.js │ ├── skills-health.js │ ├── status.js │ ├── sync-ecc-to-codex.sh │ ├── uninstall.js │ └── work-items.js ├── skills/ │ ├── accessibility/ │ │ └── SKILL.md │ ├── agent-architecture-audit/ │ │ └── SKILL.md │ ├── agent-eval/ │ │ └── SKILL.md │ ├── agent-harness-construction/ │ │ └── SKILL.md │ ├── agent-introspection-debugging/ │ │ └── SKILL.md │ ├── agent-payment-x402/ │ │ └── SKILL.md │ ├── agent-sort/ │ │ └── SKILL.md │ ├── agentic-engineering/ │ │ └── SKILL.md │ ├── agentic-os/ │ │ └── SKILL.md │ ├── ai-first-engineering/ │ │ └── SKILL.md │ ├── ai-regression-testing/ │ │ └── SKILL.md │ ├── android-clean-architecture/ │ │ └── SKILL.md │ ├── angular-developer/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── angular-animations.md │ │ ├── angular-aria.md │ │ ├── cli.md │ │ ├── component-harnesses.md │ │ ├── component-styling.md │ │ ├── components.md │ │ ├── creating-services.md │ │ ├── data-resolvers.md │ │ ├── define-routes.md │ │ ├── defining-providers.md │ │ ├── di-fundamentals.md │ │ ├── e2e-testing.md │ │ ├── effects.md │ │ ├── hierarchical-injectors.md │ │ ├── host-elements.md │ │ ├── injection-context.md │ │ ├── inputs.md │ │ ├── linked-signal.md │ │ ├── loading-strategies.md │ │ ├── mcp.md │ │ ├── navigate-to-routes.md │ │ ├── outputs.md │ │ ├── reactive-forms.md │ │ ├── rendering-strategies.md │ │ ├── resource.md │ │ ├── route-animations.md │ │ ├── route-guards.md │ │ ├── router-lifecycle.md │ │ ├── router-testing.md │ │ ├── show-routes-with-outlets.md │ │ ├── signal-forms.md │ │ ├── signals-overview.md │ │ ├── tailwind-css.md │ │ ├── template-driven-forms.md │ │ └── testing-fundamentals.md │ ├── api-connector-builder/ │ │ └── SKILL.md │ ├── api-design/ │ │ └── SKILL.md │ ├── architecture-decision-records/ │ │ └── SKILL.md │ ├── article-writing/ │ │ └── SKILL.md │ ├── automation-audit-ops/ │ │ └── SKILL.md │ ├── autonomous-agent-harness/ │ │ └── SKILL.md │ ├── autonomous-loops/ │ │ └── SKILL.md │ ├── backend-patterns/ │ │ └── SKILL.md │ ├── benchmark/ │ │ └── SKILL.md │ ├── blender-motion-state-inspection/ │ │ └── SKILL.md │ ├── blueprint/ │ │ └── SKILL.md │ ├── brand-voice/ │ │ ├── SKILL.md │ │ └── references/ │ │ └── voice-profile-schema.md │ ├── browser-qa/ │ │ └── SKILL.md │ ├── bun-runtime/ │ │ └── SKILL.md │ ├── canary-watch/ │ │ └── SKILL.md │ ├── carrier-relationship-management/ │ │ └── SKILL.md │ ├── cisco-ios-patterns/ │ │ └── SKILL.md │ ├── ck/ │ │ ├── SKILL.md │ │ ├── commands/ │ │ │ ├── forget.mjs │ │ │ ├── info.mjs │ │ │ ├── init.mjs │ │ │ ├── list.mjs │ │ │ ├── migrate.mjs │ │ │ ├── resume.mjs │ │ │ ├── save.mjs │ │ │ └── shared.mjs │ │ └── hooks/ │ │ └── session-start.mjs │ ├── claude-devfleet/ │ │ └── SKILL.md │ ├── click-path-audit/ │ │ └── SKILL.md │ ├── clickhouse-io/ │ │ └── SKILL.md │ ├── code-tour/ │ │ └── SKILL.md │ ├── codebase-onboarding/ │ │ └── SKILL.md │ ├── coding-standards/ │ │ └── SKILL.md │ ├── compose-multiplatform-patterns/ │ │ └── SKILL.md │ ├── configure-ecc/ │ │ └── SKILL.md │ ├── connections-optimizer/ │ │ └── SKILL.md │ ├── content-engine/ │ │ └── SKILL.md │ ├── content-hash-cache-pattern/ │ │ └── SKILL.md │ ├── context-budget/ │ │ └── SKILL.md │ ├── continuous-agent-loop/ │ │ └── SKILL.md │ ├── continuous-learning/ │ │ ├── SKILL.md │ │ ├── config.json │ │ └── evaluate-session.sh │ ├── continuous-learning-v2/ │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ ├── observer-loop.sh │ │ │ ├── observer.md │ │ │ ├── session-guardian.sh │ │ │ └── start-observer.sh │ │ ├── config.json │ │ ├── hooks/ │ │ │ └── observe.sh │ │ └── scripts/ │ │ ├── detect-project.sh │ │ ├── instinct-cli.py │ │ ├── lib/ │ │ │ └── homunculus-dir.sh │ │ ├── migrate-homunculus.sh │ │ └── test_parse_instinct.py │ ├── cost-aware-llm-pipeline/ │ │ └── SKILL.md │ ├── cost-tracking/ │ │ └── SKILL.md │ ├── council/ │ │ └── SKILL.md │ ├── cpp-coding-standards/ │ │ └── SKILL.md │ ├── cpp-testing/ │ │ └── SKILL.md │ ├── crosspost/ │ │ └── SKILL.md │ ├── csharp-testing/ │ │ └── SKILL.md │ ├── customer-billing-ops/ │ │ └── SKILL.md │ ├── customs-trade-compliance/ │ │ └── SKILL.md │ ├── dart-flutter-patterns/ │ │ └── SKILL.md │ ├── dashboard-builder/ │ │ └── SKILL.md │ ├── data-scraper-agent/ │ │ └── SKILL.md │ ├── database-migrations/ │ │ └── SKILL.md │ ├── deep-research/ │ │ └── SKILL.md │ ├── defi-amm-security/ │ │ └── SKILL.md │ ├── deployment-patterns/ │ │ └── SKILL.md │ ├── design-system/ │ │ └── SKILL.md │ ├── django-celery/ │ │ └── SKILL.md │ ├── django-patterns/ │ │ └── SKILL.md │ ├── django-security/ │ │ └── SKILL.md │ ├── django-tdd/ │ │ └── SKILL.md │ ├── django-verification/ │ │ └── SKILL.md │ ├── dmux-workflows/ │ │ └── SKILL.md │ ├── docker-patterns/ │ │ └── SKILL.md │ ├── documentation-lookup/ │ │ └── SKILL.md │ ├── dotnet-patterns/ │ │ └── SKILL.md │ ├── e2e-testing/ │ │ └── SKILL.md │ ├── ecc-guide/ │ │ └── SKILL.md │ ├── ecc-tools-cost-audit/ │ │ └── SKILL.md │ ├── email-ops/ │ │ └── SKILL.md │ ├── energy-procurement/ │ │ └── SKILL.md │ ├── enterprise-agent-ops/ │ │ └── SKILL.md │ ├── error-handling/ │ │ └── SKILL.md │ ├── eval-harness/ │ │ └── SKILL.md │ ├── evm-token-decimals/ │ │ └── SKILL.md │ ├── exa-search/ │ │ └── SKILL.md │ ├── fal-ai-media/ │ │ └── SKILL.md │ ├── fastapi-patterns/ │ │ └── SKILL.md │ ├── finance-billing-ops/ │ │ └── SKILL.md │ ├── flox-environments/ │ │ └── SKILL.md │ ├── flutter-dart-code-review/ │ │ └── SKILL.md │ ├── foundation-models-on-device/ │ │ └── SKILL.md │ ├── frontend-design-direction/ │ │ └── SKILL.md │ ├── frontend-patterns/ │ │ └── SKILL.md │ ├── frontend-slides/ │ │ ├── SKILL.md │ │ ├── STYLE_PRESETS.md │ │ ├── animation-patterns.md │ │ ├── html-template.md │ │ ├── scripts/ │ │ │ ├── export-pdf.sh │ │ │ └── extract-pptx.py │ │ └── viewport-base.css │ ├── fsharp-testing/ │ │ └── SKILL.md │ ├── gan-style-harness/ │ │ └── SKILL.md │ ├── gateguard/ │ │ └── SKILL.md │ ├── git-workflow/ │ │ └── SKILL.md │ ├── github-ops/ │ │ └── SKILL.md │ ├── golang-patterns/ │ │ └── SKILL.md │ ├── golang-testing/ │ │ └── SKILL.md │ ├── google-workspace-ops/ │ │ └── SKILL.md │ ├── healthcare-cdss-patterns/ │ │ └── SKILL.md │ ├── healthcare-emr-patterns/ │ │ └── SKILL.md │ ├── healthcare-eval-harness/ │ │ └── SKILL.md │ ├── healthcare-phi-compliance/ │ │ └── SKILL.md │ ├── hermes-imports/ │ │ └── SKILL.md │ ├── hexagonal-architecture/ │ │ └── SKILL.md │ ├── hipaa-compliance/ │ │ └── SKILL.md │ ├── homelab-network-readiness/ │ │ └── SKILL.md │ ├── homelab-network-setup/ │ │ └── SKILL.md │ ├── homelab-pihole-dns/ │ │ └── SKILL.md │ ├── homelab-vlan-segmentation/ │ │ └── SKILL.md │ ├── homelab-wireguard-vpn/ │ │ └── SKILL.md │ ├── hookify-rules/ │ │ └── SKILL.md │ ├── inventory-demand-planning/ │ │ └── SKILL.md │ ├── investor-materials/ │ │ └── SKILL.md │ ├── investor-outreach/ │ │ └── SKILL.md │ ├── ios-icon-gen/ │ │ ├── SKILL.md │ │ └── scripts/ │ │ ├── generate_icons.swift │ │ └── iconify_gen.sh │ ├── iterative-retrieval/ │ │ └── SKILL.md │ ├── java-coding-standards/ │ │ └── SKILL.md │ ├── jira-integration/ │ │ └── SKILL.md │ ├── jpa-patterns/ │ │ └── SKILL.md │ ├── knowledge-ops/ │ │ └── SKILL.md │ ├── kotlin-coroutines-flows/ │ │ └── SKILL.md │ ├── kotlin-exposed-patterns/ │ │ └── SKILL.md │ ├── kotlin-ktor-patterns/ │ │ └── SKILL.md │ ├── kotlin-patterns/ │ │ └── SKILL.md │ ├── kotlin-testing/ │ │ └── SKILL.md │ ├── laravel-patterns/ │ │ └── SKILL.md │ ├── laravel-plugin-discovery/ │ │ └── SKILL.md │ ├── laravel-security/ │ │ └── SKILL.md │ ├── laravel-tdd/ │ │ └── SKILL.md │ ├── laravel-verification/ │ │ └── SKILL.md │ ├── lead-intelligence/ │ │ ├── SKILL.md │ │ └── agents/ │ │ ├── enrichment-agent.md │ │ ├── mutual-mapper.md │ │ ├── outreach-drafter.md │ │ └── signal-scorer.md │ ├── liquid-glass-design/ │ │ └── SKILL.md │ ├── llm-trading-agent-security/ │ │ └── SKILL.md │ ├── logistics-exception-management/ │ │ └── SKILL.md │ ├── make-interfaces-feel-better/ │ │ └── SKILL.md │ ├── manim-video/ │ │ ├── SKILL.md │ │ └── assets/ │ │ └── network_graph_scene.py │ ├── market-research/ │ │ └── SKILL.md │ ├── mcp-server-patterns/ │ │ └── SKILL.md │ ├── messages-ops/ │ │ └── SKILL.md │ ├── mle-workflow/ │ │ └── SKILL.md │ ├── motion-advanced/ │ │ └── SKILL.md │ ├── motion-foundations/ │ │ └── SKILL.md │ ├── motion-patterns/ │ │ └── SKILL.md │ ├── motion-ui/ │ │ └── SKILL.md │ ├── mysql-patterns/ │ │ └── SKILL.md │ ├── nanoclaw-repl/ │ │ └── SKILL.md │ ├── nestjs-patterns/ │ │ └── SKILL.md │ ├── netmiko-ssh-automation/ │ │ └── SKILL.md │ ├── network-bgp-diagnostics/ │ │ └── SKILL.md │ ├── network-config-validation/ │ │ └── SKILL.md │ ├── network-interface-health/ │ │ └── SKILL.md │ ├── nextjs-turbopack/ │ │ └── SKILL.md │ ├── nodejs-keccak256/ │ │ └── SKILL.md │ ├── nutrient-document-processing/ │ │ └── SKILL.md │ ├── nuxt4-patterns/ │ │ └── SKILL.md │ ├── openclaw-persona-forge/ │ │ ├── SKILL.md │ │ ├── gacha.py │ │ ├── gacha.sh │ │ └── references/ │ │ ├── avatar-style.md │ │ ├── boundary-rules.md │ │ ├── error-handling.md │ │ ├── identity-tension.md │ │ ├── naming-system.md │ │ └── output-template.md │ ├── opensource-pipeline/ │ │ └── SKILL.md │ ├── perl-patterns/ │ │ └── SKILL.md │ ├── perl-security/ │ │ └── SKILL.md │ ├── perl-testing/ │ │ └── SKILL.md │ ├── plan-orchestrate/ │ │ └── SKILL.md │ ├── plankton-code-quality/ │ │ └── SKILL.md │ ├── postgres-patterns/ │ │ └── SKILL.md │ ├── prisma-patterns/ │ │ └── SKILL.md │ ├── product-capability/ │ │ └── SKILL.md │ ├── product-lens/ │ │ └── SKILL.md │ ├── production-audit/ │ │ └── SKILL.md │ ├── production-scheduling/ │ │ └── SKILL.md │ ├── project-flow-ops/ │ │ └── SKILL.md │ ├── prompt-optimizer/ │ │ └── SKILL.md │ ├── python-patterns/ │ │ └── SKILL.md │ ├── python-testing/ │ │ └── SKILL.md │ ├── pytorch-patterns/ │ │ └── SKILL.md │ ├── quality-nonconformance/ │ │ └── SKILL.md │ ├── quarkus-patterns/ │ │ └── SKILL.md │ ├── quarkus-security/ │ │ └── SKILL.md │ ├── quarkus-tdd/ │ │ └── SKILL.md │ ├── quarkus-verification/ │ │ └── SKILL.md │ ├── ralphinho-rfc-pipeline/ │ │ └── SKILL.md │ ├── recsys-pipeline-architect/ │ │ └── SKILL.md │ ├── redis-patterns/ │ │ └── SKILL.md │ ├── regex-vs-llm-structured-text/ │ │ └── SKILL.md │ ├── remotion-video-creation/ │ │ ├── SKILL.md │ │ └── rules/ │ │ ├── 3d.md │ │ ├── animations.md │ │ ├── assets/ │ │ │ ├── charts-bar-chart.tsx │ │ │ ├── text-animations-typewriter.tsx │ │ │ └── text-animations-word-highlight.tsx │ │ ├── assets.md │ │ ├── audio.md │ │ ├── calculate-metadata.md │ │ ├── can-decode.md │ │ ├── charts.md │ │ ├── compositions.md │ │ ├── display-captions.md │ │ ├── extract-frames.md │ │ ├── fonts.md │ │ ├── get-audio-duration.md │ │ ├── get-video-dimensions.md │ │ ├── get-video-duration.md │ │ ├── gifs.md │ │ ├── images.md │ │ ├── import-srt-captions.md │ │ ├── lottie.md │ │ ├── measuring-dom-nodes.md │ │ ├── measuring-text.md │ │ ├── sequencing.md │ │ ├── tailwind.md │ │ ├── text-animations.md │ │ ├── timing.md │ │ ├── transcribe-captions.md │ │ ├── transitions.md │ │ ├── trimming.md │ │ └── videos.md │ ├── repo-scan/ │ │ └── SKILL.md │ ├── research-ops/ │ │ └── SKILL.md │ ├── returns-reverse-logistics/ │ │ └── SKILL.md │ ├── rules-distill/ │ │ ├── SKILL.md │ │ └── scripts/ │ │ ├── scan-rules.sh │ │ └── scan-skills.sh │ ├── rust-patterns/ │ │ └── SKILL.md │ ├── rust-testing/ │ │ └── SKILL.md │ ├── safety-guard/ │ │ └── SKILL.md │ ├── santa-method/ │ │ └── SKILL.md │ ├── scientific-db-pubmed-database/ │ │ └── SKILL.md │ ├── scientific-db-uspto-database/ │ │ └── SKILL.md │ ├── scientific-pkg-gget/ │ │ └── SKILL.md │ ├── scientific-thinking-literature-review/ │ │ └── SKILL.md │ ├── scientific-thinking-scholar-evaluation/ │ │ └── SKILL.md │ ├── search-first/ │ │ └── SKILL.md │ ├── security-bounty-hunter/ │ │ └── SKILL.md │ ├── security-review/ │ │ ├── SKILL.md │ │ └── cloud-infrastructure-security.md │ ├── security-scan/ │ │ └── SKILL.md │ ├── seo/ │ │ └── SKILL.md │ ├── skill-comply/ │ │ ├── .gitignore │ │ ├── SKILL.md │ │ ├── fixtures/ │ │ │ ├── compliant_trace.jsonl │ │ │ ├── noncompliant_trace.jsonl │ │ │ └── tdd_spec.yaml │ │ ├── prompts/ │ │ │ ├── classifier.md │ │ │ ├── scenario_generator.md │ │ │ └── spec_generator.md │ │ ├── pyproject.toml │ │ ├── scripts/ │ │ │ ├── __init__.py │ │ │ ├── classifier.py │ │ │ ├── grader.py │ │ │ ├── parser.py │ │ │ ├── report.py │ │ │ ├── run.py │ │ │ ├── runner.py │ │ │ ├── scenario_generator.py │ │ │ ├── spec_generator.py │ │ │ └── utils.py │ │ └── tests/ │ │ ├── test_grader.py │ │ ├── test_parser.py │ │ └── test_runner.py │ ├── skill-scout/ │ │ └── SKILL.md │ ├── skill-stocktake/ │ │ ├── SKILL.md │ │ └── scripts/ │ │ ├── quick-diff.sh │ │ ├── save-results.sh │ │ └── scan.sh │ ├── social-graph-ranker/ │ │ └── SKILL.md │ ├── springboot-patterns/ │ │ └── SKILL.md │ ├── springboot-security/ │ │ └── SKILL.md │ ├── springboot-tdd/ │ │ └── SKILL.md │ ├── springboot-verification/ │ │ └── SKILL.md │ ├── strategic-compact/ │ │ └── SKILL.md │ ├── swift-actor-persistence/ │ │ └── SKILL.md │ ├── swift-concurrency-6-2/ │ │ └── SKILL.md │ ├── swift-protocol-di-testing/ │ │ └── SKILL.md │ ├── swiftui-patterns/ │ │ └── SKILL.md │ ├── tdd-workflow/ │ │ └── SKILL.md │ ├── team-builder/ │ │ └── SKILL.md │ ├── terminal-ops/ │ │ └── SKILL.md │ ├── tinystruct-patterns/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── architecture.md │ │ ├── data-handling.md │ │ ├── database.md │ │ ├── routing.md │ │ ├── system-usage.md │ │ └── testing.md │ ├── token-budget-advisor/ │ │ └── SKILL.md │ ├── ui-demo/ │ │ └── SKILL.md │ ├── ui-to-vue/ │ │ └── SKILL.md │ ├── uncloud/ │ │ └── SKILL.md │ ├── unified-notifications-ops/ │ │ └── SKILL.md │ ├── verification-loop/ │ │ └── SKILL.md │ ├── video-editing/ │ │ └── SKILL.md │ ├── videodb/ │ │ ├── SKILL.md │ │ ├── reference/ │ │ │ ├── api-reference.md │ │ │ ├── capture-reference.md │ │ │ ├── capture.md │ │ │ ├── editor.md │ │ │ ├── generative.md │ │ │ ├── rtstream-reference.md │ │ │ ├── rtstream.md │ │ │ ├── search.md │ │ │ ├── streaming.md │ │ │ └── use-cases.md │ │ └── scripts/ │ │ └── ws_listener.py │ ├── visa-doc-translate/ │ │ ├── README.md │ │ └── SKILL.md │ ├── vite-patterns/ │ │ └── SKILL.md │ ├── windows-desktop-e2e/ │ │ └── SKILL.md │ ├── workspace-surface-audit/ │ │ └── SKILL.md │ └── x-api/ │ └── SKILL.md ├── src/ │ └── llm/ │ ├── __init__.py │ ├── __main__.py │ ├── cli/ │ │ ├── __init__.py │ │ └── selector.py │ ├── core/ │ │ ├── __init__.py │ │ ├── interface.py │ │ └── types.py │ ├── prompt/ │ │ ├── __init__.py │ │ ├── builder.py │ │ └── templates/ │ │ └── __init__.py │ ├── providers/ │ │ ├── __init__.py │ │ ├── astraflow.py │ │ ├── claude.py │ │ ├── constants.py │ │ ├── ollama.py │ │ ├── openai.py │ │ └── resolver.py │ └── tools/ │ ├── __init__.py │ └── executor.py ├── tests/ │ ├── __init__.py │ ├── ci/ │ │ ├── agent-instruction-safety.test.js │ │ ├── agent-yaml-surface.test.js │ │ ├── catalog.test.js │ │ ├── code-reviewer-false-positive-guard.test.js │ │ ├── codex-skill-surface.test.js │ │ ├── command-registry.test.js │ │ ├── mle-workflow-coverage.test.js │ │ ├── no-personal-paths.test.js │ │ ├── scan-supply-chain-iocs.test.js │ │ ├── supply-chain-advisory-sources.test.js │ │ ├── supply-chain-watch-workflow.test.js │ │ ├── validate-workflow-security.test.js │ │ └── validators.test.js │ ├── codex-config.test.js │ ├── commands/ │ │ ├── command-frontmatter.test.js │ │ └── plan-command.test.js │ ├── conftest.py │ ├── docs/ │ │ ├── canary-watch.test.js │ │ ├── configure-ecc-install-paths.test.js │ │ ├── continuous-learning-v2-docs.test.js │ │ ├── copilot-support.test.js │ │ ├── ecc2-release-surface.test.js │ │ ├── evaluator-rag-prototype.test.js │ │ ├── harness-adapter-compliance.test.js │ │ ├── install-identifiers.test.js │ │ ├── legacy-artifact-inventory.test.js │ │ ├── mcp-management-docs.test.js │ │ └── stale-pr-salvage-ledger.test.js │ ├── hooks/ │ │ ├── auto-tmux-dev.test.js │ │ ├── bash-hook-dispatcher.test.js │ │ ├── block-no-verify.test.js │ │ ├── check-hook-enabled.test.js │ │ ├── config-protection.test.js │ │ ├── continuous-learning-observe-runner.test.js │ │ ├── cost-tracker.test.js │ │ ├── design-quality-check.test.js │ │ ├── detect-project-worktree.test.js │ │ ├── doc-file-warning.test.js │ │ ├── ecc-context-monitor.test.js │ │ ├── ecc-metrics-bridge.test.js │ │ ├── ecc-statusline.test.js │ │ ├── evaluate-session.test.js │ │ ├── gateguard-fact-force.test.js │ │ ├── governance-capture.test.js │ │ ├── hook-flags.test.js │ │ ├── hooks.test.js │ │ ├── insaits-security-monitor.test.js │ │ ├── insaits-security-wrapper.test.js │ │ ├── mcp-health-check.test.js │ │ ├── observe-subdirectory-detection.test.js │ │ ├── observer-memory.test.js │ │ ├── plugin-hook-bootstrap.test.js │ │ ├── post-bash-hooks.test.js │ │ ├── pre-bash-commit-quality.test.js │ │ ├── pre-bash-dev-server-block.test.js │ │ ├── pre-bash-reminders.test.js │ │ ├── quality-gate.test.js │ │ ├── session-activity-tracker.test.js │ │ ├── stop-format-typecheck.test.js │ │ ├── suggest-compact.test.js │ │ └── test_insaits_security_monitor.py │ ├── integration/ │ │ └── hooks.test.js │ ├── lib/ │ │ ├── agent-compress.test.js │ │ ├── changed-files-store.test.js │ │ ├── command-plugin-root.test.js │ │ ├── cost-estimate.test.js │ │ ├── inspection.test.js │ │ ├── install-config.test.js │ │ ├── install-executor.test.js │ │ ├── install-lifecycle.test.js │ │ ├── install-manifests.test.js │ │ ├── install-request.test.js │ │ ├── install-state.test.js │ │ ├── install-targets.test.js │ │ ├── locale-install.test.js │ │ ├── mcp-config.test.js │ │ ├── observer-sessions.test.js │ │ ├── orchestration-session.test.js │ │ ├── package-manager.test.js │ │ ├── project-detect.test.js │ │ ├── resolve-ecc-root.test.js │ │ ├── resolve-formatter.test.js │ │ ├── selective-install.test.js │ │ ├── session-adapters.test.js │ │ ├── session-aliases.test.js │ │ ├── session-bridge.test.js │ │ ├── session-manager.test.js │ │ ├── shell-split.test.js │ │ ├── skill-dashboard.test.js │ │ ├── skill-evolution.test.js │ │ ├── skill-improvement.test.js │ │ ├── state-store.test.js │ │ ├── tmux-worktree-orchestrator.test.js │ │ └── utils.test.js │ ├── opencode-config.test.js │ ├── opencode-plugin-hooks.test.js │ ├── plugin-manifest.test.js │ ├── run-all.js │ ├── scripts/ │ │ ├── auto-update.test.js │ │ ├── build-opencode.test.js │ │ ├── catalog.test.js │ │ ├── check-unicode-safety.test.js │ │ ├── claw.test.js │ │ ├── codex-hooks.test.js │ │ ├── consult.test.js │ │ ├── discussion-audit.test.js │ │ ├── doctor.test.js │ │ ├── ecc-dashboard.test.js │ │ ├── ecc.test.js │ │ ├── gemini-adapt-agents.test.js │ │ ├── harness-audit.test.js │ │ ├── install-apply.test.js │ │ ├── install-plan.test.js │ │ ├── install-ps1.test.js │ │ ├── install-readme-clarity.test.js │ │ ├── install-sh.test.js │ │ ├── instinct-cli-projects.test.js │ │ ├── list-installed.test.js │ │ ├── loop-status.test.js │ │ ├── manual-hook-install-docs.test.js │ │ ├── npm-publish-surface.test.js │ │ ├── observability-readiness.test.js │ │ ├── openclaw-persona-forge-gacha.test.js │ │ ├── operator-readiness-dashboard.test.js │ │ ├── orchestrate-codex-worker.test.js │ │ ├── orchestration-status.test.js │ │ ├── platform-audit.test.js │ │ ├── post-bash-command-log.test.js │ │ ├── preview-pack-smoke.test.js │ │ ├── release-approval-gate.test.js │ │ ├── release-publish.test.js │ │ ├── release-video-suite.test.js │ │ ├── release.test.js │ │ ├── repair.test.js │ │ ├── session-inspect.test.js │ │ ├── setup-package-manager.test.js │ │ ├── skill-create-output.test.js │ │ ├── sync-ecc-to-codex.test.js │ │ ├── trae-install.test.js │ │ └── uninstall.test.js │ ├── test_astraflow_provider.py │ ├── test_builder.py │ ├── test_claude_provider.py │ ├── test_executor.py │ ├── test_provider_tools.py │ ├── test_resolver.py │ ├── test_templates.py │ └── test_types.py ├── the-longform-guide.md ├── the-security-guide.md └── the-shortform-guide.md