agentsys 5.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/.agnix.toml +49 -0
- package/.claude-plugin/marketplace.json +110 -0
- package/.claude-plugin/plugin.json +20 -0
- package/AGENTS.md +260 -0
- package/CHANGELOG.md +190 -0
- package/LICENSE +21 -0
- package/README.md +916 -0
- package/SECURITY.md +45 -0
- package/adapters/README.md +258 -0
- package/adapters/codex/README.md +273 -0
- package/adapters/codex/install.sh +260 -0
- package/adapters/codex/skills/agnix/SKILL.md +138 -0
- package/adapters/codex/skills/audit-project/SKILL.md +334 -0
- package/adapters/codex/skills/audit-project-agents/SKILL.md +459 -0
- package/adapters/codex/skills/audit-project-github/SKILL.md +146 -0
- package/adapters/codex/skills/consult/SKILL.md +245 -0
- package/adapters/codex/skills/delivery-approval/SKILL.md +339 -0
- package/adapters/codex/skills/deslop/SKILL.md +167 -0
- package/adapters/codex/skills/drift-detect/SKILL.md +268 -0
- package/adapters/codex/skills/enhance/SKILL.md +177 -0
- package/adapters/codex/skills/learn/SKILL.md +188 -0
- package/adapters/codex/skills/next-task/SKILL.md +546 -0
- package/adapters/codex/skills/perf/SKILL.md +469 -0
- package/adapters/codex/skills/repo-map/SKILL.md +132 -0
- package/adapters/codex/skills/ship/SKILL.md +491 -0
- package/adapters/codex/skills/ship-ci-review-loop/SKILL.md +473 -0
- package/adapters/codex/skills/ship-deployment/SKILL.md +336 -0
- package/adapters/codex/skills/ship-error-handling/SKILL.md +260 -0
- package/adapters/codex/skills/sync-docs/SKILL.md +186 -0
- package/adapters/opencode/README.md +302 -0
- package/adapters/opencode/agents/agent-enhancer.md +65 -0
- package/adapters/opencode/agents/agnix-agent.md +56 -0
- package/adapters/opencode/agents/ci-fixer.md +104 -0
- package/adapters/opencode/agents/ci-monitor.md +127 -0
- package/adapters/opencode/agents/claudemd-enhancer.md +66 -0
- package/adapters/opencode/agents/consult-agent.md +124 -0
- package/adapters/opencode/agents/cross-file-enhancer.md +54 -0
- package/adapters/opencode/agents/delivery-validator.md +115 -0
- package/adapters/opencode/agents/deslop-agent.md +88 -0
- package/adapters/opencode/agents/docs-enhancer.md +65 -0
- package/adapters/opencode/agents/exploration-agent.md +143 -0
- package/adapters/opencode/agents/hooks-enhancer.md +66 -0
- package/adapters/opencode/agents/implementation-agent.md +206 -0
- package/adapters/opencode/agents/learn-agent.md +279 -0
- package/adapters/opencode/agents/map-validator.md +65 -0
- package/adapters/opencode/agents/perf-analyzer.md +40 -0
- package/adapters/opencode/agents/perf-code-paths.md +12 -0
- package/adapters/opencode/agents/perf-investigation-logger.md +44 -0
- package/adapters/opencode/agents/perf-orchestrator.md +147 -0
- package/adapters/opencode/agents/perf-theory-gatherer.md +18 -0
- package/adapters/opencode/agents/perf-theory-tester.md +43 -0
- package/adapters/opencode/agents/plan-synthesizer.md +229 -0
- package/adapters/opencode/agents/planning-agent.md +235 -0
- package/adapters/opencode/agents/plugin-enhancer.md +64 -0
- package/adapters/opencode/agents/prompt-enhancer.md +58 -0
- package/adapters/opencode/agents/simple-fixer.md +107 -0
- package/adapters/opencode/agents/skills-enhancer.md +66 -0
- package/adapters/opencode/agents/sync-docs-agent.md +153 -0
- package/adapters/opencode/agents/task-discoverer.md +80 -0
- package/adapters/opencode/agents/test-coverage-checker.md +144 -0
- package/adapters/opencode/agents/worktree-manager.md +209 -0
- package/adapters/opencode/commands/agnix.md +106 -0
- package/adapters/opencode/commands/audit-project-agents.md +125 -0
- package/adapters/opencode/commands/audit-project-github.md +145 -0
- package/adapters/opencode/commands/audit-project.md +268 -0
- package/adapters/opencode/commands/consult.md +252 -0
- package/adapters/opencode/commands/delivery-approval.md +212 -0
- package/adapters/opencode/commands/deslop.md +132 -0
- package/adapters/opencode/commands/drift-detect.md +173 -0
- package/adapters/opencode/commands/enhance.md +183 -0
- package/adapters/opencode/commands/learn.md +116 -0
- package/adapters/opencode/commands/next-task.md +393 -0
- package/adapters/opencode/commands/perf.md +49 -0
- package/adapters/opencode/commands/repo-map.md +69 -0
- package/adapters/opencode/commands/ship-ci-review-loop.md +334 -0
- package/adapters/opencode/commands/ship-deployment.md +336 -0
- package/adapters/opencode/commands/ship-error-handling.md +248 -0
- package/adapters/opencode/commands/ship.md +371 -0
- package/adapters/opencode/commands/sync-docs.md +108 -0
- package/adapters/opencode/install.sh +322 -0
- package/adapters/opencode/skills/agnix/SKILL.md +139 -0
- package/adapters/opencode/skills/consult/SKILL.md +292 -0
- package/adapters/opencode/skills/deslop/SKILL.md +169 -0
- package/adapters/opencode/skills/discover-tasks/SKILL.md +102 -0
- package/adapters/opencode/skills/drift-analysis/SKILL.md +279 -0
- package/adapters/opencode/skills/enhance-agent-prompts/SKILL.md +279 -0
- package/adapters/opencode/skills/enhance-claude-memory/SKILL.md +390 -0
- package/adapters/opencode/skills/enhance-cross-file/SKILL.md +112 -0
- package/adapters/opencode/skills/enhance-docs/SKILL.md +288 -0
- package/adapters/opencode/skills/enhance-hooks/SKILL.md +557 -0
- package/adapters/opencode/skills/enhance-orchestrator/SKILL.md +114 -0
- package/adapters/opencode/skills/enhance-plugins/SKILL.md +314 -0
- package/adapters/opencode/skills/enhance-prompts/SKILL.md +341 -0
- package/adapters/opencode/skills/enhance-skills/SKILL.md +443 -0
- package/adapters/opencode/skills/learn/SKILL.md +352 -0
- package/adapters/opencode/skills/orchestrate-review/SKILL.md +95 -0
- package/adapters/opencode/skills/perf-analyzer/SKILL.md +38 -0
- package/adapters/opencode/skills/perf-baseline-manager/SKILL.md +31 -0
- package/adapters/opencode/skills/perf-benchmarker/SKILL.md +49 -0
- package/adapters/opencode/skills/perf-code-paths/SKILL.md +33 -0
- package/adapters/opencode/skills/perf-investigation-logger/SKILL.md +42 -0
- package/adapters/opencode/skills/perf-profiler/SKILL.md +39 -0
- package/adapters/opencode/skills/perf-theory-gatherer/SKILL.md +36 -0
- package/adapters/opencode/skills/perf-theory-tester/SKILL.md +37 -0
- package/adapters/opencode/skills/repo-mapping/SKILL.md +86 -0
- package/adapters/opencode/skills/sync-docs/SKILL.md +246 -0
- package/adapters/opencode/skills/validate-delivery/SKILL.md +112 -0
- package/adapters/opencode-plugin/index.ts +346 -0
- package/adapters/opencode-plugin/package.json +21 -0
- package/agent-knowledge/AGENTS.md +62 -0
- package/agent-knowledge/ai-cli-advanced-integration-patterns.md +670 -0
- package/agent-knowledge/ai-cli-non-interactive-programmatic-usage.md +1394 -0
- package/agent-knowledge/resources/ai-cli-non-interactive-programmatic-usage-sources.json +500 -0
- package/bin/cli.js +719 -0
- package/bin/dev-cli.js +587 -0
- package/lib/adapter-transforms.js +278 -0
- package/lib/collectors/codebase.js +392 -0
- package/lib/collectors/docs-patterns.js +713 -0
- package/lib/collectors/documentation.js +219 -0
- package/lib/collectors/github.js +266 -0
- package/lib/collectors/index.js +126 -0
- package/lib/config/index.js +14 -0
- package/lib/cross-platform/index.js +539 -0
- package/lib/discovery/index.js +352 -0
- package/lib/drift-detect/collectors.js +37 -0
- package/lib/enhance/agent-analyzer.js +421 -0
- package/lib/enhance/agent-patterns.js +571 -0
- package/lib/enhance/auto-suppression.js +622 -0
- package/lib/enhance/benchmark.js +417 -0
- package/lib/enhance/cross-file-analyzer.js +930 -0
- package/lib/enhance/cross-file-patterns.js +370 -0
- package/lib/enhance/docs-analyzer.js +325 -0
- package/lib/enhance/docs-patterns.js +671 -0
- package/lib/enhance/fixer.js +721 -0
- package/lib/enhance/hook-analyzer.js +135 -0
- package/lib/enhance/hook-patterns.js +40 -0
- package/lib/enhance/index.js +127 -0
- package/lib/enhance/plugin-analyzer.js +402 -0
- package/lib/enhance/plugin-patterns.js +326 -0
- package/lib/enhance/projectmemory-analyzer.js +551 -0
- package/lib/enhance/projectmemory-patterns.js +617 -0
- package/lib/enhance/prompt-analyzer.js +457 -0
- package/lib/enhance/prompt-patterns.js +1484 -0
- package/lib/enhance/reporter.js +1348 -0
- package/lib/enhance/security-patterns.js +284 -0
- package/lib/enhance/skill-analyzer.js +182 -0
- package/lib/enhance/skill-patterns.js +147 -0
- package/lib/enhance/suppression.js +352 -0
- package/lib/enhance/tool-patterns.js +373 -0
- package/lib/index.js +270 -0
- package/lib/package.json +25 -0
- package/lib/patterns/cli-enhancers.js +611 -0
- package/lib/patterns/pipeline.js +948 -0
- package/lib/patterns/review-patterns.js +558 -0
- package/lib/patterns/slop-analyzers.js +2305 -0
- package/lib/patterns/slop-patterns.js +1187 -0
- package/lib/perf/analyzer/index.js +22 -0
- package/lib/perf/argument-parser.js +105 -0
- package/lib/perf/baseline-comparator.js +50 -0
- package/lib/perf/baseline-store.js +127 -0
- package/lib/perf/benchmark-runner.js +399 -0
- package/lib/perf/breaking-point-finder.js +52 -0
- package/lib/perf/breaking-point-runner.js +60 -0
- package/lib/perf/checkpoint.js +123 -0
- package/lib/perf/code-paths.js +86 -0
- package/lib/perf/consolidation.js +37 -0
- package/lib/perf/constraint-runner.js +71 -0
- package/lib/perf/experiment-runner.js +32 -0
- package/lib/perf/index.js +41 -0
- package/lib/perf/investigation-state.js +875 -0
- package/lib/perf/optimization-runner.js +79 -0
- package/lib/perf/profilers/go.js +22 -0
- package/lib/perf/profilers/index.js +46 -0
- package/lib/perf/profilers/java.js +23 -0
- package/lib/perf/profilers/node.js +27 -0
- package/lib/perf/profilers/python.js +23 -0
- package/lib/perf/profilers/rust.js +23 -0
- package/lib/perf/profiling-runner.js +56 -0
- package/lib/perf/schemas.js +140 -0
- package/lib/platform/detect-platform.js +413 -0
- package/lib/platform/detection-configs.js +93 -0
- package/lib/platform/state-dir.js +132 -0
- package/lib/platform/verify-tools.js +182 -0
- package/lib/repo-map/cache.js +152 -0
- package/lib/repo-map/index.js +222 -0
- package/lib/repo-map/installer.js +212 -0
- package/lib/repo-map/queries/go.js +27 -0
- package/lib/repo-map/queries/index.js +100 -0
- package/lib/repo-map/queries/java.js +38 -0
- package/lib/repo-map/queries/javascript.js +55 -0
- package/lib/repo-map/queries/python.js +24 -0
- package/lib/repo-map/queries/rust.js +73 -0
- package/lib/repo-map/queries/typescript.js +38 -0
- package/lib/repo-map/runner.js +1165 -0
- package/lib/repo-map/updater.js +474 -0
- package/lib/repo-map/usage-analyzer.js +407 -0
- package/lib/schemas/plugin-manifest.schema.json +57 -0
- package/lib/schemas/validator.js +247 -0
- package/lib/sources/custom-handler.js +199 -0
- package/lib/sources/policy-questions.js +246 -0
- package/lib/sources/source-cache.js +165 -0
- package/lib/state/workflow-state.js +575 -0
- package/lib/types/agent-frontmatter.d.ts +134 -0
- package/lib/types/command-frontmatter.d.ts +107 -0
- package/lib/types/hook-frontmatter.d.ts +115 -0
- package/lib/types/index.d.ts +84 -0
- package/lib/types/plugin-manifest.d.ts +102 -0
- package/lib/types/skill-frontmatter.d.ts +89 -0
- package/lib/utils/atomic-write.js +94 -0
- package/lib/utils/cache-manager.js +159 -0
- package/lib/utils/context-optimizer.js +300 -0
- package/lib/utils/deprecation.js +37 -0
- package/lib/utils/shell-escape.js +88 -0
- package/meta/skills/maintain-cross-platform/SKILL.md +1022 -0
- package/package.json +92 -0
- package/plugins/agnix/.claude-plugin/plugin.json +22 -0
- package/plugins/agnix/agents/agnix-agent.md +56 -0
- package/plugins/agnix/commands/agnix.md +139 -0
- package/plugins/agnix/skills/agnix/SKILL.md +138 -0
- package/plugins/audit-project/.claude-plugin/plugin.json +20 -0
- package/plugins/audit-project/commands/audit-project-agents.md +458 -0
- package/plugins/audit-project/commands/audit-project-github.md +144 -0
- package/plugins/audit-project/commands/audit-project.md +336 -0
- package/plugins/audit-project/lib/adapter-transforms.js +278 -0
- package/plugins/audit-project/lib/collectors/codebase.js +392 -0
- package/plugins/audit-project/lib/collectors/docs-patterns.js +713 -0
- package/plugins/audit-project/lib/collectors/documentation.js +219 -0
- package/plugins/audit-project/lib/collectors/github.js +266 -0
- package/plugins/audit-project/lib/collectors/index.js +126 -0
- package/plugins/audit-project/lib/config/index.js +14 -0
- package/plugins/audit-project/lib/cross-platform/index.js +539 -0
- package/plugins/audit-project/lib/discovery/index.js +352 -0
- package/plugins/audit-project/lib/drift-detect/collectors.js +37 -0
- package/plugins/audit-project/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/audit-project/lib/enhance/agent-patterns.js +571 -0
- package/plugins/audit-project/lib/enhance/auto-suppression.js +622 -0
- package/plugins/audit-project/lib/enhance/benchmark.js +417 -0
- package/plugins/audit-project/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/audit-project/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/audit-project/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/audit-project/lib/enhance/docs-patterns.js +671 -0
- package/plugins/audit-project/lib/enhance/fixer.js +721 -0
- package/plugins/audit-project/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/audit-project/lib/enhance/hook-patterns.js +40 -0
- package/plugins/audit-project/lib/enhance/index.js +127 -0
- package/plugins/audit-project/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/audit-project/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/audit-project/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/audit-project/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/audit-project/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/audit-project/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/audit-project/lib/enhance/reporter.js +1348 -0
- package/plugins/audit-project/lib/enhance/security-patterns.js +284 -0
- package/plugins/audit-project/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/audit-project/lib/enhance/skill-patterns.js +147 -0
- package/plugins/audit-project/lib/enhance/suppression.js +352 -0
- package/plugins/audit-project/lib/enhance/tool-patterns.js +373 -0
- package/plugins/audit-project/lib/index.js +270 -0
- package/plugins/audit-project/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/audit-project/lib/patterns/pipeline.js +948 -0
- package/plugins/audit-project/lib/patterns/review-patterns.js +558 -0
- package/plugins/audit-project/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/audit-project/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/audit-project/lib/perf/analyzer/index.js +22 -0
- package/plugins/audit-project/lib/perf/argument-parser.js +105 -0
- package/plugins/audit-project/lib/perf/baseline-comparator.js +50 -0
- package/plugins/audit-project/lib/perf/baseline-store.js +127 -0
- package/plugins/audit-project/lib/perf/benchmark-runner.js +399 -0
- package/plugins/audit-project/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/audit-project/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/audit-project/lib/perf/checkpoint.js +123 -0
- package/plugins/audit-project/lib/perf/code-paths.js +86 -0
- package/plugins/audit-project/lib/perf/consolidation.js +37 -0
- package/plugins/audit-project/lib/perf/constraint-runner.js +71 -0
- package/plugins/audit-project/lib/perf/experiment-runner.js +32 -0
- package/plugins/audit-project/lib/perf/index.js +41 -0
- package/plugins/audit-project/lib/perf/investigation-state.js +875 -0
- package/plugins/audit-project/lib/perf/optimization-runner.js +79 -0
- package/plugins/audit-project/lib/perf/profilers/go.js +22 -0
- package/plugins/audit-project/lib/perf/profilers/index.js +46 -0
- package/plugins/audit-project/lib/perf/profilers/java.js +23 -0
- package/plugins/audit-project/lib/perf/profilers/node.js +27 -0
- package/plugins/audit-project/lib/perf/profilers/python.js +23 -0
- package/plugins/audit-project/lib/perf/profilers/rust.js +23 -0
- package/plugins/audit-project/lib/perf/profiling-runner.js +56 -0
- package/plugins/audit-project/lib/perf/schemas.js +140 -0
- package/plugins/audit-project/lib/platform/detect-platform.js +413 -0
- package/plugins/audit-project/lib/platform/detection-configs.js +93 -0
- package/plugins/audit-project/lib/platform/state-dir.js +132 -0
- package/plugins/audit-project/lib/platform/verify-tools.js +182 -0
- package/plugins/audit-project/lib/repo-map/cache.js +152 -0
- package/plugins/audit-project/lib/repo-map/index.js +222 -0
- package/plugins/audit-project/lib/repo-map/installer.js +212 -0
- package/plugins/audit-project/lib/repo-map/queries/go.js +27 -0
- package/plugins/audit-project/lib/repo-map/queries/index.js +100 -0
- package/plugins/audit-project/lib/repo-map/queries/java.js +38 -0
- package/plugins/audit-project/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/audit-project/lib/repo-map/queries/python.js +24 -0
- package/plugins/audit-project/lib/repo-map/queries/rust.js +73 -0
- package/plugins/audit-project/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/audit-project/lib/repo-map/runner.js +1165 -0
- package/plugins/audit-project/lib/repo-map/updater.js +474 -0
- package/plugins/audit-project/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/audit-project/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/audit-project/lib/schemas/validator.js +247 -0
- package/plugins/audit-project/lib/sources/custom-handler.js +199 -0
- package/plugins/audit-project/lib/sources/policy-questions.js +246 -0
- package/plugins/audit-project/lib/sources/source-cache.js +165 -0
- package/plugins/audit-project/lib/state/workflow-state.js +575 -0
- package/plugins/audit-project/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/audit-project/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/audit-project/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/audit-project/lib/types/index.d.ts +84 -0
- package/plugins/audit-project/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/audit-project/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/audit-project/lib/utils/atomic-write.js +94 -0
- package/plugins/audit-project/lib/utils/cache-manager.js +159 -0
- package/plugins/audit-project/lib/utils/context-optimizer.js +300 -0
- package/plugins/audit-project/lib/utils/deprecation.js +37 -0
- package/plugins/audit-project/lib/utils/shell-escape.js +88 -0
- package/plugins/consult/.claude-plugin/plugin.json +24 -0
- package/plugins/consult/agents/consult-agent.md +129 -0
- package/plugins/consult/commands/consult.md +248 -0
- package/plugins/consult/skills/consult/SKILL.md +285 -0
- package/plugins/deslop/.claude-plugin/plugin.json +20 -0
- package/plugins/deslop/agents/deslop-agent.md +88 -0
- package/plugins/deslop/commands/deslop.md +168 -0
- package/plugins/deslop/lib/adapter-transforms.js +278 -0
- package/plugins/deslop/lib/collectors/codebase.js +392 -0
- package/plugins/deslop/lib/collectors/docs-patterns.js +713 -0
- package/plugins/deslop/lib/collectors/documentation.js +219 -0
- package/plugins/deslop/lib/collectors/github.js +266 -0
- package/plugins/deslop/lib/collectors/index.js +126 -0
- package/plugins/deslop/lib/config/index.js +14 -0
- package/plugins/deslop/lib/cross-platform/index.js +539 -0
- package/plugins/deslop/lib/discovery/index.js +352 -0
- package/plugins/deslop/lib/drift-detect/collectors.js +37 -0
- package/plugins/deslop/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/deslop/lib/enhance/agent-patterns.js +571 -0
- package/plugins/deslop/lib/enhance/auto-suppression.js +622 -0
- package/plugins/deslop/lib/enhance/benchmark.js +417 -0
- package/plugins/deslop/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/deslop/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/deslop/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/deslop/lib/enhance/docs-patterns.js +671 -0
- package/plugins/deslop/lib/enhance/fixer.js +721 -0
- package/plugins/deslop/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/deslop/lib/enhance/hook-patterns.js +40 -0
- package/plugins/deslop/lib/enhance/index.js +127 -0
- package/plugins/deslop/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/deslop/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/deslop/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/deslop/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/deslop/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/deslop/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/deslop/lib/enhance/reporter.js +1348 -0
- package/plugins/deslop/lib/enhance/security-patterns.js +284 -0
- package/plugins/deslop/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/deslop/lib/enhance/skill-patterns.js +147 -0
- package/plugins/deslop/lib/enhance/suppression.js +352 -0
- package/plugins/deslop/lib/enhance/tool-patterns.js +373 -0
- package/plugins/deslop/lib/index.js +270 -0
- package/plugins/deslop/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/deslop/lib/patterns/pipeline.js +948 -0
- package/plugins/deslop/lib/patterns/review-patterns.js +558 -0
- package/plugins/deslop/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/deslop/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/deslop/lib/perf/analyzer/index.js +22 -0
- package/plugins/deslop/lib/perf/argument-parser.js +105 -0
- package/plugins/deslop/lib/perf/baseline-comparator.js +50 -0
- package/plugins/deslop/lib/perf/baseline-store.js +127 -0
- package/plugins/deslop/lib/perf/benchmark-runner.js +399 -0
- package/plugins/deslop/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/deslop/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/deslop/lib/perf/checkpoint.js +123 -0
- package/plugins/deslop/lib/perf/code-paths.js +86 -0
- package/plugins/deslop/lib/perf/consolidation.js +37 -0
- package/plugins/deslop/lib/perf/constraint-runner.js +71 -0
- package/plugins/deslop/lib/perf/experiment-runner.js +32 -0
- package/plugins/deslop/lib/perf/index.js +41 -0
- package/plugins/deslop/lib/perf/investigation-state.js +875 -0
- package/plugins/deslop/lib/perf/optimization-runner.js +79 -0
- package/plugins/deslop/lib/perf/profilers/go.js +22 -0
- package/plugins/deslop/lib/perf/profilers/index.js +46 -0
- package/plugins/deslop/lib/perf/profilers/java.js +23 -0
- package/plugins/deslop/lib/perf/profilers/node.js +27 -0
- package/plugins/deslop/lib/perf/profilers/python.js +23 -0
- package/plugins/deslop/lib/perf/profilers/rust.js +23 -0
- package/plugins/deslop/lib/perf/profiling-runner.js +56 -0
- package/plugins/deslop/lib/perf/schemas.js +140 -0
- package/plugins/deslop/lib/platform/detect-platform.js +413 -0
- package/plugins/deslop/lib/platform/detection-configs.js +93 -0
- package/plugins/deslop/lib/platform/state-dir.js +132 -0
- package/plugins/deslop/lib/platform/verify-tools.js +182 -0
- package/plugins/deslop/lib/repo-map/cache.js +152 -0
- package/plugins/deslop/lib/repo-map/index.js +222 -0
- package/plugins/deslop/lib/repo-map/installer.js +212 -0
- package/plugins/deslop/lib/repo-map/queries/go.js +27 -0
- package/plugins/deslop/lib/repo-map/queries/index.js +100 -0
- package/plugins/deslop/lib/repo-map/queries/java.js +38 -0
- package/plugins/deslop/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/deslop/lib/repo-map/queries/python.js +24 -0
- package/plugins/deslop/lib/repo-map/queries/rust.js +73 -0
- package/plugins/deslop/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/deslop/lib/repo-map/runner.js +1165 -0
- package/plugins/deslop/lib/repo-map/updater.js +474 -0
- package/plugins/deslop/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/deslop/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/deslop/lib/schemas/validator.js +247 -0
- package/plugins/deslop/lib/sources/custom-handler.js +199 -0
- package/plugins/deslop/lib/sources/policy-questions.js +246 -0
- package/plugins/deslop/lib/sources/source-cache.js +165 -0
- package/plugins/deslop/lib/state/workflow-state.js +575 -0
- package/plugins/deslop/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/deslop/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/deslop/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/deslop/lib/types/index.d.ts +84 -0
- package/plugins/deslop/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/deslop/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/deslop/lib/utils/atomic-write.js +94 -0
- package/plugins/deslop/lib/utils/cache-manager.js +159 -0
- package/plugins/deslop/lib/utils/context-optimizer.js +300 -0
- package/plugins/deslop/lib/utils/deprecation.js +37 -0
- package/plugins/deslop/lib/utils/shell-escape.js +88 -0
- package/plugins/deslop/references/slop-categories.md +122 -0
- package/plugins/deslop/scripts/detect.js +134 -0
- package/plugins/deslop/skills/deslop/SKILL.md +204 -0
- package/plugins/drift-detect/.claude-plugin/plugin.json +23 -0
- package/plugins/drift-detect/agents/plan-synthesizer.md +225 -0
- package/plugins/drift-detect/commands/drift-detect.md +269 -0
- package/plugins/drift-detect/lib/adapter-transforms.js +278 -0
- package/plugins/drift-detect/lib/collectors/codebase.js +392 -0
- package/plugins/drift-detect/lib/collectors/docs-patterns.js +713 -0
- package/plugins/drift-detect/lib/collectors/documentation.js +219 -0
- package/plugins/drift-detect/lib/collectors/github.js +266 -0
- package/plugins/drift-detect/lib/collectors/index.js +126 -0
- package/plugins/drift-detect/lib/config/index.js +14 -0
- package/plugins/drift-detect/lib/cross-platform/index.js +539 -0
- package/plugins/drift-detect/lib/discovery/index.js +352 -0
- package/plugins/drift-detect/lib/drift-detect/collectors.js +37 -0
- package/plugins/drift-detect/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/drift-detect/lib/enhance/agent-patterns.js +571 -0
- package/plugins/drift-detect/lib/enhance/auto-suppression.js +622 -0
- package/plugins/drift-detect/lib/enhance/benchmark.js +417 -0
- package/plugins/drift-detect/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/drift-detect/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/drift-detect/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/drift-detect/lib/enhance/docs-patterns.js +671 -0
- package/plugins/drift-detect/lib/enhance/fixer.js +721 -0
- package/plugins/drift-detect/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/drift-detect/lib/enhance/hook-patterns.js +40 -0
- package/plugins/drift-detect/lib/enhance/index.js +127 -0
- package/plugins/drift-detect/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/drift-detect/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/drift-detect/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/drift-detect/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/drift-detect/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/drift-detect/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/drift-detect/lib/enhance/reporter.js +1348 -0
- package/plugins/drift-detect/lib/enhance/security-patterns.js +284 -0
- package/plugins/drift-detect/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/drift-detect/lib/enhance/skill-patterns.js +147 -0
- package/plugins/drift-detect/lib/enhance/suppression.js +352 -0
- package/plugins/drift-detect/lib/enhance/tool-patterns.js +373 -0
- package/plugins/drift-detect/lib/index.js +270 -0
- package/plugins/drift-detect/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/drift-detect/lib/patterns/pipeline.js +948 -0
- package/plugins/drift-detect/lib/patterns/review-patterns.js +558 -0
- package/plugins/drift-detect/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/drift-detect/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/drift-detect/lib/perf/analyzer/index.js +22 -0
- package/plugins/drift-detect/lib/perf/argument-parser.js +105 -0
- package/plugins/drift-detect/lib/perf/baseline-comparator.js +50 -0
- package/plugins/drift-detect/lib/perf/baseline-store.js +127 -0
- package/plugins/drift-detect/lib/perf/benchmark-runner.js +399 -0
- package/plugins/drift-detect/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/drift-detect/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/drift-detect/lib/perf/checkpoint.js +123 -0
- package/plugins/drift-detect/lib/perf/code-paths.js +86 -0
- package/plugins/drift-detect/lib/perf/consolidation.js +37 -0
- package/plugins/drift-detect/lib/perf/constraint-runner.js +71 -0
- package/plugins/drift-detect/lib/perf/experiment-runner.js +32 -0
- package/plugins/drift-detect/lib/perf/index.js +41 -0
- package/plugins/drift-detect/lib/perf/investigation-state.js +875 -0
- package/plugins/drift-detect/lib/perf/optimization-runner.js +79 -0
- package/plugins/drift-detect/lib/perf/profilers/go.js +22 -0
- package/plugins/drift-detect/lib/perf/profilers/index.js +46 -0
- package/plugins/drift-detect/lib/perf/profilers/java.js +23 -0
- package/plugins/drift-detect/lib/perf/profilers/node.js +27 -0
- package/plugins/drift-detect/lib/perf/profilers/python.js +23 -0
- package/plugins/drift-detect/lib/perf/profilers/rust.js +23 -0
- package/plugins/drift-detect/lib/perf/profiling-runner.js +56 -0
- package/plugins/drift-detect/lib/perf/schemas.js +140 -0
- package/plugins/drift-detect/lib/platform/detect-platform.js +413 -0
- package/plugins/drift-detect/lib/platform/detection-configs.js +93 -0
- package/plugins/drift-detect/lib/platform/state-dir.js +132 -0
- package/plugins/drift-detect/lib/platform/verify-tools.js +182 -0
- package/plugins/drift-detect/lib/repo-map/cache.js +152 -0
- package/plugins/drift-detect/lib/repo-map/index.js +222 -0
- package/plugins/drift-detect/lib/repo-map/installer.js +212 -0
- package/plugins/drift-detect/lib/repo-map/queries/go.js +27 -0
- package/plugins/drift-detect/lib/repo-map/queries/index.js +100 -0
- package/plugins/drift-detect/lib/repo-map/queries/java.js +38 -0
- package/plugins/drift-detect/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/drift-detect/lib/repo-map/queries/python.js +24 -0
- package/plugins/drift-detect/lib/repo-map/queries/rust.js +73 -0
- package/plugins/drift-detect/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/drift-detect/lib/repo-map/runner.js +1165 -0
- package/plugins/drift-detect/lib/repo-map/updater.js +474 -0
- package/plugins/drift-detect/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/drift-detect/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/drift-detect/lib/schemas/validator.js +247 -0
- package/plugins/drift-detect/lib/sources/custom-handler.js +199 -0
- package/plugins/drift-detect/lib/sources/policy-questions.js +246 -0
- package/plugins/drift-detect/lib/sources/source-cache.js +165 -0
- package/plugins/drift-detect/lib/state/workflow-state.js +575 -0
- package/plugins/drift-detect/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/drift-detect/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/drift-detect/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/drift-detect/lib/types/index.d.ts +84 -0
- package/plugins/drift-detect/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/drift-detect/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/drift-detect/lib/utils/atomic-write.js +94 -0
- package/plugins/drift-detect/lib/utils/cache-manager.js +159 -0
- package/plugins/drift-detect/lib/utils/context-optimizer.js +300 -0
- package/plugins/drift-detect/lib/utils/deprecation.js +37 -0
- package/plugins/drift-detect/lib/utils/shell-escape.js +88 -0
- package/plugins/drift-detect/skills/drift-analysis/SKILL.md +324 -0
- package/plugins/enhance/.claude-plugin/plugin.json +20 -0
- package/plugins/enhance/agents/agent-enhancer.md +64 -0
- package/plugins/enhance/agents/claudemd-enhancer.md +65 -0
- package/plugins/enhance/agents/cross-file-enhancer.md +54 -0
- package/plugins/enhance/agents/docs-enhancer.md +64 -0
- package/plugins/enhance/agents/hooks-enhancer.md +64 -0
- package/plugins/enhance/agents/plugin-enhancer.md +63 -0
- package/plugins/enhance/agents/prompt-enhancer.md +58 -0
- package/plugins/enhance/agents/skills-enhancer.md +64 -0
- package/plugins/enhance/commands/enhance.md +178 -0
- package/plugins/enhance/lib/adapter-transforms.js +278 -0
- package/plugins/enhance/lib/collectors/codebase.js +392 -0
- package/plugins/enhance/lib/collectors/docs-patterns.js +713 -0
- package/plugins/enhance/lib/collectors/documentation.js +219 -0
- package/plugins/enhance/lib/collectors/github.js +266 -0
- package/plugins/enhance/lib/collectors/index.js +126 -0
- package/plugins/enhance/lib/config/index.js +14 -0
- package/plugins/enhance/lib/cross-platform/index.js +539 -0
- package/plugins/enhance/lib/discovery/index.js +352 -0
- package/plugins/enhance/lib/drift-detect/collectors.js +37 -0
- package/plugins/enhance/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/enhance/lib/enhance/agent-patterns.js +571 -0
- package/plugins/enhance/lib/enhance/auto-suppression.js +622 -0
- package/plugins/enhance/lib/enhance/benchmark.js +417 -0
- package/plugins/enhance/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/enhance/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/enhance/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/enhance/lib/enhance/docs-patterns.js +671 -0
- package/plugins/enhance/lib/enhance/fixer.js +721 -0
- package/plugins/enhance/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/enhance/lib/enhance/hook-patterns.js +40 -0
- package/plugins/enhance/lib/enhance/index.js +127 -0
- package/plugins/enhance/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/enhance/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/enhance/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/enhance/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/enhance/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/enhance/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/enhance/lib/enhance/reporter.js +1348 -0
- package/plugins/enhance/lib/enhance/security-patterns.js +284 -0
- package/plugins/enhance/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/enhance/lib/enhance/skill-patterns.js +147 -0
- package/plugins/enhance/lib/enhance/suppression.js +352 -0
- package/plugins/enhance/lib/enhance/tool-patterns.js +373 -0
- package/plugins/enhance/lib/index.js +270 -0
- package/plugins/enhance/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/enhance/lib/patterns/pipeline.js +948 -0
- package/plugins/enhance/lib/patterns/review-patterns.js +558 -0
- package/plugins/enhance/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/enhance/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/enhance/lib/perf/analyzer/index.js +22 -0
- package/plugins/enhance/lib/perf/argument-parser.js +105 -0
- package/plugins/enhance/lib/perf/baseline-comparator.js +50 -0
- package/plugins/enhance/lib/perf/baseline-store.js +127 -0
- package/plugins/enhance/lib/perf/benchmark-runner.js +399 -0
- package/plugins/enhance/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/enhance/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/enhance/lib/perf/checkpoint.js +123 -0
- package/plugins/enhance/lib/perf/code-paths.js +86 -0
- package/plugins/enhance/lib/perf/consolidation.js +37 -0
- package/plugins/enhance/lib/perf/constraint-runner.js +71 -0
- package/plugins/enhance/lib/perf/experiment-runner.js +32 -0
- package/plugins/enhance/lib/perf/index.js +41 -0
- package/plugins/enhance/lib/perf/investigation-state.js +875 -0
- package/plugins/enhance/lib/perf/optimization-runner.js +79 -0
- package/plugins/enhance/lib/perf/profilers/go.js +22 -0
- package/plugins/enhance/lib/perf/profilers/index.js +46 -0
- package/plugins/enhance/lib/perf/profilers/java.js +23 -0
- package/plugins/enhance/lib/perf/profilers/node.js +27 -0
- package/plugins/enhance/lib/perf/profilers/python.js +23 -0
- package/plugins/enhance/lib/perf/profilers/rust.js +23 -0
- package/plugins/enhance/lib/perf/profiling-runner.js +56 -0
- package/plugins/enhance/lib/perf/schemas.js +140 -0
- package/plugins/enhance/lib/platform/detect-platform.js +413 -0
- package/plugins/enhance/lib/platform/detection-configs.js +93 -0
- package/plugins/enhance/lib/platform/state-dir.js +132 -0
- package/plugins/enhance/lib/platform/verify-tools.js +182 -0
- package/plugins/enhance/lib/repo-map/cache.js +152 -0
- package/plugins/enhance/lib/repo-map/index.js +222 -0
- package/plugins/enhance/lib/repo-map/installer.js +212 -0
- package/plugins/enhance/lib/repo-map/queries/go.js +27 -0
- package/plugins/enhance/lib/repo-map/queries/index.js +100 -0
- package/plugins/enhance/lib/repo-map/queries/java.js +38 -0
- package/plugins/enhance/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/enhance/lib/repo-map/queries/python.js +24 -0
- package/plugins/enhance/lib/repo-map/queries/rust.js +73 -0
- package/plugins/enhance/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/enhance/lib/repo-map/runner.js +1165 -0
- package/plugins/enhance/lib/repo-map/updater.js +474 -0
- package/plugins/enhance/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/enhance/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/enhance/lib/schemas/validator.js +247 -0
- package/plugins/enhance/lib/sources/custom-handler.js +199 -0
- package/plugins/enhance/lib/sources/policy-questions.js +246 -0
- package/plugins/enhance/lib/sources/source-cache.js +165 -0
- package/plugins/enhance/lib/state/workflow-state.js +575 -0
- package/plugins/enhance/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/enhance/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/enhance/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/enhance/lib/types/index.d.ts +84 -0
- package/plugins/enhance/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/enhance/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/enhance/lib/utils/atomic-write.js +94 -0
- package/plugins/enhance/lib/utils/cache-manager.js +159 -0
- package/plugins/enhance/lib/utils/context-optimizer.js +300 -0
- package/plugins/enhance/lib/utils/deprecation.js +37 -0
- package/plugins/enhance/lib/utils/shell-escape.js +88 -0
- package/plugins/enhance/skills/enhance-agent-prompts/SKILL.md +277 -0
- package/plugins/enhance/skills/enhance-claude-memory/SKILL.md +387 -0
- package/plugins/enhance/skills/enhance-cross-file/SKILL.md +110 -0
- package/plugins/enhance/skills/enhance-docs/SKILL.md +298 -0
- package/plugins/enhance/skills/enhance-hooks/SKILL.md +554 -0
- package/plugins/enhance/skills/enhance-orchestrator/SKILL.md +255 -0
- package/plugins/enhance/skills/enhance-plugins/SKILL.md +319 -0
- package/plugins/enhance/skills/enhance-prompts/SKILL.md +340 -0
- package/plugins/enhance/skills/enhance-skills/SKILL.md +436 -0
- package/plugins/learn/.claude-plugin/plugin.json +21 -0
- package/plugins/learn/agents/learn-agent.md +331 -0
- package/plugins/learn/commands/learn.md +190 -0
- package/plugins/learn/lib/adapter-transforms.js +278 -0
- package/plugins/learn/lib/collectors/codebase.js +392 -0
- package/plugins/learn/lib/collectors/docs-patterns.js +713 -0
- package/plugins/learn/lib/collectors/documentation.js +219 -0
- package/plugins/learn/lib/collectors/github.js +266 -0
- package/plugins/learn/lib/collectors/index.js +126 -0
- package/plugins/learn/lib/config/index.js +14 -0
- package/plugins/learn/lib/cross-platform/index.js +539 -0
- package/plugins/learn/lib/discovery/index.js +352 -0
- package/plugins/learn/lib/drift-detect/collectors.js +37 -0
- package/plugins/learn/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/learn/lib/enhance/agent-patterns.js +571 -0
- package/plugins/learn/lib/enhance/auto-suppression.js +622 -0
- package/plugins/learn/lib/enhance/benchmark.js +417 -0
- package/plugins/learn/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/learn/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/learn/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/learn/lib/enhance/docs-patterns.js +671 -0
- package/plugins/learn/lib/enhance/fixer.js +721 -0
- package/plugins/learn/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/learn/lib/enhance/hook-patterns.js +40 -0
- package/plugins/learn/lib/enhance/index.js +127 -0
- package/plugins/learn/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/learn/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/learn/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/learn/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/learn/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/learn/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/learn/lib/enhance/reporter.js +1348 -0
- package/plugins/learn/lib/enhance/security-patterns.js +284 -0
- package/plugins/learn/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/learn/lib/enhance/skill-patterns.js +147 -0
- package/plugins/learn/lib/enhance/suppression.js +352 -0
- package/plugins/learn/lib/enhance/tool-patterns.js +373 -0
- package/plugins/learn/lib/index.js +270 -0
- package/plugins/learn/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/learn/lib/patterns/pipeline.js +948 -0
- package/plugins/learn/lib/patterns/review-patterns.js +558 -0
- package/plugins/learn/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/learn/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/learn/lib/perf/analyzer/index.js +22 -0
- package/plugins/learn/lib/perf/argument-parser.js +105 -0
- package/plugins/learn/lib/perf/baseline-comparator.js +50 -0
- package/plugins/learn/lib/perf/baseline-store.js +127 -0
- package/plugins/learn/lib/perf/benchmark-runner.js +399 -0
- package/plugins/learn/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/learn/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/learn/lib/perf/checkpoint.js +123 -0
- package/plugins/learn/lib/perf/code-paths.js +86 -0
- package/plugins/learn/lib/perf/consolidation.js +37 -0
- package/plugins/learn/lib/perf/constraint-runner.js +71 -0
- package/plugins/learn/lib/perf/experiment-runner.js +32 -0
- package/plugins/learn/lib/perf/index.js +41 -0
- package/plugins/learn/lib/perf/investigation-state.js +875 -0
- package/plugins/learn/lib/perf/optimization-runner.js +79 -0
- package/plugins/learn/lib/perf/profilers/go.js +22 -0
- package/plugins/learn/lib/perf/profilers/index.js +46 -0
- package/plugins/learn/lib/perf/profilers/java.js +23 -0
- package/plugins/learn/lib/perf/profilers/node.js +27 -0
- package/plugins/learn/lib/perf/profilers/python.js +23 -0
- package/plugins/learn/lib/perf/profilers/rust.js +23 -0
- package/plugins/learn/lib/perf/profiling-runner.js +56 -0
- package/plugins/learn/lib/perf/schemas.js +140 -0
- package/plugins/learn/lib/platform/detect-platform.js +413 -0
- package/plugins/learn/lib/platform/detection-configs.js +93 -0
- package/plugins/learn/lib/platform/state-dir.js +132 -0
- package/plugins/learn/lib/platform/verify-tools.js +182 -0
- package/plugins/learn/lib/repo-map/cache.js +152 -0
- package/plugins/learn/lib/repo-map/index.js +222 -0
- package/plugins/learn/lib/repo-map/installer.js +212 -0
- package/plugins/learn/lib/repo-map/queries/go.js +27 -0
- package/plugins/learn/lib/repo-map/queries/index.js +100 -0
- package/plugins/learn/lib/repo-map/queries/java.js +38 -0
- package/plugins/learn/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/learn/lib/repo-map/queries/python.js +24 -0
- package/plugins/learn/lib/repo-map/queries/rust.js +73 -0
- package/plugins/learn/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/learn/lib/repo-map/runner.js +1165 -0
- package/plugins/learn/lib/repo-map/updater.js +474 -0
- package/plugins/learn/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/learn/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/learn/lib/schemas/validator.js +247 -0
- package/plugins/learn/lib/sources/custom-handler.js +199 -0
- package/plugins/learn/lib/sources/policy-questions.js +246 -0
- package/plugins/learn/lib/sources/source-cache.js +165 -0
- package/plugins/learn/lib/state/workflow-state.js +575 -0
- package/plugins/learn/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/learn/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/learn/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/learn/lib/types/index.d.ts +84 -0
- package/plugins/learn/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/learn/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/learn/lib/utils/atomic-write.js +94 -0
- package/plugins/learn/lib/utils/cache-manager.js +159 -0
- package/plugins/learn/lib/utils/context-optimizer.js +300 -0
- package/plugins/learn/lib/utils/deprecation.js +37 -0
- package/plugins/learn/lib/utils/shell-escape.js +88 -0
- package/plugins/learn/skills/learn/SKILL.md +349 -0
- package/plugins/next-task/.claude-plugin/plugin.json +24 -0
- package/plugins/next-task/agents/ci-fixer.md +259 -0
- package/plugins/next-task/agents/ci-monitor.md +342 -0
- package/plugins/next-task/agents/delivery-validator.md +115 -0
- package/plugins/next-task/agents/exploration-agent.md +316 -0
- package/plugins/next-task/agents/implementation-agent.md +465 -0
- package/plugins/next-task/agents/planning-agent.md +377 -0
- package/plugins/next-task/agents/simple-fixer.md +139 -0
- package/plugins/next-task/agents/task-discoverer.md +89 -0
- package/plugins/next-task/agents/test-coverage-checker.md +451 -0
- package/plugins/next-task/agents/worktree-manager.md +257 -0
- package/plugins/next-task/commands/delivery-approval.md +341 -0
- package/plugins/next-task/commands/next-task.md +547 -0
- package/plugins/next-task/hooks/hooks.json +14 -0
- package/plugins/next-task/lib/adapter-transforms.js +278 -0
- package/plugins/next-task/lib/collectors/codebase.js +392 -0
- package/plugins/next-task/lib/collectors/docs-patterns.js +713 -0
- package/plugins/next-task/lib/collectors/documentation.js +219 -0
- package/plugins/next-task/lib/collectors/github.js +266 -0
- package/plugins/next-task/lib/collectors/index.js +126 -0
- package/plugins/next-task/lib/config/index.js +14 -0
- package/plugins/next-task/lib/cross-platform/index.js +539 -0
- package/plugins/next-task/lib/discovery/index.js +352 -0
- package/plugins/next-task/lib/drift-detect/collectors.js +37 -0
- package/plugins/next-task/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/next-task/lib/enhance/agent-patterns.js +571 -0
- package/plugins/next-task/lib/enhance/auto-suppression.js +622 -0
- package/plugins/next-task/lib/enhance/benchmark.js +417 -0
- package/plugins/next-task/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/next-task/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/next-task/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/next-task/lib/enhance/docs-patterns.js +671 -0
- package/plugins/next-task/lib/enhance/fixer.js +721 -0
- package/plugins/next-task/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/next-task/lib/enhance/hook-patterns.js +40 -0
- package/plugins/next-task/lib/enhance/index.js +127 -0
- package/plugins/next-task/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/next-task/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/next-task/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/next-task/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/next-task/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/next-task/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/next-task/lib/enhance/reporter.js +1348 -0
- package/plugins/next-task/lib/enhance/security-patterns.js +284 -0
- package/plugins/next-task/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/next-task/lib/enhance/skill-patterns.js +147 -0
- package/plugins/next-task/lib/enhance/suppression.js +352 -0
- package/plugins/next-task/lib/enhance/tool-patterns.js +373 -0
- package/plugins/next-task/lib/index.js +270 -0
- package/plugins/next-task/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/next-task/lib/patterns/pipeline.js +948 -0
- package/plugins/next-task/lib/patterns/review-patterns.js +558 -0
- package/plugins/next-task/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/next-task/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/next-task/lib/perf/analyzer/index.js +22 -0
- package/plugins/next-task/lib/perf/argument-parser.js +105 -0
- package/plugins/next-task/lib/perf/baseline-comparator.js +50 -0
- package/plugins/next-task/lib/perf/baseline-store.js +127 -0
- package/plugins/next-task/lib/perf/benchmark-runner.js +399 -0
- package/plugins/next-task/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/next-task/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/next-task/lib/perf/checkpoint.js +123 -0
- package/plugins/next-task/lib/perf/code-paths.js +86 -0
- package/plugins/next-task/lib/perf/consolidation.js +37 -0
- package/plugins/next-task/lib/perf/constraint-runner.js +71 -0
- package/plugins/next-task/lib/perf/experiment-runner.js +32 -0
- package/plugins/next-task/lib/perf/index.js +41 -0
- package/plugins/next-task/lib/perf/investigation-state.js +875 -0
- package/plugins/next-task/lib/perf/optimization-runner.js +79 -0
- package/plugins/next-task/lib/perf/profilers/go.js +22 -0
- package/plugins/next-task/lib/perf/profilers/index.js +46 -0
- package/plugins/next-task/lib/perf/profilers/java.js +23 -0
- package/plugins/next-task/lib/perf/profilers/node.js +27 -0
- package/plugins/next-task/lib/perf/profilers/python.js +23 -0
- package/plugins/next-task/lib/perf/profilers/rust.js +23 -0
- package/plugins/next-task/lib/perf/profiling-runner.js +56 -0
- package/plugins/next-task/lib/perf/schemas.js +140 -0
- package/plugins/next-task/lib/platform/detect-platform.js +413 -0
- package/plugins/next-task/lib/platform/detection-configs.js +93 -0
- package/plugins/next-task/lib/platform/state-dir.js +132 -0
- package/plugins/next-task/lib/platform/verify-tools.js +182 -0
- package/plugins/next-task/lib/repo-map/cache.js +152 -0
- package/plugins/next-task/lib/repo-map/index.js +222 -0
- package/plugins/next-task/lib/repo-map/installer.js +212 -0
- package/plugins/next-task/lib/repo-map/queries/go.js +27 -0
- package/plugins/next-task/lib/repo-map/queries/index.js +100 -0
- package/plugins/next-task/lib/repo-map/queries/java.js +38 -0
- package/plugins/next-task/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/next-task/lib/repo-map/queries/python.js +24 -0
- package/plugins/next-task/lib/repo-map/queries/rust.js +73 -0
- package/plugins/next-task/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/next-task/lib/repo-map/runner.js +1165 -0
- package/plugins/next-task/lib/repo-map/updater.js +474 -0
- package/plugins/next-task/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/next-task/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/next-task/lib/schemas/validator.js +247 -0
- package/plugins/next-task/lib/sources/custom-handler.js +199 -0
- package/plugins/next-task/lib/sources/policy-questions.js +246 -0
- package/plugins/next-task/lib/sources/source-cache.js +165 -0
- package/plugins/next-task/lib/state/workflow-state.js +575 -0
- package/plugins/next-task/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/next-task/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/next-task/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/next-task/lib/types/index.d.ts +84 -0
- package/plugins/next-task/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/next-task/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/next-task/lib/utils/atomic-write.js +94 -0
- package/plugins/next-task/lib/utils/cache-manager.js +159 -0
- package/plugins/next-task/lib/utils/context-optimizer.js +300 -0
- package/plugins/next-task/lib/utils/deprecation.js +37 -0
- package/plugins/next-task/lib/utils/shell-escape.js +88 -0
- package/plugins/next-task/skills/discover-tasks/SKILL.md +191 -0
- package/plugins/next-task/skills/orchestrate-review/SKILL.md +239 -0
- package/plugins/next-task/skills/validate-delivery/SKILL.md +186 -0
- package/plugins/perf/.claude-plugin/plugin.json +20 -0
- package/plugins/perf/agents/perf-analyzer.md +43 -0
- package/plugins/perf/agents/perf-code-paths.md +16 -0
- package/plugins/perf/agents/perf-investigation-logger.md +47 -0
- package/plugins/perf/agents/perf-orchestrator.md +344 -0
- package/plugins/perf/agents/perf-theory-gatherer.md +25 -0
- package/plugins/perf/agents/perf-theory-tester.md +58 -0
- package/plugins/perf/commands/perf.md +470 -0
- package/plugins/perf/hooks/checkpoint.md +35 -0
- package/plugins/perf/hooks/constraint-tester.md +40 -0
- package/plugins/perf/lib/adapter-transforms.js +278 -0
- package/plugins/perf/lib/collectors/codebase.js +392 -0
- package/plugins/perf/lib/collectors/docs-patterns.js +713 -0
- package/plugins/perf/lib/collectors/documentation.js +219 -0
- package/plugins/perf/lib/collectors/github.js +266 -0
- package/plugins/perf/lib/collectors/index.js +126 -0
- package/plugins/perf/lib/config/index.js +14 -0
- package/plugins/perf/lib/cross-platform/index.js +539 -0
- package/plugins/perf/lib/discovery/index.js +352 -0
- package/plugins/perf/lib/drift-detect/collectors.js +37 -0
- package/plugins/perf/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/perf/lib/enhance/agent-patterns.js +571 -0
- package/plugins/perf/lib/enhance/auto-suppression.js +622 -0
- package/plugins/perf/lib/enhance/benchmark.js +417 -0
- package/plugins/perf/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/perf/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/perf/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/perf/lib/enhance/docs-patterns.js +671 -0
- package/plugins/perf/lib/enhance/fixer.js +721 -0
- package/plugins/perf/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/perf/lib/enhance/hook-patterns.js +40 -0
- package/plugins/perf/lib/enhance/index.js +127 -0
- package/plugins/perf/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/perf/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/perf/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/perf/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/perf/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/perf/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/perf/lib/enhance/reporter.js +1348 -0
- package/plugins/perf/lib/enhance/security-patterns.js +284 -0
- package/plugins/perf/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/perf/lib/enhance/skill-patterns.js +147 -0
- package/plugins/perf/lib/enhance/suppression.js +352 -0
- package/plugins/perf/lib/enhance/tool-patterns.js +373 -0
- package/plugins/perf/lib/index.js +270 -0
- package/plugins/perf/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/perf/lib/patterns/pipeline.js +948 -0
- package/plugins/perf/lib/patterns/review-patterns.js +558 -0
- package/plugins/perf/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/perf/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/perf/lib/perf/analyzer/index.js +22 -0
- package/plugins/perf/lib/perf/argument-parser.js +105 -0
- package/plugins/perf/lib/perf/baseline-comparator.js +50 -0
- package/plugins/perf/lib/perf/baseline-store.js +127 -0
- package/plugins/perf/lib/perf/benchmark-runner.js +399 -0
- package/plugins/perf/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/perf/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/perf/lib/perf/checkpoint.js +123 -0
- package/plugins/perf/lib/perf/code-paths.js +86 -0
- package/plugins/perf/lib/perf/consolidation.js +37 -0
- package/plugins/perf/lib/perf/constraint-runner.js +71 -0
- package/plugins/perf/lib/perf/experiment-runner.js +32 -0
- package/plugins/perf/lib/perf/index.js +41 -0
- package/plugins/perf/lib/perf/investigation-state.js +875 -0
- package/plugins/perf/lib/perf/optimization-runner.js +79 -0
- package/plugins/perf/lib/perf/profilers/go.js +22 -0
- package/plugins/perf/lib/perf/profilers/index.js +46 -0
- package/plugins/perf/lib/perf/profilers/java.js +23 -0
- package/plugins/perf/lib/perf/profilers/node.js +27 -0
- package/plugins/perf/lib/perf/profilers/python.js +23 -0
- package/plugins/perf/lib/perf/profilers/rust.js +23 -0
- package/plugins/perf/lib/perf/profiling-runner.js +56 -0
- package/plugins/perf/lib/perf/schemas.js +140 -0
- package/plugins/perf/lib/platform/detect-platform.js +413 -0
- package/plugins/perf/lib/platform/detection-configs.js +93 -0
- package/plugins/perf/lib/platform/state-dir.js +132 -0
- package/plugins/perf/lib/platform/verify-tools.js +182 -0
- package/plugins/perf/lib/repo-map/cache.js +152 -0
- package/plugins/perf/lib/repo-map/index.js +222 -0
- package/plugins/perf/lib/repo-map/installer.js +212 -0
- package/plugins/perf/lib/repo-map/queries/go.js +27 -0
- package/plugins/perf/lib/repo-map/queries/index.js +100 -0
- package/plugins/perf/lib/repo-map/queries/java.js +38 -0
- package/plugins/perf/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/perf/lib/repo-map/queries/python.js +24 -0
- package/plugins/perf/lib/repo-map/queries/rust.js +73 -0
- package/plugins/perf/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/perf/lib/repo-map/runner.js +1165 -0
- package/plugins/perf/lib/repo-map/updater.js +474 -0
- package/plugins/perf/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/perf/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/perf/lib/schemas/validator.js +247 -0
- package/plugins/perf/lib/sources/custom-handler.js +199 -0
- package/plugins/perf/lib/sources/policy-questions.js +246 -0
- package/plugins/perf/lib/sources/source-cache.js +165 -0
- package/plugins/perf/lib/state/workflow-state.js +575 -0
- package/plugins/perf/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/perf/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/perf/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/perf/lib/types/index.d.ts +84 -0
- package/plugins/perf/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/perf/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/perf/lib/utils/atomic-write.js +94 -0
- package/plugins/perf/lib/utils/cache-manager.js +159 -0
- package/plugins/perf/lib/utils/context-optimizer.js +300 -0
- package/plugins/perf/lib/utils/deprecation.js +37 -0
- package/plugins/perf/lib/utils/shell-escape.js +88 -0
- package/plugins/perf/skills/perf-analyzer/SKILL.md +37 -0
- package/plugins/perf/skills/perf-baseline-manager/SKILL.md +30 -0
- package/plugins/perf/skills/perf-benchmarker/SKILL.md +52 -0
- package/plugins/perf/skills/perf-code-paths/SKILL.md +32 -0
- package/plugins/perf/skills/perf-investigation-logger/SKILL.md +41 -0
- package/plugins/perf/skills/perf-profiler/SKILL.md +42 -0
- package/plugins/perf/skills/perf-theory-gatherer/SKILL.md +35 -0
- package/plugins/perf/skills/perf-theory-tester/SKILL.md +36 -0
- package/plugins/repo-map/.claude-plugin/plugin.json +22 -0
- package/plugins/repo-map/agents/map-validator.md +60 -0
- package/plugins/repo-map/commands/repo-map.md +133 -0
- package/plugins/repo-map/lib/adapter-transforms.js +278 -0
- package/plugins/repo-map/lib/collectors/codebase.js +392 -0
- package/plugins/repo-map/lib/collectors/docs-patterns.js +713 -0
- package/plugins/repo-map/lib/collectors/documentation.js +219 -0
- package/plugins/repo-map/lib/collectors/github.js +266 -0
- package/plugins/repo-map/lib/collectors/index.js +126 -0
- package/plugins/repo-map/lib/config/index.js +14 -0
- package/plugins/repo-map/lib/cross-platform/index.js +539 -0
- package/plugins/repo-map/lib/discovery/index.js +352 -0
- package/plugins/repo-map/lib/drift-detect/collectors.js +37 -0
- package/plugins/repo-map/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/repo-map/lib/enhance/agent-patterns.js +571 -0
- package/plugins/repo-map/lib/enhance/auto-suppression.js +622 -0
- package/plugins/repo-map/lib/enhance/benchmark.js +417 -0
- package/plugins/repo-map/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/repo-map/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/repo-map/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/repo-map/lib/enhance/docs-patterns.js +671 -0
- package/plugins/repo-map/lib/enhance/fixer.js +721 -0
- package/plugins/repo-map/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/repo-map/lib/enhance/hook-patterns.js +40 -0
- package/plugins/repo-map/lib/enhance/index.js +127 -0
- package/plugins/repo-map/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/repo-map/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/repo-map/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/repo-map/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/repo-map/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/repo-map/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/repo-map/lib/enhance/reporter.js +1348 -0
- package/plugins/repo-map/lib/enhance/security-patterns.js +284 -0
- package/plugins/repo-map/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/repo-map/lib/enhance/skill-patterns.js +147 -0
- package/plugins/repo-map/lib/enhance/suppression.js +352 -0
- package/plugins/repo-map/lib/enhance/tool-patterns.js +373 -0
- package/plugins/repo-map/lib/index.js +270 -0
- package/plugins/repo-map/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/repo-map/lib/patterns/pipeline.js +948 -0
- package/plugins/repo-map/lib/patterns/review-patterns.js +558 -0
- package/plugins/repo-map/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/repo-map/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/repo-map/lib/perf/analyzer/index.js +22 -0
- package/plugins/repo-map/lib/perf/argument-parser.js +105 -0
- package/plugins/repo-map/lib/perf/baseline-comparator.js +50 -0
- package/plugins/repo-map/lib/perf/baseline-store.js +127 -0
- package/plugins/repo-map/lib/perf/benchmark-runner.js +399 -0
- package/plugins/repo-map/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/repo-map/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/repo-map/lib/perf/checkpoint.js +123 -0
- package/plugins/repo-map/lib/perf/code-paths.js +86 -0
- package/plugins/repo-map/lib/perf/consolidation.js +37 -0
- package/plugins/repo-map/lib/perf/constraint-runner.js +71 -0
- package/plugins/repo-map/lib/perf/experiment-runner.js +32 -0
- package/plugins/repo-map/lib/perf/index.js +41 -0
- package/plugins/repo-map/lib/perf/investigation-state.js +875 -0
- package/plugins/repo-map/lib/perf/optimization-runner.js +79 -0
- package/plugins/repo-map/lib/perf/profilers/go.js +22 -0
- package/plugins/repo-map/lib/perf/profilers/index.js +46 -0
- package/plugins/repo-map/lib/perf/profilers/java.js +23 -0
- package/plugins/repo-map/lib/perf/profilers/node.js +27 -0
- package/plugins/repo-map/lib/perf/profilers/python.js +23 -0
- package/plugins/repo-map/lib/perf/profilers/rust.js +23 -0
- package/plugins/repo-map/lib/perf/profiling-runner.js +56 -0
- package/plugins/repo-map/lib/perf/schemas.js +140 -0
- package/plugins/repo-map/lib/platform/detect-platform.js +413 -0
- package/plugins/repo-map/lib/platform/detection-configs.js +93 -0
- package/plugins/repo-map/lib/platform/state-dir.js +132 -0
- package/plugins/repo-map/lib/platform/verify-tools.js +182 -0
- package/plugins/repo-map/lib/repo-map/cache.js +152 -0
- package/plugins/repo-map/lib/repo-map/index.js +222 -0
- package/plugins/repo-map/lib/repo-map/installer.js +212 -0
- package/plugins/repo-map/lib/repo-map/queries/go.js +27 -0
- package/plugins/repo-map/lib/repo-map/queries/index.js +100 -0
- package/plugins/repo-map/lib/repo-map/queries/java.js +38 -0
- package/plugins/repo-map/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/repo-map/lib/repo-map/queries/python.js +24 -0
- package/plugins/repo-map/lib/repo-map/queries/rust.js +73 -0
- package/plugins/repo-map/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/repo-map/lib/repo-map/runner.js +1165 -0
- package/plugins/repo-map/lib/repo-map/updater.js +474 -0
- package/plugins/repo-map/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/repo-map/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/repo-map/lib/schemas/validator.js +247 -0
- package/plugins/repo-map/lib/sources/custom-handler.js +199 -0
- package/plugins/repo-map/lib/sources/policy-questions.js +246 -0
- package/plugins/repo-map/lib/sources/source-cache.js +165 -0
- package/plugins/repo-map/lib/state/workflow-state.js +575 -0
- package/plugins/repo-map/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/repo-map/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/repo-map/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/repo-map/lib/types/index.d.ts +84 -0
- package/plugins/repo-map/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/repo-map/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/repo-map/lib/utils/atomic-write.js +94 -0
- package/plugins/repo-map/lib/utils/cache-manager.js +159 -0
- package/plugins/repo-map/lib/utils/context-optimizer.js +300 -0
- package/plugins/repo-map/lib/utils/deprecation.js +37 -0
- package/plugins/repo-map/lib/utils/shell-escape.js +88 -0
- package/plugins/repo-map/skills/repo-mapping/SKILL.md +83 -0
- package/plugins/ship/.claude-plugin/plugin.json +21 -0
- package/plugins/ship/commands/ship-ci-review-loop.md +472 -0
- package/plugins/ship/commands/ship-deployment.md +335 -0
- package/plugins/ship/commands/ship-error-handling.md +258 -0
- package/plugins/ship/commands/ship.md +492 -0
- package/plugins/ship/lib/adapter-transforms.js +278 -0
- package/plugins/ship/lib/collectors/codebase.js +392 -0
- package/plugins/ship/lib/collectors/docs-patterns.js +713 -0
- package/plugins/ship/lib/collectors/documentation.js +219 -0
- package/plugins/ship/lib/collectors/github.js +266 -0
- package/plugins/ship/lib/collectors/index.js +126 -0
- package/plugins/ship/lib/config/index.js +14 -0
- package/plugins/ship/lib/cross-platform/index.js +539 -0
- package/plugins/ship/lib/discovery/index.js +352 -0
- package/plugins/ship/lib/drift-detect/collectors.js +37 -0
- package/plugins/ship/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/ship/lib/enhance/agent-patterns.js +571 -0
- package/plugins/ship/lib/enhance/auto-suppression.js +622 -0
- package/plugins/ship/lib/enhance/benchmark.js +417 -0
- package/plugins/ship/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/ship/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/ship/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/ship/lib/enhance/docs-patterns.js +671 -0
- package/plugins/ship/lib/enhance/fixer.js +721 -0
- package/plugins/ship/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/ship/lib/enhance/hook-patterns.js +40 -0
- package/plugins/ship/lib/enhance/index.js +127 -0
- package/plugins/ship/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/ship/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/ship/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/ship/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/ship/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/ship/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/ship/lib/enhance/reporter.js +1348 -0
- package/plugins/ship/lib/enhance/security-patterns.js +284 -0
- package/plugins/ship/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/ship/lib/enhance/skill-patterns.js +147 -0
- package/plugins/ship/lib/enhance/suppression.js +352 -0
- package/plugins/ship/lib/enhance/tool-patterns.js +373 -0
- package/plugins/ship/lib/index.js +270 -0
- package/plugins/ship/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/ship/lib/patterns/pipeline.js +948 -0
- package/plugins/ship/lib/patterns/review-patterns.js +558 -0
- package/plugins/ship/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/ship/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/ship/lib/perf/analyzer/index.js +22 -0
- package/plugins/ship/lib/perf/argument-parser.js +105 -0
- package/plugins/ship/lib/perf/baseline-comparator.js +50 -0
- package/plugins/ship/lib/perf/baseline-store.js +127 -0
- package/plugins/ship/lib/perf/benchmark-runner.js +399 -0
- package/plugins/ship/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/ship/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/ship/lib/perf/checkpoint.js +123 -0
- package/plugins/ship/lib/perf/code-paths.js +86 -0
- package/plugins/ship/lib/perf/consolidation.js +37 -0
- package/plugins/ship/lib/perf/constraint-runner.js +71 -0
- package/plugins/ship/lib/perf/experiment-runner.js +32 -0
- package/plugins/ship/lib/perf/index.js +41 -0
- package/plugins/ship/lib/perf/investigation-state.js +875 -0
- package/plugins/ship/lib/perf/optimization-runner.js +79 -0
- package/plugins/ship/lib/perf/profilers/go.js +22 -0
- package/plugins/ship/lib/perf/profilers/index.js +46 -0
- package/plugins/ship/lib/perf/profilers/java.js +23 -0
- package/plugins/ship/lib/perf/profilers/node.js +27 -0
- package/plugins/ship/lib/perf/profilers/python.js +23 -0
- package/plugins/ship/lib/perf/profilers/rust.js +23 -0
- package/plugins/ship/lib/perf/profiling-runner.js +56 -0
- package/plugins/ship/lib/perf/schemas.js +140 -0
- package/plugins/ship/lib/platform/detect-platform.js +413 -0
- package/plugins/ship/lib/platform/detection-configs.js +93 -0
- package/plugins/ship/lib/platform/state-dir.js +132 -0
- package/plugins/ship/lib/platform/verify-tools.js +182 -0
- package/plugins/ship/lib/repo-map/cache.js +152 -0
- package/plugins/ship/lib/repo-map/index.js +222 -0
- package/plugins/ship/lib/repo-map/installer.js +212 -0
- package/plugins/ship/lib/repo-map/queries/go.js +27 -0
- package/plugins/ship/lib/repo-map/queries/index.js +100 -0
- package/plugins/ship/lib/repo-map/queries/java.js +38 -0
- package/plugins/ship/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/ship/lib/repo-map/queries/python.js +24 -0
- package/plugins/ship/lib/repo-map/queries/rust.js +73 -0
- package/plugins/ship/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/ship/lib/repo-map/runner.js +1165 -0
- package/plugins/ship/lib/repo-map/updater.js +474 -0
- package/plugins/ship/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/ship/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/ship/lib/schemas/validator.js +247 -0
- package/plugins/ship/lib/sources/custom-handler.js +199 -0
- package/plugins/ship/lib/sources/policy-questions.js +246 -0
- package/plugins/ship/lib/sources/source-cache.js +165 -0
- package/plugins/ship/lib/state/workflow-state.js +575 -0
- package/plugins/ship/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/ship/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/ship/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/ship/lib/types/index.d.ts +84 -0
- package/plugins/ship/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/ship/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/ship/lib/utils/atomic-write.js +94 -0
- package/plugins/ship/lib/utils/cache-manager.js +159 -0
- package/plugins/ship/lib/utils/context-optimizer.js +300 -0
- package/plugins/ship/lib/utils/deprecation.js +37 -0
- package/plugins/ship/lib/utils/shell-escape.js +88 -0
- package/plugins/sync-docs/.claude-plugin/plugin.json +20 -0
- package/plugins/sync-docs/agents/sync-docs-agent.md +154 -0
- package/plugins/sync-docs/commands/sync-docs.md +186 -0
- package/plugins/sync-docs/lib/adapter-transforms.js +278 -0
- package/plugins/sync-docs/lib/collectors/codebase.js +392 -0
- package/plugins/sync-docs/lib/collectors/docs-patterns.js +713 -0
- package/plugins/sync-docs/lib/collectors/documentation.js +219 -0
- package/plugins/sync-docs/lib/collectors/github.js +266 -0
- package/plugins/sync-docs/lib/collectors/index.js +126 -0
- package/plugins/sync-docs/lib/config/index.js +14 -0
- package/plugins/sync-docs/lib/cross-platform/index.js +539 -0
- package/plugins/sync-docs/lib/discovery/index.js +352 -0
- package/plugins/sync-docs/lib/drift-detect/collectors.js +37 -0
- package/plugins/sync-docs/lib/enhance/agent-analyzer.js +421 -0
- package/plugins/sync-docs/lib/enhance/agent-patterns.js +571 -0
- package/plugins/sync-docs/lib/enhance/auto-suppression.js +622 -0
- package/plugins/sync-docs/lib/enhance/benchmark.js +417 -0
- package/plugins/sync-docs/lib/enhance/cross-file-analyzer.js +930 -0
- package/plugins/sync-docs/lib/enhance/cross-file-patterns.js +370 -0
- package/plugins/sync-docs/lib/enhance/docs-analyzer.js +325 -0
- package/plugins/sync-docs/lib/enhance/docs-patterns.js +671 -0
- package/plugins/sync-docs/lib/enhance/fixer.js +721 -0
- package/plugins/sync-docs/lib/enhance/hook-analyzer.js +135 -0
- package/plugins/sync-docs/lib/enhance/hook-patterns.js +40 -0
- package/plugins/sync-docs/lib/enhance/index.js +127 -0
- package/plugins/sync-docs/lib/enhance/plugin-analyzer.js +402 -0
- package/plugins/sync-docs/lib/enhance/plugin-patterns.js +326 -0
- package/plugins/sync-docs/lib/enhance/projectmemory-analyzer.js +551 -0
- package/plugins/sync-docs/lib/enhance/projectmemory-patterns.js +617 -0
- package/plugins/sync-docs/lib/enhance/prompt-analyzer.js +457 -0
- package/plugins/sync-docs/lib/enhance/prompt-patterns.js +1484 -0
- package/plugins/sync-docs/lib/enhance/reporter.js +1348 -0
- package/plugins/sync-docs/lib/enhance/security-patterns.js +284 -0
- package/plugins/sync-docs/lib/enhance/skill-analyzer.js +182 -0
- package/plugins/sync-docs/lib/enhance/skill-patterns.js +147 -0
- package/plugins/sync-docs/lib/enhance/suppression.js +352 -0
- package/plugins/sync-docs/lib/enhance/tool-patterns.js +373 -0
- package/plugins/sync-docs/lib/index.js +270 -0
- package/plugins/sync-docs/lib/patterns/cli-enhancers.js +611 -0
- package/plugins/sync-docs/lib/patterns/pipeline.js +948 -0
- package/plugins/sync-docs/lib/patterns/review-patterns.js +558 -0
- package/plugins/sync-docs/lib/patterns/slop-analyzers.js +2305 -0
- package/plugins/sync-docs/lib/patterns/slop-patterns.js +1187 -0
- package/plugins/sync-docs/lib/perf/analyzer/index.js +22 -0
- package/plugins/sync-docs/lib/perf/argument-parser.js +105 -0
- package/plugins/sync-docs/lib/perf/baseline-comparator.js +50 -0
- package/plugins/sync-docs/lib/perf/baseline-store.js +127 -0
- package/plugins/sync-docs/lib/perf/benchmark-runner.js +399 -0
- package/plugins/sync-docs/lib/perf/breaking-point-finder.js +52 -0
- package/plugins/sync-docs/lib/perf/breaking-point-runner.js +60 -0
- package/plugins/sync-docs/lib/perf/checkpoint.js +123 -0
- package/plugins/sync-docs/lib/perf/code-paths.js +86 -0
- package/plugins/sync-docs/lib/perf/consolidation.js +37 -0
- package/plugins/sync-docs/lib/perf/constraint-runner.js +71 -0
- package/plugins/sync-docs/lib/perf/experiment-runner.js +32 -0
- package/plugins/sync-docs/lib/perf/index.js +41 -0
- package/plugins/sync-docs/lib/perf/investigation-state.js +875 -0
- package/plugins/sync-docs/lib/perf/optimization-runner.js +79 -0
- package/plugins/sync-docs/lib/perf/profilers/go.js +22 -0
- package/plugins/sync-docs/lib/perf/profilers/index.js +46 -0
- package/plugins/sync-docs/lib/perf/profilers/java.js +23 -0
- package/plugins/sync-docs/lib/perf/profilers/node.js +27 -0
- package/plugins/sync-docs/lib/perf/profilers/python.js +23 -0
- package/plugins/sync-docs/lib/perf/profilers/rust.js +23 -0
- package/plugins/sync-docs/lib/perf/profiling-runner.js +56 -0
- package/plugins/sync-docs/lib/perf/schemas.js +140 -0
- package/plugins/sync-docs/lib/platform/detect-platform.js +413 -0
- package/plugins/sync-docs/lib/platform/detection-configs.js +93 -0
- package/plugins/sync-docs/lib/platform/state-dir.js +132 -0
- package/plugins/sync-docs/lib/platform/verify-tools.js +182 -0
- package/plugins/sync-docs/lib/repo-map/cache.js +152 -0
- package/plugins/sync-docs/lib/repo-map/index.js +222 -0
- package/plugins/sync-docs/lib/repo-map/installer.js +212 -0
- package/plugins/sync-docs/lib/repo-map/queries/go.js +27 -0
- package/plugins/sync-docs/lib/repo-map/queries/index.js +100 -0
- package/plugins/sync-docs/lib/repo-map/queries/java.js +38 -0
- package/plugins/sync-docs/lib/repo-map/queries/javascript.js +55 -0
- package/plugins/sync-docs/lib/repo-map/queries/python.js +24 -0
- package/plugins/sync-docs/lib/repo-map/queries/rust.js +73 -0
- package/plugins/sync-docs/lib/repo-map/queries/typescript.js +38 -0
- package/plugins/sync-docs/lib/repo-map/runner.js +1165 -0
- package/plugins/sync-docs/lib/repo-map/updater.js +474 -0
- package/plugins/sync-docs/lib/repo-map/usage-analyzer.js +407 -0
- package/plugins/sync-docs/lib/schemas/plugin-manifest.schema.json +57 -0
- package/plugins/sync-docs/lib/schemas/validator.js +247 -0
- package/plugins/sync-docs/lib/sources/custom-handler.js +199 -0
- package/plugins/sync-docs/lib/sources/policy-questions.js +246 -0
- package/plugins/sync-docs/lib/sources/source-cache.js +165 -0
- package/plugins/sync-docs/lib/state/workflow-state.js +575 -0
- package/plugins/sync-docs/lib/types/agent-frontmatter.d.ts +134 -0
- package/plugins/sync-docs/lib/types/command-frontmatter.d.ts +107 -0
- package/plugins/sync-docs/lib/types/hook-frontmatter.d.ts +115 -0
- package/plugins/sync-docs/lib/types/index.d.ts +84 -0
- package/plugins/sync-docs/lib/types/plugin-manifest.d.ts +102 -0
- package/plugins/sync-docs/lib/types/skill-frontmatter.d.ts +89 -0
- package/plugins/sync-docs/lib/utils/atomic-write.js +94 -0
- package/plugins/sync-docs/lib/utils/cache-manager.js +159 -0
- package/plugins/sync-docs/lib/utils/context-optimizer.js +300 -0
- package/plugins/sync-docs/lib/utils/deprecation.js +37 -0
- package/plugins/sync-docs/lib/utils/shell-escape.js +88 -0
- package/plugins/sync-docs/skills/sync-docs/SKILL.md +351 -0
- package/scripts/bump-version.js +92 -0
- package/scripts/check-hardcoded-paths.js +199 -0
- package/scripts/dev-install.js +493 -0
- package/scripts/expand-templates.js +269 -0
- package/scripts/gen-adapters.js +323 -0
- package/scripts/generate-docs.js +558 -0
- package/scripts/generate-plugin-list.js +20 -0
- package/scripts/migrate-opencode.js +307 -0
- package/scripts/perf/repo-map-create.js +46 -0
- package/scripts/plugins.txt +12 -0
- package/scripts/preflight.js +1263 -0
- package/scripts/scaffold.js +490 -0
- package/scripts/setup-hooks.js +169 -0
- package/scripts/stamp-version.js +175 -0
- package/scripts/test-transform.js +85 -0
- package/scripts/validate-agent-skill-compliance.js +284 -0
- package/scripts/validate-counts.js +457 -0
- package/scripts/validate-cross-platform-docs.js +550 -0
- package/scripts/validate-opencode-install.js +182 -0
- package/site/assets/css/main.css +1525 -0
- package/site/assets/css/tokens.css +493 -0
- package/site/assets/favicon.svg +23 -0
- package/site/assets/js/main.js +801 -0
- package/site/assets/logo.png +0 -0
- package/site/assets/og-image.html +163 -0
- package/site/content.json +453 -0
- package/site/index.html +698 -0
- package/site/ux-spec.md +683 -0
- package/site/version.json +5 -0
- package/templates/agent-snippets/enhance-integration-points.md +6 -0
- package/templates/agent-snippets/enhance-skill-delegation.md +18 -0
- package/templates/agent-snippets/model-choice.md +6 -0
|
@@ -0,0 +1,1022 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: maintain-cross-platform
|
|
3
|
+
description: "Use when preparing releases, validating cross-platform compatibility, or updating installation infrastructure. Meta-skill for maintaining AgentSys's 3-platform architecture."
|
|
4
|
+
metadata:
|
|
5
|
+
short-description: "Meta-skill: maintain 3-platform architecture"
|
|
6
|
+
scope: local
|
|
7
|
+
audience: repo-maintainers
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Maintain Cross-Platform Architecture
|
|
11
|
+
|
|
12
|
+
**Purpose:** Comprehensive knowledge of AgentSys's cross-platform infrastructure for release preparation, validation, and maintenance.
|
|
13
|
+
|
|
14
|
+
**Scope:** LOCAL skill for this repository only. Contains specific file locations, transformation rules, and automation patterns for maintaining Claude Code + OpenCode + Codex CLI compatibility.
|
|
15
|
+
|
|
16
|
+
## Critical Rules
|
|
17
|
+
|
|
18
|
+
1. **3 platforms MUST work** - Claude Code, OpenCode, Codex CLI. No exceptions.
|
|
19
|
+
2. **Validation before every push** - Pre-push hook runs 6 validators automatically.
|
|
20
|
+
3. **All version fields must align** - 11 files total (package.json + 10 plugin.json files).
|
|
21
|
+
4. **Documentation must be accurate** - Counts, paths, and platform references validated by CI.
|
|
22
|
+
5. **Update this skill** - If you find misalignments or automation opportunities, update this file.
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Platform Differences (The Complete Matrix)
|
|
27
|
+
|
|
28
|
+
### Configuration
|
|
29
|
+
|
|
30
|
+
| Aspect | Claude Code | OpenCode | Codex CLI |
|
|
31
|
+
|--------|-------------|----------|-----------|
|
|
32
|
+
| **Config format** | JSON | JSON/JSONC | TOML |
|
|
33
|
+
| **Config location** | `~/.claude/settings.json` | `~/.config/opencode/opencode.json` | `~/.codex/config.toml` |
|
|
34
|
+
| **State directory** | `.claude/` | `.opencode/` | `.codex/` |
|
|
35
|
+
| **Command prefix** | `/` | `/` | `$` |
|
|
36
|
+
| **Project instructions** | `CLAUDE.md` | `AGENTS.md` (reads CLAUDE.md) | `AGENTS.md` |
|
|
37
|
+
|
|
38
|
+
### Component Locations
|
|
39
|
+
|
|
40
|
+
| Component | Claude Code | OpenCode | Codex CLI |
|
|
41
|
+
|-----------|-------------|----------|-----------|
|
|
42
|
+
| **Commands** | Plugin `commands/` | `~/.config/opencode/commands/` | N/A (use skills) |
|
|
43
|
+
| **Agents** | Plugin `agents/` | `~/.config/opencode/agents/` | N/A (use MCP) |
|
|
44
|
+
| **Skills** | Plugin `skills/` | `.opencode/skills/` (singular) | `~/.codex/skills/` |
|
|
45
|
+
| **Hooks** | Plugin `hooks/` | Plugin `hooks/` | Plugin `hooks/` |
|
|
46
|
+
|
|
47
|
+
### Install Locations (This Repo)
|
|
48
|
+
|
|
49
|
+
| Platform | Package Copy | Commands | Agents | Skills | Config |
|
|
50
|
+
|----------|--------------|----------|--------|--------|--------|
|
|
51
|
+
| Claude Code | Via marketplace | Plugin bundled | Plugin bundled | Plugin bundled | N/A |
|
|
52
|
+
| OpenCode | `~/.agentsys/` | `~/.config/opencode/commands/` | `~/.config/opencode/agents/` (29 files) | N/A | `~/.config/opencode/opencode.json` |
|
|
53
|
+
| Codex CLI | `~/.agentsys/` | N/A | N/A | `~/.codex/skills/` (9 directories) | `~/.codex/config.toml` |
|
|
54
|
+
|
|
55
|
+
### Frontmatter Differences
|
|
56
|
+
|
|
57
|
+
**Command Frontmatter:**
|
|
58
|
+
|
|
59
|
+
```yaml
|
|
60
|
+
# Claude Code
|
|
61
|
+
---
|
|
62
|
+
description: Task description
|
|
63
|
+
argument-hint: "[args]"
|
|
64
|
+
allowed-tools: Bash(git:*), Read, Task
|
|
65
|
+
---
|
|
66
|
+
|
|
67
|
+
# OpenCode (transformed by installer)
|
|
68
|
+
---
|
|
69
|
+
description: Task description
|
|
70
|
+
agent: general
|
|
71
|
+
# model field REMOVED (uses user's default model)
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
# Codex (skills use different format)
|
|
75
|
+
---
|
|
76
|
+
name: skill-name
|
|
77
|
+
description: "Use when user asks to \"trigger\". Does X."
|
|
78
|
+
---
|
|
79
|
+
```
|
|
80
|
+
|
|
81
|
+
**Agent Frontmatter:**
|
|
82
|
+
|
|
83
|
+
```yaml
|
|
84
|
+
# Claude Code
|
|
85
|
+
---
|
|
86
|
+
name: agent-name
|
|
87
|
+
description: Agent description
|
|
88
|
+
tools: Bash(git:*), Read, Edit, Task
|
|
89
|
+
model: sonnet
|
|
90
|
+
---
|
|
91
|
+
|
|
92
|
+
# OpenCode (transformed by installer)
|
|
93
|
+
---
|
|
94
|
+
name: agent-name
|
|
95
|
+
description: Agent description
|
|
96
|
+
mode: subagent
|
|
97
|
+
# model field REMOVED (OpenCode doesn't support per-agent models yet)
|
|
98
|
+
permission:
|
|
99
|
+
read: allow
|
|
100
|
+
edit: allow
|
|
101
|
+
bash: ask
|
|
102
|
+
task: allow
|
|
103
|
+
---
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
**Transformation Rules (bin/cli.js handles this):**
|
|
107
|
+
|
|
108
|
+
| Claude Code | OpenCode |
|
|
109
|
+
|-------------|----------|
|
|
110
|
+
| `tools: Bash(git:*)` | `permission: { bash: "allow" }` |
|
|
111
|
+
| `tools: Read` | `permission: { read: "allow" }` |
|
|
112
|
+
| `tools: Edit, Write` | `permission: { edit: "allow" }` |
|
|
113
|
+
| `tools: Task` | `permission: { task: "allow" }` |
|
|
114
|
+
| `model: sonnet/opus/haiku` | **REMOVED** (OpenCode uses user default) |
|
|
115
|
+
|
|
116
|
+
**CRITICAL:** The `--strip-models` flag in `bin/cli.js` removes model specifications for OpenCode users who don't have access to all three model tiers.
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## File Locations (This Repository)
|
|
121
|
+
|
|
122
|
+
### Installation Infrastructure
|
|
123
|
+
|
|
124
|
+
| File | Purpose |
|
|
125
|
+
|------|---------|
|
|
126
|
+
| `bin/cli.js` | Main installer (811 lines) - handles all 3 platforms |
|
|
127
|
+
| `scripts/setup-hooks.js` | Git hooks installer (pre-commit, pre-push) |
|
|
128
|
+
| `adapters/opencode-plugin/` | Native OpenCode TypeScript plugin |
|
|
129
|
+
| `adapters/opencode/` | OpenCode install script (legacy) |
|
|
130
|
+
| `adapters/codex/` | Codex install script (legacy) |
|
|
131
|
+
| `mcp-server/index.js` | Cross-platform MCP server |
|
|
132
|
+
|
|
133
|
+
### Validation Scripts (All in CI + Pre-Push)
|
|
134
|
+
|
|
135
|
+
| Script | What It Validates | Exit 1 If |
|
|
136
|
+
|--------|-------------------|-----------|
|
|
137
|
+
| `scripts/validate-plugins.js` | Plugin structure, plugin.json validity | Invalid plugin.json |
|
|
138
|
+
| `scripts/validate-cross-platform.js` | 3-platform compatibility | Platform-specific code |
|
|
139
|
+
| `scripts/validate-repo-consistency.js` | Repo integrity | Inconsistencies |
|
|
140
|
+
| `scripts/check-hardcoded-paths.js` | No hardcoded `.claude/` paths | Hardcoded paths found |
|
|
141
|
+
| `scripts/validate-counts.js` | Doc accuracy (agents, plugins, skills, versions) | Count mismatches |
|
|
142
|
+
| `scripts/validate-cross-platform-docs.js` | Platform docs consistency | Doc conflicts |
|
|
143
|
+
|
|
144
|
+
### Transformation Mappings (bin/cli.js)
|
|
145
|
+
|
|
146
|
+
**Search markers in bin/cli.js:**
|
|
147
|
+
- `PLUGINS_ARRAY` - Line 138 - Plugins to install for Claude Code
|
|
148
|
+
- `OPENCODE_COMMAND_MAPPINGS` - Line 242 - Commands to copy for OpenCode
|
|
149
|
+
- `CODEX_SKILL_MAPPINGS` - Line ~280 - Skills to create for Codex
|
|
150
|
+
|
|
151
|
+
**OPENCODE_COMMAND_MAPPINGS format:**
|
|
152
|
+
```javascript
|
|
153
|
+
['dest-file.md', 'plugin-name', 'source-file.md']
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
**CODEX_SKILL_MAPPINGS format:**
|
|
157
|
+
```javascript
|
|
158
|
+
['skill-name', 'plugin-name', 'source-file.md', 'Trigger description with "phrases"']
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
### Version Fields (11 Files Total)
|
|
162
|
+
|
|
163
|
+
All must have SAME version for releases:
|
|
164
|
+
|
|
165
|
+
1. `package.json` - Line 3
|
|
166
|
+
2. `.claude-plugin/plugin.json` - Root plugin
|
|
167
|
+
3. `.claude-plugin/marketplace.json` - 9 plugin entries
|
|
168
|
+
4. `mcp-server/index.js` - Search: `MCP_SERVER_VERSION`
|
|
169
|
+
5-13. `plugins/*/. claude-plugin/plugin.json` - All 9 plugins
|
|
170
|
+
|
|
171
|
+
**Quick check:**
|
|
172
|
+
```bash
|
|
173
|
+
grep -r '"version"' package.json plugins/*/.claude-plugin/plugin.json .claude-plugin/plugin.json
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
---
|
|
177
|
+
|
|
178
|
+
## Release Process (RC and Production)
|
|
179
|
+
|
|
180
|
+
### RC Release (3.X.0-rc.N)
|
|
181
|
+
|
|
182
|
+
**Step 1: Update Versions**
|
|
183
|
+
```bash
|
|
184
|
+
# Bump to RC version in ALL 11 files
|
|
185
|
+
NEW_VERSION="3.6.0-rc.1"
|
|
186
|
+
|
|
187
|
+
# package.json
|
|
188
|
+
npm version $NEW_VERSION --no-git-tag-version
|
|
189
|
+
|
|
190
|
+
# All plugin.json files (9 plugins + root)
|
|
191
|
+
find . -name "plugin.json" -path "*/.claude-plugin/*" -exec sed -i '' "s/\"version\": \".*\"/\"version\": \"$NEW_VERSION\"/" {} \;
|
|
192
|
+
|
|
193
|
+
# mcp-server/index.js
|
|
194
|
+
sed -i '' "s/version: '.*'/version: '$NEW_VERSION'/" mcp-server/index.js
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
**Step 2: Update CHANGELOG.md**
|
|
198
|
+
```markdown
|
|
199
|
+
## [3.6.0-rc.1] - 2026-01-30
|
|
200
|
+
|
|
201
|
+
### Added
|
|
202
|
+
- Feature description
|
|
203
|
+
|
|
204
|
+
### Changed
|
|
205
|
+
- Change description
|
|
206
|
+
|
|
207
|
+
### Fixed
|
|
208
|
+
- Bug fix description
|
|
209
|
+
```
|
|
210
|
+
|
|
211
|
+
**Step 3: Validate**
|
|
212
|
+
```bash
|
|
213
|
+
npm run validate # All 6 validators
|
|
214
|
+
npm test # All tests
|
|
215
|
+
npm pack --dry-run # Package builds
|
|
216
|
+
```
|
|
217
|
+
|
|
218
|
+
**Step 4: Commit and Tag**
|
|
219
|
+
```bash
|
|
220
|
+
git add -A
|
|
221
|
+
git commit -m "chore: release v3.6.0-rc.1"
|
|
222
|
+
git tag v3.6.0-rc.1
|
|
223
|
+
git push origin main --tags
|
|
224
|
+
```
|
|
225
|
+
|
|
226
|
+
**Step 5: Verify**
|
|
227
|
+
```bash
|
|
228
|
+
# Wait for GitHub Actions
|
|
229
|
+
npm view agentsys@rc version # Should show 3.6.0-rc.1
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
### Production Release (3.X.0)
|
|
233
|
+
|
|
234
|
+
Same as RC but:
|
|
235
|
+
- Remove `-rc.N` suffix from version
|
|
236
|
+
- Tag with `v3.X.0` (no suffix)
|
|
237
|
+
- npm publishes to `latest` tag automatically
|
|
238
|
+
|
|
239
|
+
---
|
|
240
|
+
|
|
241
|
+
## What Changes Per Release
|
|
242
|
+
|
|
243
|
+
### Always Update
|
|
244
|
+
|
|
245
|
+
1. **Version fields (11 files)** - See "Version Fields" section above
|
|
246
|
+
2. **CHANGELOG.md** - Add new entry at top
|
|
247
|
+
3. **Run validation** - `npm run validate` (includes all 6 validators)
|
|
248
|
+
4. **Run tests** - `npm test` (1400+ tests)
|
|
249
|
+
5. **Package build** - `npm pack --dry-run`
|
|
250
|
+
|
|
251
|
+
### If New Command Added
|
|
252
|
+
|
|
253
|
+
1. **Convention-based discovery** - Plugins auto-discovered from `plugins/*/` with `.claude-plugin/plugin.json`
|
|
254
|
+
2. **Commands auto-discovered** - From `plugins/*/commands/*.md` files
|
|
255
|
+
3. **Codex trigger phrases** - Use `codex-description` frontmatter in command files
|
|
256
|
+
4. **docs/INSTALLATION.md** - Add `/plugin install <name>@agentsys` line
|
|
257
|
+
5. **.claude-plugin/marketplace.json** - Add plugin entry to `plugins` array
|
|
258
|
+
6. **README.md** - Add to commands table
|
|
259
|
+
7. **Validation will catch** - If counts don't match (plugins count)
|
|
260
|
+
|
|
261
|
+
### If New Agent Added
|
|
262
|
+
|
|
263
|
+
1. **No changes needed** - Installer auto-copies agents to OpenCode `~/.config/opencode/agents/`
|
|
264
|
+
2. **Codex uses MCP** - Agents not directly supported, use MCP tools instead
|
|
265
|
+
3. **Validation will catch** - If file-based agent count changes
|
|
266
|
+
|
|
267
|
+
### If New Skill Added
|
|
268
|
+
|
|
269
|
+
1. **Codex requires trigger phrases** - Description must include "Use when user asks to..."
|
|
270
|
+
2. **Validation will catch** - If skill count doesn't match
|
|
271
|
+
|
|
272
|
+
### If New MCP Tool Added
|
|
273
|
+
|
|
274
|
+
1. **mcp-server/index.js** - Add to TOOLS array and toolHandlers
|
|
275
|
+
2. **.claude-plugin/marketplace.json** - Add to `mcpServer.tools` array
|
|
276
|
+
3. **bin/cli.js** - Update MCP tools console output (OpenCode + Codex)
|
|
277
|
+
4. **README.md** - Add to MCP tools table if user-facing
|
|
278
|
+
|
|
279
|
+
### If Library Module Changed
|
|
280
|
+
|
|
281
|
+
1. **lib/{module}/** - Make changes
|
|
282
|
+
2. **lib/index.js** - Export if new module
|
|
283
|
+
3. **Run sync** - `./scripts/sync-lib.sh` (or `agentsys-dev sync-lib`) copies lib/ to all 9 plugins
|
|
284
|
+
4. **Commit both** - Source in lib/ AND copies in plugins/*/lib/
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## Platform-Specific Transformations (What bin/cli.js Does)
|
|
289
|
+
|
|
290
|
+
### OpenCode Transformations
|
|
291
|
+
|
|
292
|
+
**1. Remove Model Specifications (if --strip-models)**
|
|
293
|
+
```javascript
|
|
294
|
+
// Original (Claude Code):
|
|
295
|
+
model: sonnet
|
|
296
|
+
|
|
297
|
+
// Transformed (OpenCode):
|
|
298
|
+
(field removed entirely)
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
**Why:** Not all OpenCode users have access to all three model tiers. Uses user's default model instead.
|
|
302
|
+
|
|
303
|
+
**2. Transform Tools to Permissions**
|
|
304
|
+
```javascript
|
|
305
|
+
// Original:
|
|
306
|
+
tools: Bash(git:*), Read, Edit, Task
|
|
307
|
+
|
|
308
|
+
// Transformed:
|
|
309
|
+
permission:
|
|
310
|
+
bash: allow
|
|
311
|
+
read: allow
|
|
312
|
+
edit: allow
|
|
313
|
+
task: allow
|
|
314
|
+
```
|
|
315
|
+
|
|
316
|
+
**3. Replace Environment Variables**
|
|
317
|
+
```javascript
|
|
318
|
+
// Original:
|
|
319
|
+
${CLAUDE_PLUGIN_ROOT}
|
|
320
|
+
|
|
321
|
+
// Transformed:
|
|
322
|
+
${PLUGIN_ROOT}
|
|
323
|
+
```
|
|
324
|
+
|
|
325
|
+
**4. Normalize Windows Paths in require()**
|
|
326
|
+
```javascript
|
|
327
|
+
// Original:
|
|
328
|
+
require('${CLAUDE_PLUGIN_ROOT}/lib/module.js')
|
|
329
|
+
|
|
330
|
+
// Transformed:
|
|
331
|
+
require('${PLUGIN_ROOT}'.replace(/\\/g, '/') + '/lib/module.js')
|
|
332
|
+
```
|
|
333
|
+
|
|
334
|
+
**Why:** Windows backslashes (`C:\Users\...`) break JavaScript string escaping.
|
|
335
|
+
|
|
336
|
+
### Codex Transformations
|
|
337
|
+
|
|
338
|
+
**1. Command → Skill Conversion**
|
|
339
|
+
```javascript
|
|
340
|
+
// Commands become skills with trigger phrases
|
|
341
|
+
// Original command: /next-task
|
|
342
|
+
// Becomes: $next-task with SKILL.md
|
|
343
|
+
|
|
344
|
+
// SKILL.md requires:
|
|
345
|
+
---
|
|
346
|
+
name: next-task
|
|
347
|
+
description: "Use when user asks to \"find next task\", \"automate workflow\". Master orchestrator."
|
|
348
|
+
---
|
|
349
|
+
```
|
|
350
|
+
|
|
351
|
+
**2. Agent Logic → Inline in Skills**
|
|
352
|
+
- Agents not supported directly in Codex
|
|
353
|
+
- Agent workflows embedded in skill instructions
|
|
354
|
+
- Or use MCP tools to invoke agent logic
|
|
355
|
+
|
|
356
|
+
---
|
|
357
|
+
|
|
358
|
+
## Validation Suite (Pre-Push + CI)
|
|
359
|
+
|
|
360
|
+
### validate:plugins
|
|
361
|
+
**File:** `scripts/validate-plugins.js`
|
|
362
|
+
**Checks:**
|
|
363
|
+
- plugin.json structure validity
|
|
364
|
+
- Required fields present
|
|
365
|
+
- Commands/agents/skills exist as declared
|
|
366
|
+
|
|
367
|
+
**Exit 1 if:** Invalid plugin.json
|
|
368
|
+
|
|
369
|
+
### validate:cross-platform
|
|
370
|
+
**File:** `scripts/validate-cross-platform.js`
|
|
371
|
+
**Checks:**
|
|
372
|
+
- Code works on all 3 platforms
|
|
373
|
+
- No platform-specific assumptions
|
|
374
|
+
- Proper use of AI_STATE_DIR
|
|
375
|
+
|
|
376
|
+
**Exit 1 if:** Platform-specific code detected
|
|
377
|
+
|
|
378
|
+
### validate:consistency
|
|
379
|
+
**File:** `scripts/validate-repo-consistency.js`
|
|
380
|
+
**Checks:**
|
|
381
|
+
- Repository integrity
|
|
382
|
+
- File structure consistency
|
|
383
|
+
|
|
384
|
+
**Exit 1 if:** Inconsistencies found
|
|
385
|
+
|
|
386
|
+
### validate:paths
|
|
387
|
+
**File:** `scripts/check-hardcoded-paths.js`
|
|
388
|
+
**Checks:**
|
|
389
|
+
- No hardcoded `.claude/` paths in agents/commands/skills
|
|
390
|
+
- Excludes: docs, SKILL.md in enhance/, RESEARCH.md, examples
|
|
391
|
+
|
|
392
|
+
**Patterns detected:**
|
|
393
|
+
```regex
|
|
394
|
+
/\.claude\/(?!.*\(example\)|.*Platform|.*State directory)/
|
|
395
|
+
/\.opencode\/(?!.*\(example\)|.*Platform)/
|
|
396
|
+
/\.codex\/(?!.*\(example\)|.*Platform)/
|
|
397
|
+
```
|
|
398
|
+
|
|
399
|
+
**Safe contexts (skipped):**
|
|
400
|
+
- Documentation tables (`| State Dir |`)
|
|
401
|
+
- Platform comparison examples
|
|
402
|
+
- Skill documentation (enhance/* SKILL.md)
|
|
403
|
+
- Checklist references
|
|
404
|
+
|
|
405
|
+
**Exit 1 if:** Hardcoded paths found outside safe contexts
|
|
406
|
+
|
|
407
|
+
### validate:counts
|
|
408
|
+
**File:** `scripts/validate-counts.js`
|
|
409
|
+
**Checks:**
|
|
410
|
+
- Plugin count (9) across README, CLAUDE.md, AGENTS.md, package.json, docs
|
|
411
|
+
- Agent count (39 total = 29 file-based + 10 role-based) across all docs
|
|
412
|
+
- Skill count (23) across all docs
|
|
413
|
+
- Version alignment (package.json matches all 10 plugin.json files)
|
|
414
|
+
- CLAUDE.md ↔ AGENTS.md critical rules alignment (>90% similarity)
|
|
415
|
+
|
|
416
|
+
**Actual counts (filesystem):**
|
|
417
|
+
- Plugins: 9 directories in `plugins/`
|
|
418
|
+
- File-based agents: 29 .md files in `plugins/*/agents/`
|
|
419
|
+
- Role-based agents: 10 (from audit-project, defined inline)
|
|
420
|
+
- Skills: 23 SKILL.md files in `plugins/*/skills/*/SKILL.md`
|
|
421
|
+
|
|
422
|
+
**Smart validation:**
|
|
423
|
+
- Accepts "39 agents" or "39 agents (29 file-based + 10 role-based)"
|
|
424
|
+
- Skips plugin-specific counts like "next-task (12 agents)"
|
|
425
|
+
- Only validates top-level totals
|
|
426
|
+
|
|
427
|
+
**Exit 1 if:** Count mismatches or version misalignment
|
|
428
|
+
|
|
429
|
+
### validate:platform-docs
|
|
430
|
+
**File:** `scripts/validate-cross-platform-docs.js`
|
|
431
|
+
**Checks:**
|
|
432
|
+
- Command prefix consistency (/ vs $)
|
|
433
|
+
- State directory references platform-appropriate
|
|
434
|
+
- Feature parity (all 9 commands documented for all platforms)
|
|
435
|
+
- Installation instructions consistent
|
|
436
|
+
- MCP server configurations correct
|
|
437
|
+
|
|
438
|
+
**Smart validation:**
|
|
439
|
+
- Skips comparison tables
|
|
440
|
+
- Skips checklist references
|
|
441
|
+
- Skips skill name mentions (like `enhance-claude-memory`)
|
|
442
|
+
- Skips documentation examples
|
|
443
|
+
|
|
444
|
+
**Exit 1 if:** Platform conflicts or missing features
|
|
445
|
+
|
|
446
|
+
---
|
|
447
|
+
|
|
448
|
+
## Pre-Push Hook (Automatic Enforcement)
|
|
449
|
+
|
|
450
|
+
**File:** `scripts/setup-hooks.js` → Creates `.git/hooks/pre-push`
|
|
451
|
+
|
|
452
|
+
**Phase 1: Validation Suite**
|
|
453
|
+
```bash
|
|
454
|
+
npm run validate # Runs all 6 validators
|
|
455
|
+
```
|
|
456
|
+
Blocks if any validator fails.
|
|
457
|
+
|
|
458
|
+
**Phase 2: Enhanced Content Check**
|
|
459
|
+
Detects modified:
|
|
460
|
+
- `agents/*.md`
|
|
461
|
+
- `skills/*/SKILL.md`
|
|
462
|
+
- `hooks/*.md`
|
|
463
|
+
- `prompts/*.md`
|
|
464
|
+
|
|
465
|
+
Prompts: "Have you run /enhance on these files? (y/N)"
|
|
466
|
+
Blocks if "N" (per CLAUDE.md Critical Rule #7).
|
|
467
|
+
|
|
468
|
+
**Phase 3: Release Tag Validation**
|
|
469
|
+
If pushing version tag (v*):
|
|
470
|
+
- Runs `npm test`
|
|
471
|
+
- Runs `npm pack --dry-run`
|
|
472
|
+
- Blocks if either fails
|
|
473
|
+
|
|
474
|
+
**Skip hook:** `git push --no-verify` (use with caution)
|
|
475
|
+
|
|
476
|
+
---
|
|
477
|
+
|
|
478
|
+
## Installer Deep Dive (bin/cli.js)
|
|
479
|
+
|
|
480
|
+
### Interactive Flow
|
|
481
|
+
|
|
482
|
+
1. **Platform Selection** - Multi-select: Claude Code, OpenCode, Codex CLI
|
|
483
|
+
2. **Clean Old Installation** - Removes `~/.agentsys/` if exists
|
|
484
|
+
3. **Copy Package** - From npm global to `~/.agentsys/`
|
|
485
|
+
4. **Install Dependencies** - Runs `npm install --production` in package and mcp-server
|
|
486
|
+
5. **Per-Platform Installation:**
|
|
487
|
+
- Claude Code: Adds marketplace, installs 9 plugins
|
|
488
|
+
- OpenCode: Copies commands, agents; updates config; installs native plugin
|
|
489
|
+
- Codex: Creates skills with trigger phrases; updates config
|
|
490
|
+
|
|
491
|
+
### Key Functions
|
|
492
|
+
|
|
493
|
+
**installForClaude()** - Line 116
|
|
494
|
+
- Adds marketplace: `claude plugin marketplace add avifenesh/agentsys`
|
|
495
|
+
- Installs 9 plugins: `claude plugin install {plugin}@agentsys`
|
|
496
|
+
- Commands: /next-task, /ship, /deslop, /audit-project, /drift-detect, /enhance, /perf, /sync-docs, /repo-map
|
|
497
|
+
|
|
498
|
+
**installForOpenCode(installDir, options)** - Line 165
|
|
499
|
+
- Creates dirs: `~/.config/opencode/commands/`, `~/.config/opencode/plugins/agentsys.ts`
|
|
500
|
+
- Copies native plugin from `adapters/opencode-plugin/`
|
|
501
|
+
- Transforms commands using `OPENCODE_COMMAND_MAPPINGS`
|
|
502
|
+
- Transforms agents (tools → permissions, strips models if --strip-models)
|
|
503
|
+
- Updates `~/.config/opencode/opencode.json` with MCP config
|
|
504
|
+
|
|
505
|
+
**installForCodex(installDir)** - Line 330+
|
|
506
|
+
- Creates dir: `~/.codex/skills/`
|
|
507
|
+
- Creates SKILL.md files using `CODEX_SKILL_MAPPINGS`
|
|
508
|
+
- Each skill gets trigger-phrase description
|
|
509
|
+
- Updates `~/.codex/config.toml` with MCP config
|
|
510
|
+
|
|
511
|
+
### Command Mappings (OpenCode)
|
|
512
|
+
|
|
513
|
+
**OPENCODE_COMMAND_MAPPINGS** - Line ~242:
|
|
514
|
+
```javascript
|
|
515
|
+
const commandMappings = [
|
|
516
|
+
['deslop.md', 'deslop', 'deslop.md'],
|
|
517
|
+
['enhance.md', 'enhance', 'enhance.md'],
|
|
518
|
+
['next-task.md', 'next-task', 'next-task.md'],
|
|
519
|
+
['delivery-approval.md', 'next-task', 'delivery-approval.md'],
|
|
520
|
+
['sync-docs.md', 'sync-docs', 'sync-docs.md'],
|
|
521
|
+
['audit-project.md', 'audit-project', 'audit-project.md'],
|
|
522
|
+
['drift-detect.md', 'drift-detect', 'drift-detect.md'],
|
|
523
|
+
['repo-map.md', 'repo-map', 'repo-map.md'],
|
|
524
|
+
['perf.md', 'perf', 'perf.md'],
|
|
525
|
+
['ship.md', 'ship', 'ship.md']
|
|
526
|
+
];
|
|
527
|
+
```
|
|
528
|
+
|
|
529
|
+
### Skill Mappings (Codex)
|
|
530
|
+
|
|
531
|
+
**CODEX_SKILL_MAPPINGS** - Line ~280+:
|
|
532
|
+
```javascript
|
|
533
|
+
const skillMappings = [
|
|
534
|
+
['next-task', 'next-task', 'next-task.md',
|
|
535
|
+
'Use when user asks to "find next task", "automate workflow". Master workflow orchestrator.'],
|
|
536
|
+
['ship', 'ship', 'ship.md',
|
|
537
|
+
'Use when user asks to "create PR", "ship changes", "merge PR". Complete PR workflow.'],
|
|
538
|
+
// ... 7 more
|
|
539
|
+
];
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
---
|
|
543
|
+
|
|
544
|
+
## Adding New Features (Step-by-Step)
|
|
545
|
+
|
|
546
|
+
### New Command (e.g., /my-command)
|
|
547
|
+
|
|
548
|
+
**1. Create command file:**
|
|
549
|
+
```bash
|
|
550
|
+
plugins/my-plugin/commands/my-command.md
|
|
551
|
+
```
|
|
552
|
+
|
|
553
|
+
**2. Update bin/cli.js - 3 locations:**
|
|
554
|
+
|
|
555
|
+
**a) PLUGINS_ARRAY (if new plugin):**
|
|
556
|
+
```javascript
|
|
557
|
+
// Line ~138
|
|
558
|
+
const plugins = ['next-task', 'ship', ..., 'my-plugin'];
|
|
559
|
+
```
|
|
560
|
+
|
|
561
|
+
**b) OPENCODE_COMMAND_MAPPINGS:**
|
|
562
|
+
```javascript
|
|
563
|
+
// Line ~242
|
|
564
|
+
['my-command.md', 'my-plugin', 'my-command.md'],
|
|
565
|
+
```
|
|
566
|
+
|
|
567
|
+
**c) CODEX_SKILL_MAPPINGS:**
|
|
568
|
+
```javascript
|
|
569
|
+
// Line ~280
|
|
570
|
+
['my-command', 'my-plugin', 'my-command.md',
|
|
571
|
+
'Use when user asks to "trigger phrase". Description of capability.'],
|
|
572
|
+
```
|
|
573
|
+
|
|
574
|
+
**3. Update marketplace.json:**
|
|
575
|
+
```json
|
|
576
|
+
// .claude-plugin/marketplace.json - Add to plugins array
|
|
577
|
+
{
|
|
578
|
+
"name": "my-plugin",
|
|
579
|
+
"version": "3.5.0",
|
|
580
|
+
"description": "...",
|
|
581
|
+
"path": "plugins/my-plugin"
|
|
582
|
+
}
|
|
583
|
+
```
|
|
584
|
+
|
|
585
|
+
**4. Create plugin.json:**
|
|
586
|
+
```bash
|
|
587
|
+
plugins/my-plugin/.claude-plugin/plugin.json
|
|
588
|
+
```
|
|
589
|
+
|
|
590
|
+
**5. Update docs:**
|
|
591
|
+
- `docs/INSTALLATION.md` - Add install command
|
|
592
|
+
- `README.md` - Add to commands table
|
|
593
|
+
- CHANGELOG.md - Add under "Added"
|
|
594
|
+
|
|
595
|
+
**6. Validate:**
|
|
596
|
+
```bash
|
|
597
|
+
npm run validate # Will catch missing mappings
|
|
598
|
+
```
|
|
599
|
+
|
|
600
|
+
### New Agent (e.g., my-agent)
|
|
601
|
+
|
|
602
|
+
**1. Create agent file:**
|
|
603
|
+
```bash
|
|
604
|
+
plugins/my-plugin/agents/my-agent.md
|
|
605
|
+
```
|
|
606
|
+
|
|
607
|
+
With proper frontmatter:
|
|
608
|
+
```yaml
|
|
609
|
+
---
|
|
610
|
+
name: my-agent
|
|
611
|
+
description: Brief description
|
|
612
|
+
tools: Bash(git:*), Read, Edit
|
|
613
|
+
model: sonnet
|
|
614
|
+
---
|
|
615
|
+
```
|
|
616
|
+
|
|
617
|
+
**2. Installer handles automatically:**
|
|
618
|
+
- ✅ Copies to `~/.config/opencode/agents/my-agent.md`
|
|
619
|
+
- ✅ Transforms frontmatter (tools → permissions)
|
|
620
|
+
- ✅ Strips model if --strip-models flag
|
|
621
|
+
- ✅ Normalizes Windows paths in require()
|
|
622
|
+
|
|
623
|
+
**3. No Codex changes needed** - Codex uses MCP, not agents
|
|
624
|
+
|
|
625
|
+
**4. Validate:**
|
|
626
|
+
```bash
|
|
627
|
+
npm run validate:counts # Will update agent count if added
|
|
628
|
+
```
|
|
629
|
+
|
|
630
|
+
### New Skill (e.g., my-skill)
|
|
631
|
+
|
|
632
|
+
**1. Create skill directory and file:**
|
|
633
|
+
```bash
|
|
634
|
+
plugins/my-plugin/skills/my-skill/SKILL.md
|
|
635
|
+
```
|
|
636
|
+
|
|
637
|
+
With frontmatter:
|
|
638
|
+
```yaml
|
|
639
|
+
---
|
|
640
|
+
name: my-skill
|
|
641
|
+
description: "Use when user asks to \"trigger\". Description."
|
|
642
|
+
metadata:
|
|
643
|
+
short-description: "Brief"
|
|
644
|
+
---
|
|
645
|
+
```
|
|
646
|
+
|
|
647
|
+
**2. If user-invocable (Codex):**
|
|
648
|
+
Add to CODEX_SKILL_MAPPINGS in bin/cli.js
|
|
649
|
+
|
|
650
|
+
**3. Validate:**
|
|
651
|
+
```bash
|
|
652
|
+
npm run validate:counts # Will check skill count matches
|
|
653
|
+
```
|
|
654
|
+
|
|
655
|
+
### New MCP Tool
|
|
656
|
+
|
|
657
|
+
**1. Add to mcp-server/index.js:**
|
|
658
|
+
|
|
659
|
+
**a) TOOLS array:**
|
|
660
|
+
```javascript
|
|
661
|
+
const TOOLS = [
|
|
662
|
+
// ...
|
|
663
|
+
{
|
|
664
|
+
name: 'my_tool',
|
|
665
|
+
description: 'Tool description',
|
|
666
|
+
inputSchema: {
|
|
667
|
+
type: 'object',
|
|
668
|
+
properties: { param: { type: 'string' } },
|
|
669
|
+
required: ['param']
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
];
|
|
673
|
+
```
|
|
674
|
+
|
|
675
|
+
**b) toolHandlers object:**
|
|
676
|
+
```javascript
|
|
677
|
+
const toolHandlers = {
|
|
678
|
+
// ...
|
|
679
|
+
my_tool: async (params) => {
|
|
680
|
+
// Implementation
|
|
681
|
+
return xplat.successResponse({ result: 'data' });
|
|
682
|
+
}
|
|
683
|
+
};
|
|
684
|
+
```
|
|
685
|
+
|
|
686
|
+
**2. Update marketplace.json:**
|
|
687
|
+
```json
|
|
688
|
+
// .claude-plugin/marketplace.json
|
|
689
|
+
"mcpServer": {
|
|
690
|
+
"tools": ["workflow_status", ..., "my_tool"]
|
|
691
|
+
}
|
|
692
|
+
```
|
|
693
|
+
|
|
694
|
+
**3. Update docs:**
|
|
695
|
+
- `README.md` - Add to features if user-facing
|
|
696
|
+
|
|
697
|
+
---
|
|
698
|
+
|
|
699
|
+
## Common Release Pitfalls (And How Validators Catch Them)
|
|
700
|
+
|
|
701
|
+
### Pitfall 1: Forgot to Update Plugin Version
|
|
702
|
+
```bash
|
|
703
|
+
# Symptoms:
|
|
704
|
+
- package.json says 3.6.0
|
|
705
|
+
- plugins/next-task/.claude-plugin/plugin.json says 3.5.0
|
|
706
|
+
|
|
707
|
+
# Caught by:
|
|
708
|
+
npm run validate:counts
|
|
709
|
+
# → [ERROR] Version misalignment
|
|
710
|
+
```
|
|
711
|
+
|
|
712
|
+
### Pitfall 2: Hardcoded .claude/ Path
|
|
713
|
+
```bash
|
|
714
|
+
# Symptoms:
|
|
715
|
+
- Agent contains: `.claude/flow.json`
|
|
716
|
+
- OpenCode and Codex break
|
|
717
|
+
|
|
718
|
+
# Caught by:
|
|
719
|
+
npm run validate:paths
|
|
720
|
+
# → [ERROR] Hardcoded path found in agents/my-agent.md:42
|
|
721
|
+
```
|
|
722
|
+
|
|
723
|
+
### Pitfall 3: Agent Count Mismatch
|
|
724
|
+
```bash
|
|
725
|
+
# Symptoms:
|
|
726
|
+
- Added new agent
|
|
727
|
+
- README still says "39 agents"
|
|
728
|
+
- Actually 40 now
|
|
729
|
+
|
|
730
|
+
# Caught by:
|
|
731
|
+
npm run validate:counts
|
|
732
|
+
# → [ERROR] README.md agents: Expected 40, Actual 39
|
|
733
|
+
```
|
|
734
|
+
|
|
735
|
+
### Pitfall 4: Missing Trigger Phrase (Codex)
|
|
736
|
+
```bash
|
|
737
|
+
# Symptoms:
|
|
738
|
+
- Codex skill has: description: "Master orchestrator"
|
|
739
|
+
- No trigger phrases
|
|
740
|
+
- Codex doesn't know when to invoke
|
|
741
|
+
|
|
742
|
+
# Caught by:
|
|
743
|
+
/enhance --focus=skills
|
|
744
|
+
# → [MEDIUM] Description missing trigger phrases
|
|
745
|
+
```
|
|
746
|
+
|
|
747
|
+
### Pitfall 5: OpenCode Label Too Long
|
|
748
|
+
```bash
|
|
749
|
+
# Symptoms:
|
|
750
|
+
- AskUserQuestion label: "#123: Fix authentication timeout in ProfileScreen component"
|
|
751
|
+
- 65 characters
|
|
752
|
+
- OpenCode throws error
|
|
753
|
+
|
|
754
|
+
# Prevention:
|
|
755
|
+
Use truncateLabel() function in task-discoverer agent
|
|
756
|
+
Max 30 chars for OpenCode compatibility
|
|
757
|
+
```
|
|
758
|
+
|
|
759
|
+
### Pitfall 6: Forgot to Run /enhance
|
|
760
|
+
```bash
|
|
761
|
+
# Symptoms:
|
|
762
|
+
- Modified agents/skills
|
|
763
|
+
- Didn't run /enhance
|
|
764
|
+
- Pushed anyway
|
|
765
|
+
|
|
766
|
+
# Caught by:
|
|
767
|
+
Pre-push hook prompts: "Have you run /enhance? (y/N)"
|
|
768
|
+
Blocks push if "N"
|
|
769
|
+
```
|
|
770
|
+
|
|
771
|
+
---
|
|
772
|
+
|
|
773
|
+
## Automation Opportunities (Always Consider)
|
|
774
|
+
|
|
775
|
+
### Current Automations
|
|
776
|
+
|
|
777
|
+
1. ✅ **lib/ sync** - Pre-commit hook auto-syncs lib/ to plugins/
|
|
778
|
+
2. ✅ **Validation** - Pre-push hook runs 6 validators
|
|
779
|
+
3. ✅ **Agent transformation** - Installer auto-transforms frontmatter
|
|
780
|
+
4. ✅ **Model stripping** - `--strip-models` flag for OpenCode
|
|
781
|
+
5. ✅ **Version checking** - validate:counts catches misalignment
|
|
782
|
+
6. ✅ **Path checking** - validate:paths catches hardcoded paths
|
|
783
|
+
7. ✅ **/enhance enforcement** - Pre-push hook prompts
|
|
784
|
+
|
|
785
|
+
### Potential Improvements
|
|
786
|
+
|
|
787
|
+
**1. Version Bump Automation**
|
|
788
|
+
```bash
|
|
789
|
+
# Current: Manual find/replace in 11 files
|
|
790
|
+
# Opportunity: Script that updates all version fields atomically
|
|
791
|
+
# Script: scripts/bump-version.js <new-version>
|
|
792
|
+
```
|
|
793
|
+
|
|
794
|
+
**2. CHANGELOG Entry Generation**
|
|
795
|
+
```bash
|
|
796
|
+
# Current: Manual entry creation
|
|
797
|
+
# Opportunity: Parse git log since last tag, categorize commits
|
|
798
|
+
# Script: scripts/generate-changelog-entry.js
|
|
799
|
+
```
|
|
800
|
+
|
|
801
|
+
**3. Cross-Platform Install Test**
|
|
802
|
+
```bash
|
|
803
|
+
# Current: Manual testing on each platform
|
|
804
|
+
# Opportunity: Docker containers for each platform, automated smoke tests
|
|
805
|
+
# Script: scripts/test-install-all-platforms.sh
|
|
806
|
+
```
|
|
807
|
+
|
|
808
|
+
**4. Agent Count Auto-Update**
|
|
809
|
+
```bash
|
|
810
|
+
# Current: Manual count updates in docs
|
|
811
|
+
# Opportunity: Extract counts from filesystem, update docs automatically
|
|
812
|
+
# Script: scripts/update-doc-counts.js
|
|
813
|
+
```
|
|
814
|
+
|
|
815
|
+
**5. Marketplace.json Sync**
|
|
816
|
+
```bash
|
|
817
|
+
# Current: Manual updates to .claude-plugin/marketplace.json
|
|
818
|
+
# Opportunity: Generate from plugins/ directory structure
|
|
819
|
+
# Script: scripts/sync-marketplace-manifest.js
|
|
820
|
+
```
|
|
821
|
+
|
|
822
|
+
**If you identify more automation opportunities, ADD THEM HERE.**
|
|
823
|
+
|
|
824
|
+
---
|
|
825
|
+
|
|
826
|
+
## Your Responsibilities (Agent Using This Skill)
|
|
827
|
+
|
|
828
|
+
### Before Push
|
|
829
|
+
|
|
830
|
+
1. **Run validations:**
|
|
831
|
+
```bash
|
|
832
|
+
npm run validate
|
|
833
|
+
```
|
|
834
|
+
Fix any issues found.
|
|
835
|
+
|
|
836
|
+
2. **If modified enhanced content (agents/skills/hooks/prompts):**
|
|
837
|
+
```bash
|
|
838
|
+
/enhance
|
|
839
|
+
```
|
|
840
|
+
Address HIGH certainty findings.
|
|
841
|
+
|
|
842
|
+
3. **Check for misalignments in this skill:**
|
|
843
|
+
- New script added but not documented here?
|
|
844
|
+
- New platform difference discovered?
|
|
845
|
+
- New validation pattern needed?
|
|
846
|
+
- UPDATE THIS FILE if yes
|
|
847
|
+
|
|
848
|
+
4. **Think about automation:**
|
|
849
|
+
- Can this manual step be automated?
|
|
850
|
+
- Is there a pattern we're repeating?
|
|
851
|
+
- ADD to "Potential Improvements" section
|
|
852
|
+
|
|
853
|
+
### Before Release
|
|
854
|
+
|
|
855
|
+
1. **Read release checklist:**
|
|
856
|
+
```bash
|
|
857
|
+
cat checklists/release.md
|
|
858
|
+
```
|
|
859
|
+
|
|
860
|
+
2. **Update all 11 version fields:**
|
|
861
|
+
- Use version bump script (if exists) or manual find/replace
|
|
862
|
+
- Validate: `npm run validate:counts`
|
|
863
|
+
|
|
864
|
+
3. **Update CHANGELOG.md:**
|
|
865
|
+
- Add entry at top with date
|
|
866
|
+
- Categorize: Added/Changed/Fixed/Removed
|
|
867
|
+
|
|
868
|
+
4. **Run full validation:**
|
|
869
|
+
```bash
|
|
870
|
+
npm test # 1400+ tests
|
|
871
|
+
npm run validate # All 6 validators
|
|
872
|
+
npm pack --dry-run # Package builds
|
|
873
|
+
```
|
|
874
|
+
|
|
875
|
+
5. **Test cross-platform install:**
|
|
876
|
+
```bash
|
|
877
|
+
npm pack
|
|
878
|
+
npm install -g ./agentsys-*.tgz
|
|
879
|
+
echo "1 2 3" | agentsys # Test installer
|
|
880
|
+
```
|
|
881
|
+
|
|
882
|
+
6. **Commit and tag:**
|
|
883
|
+
```bash
|
|
884
|
+
git add -A
|
|
885
|
+
git commit -m "chore: release v3.X.0-rc.N"
|
|
886
|
+
git tag v3.X.0-rc.N
|
|
887
|
+
git push origin main --tags
|
|
888
|
+
```
|
|
889
|
+
|
|
890
|
+
7. **Verify npm publish:**
|
|
891
|
+
```bash
|
|
892
|
+
# Wait for GitHub Actions release workflow
|
|
893
|
+
npm view agentsys@rc version # For RC
|
|
894
|
+
npm view agentsys version # For production
|
|
895
|
+
```
|
|
896
|
+
|
|
897
|
+
### Update Misalignments
|
|
898
|
+
|
|
899
|
+
If you find any of these while working:
|
|
900
|
+
|
|
901
|
+
**New script not documented here:**
|
|
902
|
+
1. Read the script to understand what it does
|
|
903
|
+
2. Add to relevant section (Validation Suite, Installation, etc.)
|
|
904
|
+
3. Commit: "docs(maintain-cross-platform): document {script-name}"
|
|
905
|
+
|
|
906
|
+
**New platform difference discovered:**
|
|
907
|
+
1. Test on all 3 platforms to confirm
|
|
908
|
+
2. Add to "Platform Differences" matrix
|
|
909
|
+
3. Add to "Common Pitfalls" if it causes issues
|
|
910
|
+
4. Update relevant validation script if needed
|
|
911
|
+
|
|
912
|
+
**New validation pattern needed:**
|
|
913
|
+
1. Consider: Can existing validator be extended?
|
|
914
|
+
2. If new validator needed, create in `scripts/validate-{name}.js`
|
|
915
|
+
3. Add to `package.json` validate script
|
|
916
|
+
4. Document in "Validation Suite" section
|
|
917
|
+
5. Update "Pre-Push Hook" section if relevant
|
|
918
|
+
|
|
919
|
+
**Automation opportunity identified:**
|
|
920
|
+
1. Add to "Potential Improvements" with description
|
|
921
|
+
2. Estimate effort (simple/medium/complex)
|
|
922
|
+
3. Note dependencies (tools needed, testing required)
|
|
923
|
+
|
|
924
|
+
---
|
|
925
|
+
|
|
926
|
+
## Quick Reference: File Counts
|
|
927
|
+
|
|
928
|
+
**Plugins:** 9
|
|
929
|
+
1. next-task
|
|
930
|
+
2. enhance
|
|
931
|
+
3. ship
|
|
932
|
+
4. perf
|
|
933
|
+
5. audit-project
|
|
934
|
+
6. deslop
|
|
935
|
+
7. drift-detect
|
|
936
|
+
8. repo-map
|
|
937
|
+
9. sync-docs
|
|
938
|
+
|
|
939
|
+
**Agents:** 39 total = 29 file-based + 10 role-based
|
|
940
|
+
|
|
941
|
+
**File-based (29):** Count files in `plugins/*/agents/*.md`
|
|
942
|
+
- next-task: 12
|
|
943
|
+
- enhance: 9
|
|
944
|
+
- perf: 6
|
|
945
|
+
- drift-detect: 1
|
|
946
|
+
- repo-map: 1
|
|
947
|
+
|
|
948
|
+
**Role-based (10):** Defined inline in audit-project command
|
|
949
|
+
- code-quality-reviewer, security-expert, performance-engineer, test-quality-guardian
|
|
950
|
+
- architecture-reviewer, database-specialist, api-designer
|
|
951
|
+
- frontend-specialist, backend-specialist, devops-reviewer
|
|
952
|
+
|
|
953
|
+
**Skills:** 23 - Count SKILL.md in `plugins/*/skills/*/SKILL.md`
|
|
954
|
+
- next-task: 4 (orchestrate-review, discover-tasks, validate-delivery, update-docs)
|
|
955
|
+
- enhance: 10 (orchestrator, reporter, agent-prompts, claude-memory, docs, plugins, prompts, hooks, skills)
|
|
956
|
+
- perf: 8 (analyzer, baseline, benchmark, code-paths, investigation-logger, profile, theory, theory-tester)
|
|
957
|
+
- drift-detect: 1 (drift-analysis)
|
|
958
|
+
- repo-map: 1 (repo-mapping)
|
|
959
|
+
|
|
960
|
+
**Version Fields:** 11 files
|
|
961
|
+
- 1x package.json
|
|
962
|
+
- 1x .claude-plugin/plugin.json
|
|
963
|
+
- 9x plugins/*/.claude-plugin/plugin.json
|
|
964
|
+
- 1x mcp-server/index.js (MCP_SERVER_VERSION constant)
|
|
965
|
+
|
|
966
|
+
---
|
|
967
|
+
|
|
968
|
+
## Constraints
|
|
969
|
+
|
|
970
|
+
- **NEVER break existing functionality** - Production project with real users
|
|
971
|
+
- **ALWAYS test on all 3 platforms** - At least smoke test
|
|
972
|
+
- **ALWAYS update this skill** - If you find gaps or improvements
|
|
973
|
+
- **ALWAYS run validation** - Pre-push hook enforces this
|
|
974
|
+
- **Documentation must stay accurate** - Validators enforce this
|
|
975
|
+
|
|
976
|
+
---
|
|
977
|
+
|
|
978
|
+
## Output Format
|
|
979
|
+
|
|
980
|
+
When using this skill, output:
|
|
981
|
+
|
|
982
|
+
```markdown
|
|
983
|
+
## Cross-Platform Compatibility Check
|
|
984
|
+
|
|
985
|
+
### Validations Run
|
|
986
|
+
- [OK/ERROR] validate:plugins
|
|
987
|
+
- [OK/ERROR] validate:cross-platform
|
|
988
|
+
- [OK/ERROR] validate:consistency
|
|
989
|
+
- [OK/ERROR] validate:paths
|
|
990
|
+
- [OK/ERROR] validate:counts
|
|
991
|
+
- [OK/ERROR] validate:platform-docs
|
|
992
|
+
|
|
993
|
+
### Issues Found
|
|
994
|
+
[List any issues with file:line references]
|
|
995
|
+
|
|
996
|
+
### Misalignments in This Skill
|
|
997
|
+
[List any outdated information found in this skill]
|
|
998
|
+
|
|
999
|
+
### Automation Opportunities
|
|
1000
|
+
[List any manual steps that could be automated]
|
|
1001
|
+
|
|
1002
|
+
### Actions Taken
|
|
1003
|
+
[List files updated/created]
|
|
1004
|
+
|
|
1005
|
+
### Next Steps
|
|
1006
|
+
[List remaining work]
|
|
1007
|
+
```
|
|
1008
|
+
|
|
1009
|
+
---
|
|
1010
|
+
|
|
1011
|
+
## Version
|
|
1012
|
+
|
|
1013
|
+
**Skill Version:** 1.0.0
|
|
1014
|
+
**Last Updated:** 2026-01-30
|
|
1015
|
+
**Covers:** AgentSys v5.0.0 architecture
|
|
1016
|
+
|
|
1017
|
+
**Update this skill when:**
|
|
1018
|
+
- New platform added
|
|
1019
|
+
- New validation script created
|
|
1020
|
+
- Installation process changes
|
|
1021
|
+
- New automation implemented
|
|
1022
|
+
- Platform differences discovered
|