gitextract_hbv0y_ib/ ├── .claude-plugin/ │ └── marketplace.json ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ └── ISSUE_TEMPLATE/ │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ ├── moderation_report.yml │ └── new_subagent.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── docs/ │ ├── agent-skills.md │ ├── agents.md │ ├── architecture.md │ ├── plugins.md │ └── usage.md ├── plugins/ │ ├── accessibility-compliance/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── ui-visual-validator.md │ │ ├── commands/ │ │ │ └── accessibility-audit.md │ │ └── skills/ │ │ ├── screen-reader-testing/ │ │ │ └── SKILL.md │ │ └── wcag-audit-patterns/ │ │ └── SKILL.md │ ├── agent-orchestration/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── context-manager.md │ │ └── commands/ │ │ ├── improve-agent.md │ │ └── multi-agent-optimize.md │ ├── agent-teams/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ ├── team-debugger.md │ │ │ ├── team-implementer.md │ │ │ ├── team-lead.md │ │ │ └── team-reviewer.md │ │ ├── commands/ │ │ │ ├── team-debug.md │ │ │ ├── team-delegate.md │ │ │ ├── team-feature.md │ │ │ ├── team-review.md │ │ │ ├── team-shutdown.md │ │ │ ├── team-spawn.md │ │ │ └── team-status.md │ │ └── skills/ │ │ ├── multi-reviewer-patterns/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ └── review-dimensions.md │ │ ├── parallel-debugging/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ └── hypothesis-testing.md │ │ ├── parallel-feature-development/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── file-ownership.md │ │ │ └── merge-strategies.md │ │ ├── task-coordination-strategies/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── dependency-graphs.md │ │ │ └── task-decomposition.md │ │ ├── team-communication-protocols/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ └── messaging-patterns.md │ │ └── team-composition-patterns/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── agent-type-selection.md │ │ └── preset-teams.md │ ├── api-scaffolding/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── backend-architect.md │ │ │ ├── django-pro.md │ │ │ ├── fastapi-pro.md │ │ │ └── graphql-architect.md │ │ └── skills/ │ │ └── fastapi-templates/ │ │ └── SKILL.md │ ├── api-testing-observability/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── api-documenter.md │ │ └── commands/ │ │ └── api-mock.md │ ├── application-performance/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── frontend-developer.md │ │ │ ├── observability-engineer.md │ │ │ └── performance-engineer.md │ │ └── commands/ │ │ └── performance-optimization.md │ ├── arm-cortex-microcontrollers/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ └── arm-cortex-expert.md │ ├── backend-api-security/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── backend-architect.md │ │ └── backend-security-coder.md │ ├── backend-development/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── backend-architect.md │ │ │ ├── event-sourcing-architect.md │ │ │ ├── graphql-architect.md │ │ │ ├── performance-engineer.md │ │ │ ├── security-auditor.md │ │ │ ├── tdd-orchestrator.md │ │ │ ├── temporal-python-pro.md │ │ │ └── test-automator.md │ │ ├── commands/ │ │ │ └── feature-development.md │ │ └── skills/ │ │ ├── api-design-principles/ │ │ │ ├── SKILL.md │ │ │ ├── assets/ │ │ │ │ ├── api-design-checklist.md │ │ │ │ └── rest-api-template.py │ │ │ └── references/ │ │ │ ├── graphql-schema-design.md │ │ │ └── rest-best-practices.md │ │ ├── architecture-patterns/ │ │ │ └── SKILL.md │ │ ├── cqrs-implementation/ │ │ │ └── SKILL.md │ │ ├── event-store-design/ │ │ │ └── SKILL.md │ │ ├── microservices-patterns/ │ │ │ └── SKILL.md │ │ ├── projection-patterns/ │ │ │ └── SKILL.md │ │ ├── saga-orchestration/ │ │ │ └── SKILL.md │ │ ├── temporal-python-testing/ │ │ │ ├── SKILL.md │ │ │ └── resources/ │ │ │ ├── integration-testing.md │ │ │ ├── local-setup.md │ │ │ ├── replay-testing.md │ │ │ └── unit-testing.md │ │ └── workflow-orchestration-patterns/ │ │ └── SKILL.md │ ├── blockchain-web3/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── blockchain-developer.md │ │ └── skills/ │ │ ├── defi-protocol-templates/ │ │ │ └── SKILL.md │ │ ├── nft-standards/ │ │ │ └── SKILL.md │ │ ├── solidity-security/ │ │ │ └── SKILL.md │ │ └── web3-testing/ │ │ └── SKILL.md │ ├── business-analytics/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── business-analyst.md │ │ └── skills/ │ │ ├── data-storytelling/ │ │ │ └── SKILL.md │ │ └── kpi-dashboard-design/ │ │ └── SKILL.md │ ├── c4-architecture/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── c4-code.md │ │ │ ├── c4-component.md │ │ │ ├── c4-container.md │ │ │ └── c4-context.md │ │ └── commands/ │ │ └── c4-architecture.md │ ├── cicd-automation/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── cloud-architect.md │ │ │ ├── deployment-engineer.md │ │ │ ├── devops-troubleshooter.md │ │ │ ├── kubernetes-architect.md │ │ │ └── terraform-specialist.md │ │ ├── commands/ │ │ │ └── workflow-automate.md │ │ └── skills/ │ │ ├── deployment-pipeline-design/ │ │ │ └── SKILL.md │ │ ├── github-actions-templates/ │ │ │ └── SKILL.md │ │ ├── gitlab-ci-patterns/ │ │ │ └── SKILL.md │ │ └── secrets-management/ │ │ └── SKILL.md │ ├── cloud-infrastructure/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── cloud-architect.md │ │ │ ├── deployment-engineer.md │ │ │ ├── hybrid-cloud-architect.md │ │ │ ├── kubernetes-architect.md │ │ │ ├── network-engineer.md │ │ │ ├── service-mesh-expert.md │ │ │ └── terraform-specialist.md │ │ └── skills/ │ │ ├── cost-optimization/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ └── tagging-standards.md │ │ ├── hybrid-cloud-networking/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ └── direct-connect.md │ │ ├── istio-traffic-management/ │ │ │ └── SKILL.md │ │ ├── linkerd-patterns/ │ │ │ └── SKILL.md │ │ ├── mtls-configuration/ │ │ │ └── SKILL.md │ │ ├── multi-cloud-architecture/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── multi-cloud-patterns.md │ │ │ └── service-comparison.md │ │ ├── service-mesh-observability/ │ │ │ └── SKILL.md │ │ └── terraform-module-library/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── aws-modules.md │ │ └── oci-modules.md │ ├── code-documentation/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── code-reviewer.md │ │ │ ├── docs-architect.md │ │ │ └── tutorial-engineer.md │ │ └── commands/ │ │ ├── code-explain.md │ │ └── doc-generate.md │ ├── code-refactoring/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── code-reviewer.md │ │ │ └── legacy-modernizer.md │ │ └── commands/ │ │ ├── context-restore.md │ │ ├── refactor-clean.md │ │ └── tech-debt.md │ ├── codebase-cleanup/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── code-reviewer.md │ │ │ └── test-automator.md │ │ └── commands/ │ │ ├── deps-audit.md │ │ ├── refactor-clean.md │ │ └── tech-debt.md │ ├── comprehensive-review/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── architect-review.md │ │ │ ├── code-reviewer.md │ │ │ └── security-auditor.md │ │ └── commands/ │ │ ├── full-review.md │ │ └── pr-enhance.md │ ├── conductor/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ └── conductor-validator.md │ │ ├── commands/ │ │ │ ├── implement.md │ │ │ ├── manage.md │ │ │ ├── new-track.md │ │ │ ├── revert.md │ │ │ ├── setup.md │ │ │ └── status.md │ │ ├── skills/ │ │ │ ├── context-driven-development/ │ │ │ │ ├── SKILL.md │ │ │ │ └── references/ │ │ │ │ └── artifact-templates.md │ │ │ ├── track-management/ │ │ │ │ └── SKILL.md │ │ │ └── workflow-patterns/ │ │ │ └── SKILL.md │ │ └── templates/ │ │ ├── code_styleguides/ │ │ │ ├── csharp.md │ │ │ ├── dart.md │ │ │ ├── general.md │ │ │ ├── go.md │ │ │ ├── html-css.md │ │ │ ├── javascript.md │ │ │ ├── python.md │ │ │ └── typescript.md │ │ ├── index.md │ │ ├── product-guidelines.md │ │ ├── product.md │ │ ├── tech-stack.md │ │ ├── track-metadata.json │ │ ├── track-plan.md │ │ ├── track-spec.md │ │ ├── tracks.md │ │ └── workflow.md │ ├── content-marketing/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── content-marketer.md │ │ └── search-specialist.md │ ├── context-management/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── context-manager.md │ │ └── commands/ │ │ ├── context-restore.md │ │ └── context-save.md │ ├── customer-sales-automation/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── customer-support.md │ │ └── sales-automator.md │ ├── data-engineering/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── backend-architect.md │ │ │ └── data-engineer.md │ │ ├── commands/ │ │ │ ├── data-driven-feature.md │ │ │ └── data-pipeline.md │ │ └── skills/ │ │ ├── airflow-dag-patterns/ │ │ │ └── SKILL.md │ │ ├── data-quality-frameworks/ │ │ │ └── SKILL.md │ │ ├── dbt-transformation-patterns/ │ │ │ └── SKILL.md │ │ └── spark-optimization/ │ │ └── SKILL.md │ ├── data-validation-suite/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ └── backend-security-coder.md │ ├── database-cloud-optimization/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── backend-architect.md │ │ │ ├── cloud-architect.md │ │ │ ├── database-architect.md │ │ │ └── database-optimizer.md │ │ └── commands/ │ │ └── cost-optimize.md │ ├── database-design/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── database-architect.md │ │ │ └── sql-pro.md │ │ └── skills/ │ │ └── postgresql/ │ │ └── SKILL.md │ ├── database-migrations/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── database-admin.md │ │ │ └── database-optimizer.md │ │ └── commands/ │ │ ├── migration-observability.md │ │ └── sql-migrations.md │ ├── debugging-toolkit/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── debugger.md │ │ │ └── dx-optimizer.md │ │ └── commands/ │ │ └── smart-debug.md │ ├── dependency-management/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── legacy-modernizer.md │ │ └── commands/ │ │ └── deps-audit.md │ ├── deployment-strategies/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── deployment-engineer.md │ │ └── terraform-specialist.md │ ├── deployment-validation/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── cloud-architect.md │ │ └── commands/ │ │ └── config-validate.md │ ├── developer-essentials/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── monorepo-architect.md │ │ └── skills/ │ │ ├── auth-implementation-patterns/ │ │ │ └── SKILL.md │ │ ├── bazel-build-optimization/ │ │ │ └── SKILL.md │ │ ├── code-review-excellence/ │ │ │ └── SKILL.md │ │ ├── debugging-strategies/ │ │ │ └── SKILL.md │ │ ├── e2e-testing-patterns/ │ │ │ └── SKILL.md │ │ ├── error-handling-patterns/ │ │ │ └── SKILL.md │ │ ├── git-advanced-workflows/ │ │ │ └── SKILL.md │ │ ├── monorepo-management/ │ │ │ └── SKILL.md │ │ ├── nx-workspace-patterns/ │ │ │ └── SKILL.md │ │ ├── sql-optimization-patterns/ │ │ │ └── SKILL.md │ │ └── turborepo-caching/ │ │ └── SKILL.md │ ├── distributed-debugging/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── devops-troubleshooter.md │ │ │ └── error-detective.md │ │ └── commands/ │ │ └── debug-trace.md │ ├── documentation-generation/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── api-documenter.md │ │ │ ├── docs-architect.md │ │ │ ├── mermaid-expert.md │ │ │ ├── reference-builder.md │ │ │ └── tutorial-engineer.md │ │ ├── commands/ │ │ │ └── doc-generate.md │ │ └── skills/ │ │ ├── architecture-decision-records/ │ │ │ └── SKILL.md │ │ ├── changelog-automation/ │ │ │ └── SKILL.md │ │ └── openapi-spec-generation/ │ │ └── SKILL.md │ ├── dotnet-contribution/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ └── dotnet-architect.md │ │ └── skills/ │ │ └── dotnet-backend-patterns/ │ │ ├── SKILL.md │ │ ├── assets/ │ │ │ ├── repository-template.cs │ │ │ └── service-template.cs │ │ └── references/ │ │ ├── dapper-patterns.md │ │ └── ef-core-best-practices.md │ ├── error-debugging/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── debugger.md │ │ │ └── error-detective.md │ │ └── commands/ │ │ ├── error-analysis.md │ │ ├── error-trace.md │ │ └── multi-agent-review.md │ ├── error-diagnostics/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── debugger.md │ │ │ └── error-detective.md │ │ └── commands/ │ │ ├── error-analysis.md │ │ ├── error-trace.md │ │ └── smart-debug.md │ ├── framework-migration/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── architect-review.md │ │ │ └── legacy-modernizer.md │ │ ├── commands/ │ │ │ ├── code-migrate.md │ │ │ ├── deps-upgrade.md │ │ │ └── legacy-modernize.md │ │ └── skills/ │ │ ├── angular-migration/ │ │ │ └── SKILL.md │ │ ├── database-migration/ │ │ │ └── SKILL.md │ │ ├── dependency-upgrade/ │ │ │ └── SKILL.md │ │ └── react-modernization/ │ │ └── SKILL.md │ ├── frontend-mobile-development/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── frontend-developer.md │ │ │ └── mobile-developer.md │ │ ├── commands/ │ │ │ └── component-scaffold.md │ │ └── skills/ │ │ ├── nextjs-app-router-patterns/ │ │ │ └── SKILL.md │ │ ├── react-native-architecture/ │ │ │ └── SKILL.md │ │ ├── react-state-management/ │ │ │ └── SKILL.md │ │ └── tailwind-design-system/ │ │ └── SKILL.md │ ├── frontend-mobile-security/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── frontend-developer.md │ │ │ ├── frontend-security-coder.md │ │ │ └── mobile-security-coder.md │ │ └── commands/ │ │ └── xss-scan.md │ ├── full-stack-orchestration/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── deployment-engineer.md │ │ │ ├── performance-engineer.md │ │ │ ├── security-auditor.md │ │ │ └── test-automator.md │ │ └── commands/ │ │ └── full-stack-feature.md │ ├── functional-programming/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── elixir-pro.md │ │ └── haskell-pro.md │ ├── game-development/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── minecraft-bukkit-pro.md │ │ │ └── unity-developer.md │ │ └── skills/ │ │ ├── godot-gdscript-patterns/ │ │ │ └── SKILL.md │ │ └── unity-ecs-patterns/ │ │ └── SKILL.md │ ├── git-pr-workflows/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── code-reviewer.md │ │ └── commands/ │ │ ├── git-workflow.md │ │ ├── onboard.md │ │ └── pr-enhance.md │ ├── hr-legal-compliance/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── hr-pro.md │ │ │ └── legal-advisor.md │ │ └── skills/ │ │ ├── employment-contract-templates/ │ │ │ └── SKILL.md │ │ └── gdpr-data-handling/ │ │ └── SKILL.md │ ├── incident-response/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── code-reviewer.md │ │ │ ├── debugger.md │ │ │ ├── devops-troubleshooter.md │ │ │ ├── error-detective.md │ │ │ ├── incident-responder.md │ │ │ └── test-automator.md │ │ ├── commands/ │ │ │ ├── incident-response.md │ │ │ └── smart-fix.md │ │ └── skills/ │ │ ├── incident-runbook-templates/ │ │ │ └── SKILL.md │ │ ├── on-call-handoff-patterns/ │ │ │ └── SKILL.md │ │ └── postmortem-writing/ │ │ └── SKILL.md │ ├── javascript-typescript/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── javascript-pro.md │ │ │ └── typescript-pro.md │ │ ├── commands/ │ │ │ └── typescript-scaffold.md │ │ └── skills/ │ │ ├── javascript-testing-patterns/ │ │ │ └── SKILL.md │ │ ├── modern-javascript-patterns/ │ │ │ └── SKILL.md │ │ ├── nodejs-backend-patterns/ │ │ │ └── SKILL.md │ │ └── typescript-advanced-types/ │ │ └── SKILL.md │ ├── julia-development/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ └── julia-pro.md │ ├── jvm-languages/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── csharp-pro.md │ │ ├── java-pro.md │ │ └── scala-pro.md │ ├── kubernetes-operations/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── kubernetes-architect.md │ │ └── skills/ │ │ ├── gitops-workflow/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── argocd-setup.md │ │ │ └── sync-policies.md │ │ ├── helm-chart-scaffolding/ │ │ │ ├── SKILL.md │ │ │ ├── assets/ │ │ │ │ ├── Chart.yaml.template │ │ │ │ └── values.yaml.template │ │ │ ├── references/ │ │ │ │ └── chart-structure.md │ │ │ └── scripts/ │ │ │ └── validate-chart.sh │ │ ├── k8s-manifest-generator/ │ │ │ ├── SKILL.md │ │ │ ├── assets/ │ │ │ │ ├── configmap-template.yaml │ │ │ │ ├── deployment-template.yaml │ │ │ │ └── service-template.yaml │ │ │ └── references/ │ │ │ ├── deployment-spec.md │ │ │ └── service-spec.md │ │ └── k8s-security-policies/ │ │ ├── SKILL.md │ │ ├── assets/ │ │ │ └── network-policy-template.yaml │ │ └── references/ │ │ └── rbac-patterns.md │ ├── llm-application-dev/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ ├── ai-engineer.md │ │ │ ├── prompt-engineer.md │ │ │ └── vector-database-engineer.md │ │ ├── commands/ │ │ │ ├── ai-assistant.md │ │ │ ├── langchain-agent.md │ │ │ └── prompt-optimize.md │ │ └── skills/ │ │ ├── embedding-strategies/ │ │ │ └── SKILL.md │ │ ├── hybrid-search-implementation/ │ │ │ └── SKILL.md │ │ ├── langchain-architecture/ │ │ │ └── SKILL.md │ │ ├── llm-evaluation/ │ │ │ └── SKILL.md │ │ ├── prompt-engineering-patterns/ │ │ │ ├── SKILL.md │ │ │ ├── assets/ │ │ │ │ ├── few-shot-examples.json │ │ │ │ └── prompt-template-library.md │ │ │ ├── references/ │ │ │ │ ├── chain-of-thought.md │ │ │ │ ├── few-shot-learning.md │ │ │ │ ├── prompt-optimization.md │ │ │ │ ├── prompt-templates.md │ │ │ │ └── system-prompts.md │ │ │ └── scripts/ │ │ │ └── optimize-prompt.py │ │ ├── rag-implementation/ │ │ │ └── SKILL.md │ │ ├── similarity-search-patterns/ │ │ │ └── SKILL.md │ │ └── vector-index-tuning/ │ │ └── SKILL.md │ ├── machine-learning-ops/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── data-scientist.md │ │ │ ├── ml-engineer.md │ │ │ └── mlops-engineer.md │ │ ├── commands/ │ │ │ └── ml-pipeline.md │ │ └── skills/ │ │ └── ml-pipeline-workflow/ │ │ └── SKILL.md │ ├── meigen-ai-design/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ ├── gallery-researcher.md │ │ │ ├── image-generator.md │ │ │ └── prompt-crafter.md │ │ └── commands/ │ │ ├── find.md │ │ └── gen.md │ ├── multi-platform-apps/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── backend-architect.md │ │ │ ├── flutter-expert.md │ │ │ ├── frontend-developer.md │ │ │ ├── ios-developer.md │ │ │ ├── mobile-developer.md │ │ │ └── ui-ux-designer.md │ │ └── commands/ │ │ └── multi-platform.md │ ├── observability-monitoring/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── database-optimizer.md │ │ │ ├── network-engineer.md │ │ │ ├── observability-engineer.md │ │ │ └── performance-engineer.md │ │ ├── commands/ │ │ │ ├── monitor-setup.md │ │ │ └── slo-implement.md │ │ └── skills/ │ │ ├── distributed-tracing/ │ │ │ └── SKILL.md │ │ ├── grafana-dashboards/ │ │ │ └── SKILL.md │ │ ├── prometheus-configuration/ │ │ │ └── SKILL.md │ │ └── slo-implementation/ │ │ └── SKILL.md │ ├── payment-processing/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── payment-integration.md │ │ └── skills/ │ │ ├── billing-automation/ │ │ │ └── SKILL.md │ │ ├── paypal-integration/ │ │ │ └── SKILL.md │ │ ├── pci-compliance/ │ │ │ └── SKILL.md │ │ └── stripe-integration/ │ │ └── SKILL.md │ ├── performance-testing-review/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── performance-engineer.md │ │ │ └── test-automator.md │ │ └── commands/ │ │ ├── ai-review.md │ │ └── multi-agent-review.md │ ├── python-development/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── django-pro.md │ │ │ ├── fastapi-pro.md │ │ │ └── python-pro.md │ │ ├── commands/ │ │ │ └── python-scaffold.md │ │ └── skills/ │ │ ├── async-python-patterns/ │ │ │ └── SKILL.md │ │ ├── python-anti-patterns/ │ │ │ └── SKILL.md │ │ ├── python-background-jobs/ │ │ │ └── SKILL.md │ │ ├── python-code-style/ │ │ │ └── SKILL.md │ │ ├── python-configuration/ │ │ │ └── SKILL.md │ │ ├── python-design-patterns/ │ │ │ └── SKILL.md │ │ ├── python-error-handling/ │ │ │ └── SKILL.md │ │ ├── python-observability/ │ │ │ └── SKILL.md │ │ ├── python-packaging/ │ │ │ └── SKILL.md │ │ ├── python-performance-optimization/ │ │ │ └── SKILL.md │ │ ├── python-project-structure/ │ │ │ └── SKILL.md │ │ ├── python-resilience/ │ │ │ └── SKILL.md │ │ ├── python-resource-management/ │ │ │ └── SKILL.md │ │ ├── python-testing-patterns/ │ │ │ └── SKILL.md │ │ ├── python-type-safety/ │ │ │ └── SKILL.md │ │ └── uv-package-manager/ │ │ └── SKILL.md │ ├── quantitative-trading/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── quant-analyst.md │ │ │ └── risk-manager.md │ │ └── skills/ │ │ ├── backtesting-frameworks/ │ │ │ └── SKILL.md │ │ └── risk-metrics-calculation/ │ │ └── SKILL.md │ ├── reverse-engineering/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── firmware-analyst.md │ │ │ ├── malware-analyst.md │ │ │ └── reverse-engineer.md │ │ └── skills/ │ │ ├── anti-reversing-techniques/ │ │ │ └── SKILL.md │ │ ├── binary-analysis-patterns/ │ │ │ └── SKILL.md │ │ ├── memory-forensics/ │ │ │ └── SKILL.md │ │ └── protocol-reverse-engineering/ │ │ └── SKILL.md │ ├── security-compliance/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── security-auditor.md │ │ └── commands/ │ │ └── compliance-check.md │ ├── security-scanning/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── security-auditor.md │ │ │ └── threat-modeling-expert.md │ │ ├── commands/ │ │ │ ├── security-dependencies.md │ │ │ ├── security-hardening.md │ │ │ └── security-sast.md │ │ └── skills/ │ │ ├── attack-tree-construction/ │ │ │ └── SKILL.md │ │ ├── sast-configuration/ │ │ │ └── SKILL.md │ │ ├── security-requirement-extraction/ │ │ │ └── SKILL.md │ │ ├── stride-analysis-patterns/ │ │ │ └── SKILL.md │ │ └── threat-mitigation-mapping/ │ │ └── SKILL.md │ ├── seo-analysis-monitoring/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── seo-authority-builder.md │ │ ├── seo-cannibalization-detector.md │ │ └── seo-content-refresher.md │ ├── seo-content-creation/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── seo-content-auditor.md │ │ ├── seo-content-planner.md │ │ └── seo-content-writer.md │ ├── seo-technical-optimization/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ └── agents/ │ │ ├── seo-keyword-strategist.md │ │ ├── seo-meta-optimizer.md │ │ ├── seo-snippet-hunter.md │ │ └── seo-structure-architect.md │ ├── shell-scripting/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── bash-pro.md │ │ │ └── posix-shell-pro.md │ │ └── skills/ │ │ ├── bash-defensive-patterns/ │ │ │ └── SKILL.md │ │ ├── bats-testing-patterns/ │ │ │ └── SKILL.md │ │ └── shellcheck-configuration/ │ │ └── SKILL.md │ ├── startup-business-analyst/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ └── startup-analyst.md │ │ ├── commands/ │ │ │ ├── business-case.md │ │ │ ├── financial-projections.md │ │ │ └── market-opportunity.md │ │ └── skills/ │ │ ├── competitive-landscape/ │ │ │ └── SKILL.md │ │ ├── market-sizing-analysis/ │ │ │ ├── SKILL.md │ │ │ ├── examples/ │ │ │ │ └── saas-market-sizing.md │ │ │ └── references/ │ │ │ └── data-sources.md │ │ ├── startup-financial-modeling/ │ │ │ └── SKILL.md │ │ ├── startup-metrics-framework/ │ │ │ └── SKILL.md │ │ └── team-composition-analysis/ │ │ └── SKILL.md │ ├── systems-programming/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── c-pro.md │ │ │ ├── cpp-pro.md │ │ │ ├── golang-pro.md │ │ │ └── rust-pro.md │ │ ├── commands/ │ │ │ └── rust-project.md │ │ └── skills/ │ │ ├── go-concurrency-patterns/ │ │ │ └── SKILL.md │ │ ├── memory-safety-patterns/ │ │ │ └── SKILL.md │ │ └── rust-async-patterns/ │ │ └── SKILL.md │ ├── tdd-workflows/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── code-reviewer.md │ │ │ └── tdd-orchestrator.md │ │ └── commands/ │ │ ├── tdd-cycle.md │ │ ├── tdd-green.md │ │ ├── tdd-red.md │ │ └── tdd-refactor.md │ ├── team-collaboration/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ └── dx-optimizer.md │ │ └── commands/ │ │ ├── issue.md │ │ └── standup-notes.md │ ├── ui-design/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── README.md │ │ ├── agents/ │ │ │ ├── accessibility-expert.md │ │ │ ├── design-system-architect.md │ │ │ └── ui-designer.md │ │ ├── commands/ │ │ │ ├── accessibility-audit.md │ │ │ ├── create-component.md │ │ │ ├── design-review.md │ │ │ └── design-system-setup.md │ │ └── skills/ │ │ ├── accessibility-compliance/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── aria-patterns.md │ │ │ ├── mobile-accessibility.md │ │ │ └── wcag-guidelines.md │ │ ├── design-system-patterns/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── component-architecture.md │ │ │ ├── design-tokens.md │ │ │ └── theming-architecture.md │ │ ├── interaction-design/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── animation-libraries.md │ │ │ ├── microinteraction-patterns.md │ │ │ └── scroll-animations.md │ │ ├── mobile-android-design/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── android-navigation.md │ │ │ ├── compose-components.md │ │ │ └── material3-theming.md │ │ ├── mobile-ios-design/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── hig-patterns.md │ │ │ ├── ios-navigation.md │ │ │ └── swiftui-components.md │ │ ├── react-native-design/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── navigation-patterns.md │ │ │ ├── reanimated-patterns.md │ │ │ └── styling-patterns.md │ │ ├── responsive-design/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── breakpoint-strategies.md │ │ │ ├── container-queries.md │ │ │ └── fluid-layouts.md │ │ ├── visual-design-foundations/ │ │ │ ├── SKILL.md │ │ │ └── references/ │ │ │ ├── color-systems.md │ │ │ ├── spacing-iconography.md │ │ │ └── typography-systems.md │ │ └── web-component-design/ │ │ ├── SKILL.md │ │ └── references/ │ │ ├── accessibility-patterns.md │ │ ├── component-patterns.md │ │ └── css-styling-approaches.md │ ├── unit-testing/ │ │ ├── .claude-plugin/ │ │ │ └── plugin.json │ │ ├── agents/ │ │ │ ├── debugger.md │ │ │ └── test-automator.md │ │ └── commands/ │ │ └── test-generate.md │ └── web-scripting/ │ ├── .claude-plugin/ │ │ └── plugin.json │ └── agents/ │ ├── php-pro.md │ └── ruby-pro.md └── tools/ ├── requirements.txt └── yt-design-extractor.py