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
|
@@ -1,168 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# ================================================================
|
|
3
|
-
# Harness 传感器:派遣契约检查(delegation-check)
|
|
4
|
-
#
|
|
5
|
-
# 目的:防止 dispatch prompt、文档、skill 重复定义 .claude/agents/*.md
|
|
6
|
-
# 里已经声明的内容(角色身份、门控、技能加载、旧路径)。
|
|
7
|
-
#
|
|
8
|
-
# 参考:Claude-Code-Workflow 项目的 delegation-check skill
|
|
9
|
-
#
|
|
10
|
-
# 检查维度:
|
|
11
|
-
# A. 角色再定义 — "读取 <persona>.md 了解你的角色" 类指令
|
|
12
|
-
# B. 角色扮演 — "你是<角色中文名>" 出现在非规范位置
|
|
13
|
-
# C. 旧路径残留 — 遗留的 .dev-agents/<role>/ 路径引用
|
|
14
|
-
# D. 旧命令残留 — 遗留的 .claude/commands/{ella,jarvis,kyle}*.md 引用
|
|
15
|
-
# E. frontmatter — .claude/agents/*.md 缺失必需字段
|
|
16
|
-
# ================================================================
|
|
17
|
-
|
|
18
|
-
ERRORS=0
|
|
19
|
-
WARNINGS=0
|
|
20
|
-
|
|
21
|
-
pass() { echo -e " [PASS] $1"; }
|
|
22
|
-
fail() {
|
|
23
|
-
echo -e " [FAIL] $1"
|
|
24
|
-
ERRORS=$((ERRORS + 1))
|
|
25
|
-
bash "$(dirname "${BASH_SOURCE[0]}")/log-event.sh" lint_fail --actor harness --payload "lint=delegation" 2>/dev/null || true
|
|
26
|
-
}
|
|
27
|
-
warn() { echo -e " [WARN] $1"; WARNINGS=$((WARNINGS + 1)); }
|
|
28
|
-
fix() { echo -e " [FIX] $1"; }
|
|
29
|
-
|
|
30
|
-
echo "======================================"
|
|
31
|
-
echo " Harness 传感器:派遣契约检查"
|
|
32
|
-
echo "======================================"
|
|
33
|
-
echo ""
|
|
34
|
-
|
|
35
|
-
# ─────────────────────────────────────────
|
|
36
|
-
# 扫描目标:CLAUDE.md + docs/ + skills/
|
|
37
|
-
# 排除目标:.claude/agents/(规范定义自身)
|
|
38
|
-
# docs/templates/(模板允许示例)
|
|
39
|
-
# .git/、node_modules/、.idea/
|
|
40
|
-
# ─────────────────────────────────────────
|
|
41
|
-
SCAN_INCLUDE=("CLAUDE.md" "docs" "skills")
|
|
42
|
-
|
|
43
|
-
scan_files() {
|
|
44
|
-
local pattern="$1"
|
|
45
|
-
grep -rnE "$pattern" "${SCAN_INCLUDE[@]}" 2>/dev/null \
|
|
46
|
-
| grep -v "^\.git/" \
|
|
47
|
-
| grep -v "node_modules/" \
|
|
48
|
-
| grep -v "\.idea/" \
|
|
49
|
-
| grep -v "docs/templates/" \
|
|
50
|
-
|| true
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
# ── A. 角色再定义检查 ──
|
|
54
|
-
echo "▸ A. 角色再定义检查"
|
|
55
|
-
echo " (原生子代理已自动加载身份,无需在 prompt 里指示读取)"
|
|
56
|
-
|
|
57
|
-
# 匹配:读取 .claude/agents/xxx.md 了解你的角色
|
|
58
|
-
# 匹配:先读取 .dev-agents/xxx/PERSONA.md
|
|
59
|
-
role_redef=$(scan_files '(读取|加载|load|read).*\.(claude/agents/(ella|jarvis|kyle)\.md|dev-agents/(ella|jarvis|kyle)/PERSONA\.md).*(你的角色|角色|persona|role)')
|
|
60
|
-
|
|
61
|
-
if [ -z "$role_redef" ]; then
|
|
62
|
-
pass "未发现角色再定义的 dispatch prompt 片段"
|
|
63
|
-
else
|
|
64
|
-
while IFS= read -r line; do
|
|
65
|
-
fail "角色再定义: $line"
|
|
66
|
-
done <<< "$role_redef"
|
|
67
|
-
fix "改用 Agent({subagent_type: \"<role>\", ...}),子代理身份由 frontmatter 自动加载"
|
|
68
|
-
fi
|
|
69
|
-
|
|
70
|
-
# ── B. 角色扮演检查 ──
|
|
71
|
-
echo ""
|
|
72
|
-
echo "▸ B. 角色扮演(role-switching)检查"
|
|
73
|
-
echo " (禁止在当前对话中'变成' Ella/Jarvis/Kyle,必须用 Agent 工具派遣)"
|
|
74
|
-
|
|
75
|
-
# "你是艾拉/贾维斯/凯尔" 在非 .claude/agents/ 位置
|
|
76
|
-
role_switch=$(scan_files '你是.{0,3}(艾拉|贾维斯|凯尔)')
|
|
77
|
-
|
|
78
|
-
if [ -z "$role_switch" ]; then
|
|
79
|
-
pass "未发现角色扮演指令"
|
|
80
|
-
else
|
|
81
|
-
found_switch=0
|
|
82
|
-
while IFS= read -r line; do
|
|
83
|
-
# 过滤:文档里解释"角色切换 vs Agent 派遣"的反例引用是合法的
|
|
84
|
-
if echo "$line" | grep -qE '(禁止|错误|反例|不要|✗|❌|假装)'; then
|
|
85
|
-
continue
|
|
86
|
-
fi
|
|
87
|
-
fail "疑似角色扮演: $line"
|
|
88
|
-
found_switch=1
|
|
89
|
-
done <<< "$role_switch"
|
|
90
|
-
if [ $found_switch -eq 1 ]; then
|
|
91
|
-
fix "删除'你是<角色>'指令,改用 Agent({subagent_type: \"<role>\"})"
|
|
92
|
-
else
|
|
93
|
-
pass "仅命中文档里的反例引用(合法)"
|
|
94
|
-
fi
|
|
95
|
-
fi
|
|
96
|
-
|
|
97
|
-
# ── C. 旧路径残留检查 ──
|
|
98
|
-
echo ""
|
|
99
|
-
echo "▸ C. 旧 .dev-agents/<role>/ 路径残留检查"
|
|
100
|
-
|
|
101
|
-
legacy_path=$(scan_files '\.dev-agents/(ella|jarvis|kyle)/')
|
|
102
|
-
|
|
103
|
-
if [ -z "$legacy_path" ]; then
|
|
104
|
-
pass "无旧路径残留"
|
|
105
|
-
else
|
|
106
|
-
while IFS= read -r line; do
|
|
107
|
-
fail "旧路径: $line"
|
|
108
|
-
done <<< "$legacy_path"
|
|
109
|
-
fix "替换为 .claude/agents/<role>.md,或删除整段引用"
|
|
110
|
-
fi
|
|
111
|
-
|
|
112
|
-
# ── D. 旧命令残留检查 ──
|
|
113
|
-
echo ""
|
|
114
|
-
echo "▸ D. 旧 /ella /jarvis /kyle 命令残留检查"
|
|
115
|
-
|
|
116
|
-
legacy_cmd=$(scan_files '\.claude/commands/(ella|jarvis|kyle)(-[a-z]+)?\.md|/(ella|jarvis|kyle)(-[a-z]+)?(\s|$|`)')
|
|
117
|
-
|
|
118
|
-
if [ -z "$legacy_cmd" ]; then
|
|
119
|
-
pass "无旧命令路径残留"
|
|
120
|
-
else
|
|
121
|
-
while IFS= read -r line; do
|
|
122
|
-
fail "旧命令引用: $line"
|
|
123
|
-
done <<< "$legacy_cmd"
|
|
124
|
-
fix "角色派遣改用 Agent({subagent_type: \"<role>\"});只保留 .claude/commands/{init-project,git-commit}.md"
|
|
125
|
-
fi
|
|
126
|
-
|
|
127
|
-
# ── E. Agent frontmatter 完整性检查 ──
|
|
128
|
-
echo ""
|
|
129
|
-
echo "▸ E. 子代理 frontmatter 完整性检查"
|
|
130
|
-
|
|
131
|
-
for agent in ella jarvis kyle; do
|
|
132
|
-
file=".claude/agents/$agent.md"
|
|
133
|
-
if [ ! -f "$file" ]; then
|
|
134
|
-
fail "$file 不存在"
|
|
135
|
-
fix "创建 $file 并填入 YAML frontmatter(name/description/tools)"
|
|
136
|
-
continue
|
|
137
|
-
fi
|
|
138
|
-
|
|
139
|
-
# 检查前 20 行内是否有 name/description/tools 三个字段
|
|
140
|
-
header=$(head -20 "$file")
|
|
141
|
-
missing=""
|
|
142
|
-
for field in "name:" "description:" "tools:"; do
|
|
143
|
-
if ! echo "$header" | grep -q "^$field"; then
|
|
144
|
-
missing="$missing $field"
|
|
145
|
-
fi
|
|
146
|
-
done
|
|
147
|
-
|
|
148
|
-
if [ -z "$missing" ]; then
|
|
149
|
-
pass "$file frontmatter 完整"
|
|
150
|
-
else
|
|
151
|
-
fail "$file frontmatter 缺失:$missing"
|
|
152
|
-
fix "在 $file 顶部的 YAML frontmatter 中补齐上述字段"
|
|
153
|
-
fi
|
|
154
|
-
done
|
|
155
|
-
|
|
156
|
-
# ─────────────────────────────────────────
|
|
157
|
-
echo ""
|
|
158
|
-
echo "======================================"
|
|
159
|
-
if [ $ERRORS -eq 0 ] && [ $WARNINGS -eq 0 ]; then
|
|
160
|
-
echo " ✅ 派遣契约检查全部通过"
|
|
161
|
-
elif [ $ERRORS -eq 0 ]; then
|
|
162
|
-
echo " ⚠️ 通过($WARNINGS 个警告)"
|
|
163
|
-
else
|
|
164
|
-
echo " ❌ 失败:$ERRORS 个错误,$WARNINGS 个警告"
|
|
165
|
-
fi
|
|
166
|
-
echo "======================================"
|
|
167
|
-
|
|
168
|
-
exit $ERRORS
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# ================================================================
|
|
3
|
-
# Harness 传感器:文档新鲜度与一致性检查
|
|
4
|
-
# 检测文档是否过期、交叉引用是否有效、内容是否一致
|
|
5
|
-
#
|
|
6
|
-
# 输出格式对 Agent 友好:
|
|
7
|
-
# [PASS] 通过的检查
|
|
8
|
-
# [FAIL] 失败的检查 + [FIX] 修复指令
|
|
9
|
-
# ================================================================
|
|
10
|
-
|
|
11
|
-
ERRORS=0
|
|
12
|
-
WARNINGS=0
|
|
13
|
-
|
|
14
|
-
pass() { echo -e " [PASS] $1"; }
|
|
15
|
-
fail() {
|
|
16
|
-
echo -e " [FAIL] $1"
|
|
17
|
-
ERRORS=$((ERRORS + 1))
|
|
18
|
-
bash "$(dirname "${BASH_SOURCE[0]}")/log-event.sh" lint_fail --actor harness --payload "lint=docs" 2>/dev/null || true
|
|
19
|
-
}
|
|
20
|
-
warn() { echo -e " [WARN] $1"; WARNINGS=$((WARNINGS + 1)); }
|
|
21
|
-
fix() { echo -e " [FIX] $1"; }
|
|
22
|
-
|
|
23
|
-
echo "======================================"
|
|
24
|
-
echo " Harness 传感器:文档检查"
|
|
25
|
-
echo "======================================"
|
|
26
|
-
echo ""
|
|
27
|
-
|
|
28
|
-
# ── 1. CLAUDE.md 行数检查(应保持精简) ──
|
|
29
|
-
echo "▸ CLAUDE.md 精简度检查"
|
|
30
|
-
|
|
31
|
-
if [ -f "CLAUDE.md" ]; then
|
|
32
|
-
LINE_COUNT=$(wc -l < "CLAUDE.md" | tr -d ' ')
|
|
33
|
-
if [ "$LINE_COUNT" -le 100 ]; then
|
|
34
|
-
pass "CLAUDE.md 保持精简(${LINE_COUNT} 行 ≤ 100)"
|
|
35
|
-
else
|
|
36
|
-
warn "CLAUDE.md 过长(${LINE_COUNT} 行 > 100)"
|
|
37
|
-
fix "CLAUDE.md 应作为目录/地图,详细内容移至 docs/ 目录。参考 Harness Engineering 的渐进式披露原则"
|
|
38
|
-
fi
|
|
39
|
-
else
|
|
40
|
-
fail "CLAUDE.md 不存在"
|
|
41
|
-
fix "创建 CLAUDE.md 作为 Agent 入口文件"
|
|
42
|
-
fi
|
|
43
|
-
|
|
44
|
-
# ── 2. 交叉引用有效性 ──
|
|
45
|
-
echo ""
|
|
46
|
-
echo "▸ CLAUDE.md 交叉引用检查"
|
|
47
|
-
|
|
48
|
-
if [ -f "CLAUDE.md" ]; then
|
|
49
|
-
while IFS= read -r ref; do
|
|
50
|
-
[ -z "$ref" ] && continue
|
|
51
|
-
if [ -f "$ref" ] || [ -d "$ref" ]; then
|
|
52
|
-
pass "引用有效: $ref"
|
|
53
|
-
else
|
|
54
|
-
fail "引用无效: $ref"
|
|
55
|
-
fix "文件 $ref 不存在,请创建或更新 CLAUDE.md 中的引用路径"
|
|
56
|
-
fi
|
|
57
|
-
done < <(grep -oE '`(docs/[^`]+|skills/[^`]+|\.dev-agents/[^`]+|scripts/[^`]+)`' CLAUDE.md | tr -d '`' | sort -u)
|
|
58
|
-
fi
|
|
59
|
-
|
|
60
|
-
# ── 3. 知识库索引一致性 ──
|
|
61
|
-
echo ""
|
|
62
|
-
echo "▸ 知识库索引一致性"
|
|
63
|
-
|
|
64
|
-
if [ -f "docs/README.md" ]; then
|
|
65
|
-
while IFS= read -r ref; do
|
|
66
|
-
[ -z "$ref" ] && continue
|
|
67
|
-
if [ -f "docs/$ref" ]; then
|
|
68
|
-
pass "索引引用有效: docs/$ref"
|
|
69
|
-
else
|
|
70
|
-
fail "索引引用无效: docs/$ref"
|
|
71
|
-
fix "docs/README.md 引用了不存在的 docs/$ref,请创建该文档或删除引用"
|
|
72
|
-
fi
|
|
73
|
-
done < <(grep -oE '\[.*\]\(([^)]+\.md)\)' docs/README.md | grep -oE '\([^)]+\)' | tr -d '()' | grep -v '^http')
|
|
74
|
-
fi
|
|
75
|
-
|
|
76
|
-
# ── 4. 文档非空检查 ──
|
|
77
|
-
echo ""
|
|
78
|
-
echo "▸ 文档非空检查"
|
|
79
|
-
|
|
80
|
-
for doc in docs/*.md; do
|
|
81
|
-
if [ -f "$doc" ]; then
|
|
82
|
-
size=$(wc -c < "$doc" | tr -d ' ')
|
|
83
|
-
if [ "$size" -gt 50 ]; then
|
|
84
|
-
pass "$doc 有内容(${size} bytes)"
|
|
85
|
-
else
|
|
86
|
-
warn "$doc 内容过少(${size} bytes)"
|
|
87
|
-
fix "$doc 可能是空壳文档,请补充实质内容"
|
|
88
|
-
fi
|
|
89
|
-
fi
|
|
90
|
-
done
|
|
91
|
-
|
|
92
|
-
# ── 5. QUALITY_SCORE.md 更新检查 ──
|
|
93
|
-
echo ""
|
|
94
|
-
echo "▸ 质量评分更新检查"
|
|
95
|
-
|
|
96
|
-
if [ -f "docs/QUALITY_SCORE.md" ]; then
|
|
97
|
-
LAST_UPDATE=$(grep -oE '最后更新:[0-9]{4}-[0-9]{2}-[0-9]{2}' docs/QUALITY_SCORE.md | head -1 | grep -oE '[0-9]{4}-[0-9]{2}-[0-9]{2}')
|
|
98
|
-
if [ -n "$LAST_UPDATE" ]; then
|
|
99
|
-
DAYS_AGO=$(( ($(date +%s) - $(date -d "$LAST_UPDATE" +%s 2>/dev/null || echo 0)) / 86400 ))
|
|
100
|
-
if [ "$DAYS_AGO" -le 30 ] 2>/dev/null; then
|
|
101
|
-
pass "质量评分最近更新于 $LAST_UPDATE"
|
|
102
|
-
else
|
|
103
|
-
warn "质量评分上次更新于 $LAST_UPDATE(超过 30 天)"
|
|
104
|
-
fix "运行熵管理流程,更新 docs/QUALITY_SCORE.md 中的评分"
|
|
105
|
-
fi
|
|
106
|
-
fi
|
|
107
|
-
fi
|
|
108
|
-
|
|
109
|
-
# ── 结果汇总 ──
|
|
110
|
-
echo ""
|
|
111
|
-
echo "======================================"
|
|
112
|
-
if [ $ERRORS -eq 0 ] && [ $WARNINGS -eq 0 ]; then
|
|
113
|
-
echo " ✅ 全部通过"
|
|
114
|
-
elif [ $ERRORS -eq 0 ]; then
|
|
115
|
-
echo " ⚠️ 通过($WARNINGS 个警告)"
|
|
116
|
-
else
|
|
117
|
-
echo " ❌ 失败:$ERRORS 个错误,$WARNINGS 个警告"
|
|
118
|
-
fi
|
|
119
|
-
echo "======================================"
|
|
120
|
-
|
|
121
|
-
exit $ERRORS
|
|
@@ -1,221 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# ================================================================
|
|
3
|
-
# Harness 传感器:工作流过程合规检查
|
|
4
|
-
#
|
|
5
|
-
# 与 lint-structure.sh(检查文件存在)不同,本传感器检查的是
|
|
6
|
-
# 工作流是否被正确遵守:
|
|
7
|
-
# - 有代码变更时,是否有对应的设计文档和实现计划
|
|
8
|
-
# - 有实现计划时,是否有对应的设计文档
|
|
9
|
-
# - 有审查报告时,是否覆盖了两阶段
|
|
10
|
-
# - 工作流状态机是否一致
|
|
11
|
-
#
|
|
12
|
-
# 核心原则:从"文件存在"检查升级为"过程合规"检查
|
|
13
|
-
# ================================================================
|
|
14
|
-
|
|
15
|
-
ERRORS=0
|
|
16
|
-
WARNINGS=0
|
|
17
|
-
|
|
18
|
-
pass() { echo -e " [PASS] $1"; }
|
|
19
|
-
fail() {
|
|
20
|
-
echo -e " [FAIL] $1"
|
|
21
|
-
ERRORS=$((ERRORS + 1))
|
|
22
|
-
bash "$(dirname "${BASH_SOURCE[0]}")/log-event.sh" lint_fail --actor harness --payload "lint=process" 2>/dev/null || true
|
|
23
|
-
}
|
|
24
|
-
warn() { echo -e " [WARN] $1"; WARNINGS=$((WARNINGS + 1)); }
|
|
25
|
-
fix() { echo -e " [FIX] $1"; }
|
|
26
|
-
|
|
27
|
-
SHARED_DIR=".dev-agents/shared"
|
|
28
|
-
STATE_FILE="$SHARED_DIR/.workflow-state"
|
|
29
|
-
|
|
30
|
-
echo "======================================"
|
|
31
|
-
echo " Harness 传感器:流程合规检查"
|
|
32
|
-
echo "======================================"
|
|
33
|
-
echo ""
|
|
34
|
-
|
|
35
|
-
# ── 1. 工作流状态一致性 ──
|
|
36
|
-
echo "▸ 工作流状态一致性"
|
|
37
|
-
|
|
38
|
-
if [ -f "$STATE_FILE" ]; then
|
|
39
|
-
CURRENT_STAGE=$(grep "^stage=" "$STATE_FILE" | cut -d'=' -f2-)
|
|
40
|
-
IS_EXEMPT=$(grep "^exempt=" "$STATE_FILE" | cut -d'=' -f2-)
|
|
41
|
-
|
|
42
|
-
if [ "$IS_EXEMPT" = "true" ]; then
|
|
43
|
-
pass "简单任务豁免模式(跳过流程检查)"
|
|
44
|
-
elif [ -n "$CURRENT_STAGE" ] && [ "$CURRENT_STAGE" != "idle" ]; then
|
|
45
|
-
pass "工作流活跃(阶段: $CURRENT_STAGE)"
|
|
46
|
-
|
|
47
|
-
# 检查阶段与产物是否匹配
|
|
48
|
-
case "$CURRENT_STAGE" in
|
|
49
|
-
validation|design|planning|development|testing|documentation|finishing)
|
|
50
|
-
DESIGN_COUNT=$(find "$SHARED_DIR/designs/" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
|
|
51
|
-
if [ "$DESIGN_COUNT" -eq 0 ]; then
|
|
52
|
-
fail "当前阶段 $CURRENT_STAGE,但缺少需求/设计文档"
|
|
53
|
-
fix "工作流不应跳过 brainstorming 阶段。在 $SHARED_DIR/designs/ 中补充文档"
|
|
54
|
-
else
|
|
55
|
-
pass "设计文档存在($DESIGN_COUNT 个),符合阶段 $CURRENT_STAGE 的前置要求"
|
|
56
|
-
fi
|
|
57
|
-
;;
|
|
58
|
-
esac
|
|
59
|
-
|
|
60
|
-
case "$CURRENT_STAGE" in
|
|
61
|
-
development|testing|documentation|finishing)
|
|
62
|
-
TASK_COUNT=$(find "$SHARED_DIR/tasks/" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
|
|
63
|
-
if [ "$TASK_COUNT" -eq 0 ]; then
|
|
64
|
-
fail "当前阶段 $CURRENT_STAGE,但缺少实现计划"
|
|
65
|
-
fix "工作流不应跳过 planning 阶段。在 $SHARED_DIR/tasks/ 中补充实现计划"
|
|
66
|
-
else
|
|
67
|
-
pass "实现计划存在($TASK_COUNT 个),符合阶段 $CURRENT_STAGE 的前置要求"
|
|
68
|
-
fi
|
|
69
|
-
;;
|
|
70
|
-
esac
|
|
71
|
-
|
|
72
|
-
case "$CURRENT_STAGE" in
|
|
73
|
-
documentation|finishing)
|
|
74
|
-
REVIEW_COUNT=$(find "$SHARED_DIR/reviews/" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
|
|
75
|
-
if [ "$REVIEW_COUNT" -eq 0 ]; then
|
|
76
|
-
fail "当前阶段 $CURRENT_STAGE,但缺少审查报告"
|
|
77
|
-
fix "不应跳过 testing 阶段。派遣 Kyle 完成测试验证和两阶段审查"
|
|
78
|
-
else
|
|
79
|
-
pass "审查报告存在($REVIEW_COUNT 个),符合 finishing 的前置要求"
|
|
80
|
-
fi
|
|
81
|
-
;;
|
|
82
|
-
esac
|
|
83
|
-
else
|
|
84
|
-
pass "工作流空闲(idle)"
|
|
85
|
-
fi
|
|
86
|
-
else
|
|
87
|
-
pass "无工作流状态文件(首次使用或已重置)"
|
|
88
|
-
fi
|
|
89
|
-
|
|
90
|
-
# ── 2. 产物因果链完整性 ──
|
|
91
|
-
echo ""
|
|
92
|
-
echo "▸ 产物因果链检查"
|
|
93
|
-
|
|
94
|
-
DESIGN_COUNT=$(find "$SHARED_DIR/designs/" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
|
|
95
|
-
TASK_COUNT=$(find "$SHARED_DIR/tasks/" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
|
|
96
|
-
REVIEW_COUNT=$(find "$SHARED_DIR/reviews/" -name "*.md" -type f 2>/dev/null | wc -l | tr -d ' ')
|
|
97
|
-
|
|
98
|
-
# 有实现计划但没有设计文档 = 跳过了 brainstorming
|
|
99
|
-
if [ "$TASK_COUNT" -gt 0 ] && [ "$DESIGN_COUNT" -eq 0 ]; then
|
|
100
|
-
fail "存在实现计划但无设计文档 → 可能跳过了 brainstorming"
|
|
101
|
-
fix "补充设计文档到 $SHARED_DIR/designs/,或确认是否为简单任务豁免"
|
|
102
|
-
elif [ "$TASK_COUNT" -gt 0 ] && [ "$DESIGN_COUNT" -gt 0 ]; then
|
|
103
|
-
pass "实现计划有对应的设计文档(因果链完整)"
|
|
104
|
-
elif [ "$TASK_COUNT" -eq 0 ] && [ "$DESIGN_COUNT" -eq 0 ]; then
|
|
105
|
-
pass "无活跃产物(因果链不适用)"
|
|
106
|
-
elif [ "$DESIGN_COUNT" -gt 0 ] && [ "$TASK_COUNT" -eq 0 ]; then
|
|
107
|
-
pass "有设计文档,尚无实现计划(正常的 brainstorming → planning 过渡)"
|
|
108
|
-
fi
|
|
109
|
-
|
|
110
|
-
# 有审查报告但没有实现计划 = 跳过了 planning
|
|
111
|
-
if [ "$REVIEW_COUNT" -gt 0 ] && [ "$TASK_COUNT" -eq 0 ]; then
|
|
112
|
-
warn "存在审查报告但无实现计划 → 审查没有对照规格"
|
|
113
|
-
fix "审查应基于实现计划中的规格进行,确认是否有计划遗漏"
|
|
114
|
-
elif [ "$REVIEW_COUNT" -gt 0 ] && [ "$TASK_COUNT" -gt 0 ]; then
|
|
115
|
-
pass "审查报告有对应的实现计划(可对照规格)"
|
|
116
|
-
fi
|
|
117
|
-
|
|
118
|
-
# ── 3. 实现计划内容质量 ──
|
|
119
|
-
echo ""
|
|
120
|
-
echo "▸ 实现计划内容质量"
|
|
121
|
-
|
|
122
|
-
if [ "$TASK_COUNT" -gt 0 ]; then
|
|
123
|
-
for plan in "$SHARED_DIR/tasks/"*.md; do
|
|
124
|
-
[ -f "$plan" ] || continue
|
|
125
|
-
filename=$(basename "$plan")
|
|
126
|
-
|
|
127
|
-
# 检查验收条件
|
|
128
|
-
if grep -q -iE "(验收|acceptance|完成标准|done.?criteria)" "$plan" 2>/dev/null; then
|
|
129
|
-
pass "$filename 包含验收条件"
|
|
130
|
-
else
|
|
131
|
-
fail "$filename 缺少验收条件"
|
|
132
|
-
fix "实现计划必须包含明确的验收条件,定义何时算完成"
|
|
133
|
-
fi
|
|
134
|
-
|
|
135
|
-
# 检查文件变更列表
|
|
136
|
-
if grep -q -iE "(文件|file|变更|change|修改|modify)" "$plan" 2>/dev/null; then
|
|
137
|
-
pass "$filename 包含变更范围描述"
|
|
138
|
-
else
|
|
139
|
-
warn "$filename 缺少变更范围描述"
|
|
140
|
-
fix "实现计划应列出需要变更的文件清单"
|
|
141
|
-
fi
|
|
142
|
-
done
|
|
143
|
-
else
|
|
144
|
-
pass "无实现计划(跳过内容质量检查)"
|
|
145
|
-
fi
|
|
146
|
-
|
|
147
|
-
# ── 4. 审查报告完整性 ──
|
|
148
|
-
echo ""
|
|
149
|
-
echo "▸ 审查报告两阶段完整性"
|
|
150
|
-
|
|
151
|
-
if [ "$REVIEW_COUNT" -gt 0 ]; then
|
|
152
|
-
for review in "$SHARED_DIR/reviews/"*.md; do
|
|
153
|
-
[ -f "$review" ] || continue
|
|
154
|
-
filename=$(basename "$review")
|
|
155
|
-
|
|
156
|
-
HAS_STAGE1=$(grep -c -iE "(stage.?1|阶段.?1|规格符合|spec.?compliance)" "$review" 2>/dev/null)
|
|
157
|
-
HAS_STAGE2=$(grep -c -iE "(stage.?2|阶段.?2|代码质量|code.?quality)" "$review" 2>/dev/null)
|
|
158
|
-
HAS_VERDICT=$(grep -c -iE "(通过|不通过|pass|fail|approved|rejected)" "$review" 2>/dev/null)
|
|
159
|
-
|
|
160
|
-
if [ "$HAS_STAGE1" -gt 0 ] && [ "$HAS_STAGE2" -gt 0 ]; then
|
|
161
|
-
pass "$filename 包含完整两阶段审查"
|
|
162
|
-
elif [ "$HAS_STAGE1" -gt 0 ] && [ "$HAS_STAGE2" -eq 0 ]; then
|
|
163
|
-
fail "$filename 只有 Stage 1,缺少 Stage 2(代码质量审查)"
|
|
164
|
-
fix "必须完成两阶段审查:Stage 1 通过后,派遣 Kyle 执行 Stage 2"
|
|
165
|
-
elif [ "$HAS_STAGE1" -eq 0 ] && [ "$HAS_STAGE2" -gt 0 ]; then
|
|
166
|
-
fail "$filename 只有 Stage 2,缺少 Stage 1(规格符合性审查)"
|
|
167
|
-
fix "Stage 2 不能在 Stage 1 之前执行。先派遣 Kyle 执行 Stage 1"
|
|
168
|
-
else
|
|
169
|
-
fail "$filename 审查结构不完整(缺少阶段标识)"
|
|
170
|
-
fix "审查报告必须包含 Stage 1(规格符合性)和 Stage 2(代码质量)"
|
|
171
|
-
fi
|
|
172
|
-
|
|
173
|
-
if [ "$HAS_VERDICT" -eq 0 ]; then
|
|
174
|
-
warn "$filename 缺少明确的审查结论"
|
|
175
|
-
fix "审查报告必须包含明确结论(通过/不通过)"
|
|
176
|
-
fi
|
|
177
|
-
done
|
|
178
|
-
else
|
|
179
|
-
pass "无审查报告(跳过完整性检查)"
|
|
180
|
-
fi
|
|
181
|
-
|
|
182
|
-
# ── 5. 设计文档内容质量 ──
|
|
183
|
-
echo ""
|
|
184
|
-
echo "▸ 设计文档内容质量"
|
|
185
|
-
|
|
186
|
-
if [ "$DESIGN_COUNT" -gt 0 ]; then
|
|
187
|
-
for design in "$SHARED_DIR/designs/"*.md; do
|
|
188
|
-
[ -f "$design" ] || continue
|
|
189
|
-
filename=$(basename "$design")
|
|
190
|
-
|
|
191
|
-
# 检查方案选择
|
|
192
|
-
if grep -q -iE "(方案|选型|option|approach|alternative|trade.?off)" "$design" 2>/dev/null; then
|
|
193
|
-
pass "$filename 包含方案分析"
|
|
194
|
-
else
|
|
195
|
-
warn "$filename 缺少方案对比分析"
|
|
196
|
-
fix "设计文档应包含 2-3 种方案及取舍分析"
|
|
197
|
-
fi
|
|
198
|
-
|
|
199
|
-
# 检查是否有 TODO/待定
|
|
200
|
-
if grep -q -iE "(TODO|待定|TBD|之后再说|暂不确定)" "$design" 2>/dev/null; then
|
|
201
|
-
warn "$filename 包含未确定项(TODO/待定)"
|
|
202
|
-
fix "设计文档不应有未确定项,请现在确定或标记为明确的开放问题"
|
|
203
|
-
fi
|
|
204
|
-
done
|
|
205
|
-
else
|
|
206
|
-
pass "无设计文档(跳过内容质量检查)"
|
|
207
|
-
fi
|
|
208
|
-
|
|
209
|
-
# ── 结果汇总 ──
|
|
210
|
-
echo ""
|
|
211
|
-
echo "======================================"
|
|
212
|
-
if [ $ERRORS -eq 0 ] && [ $WARNINGS -eq 0 ]; then
|
|
213
|
-
echo " ✅ 流程合规检查全部通过"
|
|
214
|
-
elif [ $ERRORS -eq 0 ]; then
|
|
215
|
-
echo " ⚠️ 通过($WARNINGS 个警告)"
|
|
216
|
-
else
|
|
217
|
-
echo " ❌ 流程不合规:$ERRORS 个错误,$WARNINGS 个警告"
|
|
218
|
-
fi
|
|
219
|
-
echo "======================================"
|
|
220
|
-
|
|
221
|
-
exit $ERRORS
|
|
@@ -1,145 +0,0 @@
|
|
|
1
|
-
#!/bin/bash
|
|
2
|
-
# ================================================================
|
|
3
|
-
# Harness 传感器:项目结构验证
|
|
4
|
-
# 检查项目目录结构、必要文件是否存在且符合规范
|
|
5
|
-
#
|
|
6
|
-
# 输出格式对 Agent 友好:
|
|
7
|
-
# [PASS] 通过的检查
|
|
8
|
-
# [FAIL] 失败的检查 + [FIX] 修复指令
|
|
9
|
-
# ================================================================
|
|
10
|
-
|
|
11
|
-
ERRORS=0
|
|
12
|
-
WARNINGS=0
|
|
13
|
-
|
|
14
|
-
pass() { echo -e " [PASS] $1"; }
|
|
15
|
-
fail() {
|
|
16
|
-
echo -e " [FAIL] $1"
|
|
17
|
-
ERRORS=$((ERRORS + 1))
|
|
18
|
-
bash "$(dirname "${BASH_SOURCE[0]}")/log-event.sh" lint_fail --actor harness --payload "lint=structure" 2>/dev/null || true
|
|
19
|
-
}
|
|
20
|
-
warn() { echo -e " [WARN] $1"; WARNINGS=$((WARNINGS + 1)); }
|
|
21
|
-
fix() { echo -e " [FIX] $1"; }
|
|
22
|
-
|
|
23
|
-
echo "======================================"
|
|
24
|
-
echo " Harness 传感器:结构检查"
|
|
25
|
-
echo "======================================"
|
|
26
|
-
echo ""
|
|
27
|
-
|
|
28
|
-
# ── 1. 核心文件存在性 ──
|
|
29
|
-
echo "▸ 核心文件检查"
|
|
30
|
-
|
|
31
|
-
for f in "CLAUDE.md" "docs/README.md" "docs/ARCHITECTURE.md"; do
|
|
32
|
-
if [ -f "$f" ]; then
|
|
33
|
-
pass "$f 存在"
|
|
34
|
-
else
|
|
35
|
-
fail "$f 缺失"
|
|
36
|
-
fix "创建 $f,参考 docs/README.md 中的知识库索引"
|
|
37
|
-
fi
|
|
38
|
-
done
|
|
39
|
-
|
|
40
|
-
# ── 2. 原生子代理定义 ──
|
|
41
|
-
echo ""
|
|
42
|
-
echo "▸ 原生子代理定义检查"
|
|
43
|
-
|
|
44
|
-
for agent in ella jarvis kyle; do
|
|
45
|
-
agent_file=".claude/agents/$agent.md"
|
|
46
|
-
if [ -f "$agent_file" ]; then
|
|
47
|
-
pass "$agent_file 存在"
|
|
48
|
-
else
|
|
49
|
-
fail "$agent_file 缺失"
|
|
50
|
-
fix "创建 $agent_file,包含 YAML frontmatter(name/description/tools)和角色定义"
|
|
51
|
-
fi
|
|
52
|
-
done
|
|
53
|
-
|
|
54
|
-
# ── 3. 协作产物目录 ──
|
|
55
|
-
echo ""
|
|
56
|
-
echo "▸ 协作产物目录检查"
|
|
57
|
-
|
|
58
|
-
for dir in ".dev-agents/shared/tasks" ".dev-agents/shared/designs" ".dev-agents/shared/reviews" ".dev-agents/shared/memory" ".dev-agents/shared/logs" "docs/templates"; do
|
|
59
|
-
if [ -d "$dir" ]; then
|
|
60
|
-
pass "$dir/ 存在"
|
|
61
|
-
else
|
|
62
|
-
warn "$dir/ 不存在"
|
|
63
|
-
fix "运行: mkdir -p $dir"
|
|
64
|
-
fi
|
|
65
|
-
done
|
|
66
|
-
|
|
67
|
-
# ── 4. 工作流技能完整性 ──
|
|
68
|
-
echo ""
|
|
69
|
-
echo "▸ 工作流技能检查"
|
|
70
|
-
|
|
71
|
-
WORKFLOW_DIR="skills/max/workflow"
|
|
72
|
-
REQUIRED_SKILLS=(
|
|
73
|
-
"brainstorming"
|
|
74
|
-
"requirement-validation"
|
|
75
|
-
"solution-design"
|
|
76
|
-
"writing-plans"
|
|
77
|
-
"subagent-driven-development"
|
|
78
|
-
"testing"
|
|
79
|
-
"documentation"
|
|
80
|
-
"systematic-debugging"
|
|
81
|
-
"verification-before-completion"
|
|
82
|
-
"finishing-a-development-branch"
|
|
83
|
-
"entropy-management"
|
|
84
|
-
)
|
|
85
|
-
|
|
86
|
-
for skill in "${REQUIRED_SKILLS[@]}"; do
|
|
87
|
-
skill_file="$WORKFLOW_DIR/$skill/SKILL.md"
|
|
88
|
-
if [ -f "$skill_file" ]; then
|
|
89
|
-
pass "$skill 技能存在"
|
|
90
|
-
else
|
|
91
|
-
fail "$skill 技能缺失"
|
|
92
|
-
fix "创建 $skill_file,参考其他 SKILL.md 的格式"
|
|
93
|
-
fi
|
|
94
|
-
done
|
|
95
|
-
|
|
96
|
-
# ── 5. docs/ 知识库完整性 ──
|
|
97
|
-
echo ""
|
|
98
|
-
echo "▸ 知识库文档检查"
|
|
99
|
-
|
|
100
|
-
REQUIRED_DOCS=(
|
|
101
|
-
"docs/ARCHITECTURE.md"
|
|
102
|
-
"docs/workflow-pipeline.md"
|
|
103
|
-
"docs/dispatch-rules.md"
|
|
104
|
-
"docs/coding-standards.md"
|
|
105
|
-
"docs/red-flags.md"
|
|
106
|
-
"docs/QUALITY_SCORE.md"
|
|
107
|
-
"docs/tech-debt-tracker.md"
|
|
108
|
-
"docs/steering-loop.md"
|
|
109
|
-
)
|
|
110
|
-
|
|
111
|
-
for doc in "${REQUIRED_DOCS[@]}"; do
|
|
112
|
-
if [ -f "$doc" ]; then
|
|
113
|
-
pass "$doc 存在"
|
|
114
|
-
else
|
|
115
|
-
fail "$doc 缺失"
|
|
116
|
-
fix "创建 $doc,参考 docs/README.md 中的文档地图"
|
|
117
|
-
fi
|
|
118
|
-
done
|
|
119
|
-
|
|
120
|
-
# ── 6. Harness 脚本自身完整性 ──
|
|
121
|
-
echo ""
|
|
122
|
-
echo "▸ Harness 传感器套件检查"
|
|
123
|
-
|
|
124
|
-
for script in "scripts/harness/lint-structure.sh" "scripts/harness/lint-docs.sh" "scripts/harness/lint-workflow-artifacts.sh" "scripts/harness/lint-process.sh" "scripts/harness/workflow-state.sh" "scripts/harness/run-all.sh"; do
|
|
125
|
-
if [ -f "$script" ]; then
|
|
126
|
-
pass "$script 存在"
|
|
127
|
-
else
|
|
128
|
-
warn "$script 缺失"
|
|
129
|
-
fix "创建 $script 以完善传感器覆盖"
|
|
130
|
-
fi
|
|
131
|
-
done
|
|
132
|
-
|
|
133
|
-
# ── 结果汇总 ──
|
|
134
|
-
echo ""
|
|
135
|
-
echo "======================================"
|
|
136
|
-
if [ $ERRORS -eq 0 ] && [ $WARNINGS -eq 0 ]; then
|
|
137
|
-
echo " ✅ 全部通过"
|
|
138
|
-
elif [ $ERRORS -eq 0 ]; then
|
|
139
|
-
echo " ⚠️ 通过($WARNINGS 个警告)"
|
|
140
|
-
else
|
|
141
|
-
echo " ❌ 失败:$ERRORS 个错误,$WARNINGS 个警告"
|
|
142
|
-
fi
|
|
143
|
-
echo "======================================"
|
|
144
|
-
|
|
145
|
-
exit $ERRORS
|