aigroup-workflow 1.3.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/commands/fix-build.md +32 -0
- package/.claude/commands/git-commit.md +1 -1
- package/.claude/commands/init-project.md +66 -50
- package/.claude/commands/plan.md +32 -0
- package/.claude/commands/review.md +29 -0
- package/.claude/commands/tdd.md +32 -0
- package/.claude/commands/workflow-start.md +87 -0
- package/.claude/hooks.json +3 -3
- package/.claude-plugin/plugin.json +20 -0
- package/.codex/AGENTS.md +107 -0
- package/.codex/agents/docs-researcher.toml +14 -0
- package/.codex/agents/explorer.toml +14 -0
- package/.codex/agents/reviewer.toml +16 -0
- package/.codex/config.toml +93 -0
- package/.codex-plugin/plugin.json +33 -0
- package/AGENTS.md +76 -0
- package/CLAUDE.md +18 -83
- package/README.md +220 -317
- package/agents/a11y-architect.md +141 -0
- package/agents/architect.md +211 -0
- package/agents/build-error-resolver.md +114 -0
- package/agents/chief-of-staff.md +151 -0
- package/agents/code-architect.md +71 -0
- package/agents/code-explorer.md +69 -0
- package/agents/code-reviewer.md +237 -0
- package/agents/code-simplifier.md +47 -0
- package/agents/comment-analyzer.md +45 -0
- package/agents/conversation-analyzer.md +52 -0
- package/agents/cpp-build-resolver.md +90 -0
- package/agents/cpp-reviewer.md +72 -0
- package/agents/csharp-reviewer.md +101 -0
- package/agents/dart-build-resolver.md +201 -0
- package/agents/database-reviewer.md +91 -0
- package/agents/doc-updater.md +107 -0
- package/agents/docs-lookup.md +68 -0
- package/agents/e2e-runner.md +107 -0
- package/agents/flutter-reviewer.md +243 -0
- package/agents/gan-evaluator.md +209 -0
- package/agents/gan-generator.md +131 -0
- package/agents/gan-planner.md +99 -0
- package/agents/go-build-resolver.md +94 -0
- package/agents/go-reviewer.md +76 -0
- package/agents/harness-optimizer.md +35 -0
- package/agents/healthcare-reviewer.md +83 -0
- package/agents/init-architect.md +185 -0
- package/agents/java-build-resolver.md +153 -0
- package/agents/java-reviewer.md +92 -0
- package/agents/kotlin-build-resolver.md +118 -0
- package/agents/kotlin-reviewer.md +159 -0
- package/agents/loop-operator.md +36 -0
- package/agents/opensource-forker.md +198 -0
- package/agents/opensource-packager.md +249 -0
- package/agents/opensource-sanitizer.md +188 -0
- package/agents/performance-optimizer.md +446 -0
- package/agents/planner.md +212 -0
- package/agents/pr-test-analyzer.md +45 -0
- package/agents/python-reviewer.md +98 -0
- package/agents/pytorch-build-resolver.md +120 -0
- package/agents/refactor-cleaner.md +85 -0
- package/agents/rust-build-resolver.md +148 -0
- package/agents/rust-reviewer.md +94 -0
- package/agents/security-reviewer.md +108 -0
- package/agents/seo-specialist.md +62 -0
- package/agents/silent-failure-hunter.md +50 -0
- package/agents/tdd-guide.md +91 -0
- package/agents/type-design-analyzer.md +41 -0
- package/agents/typescript-reviewer.md +112 -0
- package/cli/commands/check.mjs +11 -19
- package/cli/commands/init.mjs +133 -49
- package/cli/commands/status.mjs +42 -39
- package/cli/commands/update.mjs +10 -12
- package/cli/utils/scaffold.mjs +298 -127
- package/docs/README.md +46 -29
- package/docs/red-flags.md +29 -24
- package/docs/rules/README.md +51 -0
- package/docs/rules/agents.md +50 -0
- package/docs/rules/coding-style.md +79 -0
- package/docs/rules/cpp/coding-style.md +44 -0
- package/docs/rules/cpp/hooks.md +39 -0
- package/docs/rules/cpp/patterns.md +51 -0
- package/docs/rules/cpp/security.md +51 -0
- package/docs/rules/cpp/testing.md +44 -0
- package/docs/rules/csharp/coding-style.md +72 -0
- package/docs/rules/csharp/hooks.md +25 -0
- package/docs/rules/csharp/patterns.md +50 -0
- package/docs/rules/csharp/security.md +58 -0
- package/docs/rules/csharp/testing.md +46 -0
- package/docs/rules/dart/coding-style.md +159 -0
- package/docs/rules/dart/hooks.md +66 -0
- package/docs/rules/dart/patterns.md +261 -0
- package/docs/rules/dart/security.md +135 -0
- package/docs/rules/dart/testing.md +215 -0
- package/docs/rules/git-workflow.md +53 -0
- package/docs/rules/golang/coding-style.md +32 -0
- package/docs/rules/golang/hooks.md +17 -0
- package/docs/rules/golang/patterns.md +45 -0
- package/docs/rules/golang/security.md +34 -0
- package/docs/rules/golang/testing.md +31 -0
- package/docs/rules/hooks.md +61 -0
- package/docs/rules/java/coding-style.md +114 -0
- package/docs/rules/java/hooks.md +18 -0
- package/docs/rules/java/patterns.md +146 -0
- package/docs/rules/java/security.md +100 -0
- package/docs/rules/java/testing.md +131 -0
- package/docs/rules/kotlin/coding-style.md +86 -0
- package/docs/rules/kotlin/hooks.md +17 -0
- package/docs/rules/kotlin/patterns.md +146 -0
- package/docs/rules/kotlin/security.md +82 -0
- package/docs/rules/kotlin/testing.md +128 -0
- package/docs/rules/performance.md +30 -0
- package/docs/rules/perl/coding-style.md +46 -0
- package/docs/rules/perl/hooks.md +22 -0
- package/docs/rules/perl/patterns.md +76 -0
- package/docs/rules/perl/security.md +69 -0
- package/docs/rules/perl/testing.md +54 -0
- package/docs/rules/php/coding-style.md +40 -0
- package/docs/rules/php/hooks.md +24 -0
- package/docs/rules/php/patterns.md +33 -0
- package/docs/rules/php/security.md +37 -0
- package/docs/rules/php/testing.md +39 -0
- package/docs/rules/python/coding-style.md +42 -0
- package/docs/rules/python/hooks.md +19 -0
- package/docs/rules/python/patterns.md +39 -0
- package/docs/rules/python/security.md +30 -0
- package/docs/rules/python/testing.md +38 -0
- package/docs/rules/rust/coding-style.md +151 -0
- package/docs/rules/rust/hooks.md +16 -0
- package/docs/rules/rust/patterns.md +168 -0
- package/docs/rules/rust/security.md +141 -0
- package/docs/rules/rust/testing.md +154 -0
- package/docs/rules/security.md +73 -0
- package/docs/rules/swift/coding-style.md +47 -0
- package/docs/rules/swift/hooks.md +20 -0
- package/docs/rules/swift/patterns.md +66 -0
- package/docs/rules/swift/security.md +33 -0
- package/docs/rules/swift/testing.md +45 -0
- package/docs/rules/testing.md +77 -0
- package/docs/rules/typescript/coding-style.md +199 -0
- package/docs/rules/typescript/hooks.md +22 -0
- package/docs/rules/typescript/patterns.md +52 -0
- package/docs/rules/typescript/security.md +28 -0
- package/docs/rules/typescript/testing.md +18 -0
- package/docs/rules/web/coding-style.md +96 -0
- package/docs/rules/web/design-quality.md +63 -0
- package/docs/rules/web/hooks.md +120 -0
- package/docs/rules/web/patterns.md +79 -0
- package/docs/rules/web/performance.md +64 -0
- package/docs/rules/web/security.md +57 -0
- package/docs/rules/web/testing.md +55 -0
- package/docs/templates/code-review.md +1 -1
- package/docs/templates/implementation-plan.md +82 -82
- package/docs/workflow-pipeline.md +55 -127
- package/manifests/install-modules.json +294 -0
- package/package.json +8 -3
- package/scripts/harness/log-event.sh +11 -21
- package/scripts/harness/logs-query.sh +3 -8
- package/scripts/harness/tests/test-log-event.sh +16 -31
- package/scripts/harness/tests/test-logs-query.sh +4 -4
- package/scripts/hooks/README.md +49 -0
- package/scripts/hooks/checks/claude-md-size.cjs +21 -0
- package/scripts/hooks/checks/delegation-antipatterns.cjs +66 -0
- package/scripts/hooks/checks/empty-docs.cjs +32 -0
- package/scripts/hooks/checks/orchestration-artifacts.cjs +65 -0
- package/scripts/hooks/checks/structure.cjs +23 -0
- package/scripts/hooks/checks/workflow-state.cjs +56 -0
- package/scripts/hooks/dispatcher.cjs +64 -0
- package/scripts/hooks/lib/runner.cjs +81 -0
- package/scripts/orchestration/lib/orchestrator.cjs +181 -0
- package/scripts/orchestration/session.cjs +180 -0
- package/skills/documentation/SKILL.md +45 -0
- package/skills/{max/workflow/entropy-management → entropy-management}/SKILL.md +115 -124
- package/skills/requirement-engineering/SKILL.md +111 -0
- package/skills/{max/workflow/subagent-driven-development → subagent-driven-development}/SKILL.md +18 -18
- package/skills/{max/workflow/writing-plans → writing-plans}/SKILL.md +165 -165
- package/.claude/agents/ella.md +0 -101
- package/.claude/agents/init-architect.md +0 -128
- package/.claude/agents/jarvis.md +0 -193
- package/.claude/agents/kyle.md +0 -168
- package/docs/ARCHITECTURE.md +0 -117
- package/docs/QUALITY_SCORE.md +0 -44
- package/docs/coding-standards.md +0 -48
- package/docs/dispatch-rules.md +0 -83
- package/docs/steering-loop.md +0 -72
- package/docs/tech-debt-tracker.md +0 -26
- package/docs/templates/memory/activeContext.template.md +0 -30
- package/docs/templates/memory/projectContext.template.md +0 -36
- package/docs/templates/memory/systemPatterns.template.md +0 -26
- package/scripts/check-gitignore.sh +0 -130
- package/scripts/clean-system-files.sh +0 -169
- package/scripts/harness/hook-post-edit.sh +0 -40
- package/scripts/harness/hook-stop.sh +0 -70
- package/scripts/harness/hook-subagent-stop.sh +0 -54
- package/scripts/harness/lint-delegation.sh +0 -168
- package/scripts/harness/lint-docs.sh +0 -121
- package/scripts/harness/lint-process.sh +0 -221
- package/scripts/harness/lint-structure.sh +0 -145
- package/scripts/harness/lint-workflow-artifacts.sh +0 -150
- package/scripts/harness/run-all.sh +0 -77
- package/scripts/harness/workflow-state.sh +0 -397
- package/scripts/update-skills.sh +0 -187
- package/skills/max/workflow/brainstorming/SKILL.md +0 -111
- package/skills/max/workflow/documentation/SKILL.md +0 -82
- package/skills/max/workflow/requirement-validation/SKILL.md +0 -107
- package/skills/max/workflow/solution-design/SKILL.md +0 -117
- package/skills/max/workflow/testing/SKILL.md +0 -118
- /package/{.claude/agents → agents}/get-current-datetime.md +0 -0
- /package/skills/{ella/angular-architect → angular-architect}/SKILL.md +0 -0
- /package/skills/{ella/angular-architect → angular-architect}/references/components.md +0 -0
- /package/skills/{ella/angular-architect → angular-architect}/references/ngrx.md +0 -0
- /package/skills/{ella/angular-architect → angular-architect}/references/routing.md +0 -0
- /package/skills/{ella/angular-architect → angular-architect}/references/rxjs.md +0 -0
- /package/skills/{ella/angular-architect → angular-architect}/references/testing.md +0 -0
- /package/skills/{jarvis/api-designer → api-designer}/SKILL.md +0 -0
- /package/skills/{jarvis/api-designer → api-designer}/references/error-handling.md +0 -0
- /package/skills/{jarvis/api-designer → api-designer}/references/openapi.md +0 -0
- /package/skills/{jarvis/api-designer → api-designer}/references/pagination.md +0 -0
- /package/skills/{jarvis/api-designer → api-designer}/references/rest-patterns.md +0 -0
- /package/skills/{jarvis/api-designer → api-designer}/references/versioning.md +0 -0
- /package/skills/{jarvis/architecture-designer → architecture-designer}/SKILL.md +0 -0
- /package/skills/{jarvis/architecture-designer → architecture-designer}/references/adr-template.md +0 -0
- /package/skills/{jarvis/architecture-designer → architecture-designer}/references/architecture-patterns.md +0 -0
- /package/skills/{jarvis/architecture-designer → architecture-designer}/references/database-selection.md +0 -0
- /package/skills/{jarvis/architecture-designer → architecture-designer}/references/nfr-checklist.md +0 -0
- /package/skills/{jarvis/architecture-designer → architecture-designer}/references/system-design.md +0 -0
- /package/skills/{kyle/chaos-engineer → chaos-engineer}/SKILL.md +0 -0
- /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/chaos-tools.md +0 -0
- /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/experiment-design.md +0 -0
- /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/game-days.md +0 -0
- /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/infrastructure-chaos.md +0 -0
- /package/skills/{kyle/chaos-engineer → chaos-engineer}/references/kubernetes-chaos.md +0 -0
- /package/skills/{jarvis/cli-developer → cli-developer}/SKILL.md +0 -0
- /package/skills/{jarvis/cli-developer → cli-developer}/references/design-patterns.md +0 -0
- /package/skills/{jarvis/cli-developer → cli-developer}/references/go-cli.md +0 -0
- /package/skills/{jarvis/cli-developer → cli-developer}/references/node-cli.md +0 -0
- /package/skills/{jarvis/cli-developer → cli-developer}/references/python-cli.md +0 -0
- /package/skills/{jarvis/cli-developer → cli-developer}/references/ux-patterns.md +0 -0
- /package/skills/{jarvis/cloud-architect → cloud-architect}/SKILL.md +0 -0
- /package/skills/{jarvis/cloud-architect → cloud-architect}/references/aws.md +0 -0
- /package/skills/{jarvis/cloud-architect → cloud-architect}/references/azure.md +0 -0
- /package/skills/{jarvis/cloud-architect → cloud-architect}/references/cost.md +0 -0
- /package/skills/{jarvis/cloud-architect → cloud-architect}/references/gcp.md +0 -0
- /package/skills/{jarvis/cloud-architect → cloud-architect}/references/multi-cloud.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/SKILL.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/references/api-docs-fastapi-django.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/references/api-docs-nestjs-express.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/references/coverage-reports.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/references/documentation-systems.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/references/interactive-api-docs.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/references/python-docstrings.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/references/typescript-jsdoc.md +0 -0
- /package/skills/{jarvis/code-documenter → code-documenter}/references/user-guides-tutorials.md +0 -0
- /package/skills/{kyle/code-reviewer → code-reviewer}/SKILL.md +0 -0
- /package/skills/{kyle/code-reviewer → code-reviewer}/references/common-issues.md +0 -0
- /package/skills/{kyle/code-reviewer → code-reviewer}/references/feedback-examples.md +0 -0
- /package/skills/{kyle/code-reviewer → code-reviewer}/references/receiving-feedback.md +0 -0
- /package/skills/{kyle/code-reviewer → code-reviewer}/references/report-template.md +0 -0
- /package/skills/{kyle/code-reviewer → code-reviewer}/references/review-checklist.md +0 -0
- /package/skills/{kyle/code-reviewer → code-reviewer}/references/spec-compliance-review.md +0 -0
- /package/skills/{max/competitive-analysis → competitive-analysis}/SKILL.md +0 -0
- /package/skills/{jarvis/cpp-pro → cpp-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/cpp-pro → cpp-pro}/references/build-tooling.md +0 -0
- /package/skills/{jarvis/cpp-pro → cpp-pro}/references/concurrency.md +0 -0
- /package/skills/{jarvis/cpp-pro → cpp-pro}/references/memory-performance.md +0 -0
- /package/skills/{jarvis/cpp-pro → cpp-pro}/references/modern-cpp.md +0 -0
- /package/skills/{jarvis/cpp-pro → cpp-pro}/references/templates.md +0 -0
- /package/skills/{jarvis/csharp-developer → csharp-developer}/SKILL.md +0 -0
- /package/skills/{jarvis/csharp-developer → csharp-developer}/references/aspnet-core.md +0 -0
- /package/skills/{jarvis/csharp-developer → csharp-developer}/references/blazor.md +0 -0
- /package/skills/{jarvis/csharp-developer → csharp-developer}/references/entity-framework.md +0 -0
- /package/skills/{jarvis/csharp-developer → csharp-developer}/references/modern-csharp.md +0 -0
- /package/skills/{jarvis/csharp-developer → csharp-developer}/references/performance.md +0 -0
- /package/skills/{jarvis/database-optimizer → database-optimizer}/SKILL.md +0 -0
- /package/skills/{jarvis/database-optimizer → database-optimizer}/references/index-strategies.md +0 -0
- /package/skills/{jarvis/database-optimizer → database-optimizer}/references/monitoring-analysis.md +0 -0
- /package/skills/{jarvis/database-optimizer → database-optimizer}/references/mysql-tuning.md +0 -0
- /package/skills/{jarvis/database-optimizer → database-optimizer}/references/postgresql-tuning.md +0 -0
- /package/skills/{jarvis/database-optimizer → database-optimizer}/references/query-optimization.md +0 -0
- /package/skills/{jarvis/debugging-wizard → debugging-wizard}/SKILL.md +0 -0
- /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/common-patterns.md +0 -0
- /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/debugging-tools.md +0 -0
- /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/quick-fixes.md +0 -0
- /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/strategies.md +0 -0
- /package/skills/{jarvis/debugging-wizard → debugging-wizard}/references/systematic-debugging.md +0 -0
- /package/skills/{ella/commands → design-commands}/design.md +0 -0
- /package/skills/{ella/commands → design-commands}/handoff.md +0 -0
- /package/skills/{ella/commands → design-commands}/prototype.md +0 -0
- /package/skills/{ella/commands → design-commands}/spec.md +0 -0
- /package/skills/{ella/commands → design-commands}/style.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/SKILL.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/references/deployment-strategies.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/references/docker-patterns.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/references/github-actions.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/references/incident-response.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/references/kubernetes.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/references/platform-engineering.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/references/release-automation.md +0 -0
- /package/skills/{jarvis/devops-engineer → devops-engineer}/references/terraform-iac.md +0 -0
- /package/skills/{jarvis/django-expert → django-expert}/SKILL.md +0 -0
- /package/skills/{jarvis/django-expert → django-expert}/references/authentication.md +0 -0
- /package/skills/{jarvis/django-expert → django-expert}/references/drf-serializers.md +0 -0
- /package/skills/{jarvis/django-expert → django-expert}/references/models-orm.md +0 -0
- /package/skills/{jarvis/django-expert → django-expert}/references/testing-django.md +0 -0
- /package/skills/{jarvis/django-expert → django-expert}/references/viewsets-views.md +0 -0
- /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/SKILL.md +0 -0
- /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/authentication.md +0 -0
- /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/clean-architecture.md +0 -0
- /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/cloud-native.md +0 -0
- /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/entity-framework.md +0 -0
- /package/skills/{jarvis/dotnet-core-expert → dotnet-core-expert}/references/minimal-apis.md +0 -0
- /package/skills/{jarvis/fastapi-expert → fastapi-expert}/SKILL.md +0 -0
- /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/async-sqlalchemy.md +0 -0
- /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/authentication.md +0 -0
- /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/endpoints-routing.md +0 -0
- /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/migration-from-django.md +0 -0
- /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/pydantic-v2.md +0 -0
- /package/skills/{jarvis/fastapi-expert → fastapi-expert}/references/testing-async.md +0 -0
- /package/skills/{jarvis/feature-forge → feature-forge}/SKILL.md +0 -0
- /package/skills/{jarvis/feature-forge → feature-forge}/references/acceptance-criteria.md +0 -0
- /package/skills/{jarvis/feature-forge → feature-forge}/references/ears-syntax.md +0 -0
- /package/skills/{jarvis/feature-forge → feature-forge}/references/interview-questions.md +0 -0
- /package/skills/{jarvis/feature-forge → feature-forge}/references/pre-discovery-subagents.md +0 -0
- /package/skills/{jarvis/feature-forge → feature-forge}/references/specification-template.md +0 -0
- /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/SKILL.md +0 -0
- /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/dataset-preparation.md +0 -0
- /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/deployment-optimization.md +0 -0
- /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/evaluation-metrics.md +0 -0
- /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/hyperparameter-tuning.md +0 -0
- /package/skills/{jarvis/fine-tuning-expert → fine-tuning-expert}/references/lora-peft.md +0 -0
- /package/skills/{max/workflow/finishing-a-development-branch → finishing-a-development-branch}/SKILL.md +0 -0
- /package/skills/{ella/flutter-expert → flutter-expert}/SKILL.md +0 -0
- /package/skills/{ella/flutter-expert → flutter-expert}/references/bloc-state.md +0 -0
- /package/skills/{ella/flutter-expert → flutter-expert}/references/gorouter-navigation.md +0 -0
- /package/skills/{ella/flutter-expert → flutter-expert}/references/performance.md +0 -0
- /package/skills/{ella/flutter-expert → flutter-expert}/references/project-structure.md +0 -0
- /package/skills/{ella/flutter-expert → flutter-expert}/references/riverpod-state.md +0 -0
- /package/skills/{ella/flutter-expert → flutter-expert}/references/widget-patterns.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/SKILL.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/api-design-standards.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/architecture-decisions.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/backend-patterns.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/common-patterns.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/deliverables-checklist.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/design-template.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/error-handling.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/frontend-patterns.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/integration-patterns.md +0 -0
- /package/skills/{jarvis/fullstack-guardian → fullstack-guardian}/references/security-checklist.md +0 -0
- /package/skills/{jarvis/golang-pro → golang-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/golang-pro → golang-pro}/references/concurrency.md +0 -0
- /package/skills/{jarvis/golang-pro → golang-pro}/references/generics.md +0 -0
- /package/skills/{jarvis/golang-pro → golang-pro}/references/interfaces.md +0 -0
- /package/skills/{jarvis/golang-pro → golang-pro}/references/project-structure.md +0 -0
- /package/skills/{jarvis/golang-pro → golang-pro}/references/testing.md +0 -0
- /package/skills/{jarvis/graphql-architect → graphql-architect}/SKILL.md +0 -0
- /package/skills/{jarvis/graphql-architect → graphql-architect}/references/federation.md +0 -0
- /package/skills/{jarvis/graphql-architect → graphql-architect}/references/migration-from-rest.md +0 -0
- /package/skills/{jarvis/graphql-architect → graphql-architect}/references/resolvers.md +0 -0
- /package/skills/{jarvis/graphql-architect → graphql-architect}/references/schema-design.md +0 -0
- /package/skills/{jarvis/graphql-architect → graphql-architect}/references/security.md +0 -0
- /package/skills/{jarvis/graphql-architect → graphql-architect}/references/subscriptions.md +0 -0
- /package/skills/{jarvis/java-architect → java-architect}/SKILL.md +0 -0
- /package/skills/{jarvis/java-architect → java-architect}/references/jpa-optimization.md +0 -0
- /package/skills/{jarvis/java-architect → java-architect}/references/reactive-webflux.md +0 -0
- /package/skills/{jarvis/java-architect → java-architect}/references/spring-boot-setup.md +0 -0
- /package/skills/{jarvis/java-architect → java-architect}/references/spring-security.md +0 -0
- /package/skills/{jarvis/java-architect → java-architect}/references/testing-patterns.md +0 -0
- /package/skills/{jarvis/javascript-pro → javascript-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/javascript-pro → javascript-pro}/references/async-patterns.md +0 -0
- /package/skills/{jarvis/javascript-pro → javascript-pro}/references/browser-apis.md +0 -0
- /package/skills/{jarvis/javascript-pro → javascript-pro}/references/modern-syntax.md +0 -0
- /package/skills/{jarvis/javascript-pro → javascript-pro}/references/modules.md +0 -0
- /package/skills/{jarvis/javascript-pro → javascript-pro}/references/node-essentials.md +0 -0
- /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/SKILL.md +0 -0
- /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/android-compose.md +0 -0
- /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/coroutines-flow.md +0 -0
- /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/dsl-idioms.md +0 -0
- /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/ktor-server.md +0 -0
- /package/skills/{jarvis/kotlin-specialist → kotlin-specialist}/references/multiplatform-kmp.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/SKILL.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/configuration.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/cost-optimization.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/custom-operators.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/gitops.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/helm-charts.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/multi-cluster.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/networking.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/service-mesh.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/storage.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/troubleshooting.md +0 -0
- /package/skills/{jarvis/kubernetes-specialist → kubernetes-specialist}/references/workloads.md +0 -0
- /package/skills/{jarvis/laravel-specialist → laravel-specialist}/SKILL.md +0 -0
- /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/eloquent.md +0 -0
- /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/livewire.md +0 -0
- /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/queues.md +0 -0
- /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/routing.md +0 -0
- /package/skills/{jarvis/laravel-specialist → laravel-specialist}/references/testing.md +0 -0
- /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/SKILL.md +0 -0
- /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/legacy-testing.md +0 -0
- /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/migration-strategies.md +0 -0
- /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/refactoring-patterns.md +0 -0
- /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/strangler-fig-pattern.md +0 -0
- /package/skills/{jarvis/legacy-modernizer → legacy-modernizer}/references/system-assessment.md +0 -0
- /package/skills/{jarvis/mcp-developer → mcp-developer}/SKILL.md +0 -0
- /package/skills/{jarvis/mcp-developer → mcp-developer}/references/protocol.md +0 -0
- /package/skills/{jarvis/mcp-developer → mcp-developer}/references/python-sdk.md +0 -0
- /package/skills/{jarvis/mcp-developer → mcp-developer}/references/resources.md +0 -0
- /package/skills/{jarvis/mcp-developer → mcp-developer}/references/tools.md +0 -0
- /package/skills/{jarvis/mcp-developer → mcp-developer}/references/typescript-sdk.md +0 -0
- /package/skills/{max/meeting-notes → meeting-notes}/SKILL.md +0 -0
- /package/skills/{jarvis/microservices-architect → microservices-architect}/SKILL.md +0 -0
- /package/skills/{jarvis/microservices-architect → microservices-architect}/references/communication.md +0 -0
- /package/skills/{jarvis/microservices-architect → microservices-architect}/references/data.md +0 -0
- /package/skills/{jarvis/microservices-architect → microservices-architect}/references/decomposition.md +0 -0
- /package/skills/{jarvis/microservices-architect → microservices-architect}/references/observability.md +0 -0
- /package/skills/{jarvis/microservices-architect → microservices-architect}/references/patterns.md +0 -0
- /package/skills/{jarvis/ml-pipeline → ml-pipeline}/SKILL.md +0 -0
- /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/experiment-tracking.md +0 -0
- /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/feature-engineering.md +0 -0
- /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/model-validation.md +0 -0
- /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/pipeline-orchestration.md +0 -0
- /package/skills/{jarvis/ml-pipeline → ml-pipeline}/references/training-pipelines.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/SKILL.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/alerting-rules.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/application-profiling.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/capacity-planning.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/dashboards.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/opentelemetry.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/performance-testing.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/prometheus-metrics.md +0 -0
- /package/skills/{jarvis/monitoring-expert → monitoring-expert}/references/structured-logging.md +0 -0
- /package/skills/{jarvis/nestjs-expert → nestjs-expert}/SKILL.md +0 -0
- /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/authentication.md +0 -0
- /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/controllers-routing.md +0 -0
- /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/dtos-validation.md +0 -0
- /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/migration-from-express.md +0 -0
- /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/services-di.md +0 -0
- /package/skills/{jarvis/nestjs-expert → nestjs-expert}/references/testing-patterns.md +0 -0
- /package/skills/{ella/nextjs-developer → nextjs-developer}/SKILL.md +0 -0
- /package/skills/{ella/nextjs-developer → nextjs-developer}/references/app-router.md +0 -0
- /package/skills/{ella/nextjs-developer → nextjs-developer}/references/data-fetching.md +0 -0
- /package/skills/{ella/nextjs-developer → nextjs-developer}/references/deployment.md +0 -0
- /package/skills/{ella/nextjs-developer → nextjs-developer}/references/server-actions.md +0 -0
- /package/skills/{ella/nextjs-developer → nextjs-developer}/references/server-components.md +0 -0
- /package/skills/{jarvis/pandas-pro → pandas-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/pandas-pro → pandas-pro}/references/aggregation-groupby.md +0 -0
- /package/skills/{jarvis/pandas-pro → pandas-pro}/references/data-cleaning.md +0 -0
- /package/skills/{jarvis/pandas-pro → pandas-pro}/references/dataframe-operations.md +0 -0
- /package/skills/{jarvis/pandas-pro → pandas-pro}/references/merging-joining.md +0 -0
- /package/skills/{jarvis/pandas-pro → pandas-pro}/references/performance-optimization.md +0 -0
- /package/skills/{jarvis/php-pro → php-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/php-pro → php-pro}/references/async-patterns.md +0 -0
- /package/skills/{jarvis/php-pro → php-pro}/references/laravel-patterns.md +0 -0
- /package/skills/{jarvis/php-pro → php-pro}/references/modern-php-features.md +0 -0
- /package/skills/{jarvis/php-pro → php-pro}/references/symfony-patterns.md +0 -0
- /package/skills/{jarvis/php-pro → php-pro}/references/testing-quality.md +0 -0
- /package/skills/{kyle/playwright-expert → playwright-expert}/SKILL.md +0 -0
- /package/skills/{kyle/playwright-expert → playwright-expert}/references/api-mocking.md +0 -0
- /package/skills/{kyle/playwright-expert → playwright-expert}/references/configuration.md +0 -0
- /package/skills/{kyle/playwright-expert → playwright-expert}/references/debugging-flaky.md +0 -0
- /package/skills/{kyle/playwright-expert → playwright-expert}/references/page-object-model.md +0 -0
- /package/skills/{kyle/playwright-expert → playwright-expert}/references/selectors-locators.md +0 -0
- /package/skills/{jarvis/postgres-pro → postgres-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/postgres-pro → postgres-pro}/references/extensions.md +0 -0
- /package/skills/{jarvis/postgres-pro → postgres-pro}/references/jsonb.md +0 -0
- /package/skills/{jarvis/postgres-pro → postgres-pro}/references/maintenance.md +0 -0
- /package/skills/{jarvis/postgres-pro → postgres-pro}/references/performance.md +0 -0
- /package/skills/{jarvis/postgres-pro → postgres-pro}/references/replication.md +0 -0
- /package/skills/{max/prd-template → prd-template}/SKILL.md +0 -0
- /package/skills/{jarvis/python-pro → python-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/python-pro → python-pro}/references/async-patterns.md +0 -0
- /package/skills/{jarvis/python-pro → python-pro}/references/packaging.md +0 -0
- /package/skills/{jarvis/python-pro → python-pro}/references/standard-library.md +0 -0
- /package/skills/{jarvis/python-pro → python-pro}/references/testing.md +0 -0
- /package/skills/{jarvis/python-pro → python-pro}/references/type-system.md +0 -0
- /package/skills/{jarvis/rag-architect → rag-architect}/SKILL.md +0 -0
- /package/skills/{jarvis/rag-architect → rag-architect}/references/chunking-strategies.md +0 -0
- /package/skills/{jarvis/rag-architect → rag-architect}/references/embedding-models.md +0 -0
- /package/skills/{jarvis/rag-architect → rag-architect}/references/rag-evaluation.md +0 -0
- /package/skills/{jarvis/rag-architect → rag-architect}/references/retrieval-optimization.md +0 -0
- /package/skills/{jarvis/rag-architect → rag-architect}/references/vector-databases.md +0 -0
- /package/skills/{jarvis/rails-expert → rails-expert}/SKILL.md +0 -0
- /package/skills/{jarvis/rails-expert → rails-expert}/references/active-record.md +0 -0
- /package/skills/{jarvis/rails-expert → rails-expert}/references/api-development.md +0 -0
- /package/skills/{jarvis/rails-expert → rails-expert}/references/background-jobs.md +0 -0
- /package/skills/{jarvis/rails-expert → rails-expert}/references/hotwire-turbo.md +0 -0
- /package/skills/{jarvis/rails-expert → rails-expert}/references/rspec-testing.md +0 -0
- /package/skills/{ella/react-expert → react-expert}/SKILL.md +0 -0
- /package/skills/{ella/react-expert → react-expert}/references/hooks-patterns.md +0 -0
- /package/skills/{ella/react-expert → react-expert}/references/migration-class-to-modern.md +0 -0
- /package/skills/{ella/react-expert → react-expert}/references/performance.md +0 -0
- /package/skills/{ella/react-expert → react-expert}/references/react-19-features.md +0 -0
- /package/skills/{ella/react-expert → react-expert}/references/server-components.md +0 -0
- /package/skills/{ella/react-expert → react-expert}/references/state-management.md +0 -0
- /package/skills/{ella/react-expert → react-expert}/references/testing-react.md +0 -0
- /package/skills/{ella/react-native-expert → react-native-expert}/SKILL.md +0 -0
- /package/skills/{ella/react-native-expert → react-native-expert}/references/expo-router.md +0 -0
- /package/skills/{ella/react-native-expert → react-native-expert}/references/list-optimization.md +0 -0
- /package/skills/{ella/react-native-expert → react-native-expert}/references/platform-handling.md +0 -0
- /package/skills/{ella/react-native-expert → react-native-expert}/references/project-structure.md +0 -0
- /package/skills/{ella/react-native-expert → react-native-expert}/references/storage-hooks.md +0 -0
- /package/skills/{jarvis/rust-engineer → rust-engineer}/SKILL.md +0 -0
- /package/skills/{jarvis/rust-engineer → rust-engineer}/references/async.md +0 -0
- /package/skills/{jarvis/rust-engineer → rust-engineer}/references/error-handling.md +0 -0
- /package/skills/{jarvis/rust-engineer → rust-engineer}/references/ownership.md +0 -0
- /package/skills/{jarvis/rust-engineer → rust-engineer}/references/testing.md +0 -0
- /package/skills/{jarvis/rust-engineer → rust-engineer}/references/traits.md +0 -0
- /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/SKILL.md +0 -0
- /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/authentication.md +0 -0
- /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/input-validation.md +0 -0
- /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/owasp-prevention.md +0 -0
- /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/security-headers.md +0 -0
- /package/skills/{jarvis/secure-code-guardian → secure-code-guardian}/references/xss-csrf.md +0 -0
- /package/skills/{kyle/security-reviewer → security-reviewer}/SKILL.md +0 -0
- /package/skills/{kyle/security-reviewer → security-reviewer}/references/infrastructure-security.md +0 -0
- /package/skills/{kyle/security-reviewer → security-reviewer}/references/penetration-testing.md +0 -0
- /package/skills/{kyle/security-reviewer → security-reviewer}/references/report-template.md +0 -0
- /package/skills/{kyle/security-reviewer → security-reviewer}/references/sast-tools.md +0 -0
- /package/skills/{kyle/security-reviewer → security-reviewer}/references/secret-scanning.md +0 -0
- /package/skills/{kyle/security-reviewer → security-reviewer}/references/vulnerability-patterns.md +0 -0
- /package/skills/{ella/senior-frontend → senior-frontend}/SKILL.md +0 -0
- /package/skills/{ella/senior-frontend → senior-frontend}/references/frontend_best_practices.md +0 -0
- /package/skills/{ella/senior-frontend → senior-frontend}/references/nextjs_optimization_guide.md +0 -0
- /package/skills/{ella/senior-frontend → senior-frontend}/references/react_patterns.md +0 -0
- /package/skills/{ella/senior-frontend → senior-frontend}/scripts/bundle_analyzer.py +0 -0
- /package/skills/{ella/senior-frontend → senior-frontend}/scripts/component_generator.py +0 -0
- /package/skills/{ella/senior-frontend → senior-frontend}/scripts/frontend_scaffolder.py +0 -0
- /package/skills/{kyle/senior-qa → senior-qa}/README.md +0 -0
- /package/skills/{kyle/senior-qa → senior-qa}/SKILL.md +0 -0
- /package/skills/{kyle/senior-qa → senior-qa}/references/qa_best_practices.md +0 -0
- /package/skills/{kyle/senior-qa → senior-qa}/references/test_automation_patterns.md +0 -0
- /package/skills/{kyle/senior-qa → senior-qa}/references/testing_strategies.md +0 -0
- /package/skills/{kyle/senior-qa → senior-qa}/scripts/coverage_analyzer.py +0 -0
- /package/skills/{kyle/senior-qa → senior-qa}/scripts/e2e_test_scaffolder.py +0 -0
- /package/skills/{kyle/senior-qa → senior-qa}/scripts/test_suite_generator.py +0 -0
- /package/skills/{jarvis/spark-engineer → spark-engineer}/SKILL.md +0 -0
- /package/skills/{jarvis/spark-engineer → spark-engineer}/references/partitioning-caching.md +0 -0
- /package/skills/{jarvis/spark-engineer → spark-engineer}/references/performance-tuning.md +0 -0
- /package/skills/{jarvis/spark-engineer → spark-engineer}/references/rdd-operations.md +0 -0
- /package/skills/{jarvis/spark-engineer → spark-engineer}/references/spark-sql-dataframes.md +0 -0
- /package/skills/{jarvis/spark-engineer → spark-engineer}/references/streaming-patterns.md +0 -0
- /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/SKILL.md +0 -0
- /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/cloud.md +0 -0
- /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/data.md +0 -0
- /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/security.md +0 -0
- /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/testing.md +0 -0
- /package/skills/{jarvis/spring-boot-engineer → spring-boot-engineer}/references/web.md +0 -0
- /package/skills/{jarvis/sql-pro → sql-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/sql-pro → sql-pro}/references/database-design.md +0 -0
- /package/skills/{jarvis/sql-pro → sql-pro}/references/dialect-differences.md +0 -0
- /package/skills/{jarvis/sql-pro → sql-pro}/references/optimization.md +0 -0
- /package/skills/{jarvis/sql-pro → sql-pro}/references/query-patterns.md +0 -0
- /package/skills/{jarvis/sql-pro → sql-pro}/references/window-functions.md +0 -0
- /package/skills/{jarvis/sre-engineer → sre-engineer}/SKILL.md +0 -0
- /package/skills/{jarvis/sre-engineer → sre-engineer}/references/automation-toil.md +0 -0
- /package/skills/{jarvis/sre-engineer → sre-engineer}/references/error-budget-policy.md +0 -0
- /package/skills/{jarvis/sre-engineer → sre-engineer}/references/incident-chaos.md +0 -0
- /package/skills/{jarvis/sre-engineer → sre-engineer}/references/monitoring-alerting.md +0 -0
- /package/skills/{jarvis/sre-engineer → sre-engineer}/references/slo-sli-management.md +0 -0
- /package/skills/{max/stakeholder-update → stakeholder-update}/SKILL.md +0 -0
- /package/skills/{jarvis/swift-expert → swift-expert}/SKILL.md +0 -0
- /package/skills/{jarvis/swift-expert → swift-expert}/references/async-concurrency.md +0 -0
- /package/skills/{jarvis/swift-expert → swift-expert}/references/memory-performance.md +0 -0
- /package/skills/{jarvis/swift-expert → swift-expert}/references/protocol-oriented.md +0 -0
- /package/skills/{jarvis/swift-expert → swift-expert}/references/swiftui-patterns.md +0 -0
- /package/skills/{jarvis/swift-expert → swift-expert}/references/testing-patterns.md +0 -0
- /package/skills/{max/workflow/systematic-debugging → systematic-debugging}/SKILL.md +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/HOW_TO_USE.md +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/README.md +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/SKILL.md +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/assets/expected_output.json +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_coverage_report.lcov +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_input_python.json +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/assets/sample_input_typescript.json +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/references/ci-integration.md +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/references/framework-guide.md +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/references/tdd-best-practices.md +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/coverage_analyzer.py +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/fixture_generator.py +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/format_detector.py +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/framework_adapter.py +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/metrics_calculator.py +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/output_formatter.py +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/tdd_workflow.py +0 -0
- /package/skills/{kyle/tdd-guide → tdd-guide}/scripts/test_generator.py +0 -0
- /package/skills/{jarvis/terraform-engineer → terraform-engineer}/SKILL.md +0 -0
- /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/best-practices.md +0 -0
- /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/module-patterns.md +0 -0
- /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/providers.md +0 -0
- /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/state-management.md +0 -0
- /package/skills/{jarvis/terraform-engineer → terraform-engineer}/references/testing.md +0 -0
- /package/skills/{kyle/test-master → test-master}/SKILL.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/automation-frameworks.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/e2e-testing.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/integration-testing.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/performance-testing.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/qa-methodology.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/security-testing.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/tdd-iron-laws.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/test-reports.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/testing-anti-patterns.md +0 -0
- /package/skills/{kyle/test-master → test-master}/references/unit-testing.md +0 -0
- /package/skills/{jarvis/typescript-pro → typescript-pro}/SKILL.md +0 -0
- /package/skills/{jarvis/typescript-pro → typescript-pro}/references/advanced-types.md +0 -0
- /package/skills/{jarvis/typescript-pro → typescript-pro}/references/configuration.md +0 -0
- /package/skills/{jarvis/typescript-pro → typescript-pro}/references/patterns.md +0 -0
- /package/skills/{jarvis/typescript-pro → typescript-pro}/references/type-guards.md +0 -0
- /package/skills/{jarvis/typescript-pro → typescript-pro}/references/utility-types.md +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/SKILL.md +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/charts.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/colors.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/icons.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/landing.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/products.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/react-performance.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/astro.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/flutter.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/html-tailwind.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/jetpack-compose.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nextjs.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nuxt-ui.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/nuxtjs.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/react-native.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/react.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/shadcn.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/svelte.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/swiftui.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/stacks/vue.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/styles.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/typography.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/ui-reasoning.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/ux-guidelines.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/data/web-interface.csv +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/__pycache__/core.cpython-39.pyc +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/__pycache__/design_system.cpython-39.pyc +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/core.py +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/design_system.py +0 -0
- /package/skills/{ella/ui-ux-pro-max → ui-ux-pro-max}/scripts/search.py +0 -0
- /package/skills/{max/user-research-synthesis → user-research-synthesis}/SKILL.md +0 -0
- /package/skills/{max/workflow/verification-before-completion → verification-before-completion}/SKILL.md +0 -0
- /package/skills/{ella/vue-expert → vue-expert}/SKILL.md +0 -0
- /package/skills/{ella/vue-expert → vue-expert}/references/build-tooling.md +0 -0
- /package/skills/{ella/vue-expert → vue-expert}/references/components.md +0 -0
- /package/skills/{ella/vue-expert → vue-expert}/references/composition-api.md +0 -0
- /package/skills/{ella/vue-expert → vue-expert}/references/mobile-hybrid.md +0 -0
- /package/skills/{ella/vue-expert → vue-expert}/references/nuxt.md +0 -0
- /package/skills/{ella/vue-expert → vue-expert}/references/state-management.md +0 -0
- /package/skills/{ella/vue-expert → vue-expert}/references/typescript.md +0 -0
- /package/skills/{ella/vue-expert-js → vue-expert-js}/SKILL.md +0 -0
- /package/skills/{ella/vue-expert-js → vue-expert-js}/references/component-architecture.md +0 -0
- /package/skills/{ella/vue-expert-js → vue-expert-js}/references/composables-patterns.md +0 -0
- /package/skills/{ella/vue-expert-js → vue-expert-js}/references/jsdoc-typing.md +0 -0
- /package/skills/{ella/vue-expert-js → vue-expert-js}/references/state-management.md +0 -0
- /package/skills/{ella/vue-expert-js → vue-expert-js}/references/testing-patterns.md +0 -0
- /package/skills/{jarvis/websocket-engineer → websocket-engineer}/SKILL.md +0 -0
- /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/alternatives.md +0 -0
- /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/patterns.md +0 -0
- /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/protocol.md +0 -0
- /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/scaling.md +0 -0
- /package/skills/{jarvis/websocket-engineer → websocket-engineer}/references/security.md +0 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: seo-specialist
|
|
3
|
+
description: SEO specialist for technical SEO audits, on-page optimization, structured data, Core Web Vitals, and content/keyword mapping. Use for site audits, meta tag reviews, schema markup, sitemap and robots issues, and SEO remediation plans.
|
|
4
|
+
tools: ["Read", "Grep", "Glob", "Bash", "WebSearch", "WebFetch"]
|
|
5
|
+
model: sonnet
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are a senior SEO specialist focused on technical SEO, search visibility, and sustainable ranking improvements.
|
|
9
|
+
|
|
10
|
+
When invoked:
|
|
11
|
+
1. Identify the scope: full-site audit, page-specific issue, schema problem, performance issue, or content planning task.
|
|
12
|
+
2. Read the relevant source files and deployment-facing assets first.
|
|
13
|
+
3. Prioritize findings by severity and likely ranking impact.
|
|
14
|
+
4. Recommend concrete changes with exact files, URLs, and implementation notes.
|
|
15
|
+
|
|
16
|
+
## Audit Priorities
|
|
17
|
+
|
|
18
|
+
### Critical
|
|
19
|
+
|
|
20
|
+
- crawl or index blockers on important pages
|
|
21
|
+
- `robots.txt` or meta-robots conflicts
|
|
22
|
+
- canonical loops or broken canonical targets
|
|
23
|
+
- redirect chains longer than two hops
|
|
24
|
+
- broken internal links on key paths
|
|
25
|
+
|
|
26
|
+
### High
|
|
27
|
+
|
|
28
|
+
- missing or duplicate title tags
|
|
29
|
+
- missing or duplicate meta descriptions
|
|
30
|
+
- invalid heading hierarchy
|
|
31
|
+
- malformed or missing JSON-LD on key page types
|
|
32
|
+
- Core Web Vitals regressions on important pages
|
|
33
|
+
|
|
34
|
+
### Medium
|
|
35
|
+
|
|
36
|
+
- thin content
|
|
37
|
+
- missing alt text
|
|
38
|
+
- weak anchor text
|
|
39
|
+
- orphan pages
|
|
40
|
+
- keyword cannibalization
|
|
41
|
+
|
|
42
|
+
## Review Output
|
|
43
|
+
|
|
44
|
+
Use this format:
|
|
45
|
+
|
|
46
|
+
```text
|
|
47
|
+
[SEVERITY] Issue title
|
|
48
|
+
Location: path/to/file.tsx:42 or URL
|
|
49
|
+
Issue: What is wrong and why it matters
|
|
50
|
+
Fix: Exact change to make
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
## Quality Bar
|
|
54
|
+
|
|
55
|
+
- no vague SEO folklore
|
|
56
|
+
- no manipulative pattern recommendations
|
|
57
|
+
- no advice detached from the actual site structure
|
|
58
|
+
- recommendations should be implementable by the receiving engineer or content owner
|
|
59
|
+
|
|
60
|
+
## Reference
|
|
61
|
+
|
|
62
|
+
Use `skills/seo` for the canonical ECC SEO workflow and implementation guidance.
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: silent-failure-hunter
|
|
3
|
+
description: Review code for silent failures, swallowed errors, bad fallbacks, and missing error propagation.
|
|
4
|
+
model: sonnet
|
|
5
|
+
tools: [Read, Grep, Glob, Bash]
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Silent Failure Hunter Agent
|
|
9
|
+
|
|
10
|
+
You have zero tolerance for silent failures.
|
|
11
|
+
|
|
12
|
+
## Hunt Targets
|
|
13
|
+
|
|
14
|
+
### 1. Empty Catch Blocks
|
|
15
|
+
|
|
16
|
+
- `catch {}` or ignored exceptions
|
|
17
|
+
- errors converted to `null` / empty arrays with no context
|
|
18
|
+
|
|
19
|
+
### 2. Inadequate Logging
|
|
20
|
+
|
|
21
|
+
- logs without enough context
|
|
22
|
+
- wrong severity
|
|
23
|
+
- log-and-forget handling
|
|
24
|
+
|
|
25
|
+
### 3. Dangerous Fallbacks
|
|
26
|
+
|
|
27
|
+
- default values that hide real failure
|
|
28
|
+
- `.catch(() => [])`
|
|
29
|
+
- graceful-looking paths that make downstream bugs harder to diagnose
|
|
30
|
+
|
|
31
|
+
### 4. Error Propagation Issues
|
|
32
|
+
|
|
33
|
+
- lost stack traces
|
|
34
|
+
- generic rethrows
|
|
35
|
+
- missing async handling
|
|
36
|
+
|
|
37
|
+
### 5. Missing Error Handling
|
|
38
|
+
|
|
39
|
+
- no timeout or error handling around network/file/db paths
|
|
40
|
+
- no rollback around transactional work
|
|
41
|
+
|
|
42
|
+
## Output Format
|
|
43
|
+
|
|
44
|
+
For each finding:
|
|
45
|
+
|
|
46
|
+
- location
|
|
47
|
+
- severity
|
|
48
|
+
- issue
|
|
49
|
+
- impact
|
|
50
|
+
- fix recommendation
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: tdd-guide
|
|
3
|
+
description: Test-Driven Development specialist enforcing write-tests-first methodology. Use PROACTIVELY when writing new features, fixing bugs, or refactoring code. Ensures 80%+ test coverage.
|
|
4
|
+
tools: ["Read", "Write", "Edit", "Bash", "Grep"]
|
|
5
|
+
model: sonnet
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are a Test-Driven Development (TDD) specialist who ensures all code is developed test-first with comprehensive coverage.
|
|
9
|
+
|
|
10
|
+
## Your Role
|
|
11
|
+
|
|
12
|
+
- Enforce tests-before-code methodology
|
|
13
|
+
- Guide through Red-Green-Refactor cycle
|
|
14
|
+
- Ensure 80%+ test coverage
|
|
15
|
+
- Write comprehensive test suites (unit, integration, E2E)
|
|
16
|
+
- Catch edge cases before implementation
|
|
17
|
+
|
|
18
|
+
## TDD Workflow
|
|
19
|
+
|
|
20
|
+
### 1. Write Test First (RED)
|
|
21
|
+
Write a failing test that describes the expected behavior.
|
|
22
|
+
|
|
23
|
+
### 2. Run Test -- Verify it FAILS
|
|
24
|
+
```bash
|
|
25
|
+
npm test
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### 3. Write Minimal Implementation (GREEN)
|
|
29
|
+
Only enough code to make the test pass.
|
|
30
|
+
|
|
31
|
+
### 4. Run Test -- Verify it PASSES
|
|
32
|
+
|
|
33
|
+
### 5. Refactor (IMPROVE)
|
|
34
|
+
Remove duplication, improve names, optimize -- tests must stay green.
|
|
35
|
+
|
|
36
|
+
### 6. Verify Coverage
|
|
37
|
+
```bash
|
|
38
|
+
npm run test:coverage
|
|
39
|
+
# Required: 80%+ branches, functions, lines, statements
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
## Test Types Required
|
|
43
|
+
|
|
44
|
+
| Type | What to Test | When |
|
|
45
|
+
|------|-------------|------|
|
|
46
|
+
| **Unit** | Individual functions in isolation | Always |
|
|
47
|
+
| **Integration** | API endpoints, database operations | Always |
|
|
48
|
+
| **E2E** | Critical user flows (Playwright) | Critical paths |
|
|
49
|
+
|
|
50
|
+
## Edge Cases You MUST Test
|
|
51
|
+
|
|
52
|
+
1. **Null/Undefined** input
|
|
53
|
+
2. **Empty** arrays/strings
|
|
54
|
+
3. **Invalid types** passed
|
|
55
|
+
4. **Boundary values** (min/max)
|
|
56
|
+
5. **Error paths** (network failures, DB errors)
|
|
57
|
+
6. **Race conditions** (concurrent operations)
|
|
58
|
+
7. **Large data** (performance with 10k+ items)
|
|
59
|
+
8. **Special characters** (Unicode, emojis, SQL chars)
|
|
60
|
+
|
|
61
|
+
## Test Anti-Patterns to Avoid
|
|
62
|
+
|
|
63
|
+
- Testing implementation details (internal state) instead of behavior
|
|
64
|
+
- Tests depending on each other (shared state)
|
|
65
|
+
- Asserting too little (passing tests that don't verify anything)
|
|
66
|
+
- Not mocking external dependencies (Supabase, Redis, OpenAI, etc.)
|
|
67
|
+
|
|
68
|
+
## Quality Checklist
|
|
69
|
+
|
|
70
|
+
- [ ] All public functions have unit tests
|
|
71
|
+
- [ ] All API endpoints have integration tests
|
|
72
|
+
- [ ] Critical user flows have E2E tests
|
|
73
|
+
- [ ] Edge cases covered (null, empty, invalid)
|
|
74
|
+
- [ ] Error paths tested (not just happy path)
|
|
75
|
+
- [ ] Mocks used for external dependencies
|
|
76
|
+
- [ ] Tests are independent (no shared state)
|
|
77
|
+
- [ ] Assertions are specific and meaningful
|
|
78
|
+
- [ ] Coverage is 80%+
|
|
79
|
+
|
|
80
|
+
For detailed mocking patterns and framework-specific examples, see `skill: tdd-workflow`.
|
|
81
|
+
|
|
82
|
+
## v1.8 Eval-Driven TDD Addendum
|
|
83
|
+
|
|
84
|
+
Integrate eval-driven development into TDD flow:
|
|
85
|
+
|
|
86
|
+
1. Define capability + regression evals before implementation.
|
|
87
|
+
2. Run baseline and capture failure signatures.
|
|
88
|
+
3. Implement minimum passing change.
|
|
89
|
+
4. Re-run tests and evals; report pass@1 and pass@3.
|
|
90
|
+
|
|
91
|
+
Release-critical paths should target pass^3 stability before merge.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: type-design-analyzer
|
|
3
|
+
description: Analyze type design for encapsulation, invariant expression, usefulness, and enforcement.
|
|
4
|
+
model: sonnet
|
|
5
|
+
tools: [Read, Grep, Glob, Bash]
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
# Type Design Analyzer Agent
|
|
9
|
+
|
|
10
|
+
You evaluate whether types make illegal states harder or impossible to represent.
|
|
11
|
+
|
|
12
|
+
## Evaluation Criteria
|
|
13
|
+
|
|
14
|
+
### 1. Encapsulation
|
|
15
|
+
|
|
16
|
+
- are internal details hidden
|
|
17
|
+
- can invariants be violated from outside
|
|
18
|
+
|
|
19
|
+
### 2. Invariant Expression
|
|
20
|
+
|
|
21
|
+
- do the types encode business rules
|
|
22
|
+
- are impossible states prevented at the type level
|
|
23
|
+
|
|
24
|
+
### 3. Invariant Usefulness
|
|
25
|
+
|
|
26
|
+
- do these invariants prevent real bugs
|
|
27
|
+
- are they aligned with the domain
|
|
28
|
+
|
|
29
|
+
### 4. Enforcement
|
|
30
|
+
|
|
31
|
+
- are invariants enforced by the type system
|
|
32
|
+
- are there easy escape hatches
|
|
33
|
+
|
|
34
|
+
## Output Format
|
|
35
|
+
|
|
36
|
+
For each type reviewed:
|
|
37
|
+
|
|
38
|
+
- type name and location
|
|
39
|
+
- scores for the four dimensions
|
|
40
|
+
- overall assessment
|
|
41
|
+
- specific improvement suggestions
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: typescript-reviewer
|
|
3
|
+
description: Expert TypeScript/JavaScript code reviewer specializing in type safety, async correctness, Node/web security, and idiomatic patterns. Use for all TypeScript and JavaScript code changes. MUST BE USED for TypeScript/JavaScript projects.
|
|
4
|
+
tools: ["Read", "Grep", "Glob", "Bash"]
|
|
5
|
+
model: sonnet
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
You are a senior TypeScript engineer ensuring high standards of type-safe, idiomatic TypeScript and JavaScript.
|
|
9
|
+
|
|
10
|
+
When invoked:
|
|
11
|
+
1. Establish the review scope before commenting:
|
|
12
|
+
- For PR review, use the actual PR base branch when available (for example via `gh pr view --json baseRefName`) or the current branch's upstream/merge-base. Do not hard-code `main`.
|
|
13
|
+
- For local review, prefer `git diff --staged` and `git diff` first.
|
|
14
|
+
- If history is shallow or only a single commit is available, fall back to `git show --patch HEAD -- '*.ts' '*.tsx' '*.js' '*.jsx'` so you still inspect code-level changes.
|
|
15
|
+
2. Before reviewing a PR, inspect merge readiness when metadata is available (for example via `gh pr view --json mergeStateStatus,statusCheckRollup`):
|
|
16
|
+
- If required checks are failing or pending, stop and report that review should wait for green CI.
|
|
17
|
+
- If the PR shows merge conflicts or a non-mergeable state, stop and report that conflicts must be resolved first.
|
|
18
|
+
- If merge readiness cannot be verified from the available context, say so explicitly before continuing.
|
|
19
|
+
3. Run the project's canonical TypeScript check command first when one exists (for example `npm/pnpm/yarn/bun run typecheck`). If no script exists, choose the `tsconfig` file or files that cover the changed code instead of defaulting to the repo-root `tsconfig.json`; in project-reference setups, prefer the repo's non-emitting solution check command rather than invoking build mode blindly. Otherwise use `tsc --noEmit -p <relevant-config>`. Skip this step for JavaScript-only projects instead of failing the review.
|
|
20
|
+
4. Run `eslint . --ext .ts,.tsx,.js,.jsx` if available — if linting or TypeScript checking fails, stop and report.
|
|
21
|
+
5. If none of the diff commands produce relevant TypeScript/JavaScript changes, stop and report that the review scope could not be established reliably.
|
|
22
|
+
6. Focus on modified files and read surrounding context before commenting.
|
|
23
|
+
7. Begin review
|
|
24
|
+
|
|
25
|
+
You DO NOT refactor or rewrite code — you report findings only.
|
|
26
|
+
|
|
27
|
+
## Review Priorities
|
|
28
|
+
|
|
29
|
+
### CRITICAL -- Security
|
|
30
|
+
- **Injection via `eval` / `new Function`**: User-controlled input passed to dynamic execution — never execute untrusted strings
|
|
31
|
+
- **XSS**: Unsanitised user input assigned to `innerHTML`, `dangerouslySetInnerHTML`, or `document.write`
|
|
32
|
+
- **SQL/NoSQL injection**: String concatenation in queries — use parameterised queries or an ORM
|
|
33
|
+
- **Path traversal**: User-controlled input in `fs.readFile`, `path.join` without `path.resolve` + prefix validation
|
|
34
|
+
- **Hardcoded secrets**: API keys, tokens, passwords in source — use environment variables
|
|
35
|
+
- **Prototype pollution**: Merging untrusted objects without `Object.create(null)` or schema validation
|
|
36
|
+
- **`child_process` with user input**: Validate and allowlist before passing to `exec`/`spawn`
|
|
37
|
+
|
|
38
|
+
### HIGH -- Type Safety
|
|
39
|
+
- **`any` without justification**: Disables type checking — use `unknown` and narrow, or a precise type
|
|
40
|
+
- **Non-null assertion abuse**: `value!` without a preceding guard — add a runtime check
|
|
41
|
+
- **`as` casts that bypass checks**: Casting to unrelated types to silence errors — fix the type instead
|
|
42
|
+
- **Relaxed compiler settings**: If `tsconfig.json` is touched and weakens strictness, call it out explicitly
|
|
43
|
+
|
|
44
|
+
### HIGH -- Async Correctness
|
|
45
|
+
- **Unhandled promise rejections**: `async` functions called without `await` or `.catch()`
|
|
46
|
+
- **Sequential awaits for independent work**: `await` inside loops when operations could safely run in parallel — consider `Promise.all`
|
|
47
|
+
- **Floating promises**: Fire-and-forget without error handling in event handlers or constructors
|
|
48
|
+
- **`async` with `forEach`**: `array.forEach(async fn)` does not await — use `for...of` or `Promise.all`
|
|
49
|
+
|
|
50
|
+
### HIGH -- Error Handling
|
|
51
|
+
- **Swallowed errors**: Empty `catch` blocks or `catch (e) {}` with no action
|
|
52
|
+
- **`JSON.parse` without try/catch**: Throws on invalid input — always wrap
|
|
53
|
+
- **Throwing non-Error objects**: `throw "message"` — always `throw new Error("message")`
|
|
54
|
+
- **Missing error boundaries**: React trees without `<ErrorBoundary>` around async/data-fetching subtrees
|
|
55
|
+
|
|
56
|
+
### HIGH -- Idiomatic Patterns
|
|
57
|
+
- **Mutable shared state**: Module-level mutable variables — prefer immutable data and pure functions
|
|
58
|
+
- **`var` usage**: Use `const` by default, `let` when reassignment is needed
|
|
59
|
+
- **Implicit `any` from missing return types**: Public functions should have explicit return types
|
|
60
|
+
- **Callback-style async**: Mixing callbacks with `async/await` — standardise on promises
|
|
61
|
+
- **`==` instead of `===`**: Use strict equality throughout
|
|
62
|
+
|
|
63
|
+
### HIGH -- Node.js Specifics
|
|
64
|
+
- **Synchronous fs in request handlers**: `fs.readFileSync` blocks the event loop — use async variants
|
|
65
|
+
- **Missing input validation at boundaries**: No schema validation (zod, joi, yup) on external data
|
|
66
|
+
- **Unvalidated `process.env` access**: Access without fallback or startup validation
|
|
67
|
+
- **`require()` in ESM context**: Mixing module systems without clear intent
|
|
68
|
+
|
|
69
|
+
### MEDIUM -- React / Next.js (when applicable)
|
|
70
|
+
- **Missing dependency arrays**: `useEffect`/`useCallback`/`useMemo` with incomplete deps — use exhaustive-deps lint rule
|
|
71
|
+
- **State mutation**: Mutating state directly instead of returning new objects
|
|
72
|
+
- **Key prop using index**: `key={index}` in dynamic lists — use stable unique IDs
|
|
73
|
+
- **`useEffect` for derived state**: Compute derived values during render, not in effects
|
|
74
|
+
- **Server/client boundary leaks**: Importing server-only modules into client components in Next.js
|
|
75
|
+
|
|
76
|
+
### MEDIUM -- Performance
|
|
77
|
+
- **Object/array creation in render**: Inline objects as props cause unnecessary re-renders — hoist or memoize
|
|
78
|
+
- **N+1 queries**: Database or API calls inside loops — batch or use `Promise.all`
|
|
79
|
+
- **Missing `React.memo` / `useMemo`**: Expensive computations or components re-running on every render
|
|
80
|
+
- **Large bundle imports**: `import _ from 'lodash'` — use named imports or tree-shakeable alternatives
|
|
81
|
+
|
|
82
|
+
### MEDIUM -- Best Practices
|
|
83
|
+
- **`console.log` left in production code**: Use a structured logger
|
|
84
|
+
- **Magic numbers/strings**: Use named constants or enums
|
|
85
|
+
- **Deep optional chaining without fallback**: `a?.b?.c?.d` with no default — add `?? fallback`
|
|
86
|
+
- **Inconsistent naming**: camelCase for variables/functions, PascalCase for types/classes/components
|
|
87
|
+
|
|
88
|
+
## Diagnostic Commands
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
npm run typecheck --if-present # Canonical TypeScript check when the project defines one
|
|
92
|
+
tsc --noEmit -p <relevant-config> # Fallback type check for the tsconfig that owns the changed files
|
|
93
|
+
eslint . --ext .ts,.tsx,.js,.jsx # Linting
|
|
94
|
+
prettier --check . # Format check
|
|
95
|
+
npm audit # Dependency vulnerabilities (or the equivalent yarn/pnpm/bun audit command)
|
|
96
|
+
vitest run # Tests (Vitest)
|
|
97
|
+
jest --ci # Tests (Jest)
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
## Approval Criteria
|
|
101
|
+
|
|
102
|
+
- **Approve**: No CRITICAL or HIGH issues
|
|
103
|
+
- **Warning**: MEDIUM issues only (can merge with caution)
|
|
104
|
+
- **Block**: CRITICAL or HIGH issues found
|
|
105
|
+
|
|
106
|
+
## Reference
|
|
107
|
+
|
|
108
|
+
This repo does not yet ship a dedicated `typescript-patterns` skill. For detailed TypeScript and JavaScript patterns, use `coding-standards` plus `frontend-patterns` or `backend-patterns` based on the code being reviewed.
|
|
109
|
+
|
|
110
|
+
---
|
|
111
|
+
|
|
112
|
+
Review with the mindset: "Would this code pass review at a top TypeScript shop or well-maintained open-source project?"
|
package/cli/commands/check.mjs
CHANGED
|
@@ -18,37 +18,29 @@ export async function check(ctx) {
|
|
|
18
18
|
return
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
const
|
|
22
|
-
if (!existsSync(
|
|
23
|
-
log.error('
|
|
24
|
-
log.info('请运行 aigroup update
|
|
21
|
+
const dispatcherPath = join(PROJECT_ROOT, 'scripts/hooks/dispatcher.cjs')
|
|
22
|
+
if (!existsSync(dispatcherPath)) {
|
|
23
|
+
log.error('Hook dispatcher 不存在: scripts/hooks/dispatcher.cjs')
|
|
24
|
+
log.info('请运行 aigroup update 重新安装')
|
|
25
25
|
return
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
try {
|
|
29
29
|
const { execSync } = await import('node:child_process')
|
|
30
|
-
const output = execSync('
|
|
30
|
+
const output = execSync('node scripts/hooks/dispatcher.cjs stop', {
|
|
31
31
|
cwd: PROJECT_ROOT,
|
|
32
32
|
encoding: 'utf-8',
|
|
33
33
|
stdio: 'pipe',
|
|
34
|
+
input: '{}',
|
|
34
35
|
timeout: 30000,
|
|
35
36
|
})
|
|
36
37
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
if (output.includes('全部通过')) {
|
|
41
|
-
process.exit(0)
|
|
42
|
-
} else {
|
|
43
|
-
process.exit(1)
|
|
44
|
-
}
|
|
38
|
+
if (output.trim()) console.log(output)
|
|
39
|
+
log.success('Harness 检查通过')
|
|
40
|
+
process.exit(0)
|
|
45
41
|
} catch (err) {
|
|
46
|
-
if (err.stdout)
|
|
47
|
-
|
|
48
|
-
}
|
|
49
|
-
if (err.stderr) {
|
|
50
|
-
console.error(err.stderr)
|
|
51
|
-
}
|
|
42
|
+
if (err.stdout) console.log(err.stdout)
|
|
43
|
+
if (err.stderr) console.error(err.stderr)
|
|
52
44
|
log.error('Harness 检查发现问题,请根据 [FIX] 指令修复')
|
|
53
45
|
process.exit(err.status || 1)
|
|
54
46
|
}
|
package/cli/commands/init.mjs
CHANGED
|
@@ -1,11 +1,21 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* init 命令 —
|
|
2
|
+
* init 命令 — 完整初始化,交互式选择 skill 模块和目标 harness
|
|
3
|
+
*
|
|
4
|
+
* Phase 4 起不再按三角色选择,改为按 manifest 中的 skill 模块选择。
|
|
3
5
|
*/
|
|
4
6
|
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
import { confirm, multiSelect } from '../utils/prompts.mjs'
|
|
8
|
+
import {
|
|
9
|
+
scaffold,
|
|
10
|
+
writeConfig,
|
|
11
|
+
readConfig,
|
|
12
|
+
isInitialized,
|
|
13
|
+
getSkillModules,
|
|
14
|
+
getDefaultSkillModuleIds,
|
|
15
|
+
getAgentModules,
|
|
16
|
+
getDefaultAgentModuleIds,
|
|
17
|
+
listAvailableAgents,
|
|
18
|
+
} from '../utils/scaffold.mjs'
|
|
9
19
|
import * as log from '../utils/logger.mjs'
|
|
10
20
|
|
|
11
21
|
export async function init(ctx) {
|
|
@@ -13,7 +23,7 @@ export async function init(ctx) {
|
|
|
13
23
|
const skipPrompt = hasFlag('yes')
|
|
14
24
|
|
|
15
25
|
log.banner()
|
|
16
|
-
log.step('初始化 aiGroup
|
|
26
|
+
log.step('初始化 aiGroup 框架(双端:Claude Code + Codex)')
|
|
17
27
|
log.dim(`目标目录: ${PROJECT_ROOT}`)
|
|
18
28
|
|
|
19
29
|
// ── 1. 检查是否已初始化 ──
|
|
@@ -22,7 +32,8 @@ export async function init(ctx) {
|
|
|
22
32
|
log.warn('检测到项目已初始化 aiGroup 框架')
|
|
23
33
|
|
|
24
34
|
if (existingConfig) {
|
|
25
|
-
log.dim(
|
|
35
|
+
log.dim(`已安装模块: ${existingConfig.modules?.join(', ') || existingConfig.agents?.join(', ') || '未知'}`)
|
|
36
|
+
log.dim(`已启用 harness: ${existingConfig.targets?.join(', ') || '未知'}`)
|
|
26
37
|
log.dim(`安装时间: ${existingConfig.installedAt || '未知'}`)
|
|
27
38
|
}
|
|
28
39
|
|
|
@@ -35,37 +46,103 @@ export async function init(ctx) {
|
|
|
35
46
|
}
|
|
36
47
|
}
|
|
37
48
|
|
|
38
|
-
// ── 2.
|
|
39
|
-
let
|
|
40
|
-
|
|
49
|
+
// ── 2. 选择 harness ──
|
|
50
|
+
let selectedTargets
|
|
41
51
|
if (skipPrompt) {
|
|
42
|
-
|
|
43
|
-
log.info('
|
|
52
|
+
selectedTargets = ['claude', 'codex']
|
|
53
|
+
log.info('使用默认配置:Claude Code + Codex 双端')
|
|
44
54
|
} else {
|
|
45
|
-
|
|
46
|
-
{ name: '
|
|
47
|
-
{ name: '
|
|
48
|
-
{ name: '凯尔 (Kyle)', value: 'kyle', description: '质量保证工程师 · 7 Skills', checked: true },
|
|
55
|
+
selectedTargets = await multiSelect('选择要启用的 AI harness', [
|
|
56
|
+
{ name: 'Claude Code', value: 'claude', description: '原生 subagent 派遣 + hooks 自动化', checked: true },
|
|
57
|
+
{ name: 'Codex CLI', value: 'codex', description: '3 Codex 原生 persona + skill 加载', checked: true },
|
|
49
58
|
])
|
|
50
59
|
|
|
51
|
-
if (
|
|
52
|
-
log.warn('
|
|
53
|
-
|
|
60
|
+
if (selectedTargets.length === 0) {
|
|
61
|
+
log.warn('至少需要选择一个 harness,已自动选择 Claude Code')
|
|
62
|
+
selectedTargets = ['claude']
|
|
54
63
|
}
|
|
55
64
|
}
|
|
56
65
|
|
|
57
|
-
// ── 3.
|
|
66
|
+
// ── 3. 选择 skill 模块 ──
|
|
67
|
+
const allSkillModules = getSkillModules(PKG_ROOT)
|
|
68
|
+
let selectedModules
|
|
69
|
+
|
|
70
|
+
if (skipPrompt) {
|
|
71
|
+
selectedModules = getDefaultSkillModuleIds(PKG_ROOT)
|
|
72
|
+
log.info(`使用默认 skill 模块:${selectedModules.join(', ')}`)
|
|
73
|
+
} else {
|
|
74
|
+
const choices = allSkillModules.map(mod => ({
|
|
75
|
+
name: `${mod.id} — ${mod.description}`,
|
|
76
|
+
value: mod.id,
|
|
77
|
+
description: `路径数: ${mod.paths.length} · 成本: ${mod.cost || 'n/a'}`,
|
|
78
|
+
checked: mod.defaultInstall === true,
|
|
79
|
+
}))
|
|
80
|
+
|
|
81
|
+
selectedModules = await multiSelect('选择要安装的 skill 模块', choices)
|
|
82
|
+
|
|
83
|
+
if (selectedModules.length === 0) {
|
|
84
|
+
log.warn('至少需要选择一个模块,已自动选择默认集')
|
|
85
|
+
selectedModules = getDefaultSkillModuleIds(PKG_ROOT)
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// ── 3b. 选择 agent 模块(仅 Claude target 启用时) ──
|
|
90
|
+
let selectedAgentModules = []
|
|
91
|
+
if (selectedTargets.includes('claude')) {
|
|
92
|
+
const allAgentModules = getAgentModules(PKG_ROOT)
|
|
93
|
+
const totalAgents = listAvailableAgents(PKG_ROOT).length
|
|
94
|
+
|
|
95
|
+
if (skipPrompt) {
|
|
96
|
+
selectedAgentModules = getDefaultAgentModuleIds(PKG_ROOT)
|
|
97
|
+
log.info(`使用默认 agent 模块:${selectedAgentModules.join(', ')}`)
|
|
98
|
+
} else {
|
|
99
|
+
log.info(`agent 源池共 ${totalAgents} 个,按模块分组按需选`)
|
|
100
|
+
const agentChoices = allAgentModules.map(mod => ({
|
|
101
|
+
name: `${mod.id} — ${mod.description}`,
|
|
102
|
+
value: mod.id,
|
|
103
|
+
description: `agent 数: ${mod.agents.length} · 稳定性: ${mod.stability || 'stable'}`,
|
|
104
|
+
checked: mod.defaultInstall === true,
|
|
105
|
+
}))
|
|
106
|
+
|
|
107
|
+
selectedAgentModules = await multiSelect('选择要安装的 agent 模块', agentChoices)
|
|
108
|
+
|
|
109
|
+
if (selectedAgentModules.length === 0) {
|
|
110
|
+
log.warn('未选 agent,将至少安装 agents-core')
|
|
111
|
+
selectedAgentModules = ['agents-core']
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// ── 4. 确认安装 ──
|
|
58
117
|
log.step('安装清单')
|
|
59
|
-
log.dim('
|
|
60
|
-
log.dim(' • CLAUDE.md
|
|
61
|
-
log.dim(' • docs
|
|
62
|
-
log.dim(' • scripts/
|
|
63
|
-
log.dim(' •
|
|
64
|
-
log.dim(' • .
|
|
118
|
+
log.dim('基础组件(必装):')
|
|
119
|
+
log.dim(' • CLAUDE.md + AGENTS.md(双端入口)')
|
|
120
|
+
log.dim(' • docs/(rules/agents(ECC 派遣)+ rules/<lang>(13 语言)+ workflow-pipeline + red-flags)')
|
|
121
|
+
log.dim(' • scripts/hooks/(dispatcher + checks)+ scripts/orchestration/(session.cjs)')
|
|
122
|
+
log.dim(' • manifests/install-modules.json(跨端清单)')
|
|
123
|
+
log.dim(' • .orchestration/<session>/(产物工作区)')
|
|
65
124
|
log.dim('')
|
|
66
|
-
log.dim('
|
|
67
|
-
for (const
|
|
68
|
-
|
|
125
|
+
log.dim('启用的 harness:')
|
|
126
|
+
for (const t of selectedTargets) {
|
|
127
|
+
const label = t === 'claude'
|
|
128
|
+
? 'Claude Code(commands + hooks + 已选 agent 模块)'
|
|
129
|
+
: 'Codex CLI(3 persona + config.toml + plugin)'
|
|
130
|
+
log.dim(` • ${label}`)
|
|
131
|
+
}
|
|
132
|
+
log.dim('')
|
|
133
|
+
if (selectedAgentModules.length > 0) {
|
|
134
|
+
const allAgentModules = getAgentModules(PKG_ROOT)
|
|
135
|
+
log.dim('Agent 模块:')
|
|
136
|
+
for (const modId of selectedAgentModules) {
|
|
137
|
+
const mod = allAgentModules.find(m => m.id === modId)
|
|
138
|
+
if (mod) log.dim(` • ${modId}(${mod.agents.length} 个 agent)— ${mod.description}`)
|
|
139
|
+
}
|
|
140
|
+
log.dim('')
|
|
141
|
+
}
|
|
142
|
+
log.dim('Skill 模块:')
|
|
143
|
+
for (const modId of selectedModules) {
|
|
144
|
+
const mod = allSkillModules.find(m => m.id === modId)
|
|
145
|
+
if (mod) log.dim(` • ${modId}(${mod.paths.length} 个 skill)— ${mod.description}`)
|
|
69
146
|
}
|
|
70
147
|
|
|
71
148
|
if (!skipPrompt) {
|
|
@@ -76,11 +153,13 @@ export async function init(ctx) {
|
|
|
76
153
|
}
|
|
77
154
|
}
|
|
78
155
|
|
|
79
|
-
// ──
|
|
156
|
+
// ── 5. 执行安装 ──
|
|
80
157
|
log.step('正在安装...')
|
|
81
158
|
|
|
82
159
|
const result = scaffold(PKG_ROOT, PROJECT_ROOT, {
|
|
83
|
-
|
|
160
|
+
modules: selectedModules,
|
|
161
|
+
agentModules: selectedAgentModules,
|
|
162
|
+
targets: selectedTargets,
|
|
84
163
|
overwrite: skipPrompt || isInitialized(PROJECT_ROOT),
|
|
85
164
|
})
|
|
86
165
|
|
|
@@ -92,51 +171,56 @@ export async function init(ctx) {
|
|
|
92
171
|
}
|
|
93
172
|
}
|
|
94
173
|
|
|
95
|
-
// ──
|
|
174
|
+
// ── 6. 写入配置 ──
|
|
96
175
|
writeConfig(PROJECT_ROOT, {
|
|
97
|
-
version: '
|
|
98
|
-
|
|
176
|
+
version: '2.0.0',
|
|
177
|
+
targets: selectedTargets,
|
|
178
|
+
modules: selectedModules,
|
|
179
|
+
agentModules: selectedAgentModules,
|
|
99
180
|
installedAt: new Date().toISOString().split('T')[0],
|
|
100
181
|
updatedAt: new Date().toISOString().split('T')[0],
|
|
101
182
|
})
|
|
102
183
|
log.success('配置已保存到 .aigroup.json')
|
|
103
184
|
|
|
104
|
-
// ──
|
|
185
|
+
// ── 7. 运行健康检查 ──
|
|
105
186
|
log.step('运行 Harness 健康检查...')
|
|
106
187
|
|
|
107
188
|
try {
|
|
108
189
|
const { execSync } = await import('node:child_process')
|
|
109
|
-
|
|
190
|
+
execSync('node scripts/hooks/dispatcher.cjs stop', {
|
|
110
191
|
cwd: PROJECT_ROOT,
|
|
111
192
|
encoding: 'utf-8',
|
|
193
|
+
input: '{}',
|
|
112
194
|
timeout: 30000,
|
|
113
195
|
})
|
|
114
|
-
|
|
115
|
-
if (output.includes('全部通过')) {
|
|
116
|
-
log.success('Harness 健康检查通过')
|
|
117
|
-
} else {
|
|
118
|
-
log.warn('Harness 检查发现问题,请查看上方输出')
|
|
119
|
-
}
|
|
196
|
+
log.success('Harness 健康检查通过')
|
|
120
197
|
} catch (err) {
|
|
121
|
-
|
|
122
|
-
log.
|
|
198
|
+
if (err.stderr) console.error(err.stderr.toString())
|
|
199
|
+
log.warn('Harness 检查发现问题,请根据 [FIX] 指令修复')
|
|
200
|
+
log.dim('手动运行: node scripts/hooks/dispatcher.cjs stop')
|
|
123
201
|
}
|
|
124
202
|
|
|
125
|
-
// ──
|
|
203
|
+
// ── 8. 完成 ──
|
|
126
204
|
console.log('')
|
|
127
205
|
log.step('安装完成!')
|
|
128
206
|
console.log(`
|
|
129
207
|
${result.totalCopied} 个文件已安装到项目中。
|
|
130
208
|
|
|
131
209
|
下一步:
|
|
132
|
-
1. 阅读 CLAUDE.md
|
|
133
|
-
2.
|
|
134
|
-
|
|
210
|
+
1. 阅读 ${selectedTargets.includes('claude') ? 'CLAUDE.md' : 'AGENTS.md'} 了解入口
|
|
211
|
+
2. 开始一个任务 session:
|
|
212
|
+
node scripts/orchestration/session.cjs init <任务名>
|
|
213
|
+
或在 Claude Code 中用 /workflow-start <任务名>
|
|
135
214
|
3. 定期运行健康检查:
|
|
136
215
|
aigroup check
|
|
137
216
|
|
|
138
|
-
|
|
217
|
+
Phase 心智模型(按需裁剪):
|
|
139
218
|
需求收集 → 需求验证 → 方案设计 → 任务拆解
|
|
140
219
|
→ 实施开发 → 测试验证 → 文档更新 → 分支收尾
|
|
220
|
+
|
|
221
|
+
派遣规则主源: docs/rules/agents.md
|
|
222
|
+
Phase 裁剪示例: docs/workflow-pipeline.md
|
|
223
|
+
危险信号: docs/red-flags.md
|
|
224
|
+
Codex 端差异: .codex/AGENTS.md
|
|
141
225
|
`)
|
|
142
226
|
}
|