aigroup-workflow 1.2.7 → 2.0.0
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/agents/architect.md +211 -0
- package/.claude/agents/build-error-resolver.md +114 -0
- package/.claude/agents/code-reviewer.md +237 -0
- package/.claude/agents/doc-updater.md +107 -0
- package/.claude/agents/e2e-runner.md +107 -0
- package/.claude/agents/init-architect.md +185 -141
- package/.claude/agents/planner.md +212 -0
- package/.claude/agents/refactor-cleaner.md +85 -0
- package/.claude/agents/rust-reviewer.md +94 -0
- package/.claude/agents/security-reviewer.md +108 -0
- package/.claude/agents/tdd-guide.md +91 -0
- package/.claude/commands/fix-build.md +32 -0
- package/.claude/commands/git-commit.md +1 -1
- package/.claude/commands/init-project.md +64 -63
- 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 +19 -76
- package/README.md +220 -317
- 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/PROJECT_CONTEXT.md +25 -0
- package/docs/README.md +46 -24
- 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/{.dev-agents/shared → docs}/templates/code-review.md +1 -1
- package/{.dev-agents/shared → docs}/templates/implementation-plan.md +82 -82
- package/docs/workflow-pipeline.md +55 -118
- package/manifests/install-modules.json +294 -0
- package/package.json +7 -3
- package/scripts/harness/log-event.sh +110 -0
- package/scripts/harness/logs-query.sh +184 -0
- package/scripts/harness/tests/test-log-event.sh +71 -0
- package/scripts/harness/tests/test-logs-query.sh +77 -0
- 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/jarvis.md +0 -193
- package/.claude/agents/kyle.md +0 -168
- package/.dev-agents/shared/.workflow-state +0 -5
- package/.dev-agents/shared/designs/.gitkeep +0 -0
- package/.dev-agents/shared/reviews/.gitkeep +0 -0
- package/.dev-agents/shared/tasks/.gitkeep +0 -0
- package/docs/ARCHITECTURE.md +0 -86
- package/docs/QUALITY_SCORE.md +0 -43
- 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/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 -164
- package/scripts/harness/lint-docs.sh +0 -117
- package/scripts/harness/lint-process.sh +0 -217
- package/scripts/harness/lint-structure.sh +0 -141
- package/scripts/harness/lint-workflow-artifacts.sh +0 -145
- package/scripts/harness/run-all.sh +0 -77
- package/scripts/harness/workflow-state.sh +0 -357
- 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/{.dev-agents/shared → docs}/templates/README.md +0 -0
- /package/{.dev-agents/shared → docs}/templates/ai-project-final.md +0 -0
- /package/{.dev-agents/shared → docs}/templates/ai-project.md +0 -0
- /package/{.dev-agents/shared → docs}/templates/api.md +0 -0
- /package/{.dev-agents/shared → docs}/templates/bug.md +0 -0
- /package/{.dev-agents/shared → docs}/templates/generic.md +0 -0
- /package/{.dev-agents/shared → docs}/templates/meeting.md +0 -0
- /package/{.dev-agents/shared → docs}/templates/prd.md +0 -0
- /package/{.dev-agents/shared → docs}/templates/ui.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,181 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
const fs = require('fs');
|
|
4
|
+
const path = require('path');
|
|
5
|
+
|
|
6
|
+
const ROOT = path.resolve(__dirname, '..', '..', '..');
|
|
7
|
+
const COORDINATION_ROOT = path.join(ROOT, '.orchestration');
|
|
8
|
+
|
|
9
|
+
function toPosix(p) {
|
|
10
|
+
return p.split(path.sep).join('/');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function relPosix(target) {
|
|
14
|
+
return toPosix(path.relative(ROOT, target));
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
function slugify(value, fallback = 'item') {
|
|
18
|
+
const normalized = String(value || '')
|
|
19
|
+
.trim()
|
|
20
|
+
.toLowerCase()
|
|
21
|
+
.replace(/[^a-z0-9]+/g, '-')
|
|
22
|
+
.replace(/^-+|-+$/g, '');
|
|
23
|
+
return normalized || fallback;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function timestamp() {
|
|
27
|
+
return new Date().toISOString().replace(/\.\d+Z$/, 'Z');
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
function sessionDir(sessionName) {
|
|
31
|
+
const slug = slugify(sessionName, 'session');
|
|
32
|
+
return path.join(COORDINATION_ROOT, slug);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
function workerDir(sessionName, workerName) {
|
|
36
|
+
return path.join(sessionDir(sessionName), slugify(workerName, 'worker'));
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
function workerArtifacts(sessionName, workerName) {
|
|
40
|
+
const dir = workerDir(sessionName, workerName);
|
|
41
|
+
return {
|
|
42
|
+
dir,
|
|
43
|
+
task: path.join(dir, 'task.md'),
|
|
44
|
+
handoff: path.join(dir, 'handoff.md'),
|
|
45
|
+
status: path.join(dir, 'status.md')
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function ensureDir(dirPath) {
|
|
50
|
+
fs.mkdirSync(dirPath, { recursive: true });
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
function writeFile(filePath, content) {
|
|
54
|
+
ensureDir(path.dirname(filePath));
|
|
55
|
+
fs.writeFileSync(filePath, content.endsWith('\n') ? content : content + '\n', 'utf8');
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
function buildTaskFile({ sessionName, workerName, agent, objective, context = [], deliverables = [] }) {
|
|
59
|
+
const ctx = context.length > 0 ? context.map(line => `- ${line}`).join('\n') : '- _无_';
|
|
60
|
+
const deliv = deliverables.length > 0 ? deliverables.map(line => `- ${line}`).join('\n') : '- 见 handoff.md 模板';
|
|
61
|
+
const artifacts = workerArtifacts(sessionName, workerName);
|
|
62
|
+
return [
|
|
63
|
+
`# Worker Task: ${workerName}`,
|
|
64
|
+
'',
|
|
65
|
+
`- Session: \`${sessionName}\``,
|
|
66
|
+
`- Agent: \`${agent}\``,
|
|
67
|
+
`- Created: ${timestamp()}`,
|
|
68
|
+
`- Handoff: \`${relPosix(artifacts.handoff)}\``,
|
|
69
|
+
`- Status: \`${relPosix(artifacts.status)}\``,
|
|
70
|
+
'',
|
|
71
|
+
'## Objective',
|
|
72
|
+
objective.trim(),
|
|
73
|
+
'',
|
|
74
|
+
'## Context',
|
|
75
|
+
ctx,
|
|
76
|
+
'',
|
|
77
|
+
'## Deliverables',
|
|
78
|
+
deliv,
|
|
79
|
+
'',
|
|
80
|
+
'## Completion Rules',
|
|
81
|
+
'- 不再向下派遣 subagent,结果写进最终响应',
|
|
82
|
+
'- 主会话负责把响应抄写进 `handoff.md`',
|
|
83
|
+
'- 主会话负责更新 `status.md`'
|
|
84
|
+
].join('\n');
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
function buildHandoffFile({ workerName }) {
|
|
88
|
+
return [
|
|
89
|
+
`# Handoff: ${workerName}`,
|
|
90
|
+
'',
|
|
91
|
+
'## Summary',
|
|
92
|
+
'- Pending',
|
|
93
|
+
'',
|
|
94
|
+
'## Files Changed',
|
|
95
|
+
'- Pending',
|
|
96
|
+
'',
|
|
97
|
+
'## Validation',
|
|
98
|
+
'- Pending',
|
|
99
|
+
'',
|
|
100
|
+
'## Follow-ups',
|
|
101
|
+
'- Pending'
|
|
102
|
+
].join('\n');
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
function buildStatusFile({ workerName, state = 'not_started', lightweight = false }) {
|
|
106
|
+
const lines = [
|
|
107
|
+
`# Status: ${workerName}`,
|
|
108
|
+
'',
|
|
109
|
+
`- State: ${state}`,
|
|
110
|
+
`- Updated: ${timestamp()}`
|
|
111
|
+
];
|
|
112
|
+
if (lightweight) lines.push('- Lightweight: true');
|
|
113
|
+
return lines.join('\n');
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
function createWorker(spec) {
|
|
117
|
+
const { sessionName, workerName, lightweight = false } = spec;
|
|
118
|
+
if (!sessionName) throw new Error('sessionName is required');
|
|
119
|
+
if (!workerName) throw new Error('workerName is required');
|
|
120
|
+
if (!spec.agent) throw new Error('agent is required');
|
|
121
|
+
if (!spec.objective) throw new Error('objective is required');
|
|
122
|
+
|
|
123
|
+
const artifacts = workerArtifacts(sessionName, workerName);
|
|
124
|
+
ensureDir(artifacts.dir);
|
|
125
|
+
if (!lightweight) {
|
|
126
|
+
writeFile(artifacts.task, buildTaskFile(spec));
|
|
127
|
+
}
|
|
128
|
+
writeFile(artifacts.handoff, buildHandoffFile({ workerName }));
|
|
129
|
+
writeFile(artifacts.status, buildStatusFile({ workerName, lightweight }));
|
|
130
|
+
return { ...artifacts, lightweight };
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
function isLightweight(statusFile) {
|
|
134
|
+
try {
|
|
135
|
+
const raw = fs.readFileSync(statusFile, 'utf8');
|
|
136
|
+
return /^\s*-\s*Lightweight:\s*true/m.test(raw);
|
|
137
|
+
} catch (_error) {
|
|
138
|
+
return false;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
function updateStatus(sessionName, workerName, state, details = '') {
|
|
143
|
+
const artifacts = workerArtifacts(sessionName, workerName);
|
|
144
|
+
const lightweight = isLightweight(artifacts.status);
|
|
145
|
+
const body = [
|
|
146
|
+
`# Status: ${workerName}`,
|
|
147
|
+
'',
|
|
148
|
+
`- State: ${state}`,
|
|
149
|
+
`- Updated: ${timestamp()}`
|
|
150
|
+
];
|
|
151
|
+
if (lightweight) body.push('- Lightweight: true');
|
|
152
|
+
if (details) body.push('', details.trim());
|
|
153
|
+
writeFile(artifacts.status, body.join('\n'));
|
|
154
|
+
return artifacts.status;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
function appendHandoff(sessionName, workerName, sectionTitle, content) {
|
|
158
|
+
const artifacts = workerArtifacts(sessionName, workerName);
|
|
159
|
+
const existing = fs.existsSync(artifacts.handoff)
|
|
160
|
+
? fs.readFileSync(artifacts.handoff, 'utf8')
|
|
161
|
+
: buildHandoffFile({ workerName });
|
|
162
|
+
const block = `\n## ${sectionTitle} (${timestamp()})\n${content.trim()}\n`;
|
|
163
|
+
writeFile(artifacts.handoff, existing.replace(/\s+$/, '') + block);
|
|
164
|
+
return artifacts.handoff;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
module.exports = {
|
|
168
|
+
COORDINATION_ROOT,
|
|
169
|
+
ROOT,
|
|
170
|
+
sessionDir,
|
|
171
|
+
workerDir,
|
|
172
|
+
workerArtifacts,
|
|
173
|
+
createWorker,
|
|
174
|
+
updateStatus,
|
|
175
|
+
appendHandoff,
|
|
176
|
+
isLightweight,
|
|
177
|
+
slugify,
|
|
178
|
+
timestamp,
|
|
179
|
+
relPosix,
|
|
180
|
+
toPosix
|
|
181
|
+
};
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
const fs = require('fs');
|
|
5
|
+
const path = require('path');
|
|
6
|
+
const {
|
|
7
|
+
COORDINATION_ROOT,
|
|
8
|
+
ROOT,
|
|
9
|
+
sessionDir,
|
|
10
|
+
workerArtifacts,
|
|
11
|
+
createWorker,
|
|
12
|
+
updateStatus,
|
|
13
|
+
appendHandoff,
|
|
14
|
+
slugify,
|
|
15
|
+
relPosix
|
|
16
|
+
} = require('./lib/orchestrator.cjs');
|
|
17
|
+
|
|
18
|
+
const COMMANDS = ['init', 'add-worker', 'status', 'set-status', 'append', 'list', 'help'];
|
|
19
|
+
|
|
20
|
+
function usage() {
|
|
21
|
+
console.log([
|
|
22
|
+
'Usage:',
|
|
23
|
+
' node scripts/orchestration/session.js init <session-name>',
|
|
24
|
+
' node scripts/orchestration/session.cjs add-worker <session> <worker> --agent <name> --objective <text>',
|
|
25
|
+
' [--context <line>]... [--deliverable <line>]... [--lightweight]',
|
|
26
|
+
' node scripts/orchestration/session.js set-status <session> <worker> <state> [--details <text>]',
|
|
27
|
+
' node scripts/orchestration/session.js append <session> <worker> <section> --content <text>',
|
|
28
|
+
' node scripts/orchestration/session.js status <session>',
|
|
29
|
+
' node scripts/orchestration/session.js list',
|
|
30
|
+
'',
|
|
31
|
+
'States: not_started | running | blocked | completed | failed',
|
|
32
|
+
`Coordination root: ${relPosix(COORDINATION_ROOT)}/`
|
|
33
|
+
].join('\n'));
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
const BOOLEAN_FLAGS = new Set(['lightweight']);
|
|
37
|
+
|
|
38
|
+
function parseFlags(args) {
|
|
39
|
+
const flags = { context: [], deliverable: [] };
|
|
40
|
+
const positional = [];
|
|
41
|
+
for (let i = 0; i < args.length; i += 1) {
|
|
42
|
+
const arg = args[i];
|
|
43
|
+
if (arg.startsWith('--')) {
|
|
44
|
+
const key = arg.slice(2);
|
|
45
|
+
if (BOOLEAN_FLAGS.has(key)) {
|
|
46
|
+
flags[key] = true;
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
const value = args[i + 1];
|
|
50
|
+
if (key === 'context' || key === 'deliverable') {
|
|
51
|
+
flags[key].push(value);
|
|
52
|
+
} else {
|
|
53
|
+
flags[key] = value;
|
|
54
|
+
}
|
|
55
|
+
i += 1;
|
|
56
|
+
} else {
|
|
57
|
+
positional.push(arg);
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
return { flags, positional };
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
function cmdInit(name) {
|
|
64
|
+
if (!name) throw new Error('session-name is required');
|
|
65
|
+
const dir = sessionDir(name);
|
|
66
|
+
fs.mkdirSync(dir, { recursive: true });
|
|
67
|
+
const meta = path.join(dir, 'session.json');
|
|
68
|
+
if (!fs.existsSync(meta)) {
|
|
69
|
+
fs.writeFileSync(meta, JSON.stringify({
|
|
70
|
+
name: slugify(name, 'session'),
|
|
71
|
+
label: name,
|
|
72
|
+
createdAt: new Date().toISOString()
|
|
73
|
+
}, null, 2) + '\n', 'utf8');
|
|
74
|
+
}
|
|
75
|
+
console.log(relPosix(dir));
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
function cmdAddWorker(session, worker, flags) {
|
|
79
|
+
if (!session || !worker) throw new Error('session and worker names are required');
|
|
80
|
+
if (!flags.agent) throw new Error('--agent is required');
|
|
81
|
+
if (!flags.objective) throw new Error('--objective is required');
|
|
82
|
+
const artifacts = createWorker({
|
|
83
|
+
sessionName: session,
|
|
84
|
+
workerName: worker,
|
|
85
|
+
agent: flags.agent,
|
|
86
|
+
objective: flags.objective,
|
|
87
|
+
context: flags.context,
|
|
88
|
+
deliverables: flags.deliverable,
|
|
89
|
+
lightweight: Boolean(flags.lightweight)
|
|
90
|
+
});
|
|
91
|
+
const out = {
|
|
92
|
+
handoff: relPosix(artifacts.handoff),
|
|
93
|
+
status: relPosix(artifacts.status)
|
|
94
|
+
};
|
|
95
|
+
if (!artifacts.lightweight) out.task = relPosix(artifacts.task);
|
|
96
|
+
if (artifacts.lightweight) out.lightweight = true;
|
|
97
|
+
console.log(JSON.stringify(out, null, 2));
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
function cmdSetStatus(session, worker, state, flags) {
|
|
101
|
+
if (!session || !worker || !state) throw new Error('session, worker, state are required');
|
|
102
|
+
const file = updateStatus(session, worker, state, flags.details || '');
|
|
103
|
+
console.log(relPosix(file));
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
function cmdAppend(session, worker, section, flags) {
|
|
107
|
+
if (!session || !worker || !section) throw new Error('session, worker, section are required');
|
|
108
|
+
if (!flags.content) throw new Error('--content is required');
|
|
109
|
+
const file = appendHandoff(session, worker, section, flags.content);
|
|
110
|
+
console.log(relPosix(file));
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
function cmdStatus(session) {
|
|
114
|
+
if (!session) throw new Error('session-name is required');
|
|
115
|
+
const dir = sessionDir(session);
|
|
116
|
+
if (!fs.existsSync(dir)) {
|
|
117
|
+
console.log(`(no such session: ${session})`);
|
|
118
|
+
return;
|
|
119
|
+
}
|
|
120
|
+
const workers = fs.readdirSync(dir, { withFileTypes: true })
|
|
121
|
+
.filter(entry => entry.isDirectory())
|
|
122
|
+
.map(entry => entry.name);
|
|
123
|
+
const out = workers.map(worker => {
|
|
124
|
+
const statusPath = workerArtifacts(session, worker).status;
|
|
125
|
+
const content = fs.existsSync(statusPath) ? fs.readFileSync(statusPath, 'utf8') : '(missing)';
|
|
126
|
+
const stateLine = content.split('\n').find(line => line.startsWith('- State:'));
|
|
127
|
+
return `${worker}\t${stateLine ? stateLine.replace('- State:', '').trim() : '?'}`;
|
|
128
|
+
});
|
|
129
|
+
console.log(out.join('\n') || '(no workers)');
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
function cmdList() {
|
|
133
|
+
if (!fs.existsSync(COORDINATION_ROOT)) {
|
|
134
|
+
console.log('(no sessions)');
|
|
135
|
+
return;
|
|
136
|
+
}
|
|
137
|
+
const sessions = fs.readdirSync(COORDINATION_ROOT, { withFileTypes: true })
|
|
138
|
+
.filter(entry => entry.isDirectory() && !entry.name.startsWith('.'))
|
|
139
|
+
.map(entry => entry.name);
|
|
140
|
+
console.log(sessions.join('\n') || '(no sessions)');
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
function main() {
|
|
144
|
+
const [, , command, ...rest] = process.argv;
|
|
145
|
+
if (!command || command === 'help' || !COMMANDS.includes(command)) {
|
|
146
|
+
usage();
|
|
147
|
+
process.exit(command && command !== 'help' ? 1 : 0);
|
|
148
|
+
}
|
|
149
|
+
const { flags, positional } = parseFlags(rest);
|
|
150
|
+
try {
|
|
151
|
+
switch (command) {
|
|
152
|
+
case 'init':
|
|
153
|
+
cmdInit(positional[0]);
|
|
154
|
+
break;
|
|
155
|
+
case 'add-worker':
|
|
156
|
+
cmdAddWorker(positional[0], positional[1], flags);
|
|
157
|
+
break;
|
|
158
|
+
case 'set-status':
|
|
159
|
+
cmdSetStatus(positional[0], positional[1], positional[2], flags);
|
|
160
|
+
break;
|
|
161
|
+
case 'append':
|
|
162
|
+
cmdAppend(positional[0], positional[1], positional[2], flags);
|
|
163
|
+
break;
|
|
164
|
+
case 'status':
|
|
165
|
+
cmdStatus(positional[0]);
|
|
166
|
+
break;
|
|
167
|
+
case 'list':
|
|
168
|
+
cmdList();
|
|
169
|
+
break;
|
|
170
|
+
default:
|
|
171
|
+
usage();
|
|
172
|
+
process.exit(1);
|
|
173
|
+
}
|
|
174
|
+
} catch (error) {
|
|
175
|
+
console.error(`error: ${error.message}`);
|
|
176
|
+
process.exit(1);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
main();
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: documentation
|
|
3
|
+
description: 在代码变更落地后更新受影响的文档,确保 docs/ 与代码一致。包含必更新清单、更新原则、文档传感器验证。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 文档更新
|
|
7
|
+
|
|
8
|
+
代码变更后的文档同步。**只更新受影响的文档**,不做无关改进。
|
|
9
|
+
|
|
10
|
+
## 协调
|
|
11
|
+
|
|
12
|
+
直接修改 `docs/` 下的文档;在 session `README.md`(或回报主会话)留变更笔记。完成后运行 `node scripts/hooks/dispatcher.cjs stop` 验证。
|
|
13
|
+
|
|
14
|
+
## 必更新清单
|
|
15
|
+
|
|
16
|
+
| 文档 | 触发条件 |
|
|
17
|
+
|------|---------|
|
|
18
|
+
| API 文档 | 接口变更(参数 / 返回值 / 错误码) |
|
|
19
|
+
| README | 安装、使用方式变更 |
|
|
20
|
+
| `docs/ARCHITECTURE.md` | 架构 / 模块边界 / 组件图变更 |
|
|
21
|
+
| 模块 `CLAUDE.md` | 模块行为或入口变更 |
|
|
22
|
+
|
|
23
|
+
## 按需更新
|
|
24
|
+
|
|
25
|
+
| 文档 | 触发条件 |
|
|
26
|
+
|------|---------|
|
|
27
|
+
| 代码注释 | 复杂逻辑、关键算法、设计决策 |
|
|
28
|
+
| 配置文档 | 配置项变更(新增 / 默认值 / 移除) |
|
|
29
|
+
| 部署文档 | 部署流程或环境要求变更 |
|
|
30
|
+
|
|
31
|
+
## 原则
|
|
32
|
+
|
|
33
|
+
- 只改受影响的文档,不顺手做无关改进
|
|
34
|
+
- 文档描述以代码实际行为为准
|
|
35
|
+
- 删除已不存在功能的描述
|
|
36
|
+
- 沿用现有文档的格式和语气
|
|
37
|
+
|
|
38
|
+
## Red Flags
|
|
39
|
+
|
|
40
|
+
| 信号 | 行动 |
|
|
41
|
+
|------|------|
|
|
42
|
+
| 测试未通过就更新文档 | 先完成测试 phase |
|
|
43
|
+
| 文档与代码描述冲突 | 以代码为准修正文档 |
|
|
44
|
+
| dispatcher stop 报错 | 先修 [FAIL] 再 ship |
|
|
45
|
+
| 想跳过文档更新 | 检查是否真的零受影响文档 |
|
|
@@ -1,124 +1,115 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: entropy-management
|
|
3
|
-
description: 定期维护代码库健康度。扫描架构漂移、过期文档、低质量代码,防止技术债积累。应在完成若干任务后或怀疑代码库退化时触发。
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
# 熵管理(Garbage Collection)
|
|
7
|
-
|
|
8
|
-
## 概述
|
|
9
|
-
|
|
10
|
-
AI Agent 会复制仓库中已有的模式——包括不好的模式。随着时间推移,这不可避免地导致漂移。
|
|
11
|
-
手动清理不可持续。熵管理将清理系统化,定期执行,像垃圾回收一样防止技术债积累。
|
|
12
|
-
|
|
13
|
-
**核心原则**:技术债是高利贷——持续小额偿还远优于积累后大规模清理。
|
|
14
|
-
|
|
15
|
-
## 铁律
|
|
16
|
-
|
|
17
|
-
```
|
|
18
|
-
发现的问题不能只修一次——必须同时编码为约束,防止再次发生。
|
|
19
|
-
每次熵管理运行结束后,必须更新质量评分和技术债追踪。
|
|
20
|
-
```
|
|
21
|
-
|
|
22
|
-
## 触发条件
|
|
23
|
-
|
|
24
|
-
- 完成 5 个以上任务后(定期维护)
|
|
25
|
-
- Kyle 审查中反复出现同类问题(模式漂移信号)
|
|
26
|
-
- 用户主动要求代码库健康检查
|
|
27
|
-
- 怀疑文档与代码不一致
|
|
28
|
-
- 新成员加入前(确保仓库状态良好)
|
|
29
|
-
|
|
30
|
-
## 执行流程
|
|
31
|
-
|
|
32
|
-
### 第一阶段:自动化传感器扫描
|
|
33
|
-
|
|
34
|
-
运行 Harness 传感器套件收集机器可检测的问题:
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
|
|
38
|
-
```
|
|
39
|
-
|
|
40
|
-
记录所有 `[FAIL]` 和 `[WARN]` 项。
|
|
41
|
-
|
|
42
|
-
### 第二阶段:推理型扫描
|
|
43
|
-
|
|
44
|
-
自动化传感器无法覆盖的维度,需要人工/Agent 推理检查:
|
|
45
|
-
|
|
46
|
-
#### 2.1 文档-代码一致性
|
|
47
|
-
|
|
48
|
-
| 检查项 | 方法 |
|
|
49
|
-
|--------|------|
|
|
50
|
-
| CLAUDE.md 引用路径是否有效 | 逐条验证文件/目录存在 |
|
|
51
|
-
| docs/ 文档描述是否匹配实际行为 | 抽样对比 |
|
|
52
|
-
| SKILL.md 中的流程是否被实际遵循 | 回顾近期任务记录 |
|
|
53
|
-
| 模板是否与当前实践一致 | 对比模板与近期产出 |
|
|
54
|
-
|
|
55
|
-
#### 2.2 架构漂移检测
|
|
56
|
-
|
|
57
|
-
| 检查项 | 方法 |
|
|
58
|
-
|--------|------|
|
|
59
|
-
| 是否有文件放在错误目录 | 检查目录约定是否被遵守 |
|
|
60
|
-
| 是否有重复/冗余文件 | 搜索相似文件名和内容 |
|
|
61
|
-
| 技能包结构是否一致 | 抽样检查 SKILL.md 格式 |
|
|
62
|
-
| 协作产物是否在正确位置 | 检查 .
|
|
63
|
-
|
|
64
|
-
#### 2.3 质量回归检测
|
|
65
|
-
|
|
66
|
-
| 检查项 | 方法 |
|
|
67
|
-
|--------|------|
|
|
68
|
-
| 近期审查中的高频问题 | 分析 .
|
|
69
|
-
| 是否有被跳过的工作流阶段 | 检查产物完整性 |
|
|
70
|
-
| 是否有"沉默的传感器"(从不报错) | 评估传感器有效性 |
|
|
71
|
-
|
|
72
|
-
### 第三阶段:修复与编码
|
|
73
|
-
|
|
74
|
-
对发现的问题分类处理:
|
|
75
|
-
|
|
76
|
-
| 问题类型 | 处理方式 |
|
|
77
|
-
|---------|---------|
|
|
78
|
-
| 可快速修复的具体问题 | 立即修复(文档更新、文件移动等) |
|
|
79
|
-
| 需要编码为约束的重复模式 |
|
|
80
|
-
| 需要架构讨论的系统性问题 |
|
|
81
|
-
|
|
82
|
-
###
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
| 修复一个漂移又发现三个 | 可能是架构问题,记录技术债后与用户讨论 |
|
|
117
|
-
| 质量评分持续下降 | 需要专项改进,不是熵管理能解决的 |
|
|
118
|
-
| 跳过第四阶段"下次再更新" | 不允许,追踪更新是必须步骤 |
|
|
119
|
-
|
|
120
|
-
## 关联技能
|
|
121
|
-
|
|
122
|
-
- **steering-loop** — 将重复问题编码为约束
|
|
123
|
-
- **verification-before-completion** — 修复后验证
|
|
124
|
-
- **systematic-debugging** — 深入调查发现的问题
|
|
1
|
+
---
|
|
2
|
+
name: entropy-management
|
|
3
|
+
description: 定期维护代码库健康度。扫描架构漂移、过期文档、低质量代码,防止技术债积累。应在完成若干任务后或怀疑代码库退化时触发。
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# 熵管理(Garbage Collection)
|
|
7
|
+
|
|
8
|
+
## 概述
|
|
9
|
+
|
|
10
|
+
AI Agent 会复制仓库中已有的模式——包括不好的模式。随着时间推移,这不可避免地导致漂移。
|
|
11
|
+
手动清理不可持续。熵管理将清理系统化,定期执行,像垃圾回收一样防止技术债积累。
|
|
12
|
+
|
|
13
|
+
**核心原则**:技术债是高利贷——持续小额偿还远优于积累后大规模清理。
|
|
14
|
+
|
|
15
|
+
## 铁律
|
|
16
|
+
|
|
17
|
+
```
|
|
18
|
+
发现的问题不能只修一次——必须同时编码为约束,防止再次发生。
|
|
19
|
+
每次熵管理运行结束后,必须更新质量评分和技术债追踪。
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## 触发条件
|
|
23
|
+
|
|
24
|
+
- 完成 5 个以上任务后(定期维护)
|
|
25
|
+
- Kyle 审查中反复出现同类问题(模式漂移信号)
|
|
26
|
+
- 用户主动要求代码库健康检查
|
|
27
|
+
- 怀疑文档与代码不一致
|
|
28
|
+
- 新成员加入前(确保仓库状态良好)
|
|
29
|
+
|
|
30
|
+
## 执行流程
|
|
31
|
+
|
|
32
|
+
### 第一阶段:自动化传感器扫描
|
|
33
|
+
|
|
34
|
+
运行 Harness 传感器套件收集机器可检测的问题:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
node scripts/hooks/dispatcher.cjs stop
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
记录所有 `[FAIL]` 和 `[WARN]` 项。
|
|
41
|
+
|
|
42
|
+
### 第二阶段:推理型扫描
|
|
43
|
+
|
|
44
|
+
自动化传感器无法覆盖的维度,需要人工/Agent 推理检查:
|
|
45
|
+
|
|
46
|
+
#### 2.1 文档-代码一致性
|
|
47
|
+
|
|
48
|
+
| 检查项 | 方法 |
|
|
49
|
+
|--------|------|
|
|
50
|
+
| CLAUDE.md 引用路径是否有效 | 逐条验证文件/目录存在 |
|
|
51
|
+
| docs/ 文档描述是否匹配实际行为 | 抽样对比 |
|
|
52
|
+
| SKILL.md 中的流程是否被实际遵循 | 回顾近期任务记录 |
|
|
53
|
+
| 模板是否与当前实践一致 | 对比模板与近期产出 |
|
|
54
|
+
|
|
55
|
+
#### 2.2 架构漂移检测
|
|
56
|
+
|
|
57
|
+
| 检查项 | 方法 |
|
|
58
|
+
|--------|------|
|
|
59
|
+
| 是否有文件放在错误目录 | 检查目录约定是否被遵守 |
|
|
60
|
+
| 是否有重复/冗余文件 | 搜索相似文件名和内容 |
|
|
61
|
+
| 技能包结构是否一致 | 抽样检查 SKILL.md 格式 |
|
|
62
|
+
| 协作产物是否在正确位置 | 检查 .orchestration/<session>/ 结构 |
|
|
63
|
+
|
|
64
|
+
#### 2.3 质量回归检测
|
|
65
|
+
|
|
66
|
+
| 检查项 | 方法 |
|
|
67
|
+
|--------|------|
|
|
68
|
+
| 近期审查中的高频问题 | 分析 .orchestration/<session>/code-reviewer/ |
|
|
69
|
+
| 是否有被跳过的工作流阶段 | 检查产物完整性 |
|
|
70
|
+
| 是否有"沉默的传感器"(从不报错) | 评估传感器有效性 |
|
|
71
|
+
|
|
72
|
+
### 第三阶段:修复与编码
|
|
73
|
+
|
|
74
|
+
对发现的问题分类处理:
|
|
75
|
+
|
|
76
|
+
| 问题类型 | 处理方式 |
|
|
77
|
+
|---------|---------|
|
|
78
|
+
| 可快速修复的具体问题 | 立即修复(文档更新、文件移动等) |
|
|
79
|
+
| 需要编码为约束的重复模式 | 在 `scripts/hooks/checks/` 加 check,让违规自动触发 [FAIL] |
|
|
80
|
+
| 需要架构讨论的系统性问题 | 与用户讨论;动手前先达成共识 |
|
|
81
|
+
|
|
82
|
+
### 第四阶段:沉淀与追踪
|
|
83
|
+
|
|
84
|
+
把本次发现和处理沉淀到下列位置(按相关性挑,不必每次都全做):
|
|
85
|
+
|
|
86
|
+
- 反复出现的违规模式 → 在 `scripts/hooks/checks/` 加自动化 check
|
|
87
|
+
- 团队级架构决策 / 新约束 → 写进 `docs/PROJECT_CONTEXT.md` 或 `docs/ARCHITECTURE.md`
|
|
88
|
+
- 跨会话需要记得的代码模式 → 写进 `docs/rules/<topic>.md` 或 `docs/red-flags.md`
|
|
89
|
+
- 用户当前活跃状态 / 个人偏好 → 让 Claude 写进原生 memory(`~/.claude/projects/<slug>/memory/`,自动加载)
|
|
90
|
+
- 新增的危险信号 → 加入 `docs/red-flags.md`
|
|
91
|
+
- 新增的强制规则 → 加入 `docs/rules/<topic>.md`
|
|
92
|
+
|
|
93
|
+
## 产出清单
|
|
94
|
+
|
|
95
|
+
每次熵管理运行后,应产出:
|
|
96
|
+
|
|
97
|
+
```
|
|
98
|
+
✅ dispatcher 扫描结果(node scripts/hooks/dispatcher.cjs stop)
|
|
99
|
+
✅ 推理型扫描发现清单
|
|
100
|
+
✅ 修复的问题列表
|
|
101
|
+
✅ 新增的约束 / check / 规则文档(如有)
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
## Red Flags — 停下来
|
|
105
|
+
|
|
106
|
+
| 信号 | 行动 |
|
|
107
|
+
|------|------|
|
|
108
|
+
| 传感器全部通过但直觉上代码库有问题 | 传感器覆盖不足,加新 check |
|
|
109
|
+
| 修复一个漂移又发现三个 | 可能是架构问题,先与用户讨论再动 |
|
|
110
|
+
| 反复出现同类问题但没有沉淀为约束 | 必须在 `scripts/hooks/checks/` 加自动检测 |
|
|
111
|
+
|
|
112
|
+
## 关联技能
|
|
113
|
+
|
|
114
|
+
- **verification-before-completion** — 修复后验证
|
|
115
|
+
- **systematic-debugging** — 深入调查发现的问题
|