gitextract_4n75nwkk/ ├── .agents/ │ └── skills/ │ ├── api-design/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── article-writing/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── backend-patterns/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── bun-runtime/ │ │ ├── SKILL.md │ │ └── agents/ │ │ └── openai.yaml │ ├── claude-api/ │ │ ├── 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 │ ├── 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 │ ├── nextjs-turbopack/ │ │ ├── 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/ │ ├── homunculus/ │ │ └── instincts/ │ │ └── inherited/ │ │ └── everything-claude-code-instincts.yaml │ ├── package-manager.json │ └── skills/ │ └── everything-claude-code/ │ └── SKILL.md ├── .claude-plugin/ │ ├── PLUGIN_SCHEMA_NOTES.md │ ├── README.md │ ├── marketplace.json │ └── plugin.json ├── .codex/ │ ├── AGENTS.md │ ├── agents/ │ │ ├── docs-researcher.toml │ │ ├── explorer.toml │ │ └── reviewer.toml │ └── config.toml ├── .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 ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── copilot-task.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── release.yml │ └── workflows/ │ ├── ci.yml │ ├── maintenance.yml │ ├── monthly-metrics.yml │ ├── release.yml │ ├── reusable-release.yml │ ├── reusable-test.yml │ └── reusable-validate.yml ├── .gitignore ├── .markdownlint.json ├── .npmignore ├── .opencode/ │ ├── 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.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 │ ├── prompts/ │ │ └── agents/ │ │ ├── architect.txt │ │ ├── build-error-resolver.txt │ │ ├── code-reviewer.txt │ │ ├── database-reviewer.txt │ │ ├── doc-updater.txt │ │ ├── e2e-runner.txt │ │ ├── go-build-resolver.txt │ │ ├── go-reviewer.txt │ │ ├── planner.txt │ │ ├── refactor-cleaner.txt │ │ ├── rust-build-resolver.txt │ │ ├── rust-reviewer.txt │ │ ├── security-reviewer.txt │ │ └── tdd-guide.txt │ ├── tools/ │ │ ├── check-coverage.ts │ │ ├── format-code.ts │ │ ├── git-summary.ts │ │ ├── index.ts │ │ ├── lint-check.ts │ │ ├── run-tests.ts │ │ └── security-audit.ts │ └── tsconfig.json ├── .prettierrc ├── .tool-versions ├── AGENTS.md ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README.zh-CN.md ├── SPONSORING.md ├── SPONSORS.md ├── TROUBLESHOOTING.md ├── VERSION ├── 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 │ ├── 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/ │ ├── aside.md │ ├── build-fix.md │ ├── checkpoint.md │ ├── claw.md │ ├── code-review.md │ ├── cpp-build.md │ ├── cpp-review.md │ ├── cpp-test.md │ ├── devfleet.md │ ├── docs.md │ ├── e2e.md │ ├── eval.md │ ├── evolve.md │ ├── go-build.md │ ├── go-review.md │ ├── go-test.md │ ├── gradle-build.md │ ├── harness-audit.md │ ├── instinct-export.md │ ├── instinct-import.md │ ├── instinct-status.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 │ ├── python-review.md │ ├── quality-gate.md │ ├── refactor-clean.md │ ├── resume-session.md │ ├── rust-build.md │ ├── rust-review.md │ ├── rust-test.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 ├── commitlint.config.js ├── contexts/ │ ├── dev.md │ ├── research.md │ └── review.md ├── docs/ │ ├── ARCHITECTURE-IMPROVEMENTS.md │ ├── COMMAND-AGENT-MAP.md │ ├── ECC-2.0-SESSION-ADAPTER-DISCOVERY.md │ ├── MEGA-PLAN-REPO-PROMPTS-2026-03-12.md │ ├── PHASE1-ISSUE-BUNDLE-2026-03-12.md │ ├── PR-399-REVIEW-2026-03-12.md │ ├── PR-QUEUE-TRIAGE-2026-03-13.md │ ├── SELECTIVE-INSTALL-ARCHITECTURE.md │ ├── SELECTIVE-INSTALL-DESIGN.md │ ├── SESSION-ADAPTER-CONTRACT.md │ ├── business/ │ │ ├── metrics-and-sponsorship.md │ │ └── social-launch-copy.md │ ├── continuous-learning-v2-spec.md │ ├── ja-JP/ │ │ ├── CONTRIBUTING.md │ │ ├── README.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 │ │ │ ├── python-reviewer.md │ │ │ ├── refactor-cleaner.md │ │ │ ├── security-reviewer.md │ │ │ └── tdd-guide.md │ │ ├── commands/ │ │ │ ├── README.md │ │ │ ├── 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.md │ │ │ ├── multi-backend.md │ │ │ ├── multi-execute.md │ │ │ ├── multi-frontend.md │ │ │ ├── multi-plan.md │ │ │ ├── multi-workflow.md │ │ │ ├── orchestrate.md │ │ │ ├── pm2.md │ │ │ ├── python-review.md │ │ │ ├── refactor-clean.md │ │ │ ├── sessions.md │ │ │ ├── setup-pm.md │ │ │ ├── skill-create.md │ │ │ ├── tdd.md │ │ │ ├── test-coverage.md │ │ │ ├── update-codemaps.md │ │ │ ├── update-docs.md │ │ │ └── verify.md │ │ ├── contexts/ │ │ │ ├── dev.md │ │ │ ├── research.md │ │ │ └── review.md │ │ ├── examples/ │ │ │ ├── CLAUDE.md │ │ │ └── user-CLAUDE.md │ │ ├── plugins/ │ │ │ └── README.md │ │ ├── rules/ │ │ │ ├── README.md │ │ │ ├── agents.md │ │ │ ├── coding-style.md │ │ │ ├── git-workflow.md │ │ │ ├── hooks.md │ │ │ ├── patterns.md │ │ │ ├── performance.md │ │ │ ├── security.md │ │ │ └── testing.md │ │ └── skills/ │ │ ├── README.md │ │ ├── backend-patterns/ │ │ │ └── SKILL.md │ │ ├── clickhouse-io/ │ │ │ └── SKILL.md │ │ ├── coding-standards/ │ │ │ └── SKILL.md │ │ ├── configure-ecc/ │ │ │ └── SKILL.md │ │ ├── continuous-learning/ │ │ │ └── SKILL.md │ │ ├── continuous-learning-v2/ │ │ │ ├── SKILL.md │ │ │ └── agents/ │ │ │ └── observer.md │ │ ├── cpp-testing/ │ │ │ └── SKILL.md │ │ ├── django-patterns/ │ │ │ └── SKILL.md │ │ ├── django-security/ │ │ │ └── SKILL.md │ │ ├── django-tdd/ │ │ │ └── SKILL.md │ │ ├── django-verification/ │ │ │ └── SKILL.md │ │ ├── eval-harness/ │ │ │ └── SKILL.md │ │ ├── frontend-patterns/ │ │ │ └── SKILL.md │ │ ├── golang-patterns/ │ │ │ └── SKILL.md │ │ ├── golang-testing/ │ │ │ └── SKILL.md │ │ ├── iterative-retrieval/ │ │ │ └── SKILL.md │ │ ├── java-coding-standards/ │ │ │ └── SKILL.md │ │ ├── jpa-patterns/ │ │ │ └── SKILL.md │ │ ├── nutrient-document-processing/ │ │ │ └── SKILL.md │ │ ├── postgres-patterns/ │ │ │ └── SKILL.md │ │ ├── project-guidelines-example/ │ │ │ └── SKILL.md │ │ ├── python-patterns/ │ │ │ └── SKILL.md │ │ ├── python-testing/ │ │ │ └── SKILL.md │ │ ├── security-review/ │ │ │ ├── SKILL.md │ │ │ └── cloud-infrastructure-security.md │ │ ├── security-scan/ │ │ │ └── SKILL.md │ │ ├── springboot-patterns/ │ │ │ └── SKILL.md │ │ ├── springboot-security/ │ │ │ └── SKILL.md │ │ ├── springboot-tdd/ │ │ │ └── SKILL.md │ │ ├── springboot-verification/ │ │ │ └── SKILL.md │ │ ├── strategic-compact/ │ │ │ └── SKILL.md │ │ ├── tdd-workflow/ │ │ │ └── SKILL.md │ │ └── verification-loop/ │ │ └── SKILL.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 │ │ ├── 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 │ ├── releases/ │ │ └── 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 │ ├── token-optimization.md │ ├── zh-CN/ │ │ ├── AGENTS.md │ │ ├── CHANGELOG.md │ │ ├── CLAUDE.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── SPONSORING.md │ │ ├── SPONSORS.md │ │ ├── TROUBLESHOOTING.md │ │ ├── agents/ │ │ │ ├── architect.md │ │ │ ├── build-error-resolver.md │ │ │ ├── chief-of-staff.md │ │ │ ├── code-reviewer.md │ │ │ ├── database-reviewer.md │ │ │ ├── doc-updater.md │ │ │ ├── e2e-runner.md │ │ │ ├── go-build-resolver.md │ │ │ ├── go-reviewer.md │ │ │ ├── harness-optimizer.md │ │ │ ├── kotlin-build-resolver.md │ │ │ ├── kotlin-reviewer.md │ │ │ ├── loop-operator.md │ │ │ ├── planner.md │ │ │ ├── python-reviewer.md │ │ │ ├── refactor-cleaner.md │ │ │ ├── security-reviewer.md │ │ │ └── tdd-guide.md │ │ ├── commands/ │ │ │ ├── aside.md │ │ │ ├── build-fix.md │ │ │ ├── checkpoint.md │ │ │ ├── claw.md │ │ │ ├── code-review.md │ │ │ ├── e2e.md │ │ │ ├── eval.md │ │ │ ├── evolve.md │ │ │ ├── go-build.md │ │ │ ├── go-review.md │ │ │ ├── go-test.md │ │ │ ├── gradle-build.md │ │ │ ├── harness-audit.md │ │ │ ├── instinct-export.md │ │ │ ├── instinct-import.md │ │ │ ├── instinct-status.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 │ │ │ ├── python-review.md │ │ │ ├── quality-gate.md │ │ │ ├── refactor-clean.md │ │ │ ├── resume-session.md │ │ │ ├── save-session.md │ │ │ ├── sessions.md │ │ │ ├── setup-pm.md │ │ │ ├── skill-create.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 │ │ │ ├── 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 │ │ │ ├── golang/ │ │ │ │ ├── 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 │ │ │ ├── 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/ │ │ │ ├── agent-harness-construction/ │ │ │ │ └── SKILL.md │ │ │ ├── agentic-engineering/ │ │ │ │ └── SKILL.md │ │ │ ├── ai-first-engineering/ │ │ │ │ └── SKILL.md │ │ │ ├── android-clean-architecture/ │ │ │ │ └── SKILL.md │ │ │ ├── api-design/ │ │ │ │ └── SKILL.md │ │ │ ├── article-writing/ │ │ │ │ └── SKILL.md │ │ │ ├── autonomous-loops/ │ │ │ │ └── SKILL.md │ │ │ ├── backend-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── blueprint/ │ │ │ │ └── SKILL.md │ │ │ ├── carrier-relationship-management/ │ │ │ │ └── SKILL.md │ │ │ ├── claude-api/ │ │ │ │ └── SKILL.md │ │ │ ├── clickhouse-io/ │ │ │ │ └── SKILL.md │ │ │ ├── coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── compose-multiplatform-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── configure-ecc/ │ │ │ │ └── SKILL.md │ │ │ ├── content-engine/ │ │ │ │ └── SKILL.md │ │ │ ├── content-hash-cache-pattern/ │ │ │ │ └── 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 │ │ │ ├── cpp-coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── cpp-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── crosspost/ │ │ │ │ └── SKILL.md │ │ │ ├── customs-trade-compliance/ │ │ │ │ └── SKILL.md │ │ │ ├── database-migrations/ │ │ │ │ └── SKILL.md │ │ │ ├── deep-research/ │ │ │ │ └── SKILL.md │ │ │ ├── deployment-patterns/ │ │ │ │ └── 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 │ │ │ ├── e2e-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── energy-procurement/ │ │ │ │ └── SKILL.md │ │ │ ├── enterprise-agent-ops/ │ │ │ │ └── SKILL.md │ │ │ ├── eval-harness/ │ │ │ │ └── SKILL.md │ │ │ ├── exa-search/ │ │ │ │ └── SKILL.md │ │ │ ├── fal-ai-media/ │ │ │ │ └── SKILL.md │ │ │ ├── foundation-models-on-device/ │ │ │ │ └── SKILL.md │ │ │ ├── frontend-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── frontend-slides/ │ │ │ │ ├── SKILL.md │ │ │ │ └── STYLE_PRESETS.md │ │ │ ├── golang-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── golang-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── inventory-demand-planning/ │ │ │ │ └── SKILL.md │ │ │ ├── investor-materials/ │ │ │ │ └── SKILL.md │ │ │ ├── investor-outreach/ │ │ │ │ └── SKILL.md │ │ │ ├── iterative-retrieval/ │ │ │ │ └── SKILL.md │ │ │ ├── java-coding-standards/ │ │ │ │ └── SKILL.md │ │ │ ├── jpa-patterns/ │ │ │ │ └── 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 │ │ │ ├── liquid-glass-design/ │ │ │ │ └── SKILL.md │ │ │ ├── logistics-exception-management/ │ │ │ │ └── SKILL.md │ │ │ ├── market-research/ │ │ │ │ └── SKILL.md │ │ │ ├── nanoclaw-repl/ │ │ │ │ └── SKILL.md │ │ │ ├── nutrient-document-processing/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-security/ │ │ │ │ └── SKILL.md │ │ │ ├── perl-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── plankton-code-quality/ │ │ │ │ └── SKILL.md │ │ │ ├── postgres-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── production-scheduling/ │ │ │ │ └── SKILL.md │ │ │ ├── project-guidelines-example/ │ │ │ │ └── SKILL.md │ │ │ ├── prompt-optimizer/ │ │ │ │ └── SKILL.md │ │ │ ├── python-patterns/ │ │ │ │ └── SKILL.md │ │ │ ├── python-testing/ │ │ │ │ └── SKILL.md │ │ │ ├── quality-nonconformance/ │ │ │ │ └── SKILL.md │ │ │ ├── ralphinho-rfc-pipeline/ │ │ │ │ └── SKILL.md │ │ │ ├── regex-vs-llm-structured-text/ │ │ │ │ └── SKILL.md │ │ │ ├── returns-reverse-logistics/ │ │ │ │ └── SKILL.md │ │ │ ├── search-first/ │ │ │ │ └── SKILL.md │ │ │ ├── security-review/ │ │ │ │ ├── SKILL.md │ │ │ │ └── cloud-infrastructure-security.md │ │ │ ├── security-scan/ │ │ │ │ └── SKILL.md │ │ │ ├── skill-stocktake/ │ │ │ │ └── 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 │ │ │ ├── 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 │ │ │ └── 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 ├── eslint.config.js ├── examples/ │ ├── CLAUDE.md │ ├── django-api-CLAUDE.md │ ├── go-microservice-CLAUDE.md │ ├── laravel-api-CLAUDE.md │ ├── rust-api-CLAUDE.md │ ├── saas-nextjs-CLAUDE.md │ ├── statusline.json │ └── user-CLAUDE.md ├── hooks/ │ ├── README.md │ └── hooks.json ├── install.ps1 ├── install.sh ├── manifests/ │ ├── install-components.json │ ├── install-modules.json │ └── install-profiles.json ├── mcp-configs/ │ └── mcp-servers.json ├── package.json ├── 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 │ ├── 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 │ ├── swift/ │ │ ├── coding-style.md │ │ ├── hooks.md │ │ ├── patterns.md │ │ ├── security.md │ │ └── testing.md │ └── typescript/ │ ├── coding-style.md │ ├── hooks.md │ ├── patterns.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 │ └── state-store.schema.json ├── scripts/ │ ├── ci/ │ │ ├── catalog.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 │ ├── claw.js │ ├── codemaps/ │ │ └── generate.ts │ ├── codex/ │ │ ├── check-codex-global-state.sh │ │ └── install-global-git-hooks.sh │ ├── codex-git-hooks/ │ │ ├── pre-commit │ │ └── pre-push │ ├── doctor.js │ ├── ecc.js │ ├── harness-audit.js │ ├── hooks/ │ │ ├── auto-tmux-dev.js │ │ ├── check-console-log.js │ │ ├── check-hook-enabled.js │ │ ├── cost-tracker.js │ │ ├── doc-file-warning.js │ │ ├── evaluate-session.js │ │ ├── insaits-security-monitor.py │ │ ├── insaits-security-wrapper.js │ │ ├── post-bash-build-complete.js │ │ ├── post-bash-pr-created.js │ │ ├── post-edit-console-warn.js │ │ ├── post-edit-format.js │ │ ├── post-edit-typecheck.js │ │ ├── pre-bash-dev-server-block.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-end-marker.js │ │ ├── session-end.js │ │ ├── session-start.js │ │ └── suggest-compact.js │ ├── install-apply.js │ ├── install-plan.js │ ├── lib/ │ │ ├── hook-flags.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 │ │ │ ├── codex-home.js │ │ │ ├── cursor-project.js │ │ │ ├── helpers.js │ │ │ ├── opencode-home.js │ │ │ └── registry.js │ │ ├── orchestration-session.js │ │ ├── package-manager.d.ts │ │ ├── package-manager.js │ │ ├── project-detect.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-manager.d.ts │ │ ├── session-manager.js │ │ ├── shell-split.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 │ ├── orchestrate-codex-worker.sh │ ├── orchestrate-worktrees.js │ ├── orchestration-status.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 ├── skills/ │ ├── agent-harness-construction/ │ │ └── SKILL.md │ ├── agentic-engineering/ │ │ └── SKILL.md │ ├── ai-first-engineering/ │ │ └── SKILL.md │ ├── ai-regression-testing/ │ │ └── SKILL.md │ ├── android-clean-architecture/ │ │ └── SKILL.md │ ├── api-design/ │ │ └── SKILL.md │ ├── article-writing/ │ │ └── SKILL.md │ ├── autonomous-loops/ │ │ └── SKILL.md │ ├── backend-patterns/ │ │ └── SKILL.md │ ├── blueprint/ │ │ └── SKILL.md │ ├── bun-runtime/ │ │ └── SKILL.md │ ├── carrier-relationship-management/ │ │ └── SKILL.md │ ├── claude-api/ │ │ └── SKILL.md │ ├── claude-devfleet/ │ │ └── SKILL.md │ ├── clickhouse-io/ │ │ └── SKILL.md │ ├── coding-standards/ │ │ └── SKILL.md │ ├── compose-multiplatform-patterns/ │ │ └── SKILL.md │ ├── configure-ecc/ │ │ └── SKILL.md │ ├── content-engine/ │ │ └── SKILL.md │ ├── content-hash-cache-pattern/ │ │ └── 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 │ │ └── test_parse_instinct.py │ ├── cost-aware-llm-pipeline/ │ │ └── SKILL.md │ ├── cpp-coding-standards/ │ │ └── SKILL.md │ ├── cpp-testing/ │ │ └── SKILL.md │ ├── crosspost/ │ │ └── SKILL.md │ ├── customs-trade-compliance/ │ │ └── SKILL.md │ ├── data-scraper-agent/ │ │ └── SKILL.md │ ├── database-migrations/ │ │ └── SKILL.md │ ├── deep-research/ │ │ └── SKILL.md │ ├── deployment-patterns/ │ │ └── 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 │ ├── e2e-testing/ │ │ └── SKILL.md │ ├── energy-procurement/ │ │ └── SKILL.md │ ├── enterprise-agent-ops/ │ │ └── SKILL.md │ ├── eval-harness/ │ │ └── SKILL.md │ ├── exa-search/ │ │ └── SKILL.md │ ├── fal-ai-media/ │ │ └── SKILL.md │ ├── foundation-models-on-device/ │ │ └── SKILL.md │ ├── frontend-patterns/ │ │ └── SKILL.md │ ├── frontend-slides/ │ │ ├── SKILL.md │ │ └── STYLE_PRESETS.md │ ├── golang-patterns/ │ │ └── SKILL.md │ ├── golang-testing/ │ │ └── SKILL.md │ ├── inventory-demand-planning/ │ │ └── SKILL.md │ ├── investor-materials/ │ │ └── SKILL.md │ ├── investor-outreach/ │ │ └── SKILL.md │ ├── iterative-retrieval/ │ │ └── SKILL.md │ ├── java-coding-standards/ │ │ └── SKILL.md │ ├── jpa-patterns/ │ │ └── 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-security/ │ │ └── SKILL.md │ ├── laravel-tdd/ │ │ └── SKILL.md │ ├── laravel-verification/ │ │ └── SKILL.md │ ├── liquid-glass-design/ │ │ └── SKILL.md │ ├── logistics-exception-management/ │ │ └── SKILL.md │ ├── market-research/ │ │ └── SKILL.md │ ├── mcp-server-patterns/ │ │ └── SKILL.md │ ├── nanoclaw-repl/ │ │ └── SKILL.md │ ├── nextjs-turbopack/ │ │ └── SKILL.md │ ├── nutrient-document-processing/ │ │ └── SKILL.md │ ├── perl-patterns/ │ │ └── SKILL.md │ ├── perl-security/ │ │ └── SKILL.md │ ├── perl-testing/ │ │ └── SKILL.md │ ├── plankton-code-quality/ │ │ └── SKILL.md │ ├── postgres-patterns/ │ │ └── SKILL.md │ ├── production-scheduling/ │ │ └── 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 │ ├── ralphinho-rfc-pipeline/ │ │ └── SKILL.md │ ├── regex-vs-llm-structured-text/ │ │ └── SKILL.md │ ├── returns-reverse-logistics/ │ │ └── SKILL.md │ ├── rust-patterns/ │ │ └── SKILL.md │ ├── rust-testing/ │ │ └── SKILL.md │ ├── search-first/ │ │ └── SKILL.md │ ├── security-review/ │ │ ├── SKILL.md │ │ └── cloud-infrastructure-security.md │ ├── security-scan/ │ │ └── SKILL.md │ ├── skill-stocktake/ │ │ ├── SKILL.md │ │ └── scripts/ │ │ ├── quick-diff.sh │ │ ├── save-results.sh │ │ └── scan.sh │ ├── springboot-patterns/ │ │ └── SKILL.md │ ├── springboot-security/ │ │ └── SKILL.md │ ├── springboot-tdd/ │ │ └── SKILL.md │ ├── springboot-verification/ │ │ └── SKILL.md │ ├── strategic-compact/ │ │ ├── SKILL.md │ │ └── suggest-compact.sh │ ├── 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 │ ├── 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 │ └── x-api/ │ └── SKILL.md ├── tests/ │ ├── ci/ │ │ └── validators.test.js │ ├── codex-config.test.js │ ├── hooks/ │ │ ├── auto-tmux-dev.test.js │ │ ├── check-hook-enabled.test.js │ │ ├── cost-tracker.test.js │ │ ├── doc-file-warning.test.js │ │ ├── evaluate-session.test.js │ │ ├── hook-flags.test.js │ │ ├── hooks.test.js │ │ ├── observer-memory.test.js │ │ ├── post-bash-hooks.test.js │ │ ├── pre-bash-dev-server-block.test.js │ │ ├── pre-bash-reminders.test.js │ │ ├── quality-gate.test.js │ │ └── suggest-compact.test.js │ ├── integration/ │ │ └── hooks.test.js │ ├── lib/ │ │ ├── install-config.test.js │ │ ├── install-lifecycle.test.js │ │ ├── install-manifests.test.js │ │ ├── install-request.test.js │ │ ├── install-state.test.js │ │ ├── install-targets.test.js │ │ ├── orchestration-session.test.js │ │ ├── package-manager.test.js │ │ ├── project-detect.test.js │ │ ├── resolve-formatter.test.js │ │ ├── session-adapters.test.js │ │ ├── session-aliases.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 │ ├── run-all.js │ └── scripts/ │ ├── claw.test.js │ ├── doctor.test.js │ ├── ecc.test.js │ ├── harness-audit.test.js │ ├── install-apply.test.js │ ├── install-plan.test.js │ ├── install-ps1.test.js │ ├── install-sh.test.js │ ├── list-installed.test.js │ ├── orchestrate-codex-worker.test.js │ ├── orchestration-status.test.js │ ├── repair.test.js │ ├── session-inspect.test.js │ ├── setup-package-manager.test.js │ ├── skill-create-output.test.js │ └── uninstall.test.js ├── the-longform-guide.md ├── the-openclaw-guide.md ├── the-security-guide.md └── the-shortform-guide.md