sneakoscope 4.8.6 → 5.1.2
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/README.md +51 -726
- package/bench/tasks/t01-off-by-one/repo/package.json +9 -0
- package/bench/tasks/t01-off-by-one/repo/src/pagination.js +5 -0
- package/bench/tasks/t01-off-by-one/repo/test.js +5 -0
- package/bench/tasks/t01-off-by-one/task.json +13 -0
- package/bench/tasks/t02-signature-cochange/repo/package.json +9 -0
- package/bench/tasks/t02-signature-cochange/repo/src/admin.js +5 -0
- package/bench/tasks/t02-signature-cochange/repo/src/audit.js +5 -0
- package/bench/tasks/t02-signature-cochange/repo/src/labels.js +3 -0
- package/bench/tasks/t02-signature-cochange/repo/src/profile.js +5 -0
- package/bench/tasks/t02-signature-cochange/repo/test.js +9 -0
- package/bench/tasks/t02-signature-cochange/task.json +12 -0
- package/bench/tasks/t03-type-puzzle/repo/package.json +9 -0
- package/bench/tasks/t03-type-puzzle/repo/src/config.js +4 -0
- package/bench/tasks/t03-type-puzzle/repo/test.js +6 -0
- package/bench/tasks/t03-type-puzzle/task.json +13 -0
- package/bench/tasks/t04-refactor-preserve/repo/package.json +9 -0
- package/bench/tasks/t04-refactor-preserve/repo/src/cart.js +8 -0
- package/bench/tasks/t04-refactor-preserve/repo/test.js +4 -0
- package/bench/tasks/t04-refactor-preserve/task.json +12 -0
- package/bench/tasks/t05-performance/repo/package.json +9 -0
- package/bench/tasks/t05-performance/repo/src/pairs.js +9 -0
- package/bench/tasks/t05-performance/repo/test.js +11 -0
- package/bench/tasks/t05-performance/task.json +12 -0
- package/bench/tasks/t06-mistake-rule/repo/package.json +9 -0
- package/bench/tasks/t06-mistake-rule/repo/src/loader.js +6 -0
- package/bench/tasks/t06-mistake-rule/repo/test.js +7 -0
- package/bench/tasks/t06-mistake-rule/task.json +12 -0
- package/config/bench-baseline.json +7 -0
- package/crates/sks-core/Cargo.lock +1 -1
- package/crates/sks-core/Cargo.toml +1 -1
- package/crates/sks-core/src/main.rs +1 -1
- package/dist/bin/install.js +35 -0
- package/dist/bin/sks.js +1 -1
- package/dist/cli/cli-theme.js +51 -0
- package/dist/cli/command-registry.js +75 -42
- package/dist/cli/help-fast.js +18 -8
- package/dist/cli/insane-search-command.js +36 -8
- package/dist/cli/install-helpers.js +147 -47
- package/dist/cli/router.js +58 -2
- package/dist/commands/codex-lb.js +6 -4
- package/dist/commands/doctor.js +146 -8
- package/dist/commands/proof.js +6 -3
- package/dist/commands/zellij-monitor-pane.js +25 -0
- package/dist/commands/zellij-slot-pane.js +39 -2
- package/dist/commands/zellij-viewport-pane.js +56 -0
- package/dist/commands/zellij.js +55 -2
- package/dist/config/skills-manifest.json +493 -0
- package/dist/core/agents/agent-conflict-graph.js +5 -0
- package/dist/core/agents/agent-lease.js +5 -0
- package/dist/core/agents/agent-ledger-schemas.js +1 -0
- package/dist/core/agents/agent-lifecycle.js +86 -35
- package/dist/core/agents/agent-orchestrator.js +287 -72
- package/dist/core/agents/agent-output-validator.js +14 -3
- package/dist/core/agents/agent-patch-queue-store.js +108 -4
- package/dist/core/agents/agent-patch-queue.js +10 -3
- package/dist/core/agents/agent-patch-schema.js +13 -0
- package/dist/core/agents/agent-proof-evidence.js +6 -1
- package/dist/core/agents/agent-runner-fake.js +40 -0
- package/dist/core/agents/agent-scheduler.js +2 -3
- package/dist/core/agents/agent-worker-pipeline.js +36 -2
- package/dist/core/agents/codex-exec-worker-adapter.js +2 -0
- package/dist/core/agents/native-cli-session-swarm.js +30 -13
- package/dist/core/agents/native-cli-worker.js +2 -1
- package/dist/core/agents/native-worker-backend-router.js +58 -1
- package/dist/core/auto-review.js +25 -4
- package/dist/core/codex/agent-config-file-repair.js +15 -2
- package/dist/core/codex/codex-config-eperm-repair.js +8 -2
- package/dist/core/codex/codex-config-guard.js +289 -0
- package/dist/core/codex/codex-config-toml.js +122 -0
- package/dist/core/codex/codex-project-config-policy.js +59 -7
- package/dist/core/codex-app/sks-menubar.js +780 -122
- package/dist/core/codex-app.js +1 -0
- package/dist/core/codex-control/codex-fake-sdk-adapter.js +6 -4
- package/dist/core/codex-control/codex-sdk-config-policy.js +2 -1
- package/dist/core/codex-control/codex-sdk-env-policy.js +1 -1
- package/dist/core/codex-control/codex-task-runner.js +32 -14
- package/dist/core/codex-control/python-codex-sdk-adapter.js +4 -1
- package/dist/core/codex-control/schemas/agent-worker-result.schema.js +12 -3
- package/dist/core/codex-hooks/codex-hook-managed-install.js +5 -0
- package/dist/core/codex-hooks/codex-hook-state-writer.js +70 -11
- package/dist/core/codex-hooks/codex-hook-trust-doctor.js +2 -2
- package/dist/core/codex-lb/codex-lb-env.js +20 -1
- package/dist/core/codex-lb/codex-lb-setup.js +2 -5
- package/dist/core/codex-native/skill-registry-ledger.js +24 -5
- package/dist/core/commands/basic-cli.js +21 -2
- package/dist/core/commands/check-command.js +37 -5
- package/dist/core/commands/command-utils.js +22 -2
- package/dist/core/commands/computer-use-command.js +62 -7
- package/dist/core/commands/db-command.js +31 -5
- package/dist/core/commands/fast-mode-command.js +39 -11
- package/dist/core/commands/gate-result-contract.js +43 -0
- package/dist/core/commands/gates-command.js +6 -1
- package/dist/core/commands/gc-command.js +29 -2
- package/dist/core/commands/goal-command.js +9 -2
- package/dist/core/commands/gx-command.js +79 -7
- package/dist/core/commands/image-ux-review-command.js +188 -13
- package/dist/core/commands/mad-db-command.js +85 -176
- package/dist/core/commands/mad-sks-command.js +248 -34
- package/dist/core/commands/menubar-command.js +146 -0
- package/dist/core/commands/naruto-command.js +64 -10
- package/dist/core/commands/pipeline-command.js +21 -2
- package/dist/core/commands/plan-command.js +76 -0
- package/dist/core/commands/ppt-command.js +159 -24
- package/dist/core/commands/qa-loop-command.js +6 -2
- package/dist/core/commands/release-command.js +55 -2
- package/dist/core/commands/research-command.js +1 -1
- package/dist/core/commands/review-command.js +217 -0
- package/dist/core/commands/route-command.js +62 -0
- package/dist/core/commands/route-success-helpers.js +59 -0
- package/dist/core/commands/run-command.js +19 -7
- package/dist/core/commands/seo-command.js +49 -1
- package/dist/core/commands/status-command.js +21 -1
- package/dist/core/commands/team-legacy-observe-command.js +221 -3
- package/dist/core/commands/ui-command.js +161 -0
- package/dist/core/commands/uninstall-command.js +312 -0
- package/dist/core/db-safety.js +7 -3
- package/dist/core/doctor/codex-startup-config-repair.js +14 -3
- package/dist/core/doctor/confirm-repair.js +27 -0
- package/dist/core/doctor/context7-mcp-repair.js +35 -7
- package/dist/core/doctor/doctor-codex-startup-repair.js +10 -3
- package/dist/core/doctor/doctor-context7-repair.js +17 -4
- package/dist/core/doctor/doctor-dirty-planner.js +27 -9
- package/dist/core/doctor/doctor-native-capability-repair.js +12 -2
- package/dist/core/doctor/doctor-readiness-matrix.js +27 -2
- package/dist/core/doctor/doctor-repair-postcheck.js +4 -0
- package/dist/core/doctor/doctor-transaction.js +21 -5
- package/dist/core/doctor/doctor-zellij-repair.js +1 -0
- package/dist/core/doctor/imagegen-repair.js +161 -0
- package/dist/core/doctor/supabase-mcp-repair.js +23 -5
- package/dist/core/feature-fixture-runner.js +2 -2
- package/dist/core/feature-fixtures.js +65 -37
- package/dist/core/feature-registry.js +106 -3
- package/dist/core/fsx.js +91 -2
- package/dist/core/hooks-runtime/skill-reconcile-preflight.js +43 -0
- package/dist/core/hooks-runtime.js +86 -46
- package/dist/core/image-ux-review/imagegen-adapter.js +48 -11
- package/dist/core/image-ux-review.js +16 -0
- package/dist/core/imagegen/imagegen-capability.js +11 -5
- package/dist/core/imagegen/require-imagegen.js +57 -0
- package/dist/core/init/skills.js +271 -14
- package/dist/core/init.js +13 -10
- package/dist/core/mad-db/mad-db-coordinator.js +96 -20
- package/dist/core/mad-db/mad-db-policy.js +12 -10
- package/dist/core/mad-sks/executors/executor-base.js +8 -2
- package/dist/core/mad-sks/executors/index.js +4 -0
- package/dist/core/mad-sks/executors/sql-plane-executor.js +194 -0
- package/dist/core/mission.js +138 -5
- package/dist/core/naruto/naruto-active-pool.js +84 -30
- package/dist/core/naruto/naruto-backpressure.js +5 -1
- package/dist/core/naruto/naruto-real-worker-child.js +10 -0
- package/dist/core/naruto/naruto-real-worker-runtime.js +9 -7
- package/dist/core/naruto/naruto-role-policy.js +3 -0
- package/dist/core/naruto/naruto-task-hints.js +10 -0
- package/dist/core/naruto/naruto-work-graph.js +8 -2
- package/dist/core/naruto/naruto-work-item.js +6 -0
- package/dist/core/naruto/resource-pressure-monitor.js +33 -15
- package/dist/core/naruto/solution-tournament.js +101 -0
- package/dist/core/permission-gates.js +30 -0
- package/dist/core/pipeline-internals/runtime-core.js +72 -222
- package/dist/core/pipeline-internals/runtime-gates.js +140 -24
- package/dist/core/ppt-review/index.js +6 -1
- package/dist/core/ppt-review/slide-imagegen-review.js +75 -10
- package/dist/core/ppt.js +70 -2
- package/dist/core/proof/auto-finalize.js +70 -11
- package/dist/core/proof/proof-schema.js +2 -0
- package/dist/core/proof/route-adapter.js +5 -1
- package/dist/core/proof/route-finalizer.js +8 -5
- package/dist/core/proof/selftest-proof-fixtures.js +18 -5
- package/dist/core/proof/validation.js +2 -0
- package/dist/core/provider/model-router.js +53 -0
- package/dist/core/questions.js +1 -1
- package/dist/core/recallpulse.js +1 -1
- package/dist/core/release/gate-manifest.js +2 -2
- package/dist/core/release/release-gate-affected-selector.js +3 -10
- package/dist/core/release/release-gate-batch-runner.js +4 -2
- package/dist/core/release/release-gate-cache-v2.js +27 -14
- package/dist/core/release/release-gate-dag.js +6 -1
- package/dist/core/release/release-gate-hermetic-env.js +10 -0
- package/dist/core/release/release-gate-node.js +3 -0
- package/dist/core/release/release-gate-resource-governor.js +1 -0
- package/dist/core/retention.js +89 -4
- package/dist/core/routes/constants.js +1 -1
- package/dist/core/routes/diagnostic-allowlist.js +55 -0
- package/dist/core/routes.js +83 -33
- package/dist/core/safety/mutation-guard.js +5 -1
- package/dist/core/skill-forge.js +9 -4
- package/dist/core/stop-gate/gate-evaluator.js +102 -0
- package/dist/core/stop-gate/stop-gate-check.js +26 -4
- package/dist/core/stop-gate/stop-gate-resolver.js +19 -3
- package/dist/core/stop-gate/stop-gate-writer.js +20 -1
- package/dist/core/team-dag.js +12 -465
- package/dist/core/team-dashboard-renderer.js +13 -94
- package/dist/core/team-live.js +68 -804
- package/dist/core/triwiki/agents-md-projector.js +184 -0
- package/dist/core/triwiki-wrongness/wrongness-schema.js +3 -1
- package/dist/core/trust-kernel/trust-kernel-schema.js +1 -0
- package/dist/core/trust-kernel/trust-report.js +1 -1
- package/dist/core/trust-kernel/trust-status.js +2 -0
- package/dist/core/ui/dashboard-html.js +111 -0
- package/dist/core/update/update-migration-state.js +383 -42
- package/dist/core/update-check.js +201 -78
- package/dist/core/verification/diff-quality.js +100 -0
- package/dist/core/verification/impact-scan.js +164 -0
- package/dist/core/verification/machine-feedback.js +146 -0
- package/dist/core/verification/mistake-rule-compiler.js +195 -0
- package/dist/core/version.js +1 -1
- package/dist/core/zellij/zellij-layout-builder.js +44 -16
- package/dist/core/zellij/zellij-monitor-renderer.js +53 -0
- package/dist/core/zellij/zellij-self-heal.js +27 -32
- package/dist/core/zellij/zellij-slot-pane-renderer.js +162 -153
- package/dist/core/zellij/zellij-slot-telemetry.js +2 -0
- package/dist/core/zellij/zellij-theme.js +67 -0
- package/dist/core/zellij/zellij-ui-mode.js +16 -0
- package/dist/core/zellij/zellij-viewport-binder.js +59 -0
- package/dist/core/zellij/zellij-worker-pane-manager.js +53 -5
- package/dist/scripts/agent-patch-swarm-gate-lib.js +2 -2
- package/dist/scripts/build-dist.js +8 -0
- package/dist/scripts/check-feature-quality.js +2 -2
- package/dist/scripts/cli-output-consistency-check.js +57 -0
- package/dist/scripts/codex-lb-fast-ui-preservation-check.js +106 -0
- package/dist/scripts/codex-lb-gpt55-fast-profile-check.js +105 -0
- package/dist/scripts/codex-lb-missing-env-regression.js +2 -3
- package/dist/scripts/codex-project-config-policy-merge-regression.js +3 -3
- package/dist/scripts/coding-bench-check.js +136 -0
- package/dist/scripts/concurrent-session-collision-check.js +67 -0
- package/dist/scripts/docs-truthfulness-check.js +1 -1
- package/dist/scripts/doctor-imagegen-repair-check.js +62 -0
- package/dist/scripts/ensure-bin-executable.js +11 -3
- package/dist/scripts/gate-policy-audit-check.js +130 -0
- package/dist/scripts/harness-benchmark-check.js +104 -0
- package/dist/scripts/hook-latency-budget-check.js +45 -0
- package/dist/scripts/legacy-update-e2e-check.js +228 -0
- package/dist/scripts/lib/codex-sdk-gate-lib.js +2 -2
- package/dist/scripts/lib/real-codex-parallel-gate.js +2 -2
- package/dist/scripts/loop-directive-check-lib.js +1 -1
- package/dist/scripts/mad-db-command-check.js +11 -8
- package/dist/scripts/mad-db-real-supabase-e2e.js +2 -2
- package/dist/scripts/mad-db-route-identity-check.js +8 -6
- package/dist/scripts/mad-db-safety-conflict-matrix-check.js +31 -8
- package/dist/scripts/mad-db-skill-policy-snapshot-check.js +4 -5
- package/dist/scripts/mad-sks-zellij-default-pane-worker-check.js +3 -2
- package/dist/scripts/mad-sks-zellij-launch-check.js +1 -1
- package/dist/scripts/naruto-zellij-dynamic-right-column-check.js +7 -7
- package/dist/scripts/parallel-claim-enforcement-check.js +14 -5
- package/dist/scripts/ppt-real-imagegen-wiring-check.js +5 -1
- package/dist/scripts/project-skill-dedupe-check.js +23 -5
- package/dist/scripts/proof-root-cause-policy-check.js +2 -0
- package/dist/scripts/release-affected-selector-check.js +2 -2
- package/dist/scripts/release-cache-glob-hashing-check.js +1 -0
- package/dist/scripts/release-dag-full-coverage-check.js +13 -4
- package/dist/scripts/release-gate-dag-runner-check.js +10 -2
- package/dist/scripts/release-gate-dag-runner.js +22 -0
- package/dist/scripts/release-gate-existence-audit.js +2 -1
- package/dist/scripts/release-gate-planner.js +2 -1
- package/dist/scripts/release-gate-script-parity-check.js +1 -1
- package/dist/scripts/release-metadata-1-19-check.js +2 -1
- package/dist/scripts/release-readiness-report.js +38 -7
- package/dist/scripts/release-stability-report-check.js +12 -8
- package/dist/scripts/search-visibility-gate-lib.js +2 -2
- package/dist/scripts/seo-geo-feature-fixture-quality-check.js +1 -1
- package/dist/scripts/skills-manifest-continuity-check.js +46 -0
- package/dist/scripts/sks-1-11-gate-lib.js +8 -6
- package/dist/scripts/sks-menubar-install-check.js +87 -21
- package/dist/scripts/sks-uninstall-regression-check.js +54 -0
- package/dist/scripts/uninstall-inventory-check.js +3 -0
- package/dist/scripts/ux-review-real-loop-fixture-check.js +9 -4
- package/dist/scripts/ux-review-run-wires-imagegen-check.js +4 -0
- package/dist/scripts/zellij-layout-valid-check.js +18 -11
- package/dist/scripts/zellij-right-column-geometry-proof.js +2 -4
- package/dist/scripts/zellij-slot-pane-renderer-check.js +9 -9
- package/dist/scripts/zellij-slot-pane-stale-detection-check.js +3 -4
- package/dist/scripts/zellij-slot-pane-telemetry-renderer-check.js +3 -2
- package/dist/scripts/zellij-slot-telemetry-renderer-check.js +4 -2
- package/dist/scripts/zellij-spawn-on-demand-layout-check.js +8 -2
- package/dist/scripts/zellij-viewport-binder-check.js +9 -0
- package/docs/assets/sneakoscope-architecture-pipeline.jpg +0 -0
- package/docs/demo.tape +28 -0
- package/package.json +70 -3
- package/schemas/codex/completion-proof.schema.json +3 -2
- package/schemas/release/release-gate-node.schema.json +2 -1
- package/dist/scripts/agent-backfill-route-blackbox.js +0 -5
- package/dist/scripts/agent-dynamic-pool-route-blackbox.js +0 -5
- package/dist/scripts/agent-parallel-write-blackbox.js +0 -56
- package/dist/scripts/agent-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/agent-route-blackbox-lib.js +0 -132
- package/dist/scripts/blackbox-command-import-smoke.js +0 -143
- package/dist/scripts/blackbox-global-shim.js +0 -77
- package/dist/scripts/blackbox-matrix.js +0 -70
- package/dist/scripts/blackbox-npx-one-shot.js +0 -69
- package/dist/scripts/blackbox-pack-install.js +0 -174
- package/dist/scripts/brand-neutrality-zero-leakage-blackbox.js +0 -4
- package/dist/scripts/build-once-runner-blackbox.js +0 -34
- package/dist/scripts/codex-0140-integration-blackbox.js +0 -13
- package/dist/scripts/codex-agent-type-blackbox.js +0 -4
- package/dist/scripts/codex-app-harness-blackbox.js +0 -4
- package/dist/scripts/codex-app-skill-agent-blackbox.js +0 -4
- package/dist/scripts/codex-hook-approval-blackbox.js +0 -4
- package/dist/scripts/codex-init-deep-directory-local-blackbox.js +0 -4
- package/dist/scripts/codex-native-feature-broker-blackbox.js +0 -4
- package/dist/scripts/codex-native-pattern-analysis-blackbox.js +0 -4
- package/dist/scripts/codex-native-read-repair-split-blackbox.js +0 -55
- package/dist/scripts/codex-native-reference-cache-blackbox.js +0 -41
- package/dist/scripts/core-skill-integrity-blackbox.js +0 -33
- package/dist/scripts/dfix-fast-blackbox-check.js +0 -37
- package/dist/scripts/dfix-parallel-write-blackbox.js +0 -48
- package/dist/scripts/dfix-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/doctor-context7-mcp-repair-blackbox.js +0 -16
- package/dist/scripts/doctor-dirty-repair-blackbox.js +0 -22
- package/dist/scripts/doctor-dirty-semantic-blackbox.js +0 -8
- package/dist/scripts/doctor-fix-production-blackbox.js +0 -26
- package/dist/scripts/doctor-native-capability-repair-blackbox.js +0 -39
- package/dist/scripts/doctor-startup-config-repair-blackbox.js +0 -13
- package/dist/scripts/doctor-supabase-mcp-repair-blackbox.js +0 -14
- package/dist/scripts/doctor-transaction-engine-blackbox.js +0 -28
- package/dist/scripts/doctor-zellij-fix-blackbox.js +0 -4
- package/dist/scripts/doctor-zellij-no-homebrew-blackbox.js +0 -4
- package/dist/scripts/doctor-zellij-upgrade-blackbox.js +0 -4
- package/dist/scripts/gate-pack-runner-blackbox.js +0 -27
- package/dist/scripts/gate-pack-v2-blackbox.js +0 -18
- package/dist/scripts/geo-cli-blackbox-check.js +0 -18
- package/dist/scripts/loop-collision-blackbox.js +0 -3
- package/dist/scripts/loop-concurrency-oversubscription-blackbox.js +0 -3
- package/dist/scripts/loop-fixture-production-misuse-blackbox.js +0 -3
- package/dist/scripts/loop-kill-interrupt-real-blackbox.js +0 -3
- package/dist/scripts/loop-merge-strategy-blackbox.js +0 -3
- package/dist/scripts/loop-mesh-production-e2e-blackbox.js +0 -3
- package/dist/scripts/loop-side-effect-blackbox.js +0 -3
- package/dist/scripts/mad-db-operation-lifecycle-blackbox.js +0 -29
- package/dist/scripts/mad-sks-actual-executor-blackbox.js +0 -5
- package/dist/scripts/mad-zellij-headless-fallback-blackbox.js +0 -4
- package/dist/scripts/mad-zellij-self-heal-blackbox.js +0 -4
- package/dist/scripts/naruto-loop-mesh-blackbox.js +0 -3
- package/dist/scripts/naruto-real-parallelism-blackbox.js +0 -307
- package/dist/scripts/naruto-worktree-coding-blackbox.js +0 -29
- package/dist/scripts/parallel-runtime-real-blackbox.js +0 -44
- package/dist/scripts/pipeline-codex-native-doctor-mad-routing-real-blackbox.js +0 -77
- package/dist/scripts/pipeline-codex-native-e2e-blackbox.js +0 -13
- package/dist/scripts/pipeline-codex-native-image-routing-real-blackbox.js +0 -50
- package/dist/scripts/pipeline-codex-native-loop-routing-real-blackbox.js +0 -74
- package/dist/scripts/pipeline-codex-native-qa-routing-real-blackbox.js +0 -51
- package/dist/scripts/pipeline-codex-native-research-routing-real-blackbox.js +0 -45
- package/dist/scripts/pipeline-execution-profile-routing-blackbox.js +0 -4
- package/dist/scripts/postinstall-global-doctor-blackbox.js +0 -12
- package/dist/scripts/ppt-full-e2e-blackbox-check.js +0 -109
- package/dist/scripts/ppt-imagegen-blackbox-check.js +0 -46
- package/dist/scripts/project-skill-dedupe-blackbox.js +0 -36
- package/dist/scripts/qa-backfill-route-blackbox.js +0 -5
- package/dist/scripts/qa-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/release-full-parallelism-blackbox.js +0 -41
- package/dist/scripts/release-triwiki-first-runner-blackbox.js +0 -48
- package/dist/scripts/release-wiring-3110-blackbox.js +0 -27
- package/dist/scripts/release-wiring-3112-blackbox.js +0 -17
- package/dist/scripts/release-wiring-3113-blackbox.js +0 -17
- package/dist/scripts/research-backfill-route-blackbox.js +0 -5
- package/dist/scripts/research-final-reviewer-blackbox.js +0 -70
- package/dist/scripts/research-stage-cycle-runtime-blackbox.js +0 -40
- package/dist/scripts/research-synthesis-writer-blackbox.js +0 -24
- package/dist/scripts/route-blackbox-realism-check.js +0 -21
- package/dist/scripts/scheduler-resource-claim-blackbox.js +0 -24
- package/dist/scripts/seo-cli-blackbox-check.js +0 -18
- package/dist/scripts/sks-3110-all-feature-regression-blackbox.js +0 -116
- package/dist/scripts/sks-3112-all-feature-regression-blackbox.js +0 -29
- package/dist/scripts/sks-3113-all-feature-regression-blackbox.js +0 -17
- package/dist/scripts/sks-400-all-feature-regression-blackbox.js +0 -21
- package/dist/scripts/sks-400-extreme-parallel-blackbox.js +0 -8
- package/dist/scripts/sks-400-five-minute-blackbox.js +0 -9
- package/dist/scripts/sks-400-legacy-purge-blackbox.js +0 -8
- package/dist/scripts/sks-401-all-feature-regression-blackbox.js +0 -46
- package/dist/scripts/sks-401-five-minute-actual-blackbox.js +0 -23
- package/dist/scripts/sks-402-all-feature-regression-blackbox.js +0 -9
- package/dist/scripts/sks-402-five-minute-real-blackbox.js +0 -22
- package/dist/scripts/sksd-warm-cache-blackbox.js +0 -12
- package/dist/scripts/supabase-secret-preservation-blackbox.js +0 -29
- package/dist/scripts/team-backfill-route-blackbox.js +0 -5
- package/dist/scripts/team-parallel-write-blackbox.js +0 -55
- package/dist/scripts/team-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/triwiki-affected-graph-blackbox.js +0 -28
- package/dist/scripts/triwiki-proof-bank-blackbox.js +0 -30
- package/dist/scripts/triwiki-proof-bank-lock-blackbox.js +0 -7
- package/dist/scripts/update-preserves-supabase-keys-blackbox.js +0 -27
- package/dist/scripts/ux-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/ux-review-imagegen-blackbox-check.js +0 -67
- package/dist/scripts/zellij-initial-main-only-blackbox.js +0 -28
- package/dist/scripts/zellij-pane-lock-concurrency-blackbox.js +0 -80
- package/dist/scripts/zellij-pane-lock-open-worker-integration-blackbox.js +0 -137
- package/dist/scripts/zellij-self-heal-typed-blackbox.js +0 -4
- package/dist/scripts/zellij-slot-telemetry-real-blackbox.js +0 -20
- package/dist/scripts/zellij-stacked-fallback-integration-blackbox.js +0 -81
- package/dist/scripts/zellij-worker-pane-real-ui-blackbox.js +0 -202
|
@@ -0,0 +1,493 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema": "sks.skills-manifest.v1",
|
|
3
|
+
"package_version": "5.1.2",
|
|
4
|
+
"skills": [
|
|
5
|
+
{
|
|
6
|
+
"canonical_name": "answer",
|
|
7
|
+
"type": "official",
|
|
8
|
+
"content_sha256": "60713f899c13699e3b331f26287a1c04d5d54e0dba35cce8e16956dece6f2160",
|
|
9
|
+
"hash_history": [],
|
|
10
|
+
"deprecated_aliases": []
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"canonical_name": "autoresearch",
|
|
14
|
+
"type": "official",
|
|
15
|
+
"content_sha256": "51a573bf4489ff5eedaae8b2619ceb7d190b5028999e3ac475abf516d44c09bc",
|
|
16
|
+
"hash_history": [],
|
|
17
|
+
"deprecated_aliases": []
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"canonical_name": "autoresearch-loop",
|
|
21
|
+
"type": "official",
|
|
22
|
+
"content_sha256": "694b350433eaa8dbc7508b9373d06c2170031dbe16d90fc98fba8a34cfd9bdb9",
|
|
23
|
+
"hash_history": [],
|
|
24
|
+
"deprecated_aliases": []
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"canonical_name": "commit",
|
|
28
|
+
"type": "official",
|
|
29
|
+
"content_sha256": "106e93dffcd465cce75d37a874f58d8f01bdb2348c6887f0d51fe7d24de7906a",
|
|
30
|
+
"hash_history": [],
|
|
31
|
+
"deprecated_aliases": []
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"canonical_name": "commit-and-push",
|
|
35
|
+
"type": "official",
|
|
36
|
+
"content_sha256": "e818c535ab15c36c8ad36d4fe4e54aa77a402905608068674c6b60c830d1a87e",
|
|
37
|
+
"hash_history": [],
|
|
38
|
+
"deprecated_aliases": []
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"canonical_name": "computer-use",
|
|
42
|
+
"type": "core",
|
|
43
|
+
"content_sha256": "e48807f0d69c4499ca93d22314207030150950d0ffa033f448681257d9db45de",
|
|
44
|
+
"hash_history": [],
|
|
45
|
+
"deprecated_aliases": []
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"canonical_name": "computer-use-fast",
|
|
49
|
+
"type": "official",
|
|
50
|
+
"content_sha256": "ee2385c268225c6e9950d4d10df759f555e2d5d0fb9122265ef1d01829a9a8b3",
|
|
51
|
+
"hash_history": [],
|
|
52
|
+
"deprecated_aliases": []
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"canonical_name": "context7-docs",
|
|
56
|
+
"type": "official",
|
|
57
|
+
"content_sha256": "65802524044ec7f72b30182b57827fdcabecfe961de4e444ff88b61a987522c7",
|
|
58
|
+
"hash_history": [],
|
|
59
|
+
"deprecated_aliases": []
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"canonical_name": "cu",
|
|
63
|
+
"type": "official",
|
|
64
|
+
"content_sha256": "446a82ad000dd817067505c81b3c3bef7f9064880dab16c976bdfb8f32942db9",
|
|
65
|
+
"hash_history": [],
|
|
66
|
+
"deprecated_aliases": []
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"canonical_name": "db",
|
|
70
|
+
"type": "official",
|
|
71
|
+
"content_sha256": "c87f491658fbd2980515fe24c429f47a1508b4245675bfa00066647046eec4ed",
|
|
72
|
+
"hash_history": [],
|
|
73
|
+
"deprecated_aliases": []
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"canonical_name": "db-safety-guard",
|
|
77
|
+
"type": "official",
|
|
78
|
+
"content_sha256": "55fafd80ab781e7054a2a9f05872c12be6ae11a4bf5cc864124a4f50f453ff4b",
|
|
79
|
+
"hash_history": [],
|
|
80
|
+
"deprecated_aliases": []
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"canonical_name": "design-artifact-expert",
|
|
84
|
+
"type": "official",
|
|
85
|
+
"content_sha256": "4f7859bce20ae4b54b18b2ffee0cbd3fe2d455f742972a3259051e2fbd458ff5",
|
|
86
|
+
"hash_history": [],
|
|
87
|
+
"deprecated_aliases": []
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"canonical_name": "design-system-builder",
|
|
91
|
+
"type": "official",
|
|
92
|
+
"content_sha256": "131d42d8a866982018af401482ffca64ad5260884bb329a94b8bfbe68bf8a664",
|
|
93
|
+
"hash_history": [],
|
|
94
|
+
"deprecated_aliases": []
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"canonical_name": "design-ui-editor",
|
|
98
|
+
"type": "official",
|
|
99
|
+
"content_sha256": "200e0a2cdb4b34237bc9f7df0b386d3ed2344507d8a4c8b4500f7c897dbc80dc",
|
|
100
|
+
"hash_history": [],
|
|
101
|
+
"deprecated_aliases": []
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"canonical_name": "dfix",
|
|
105
|
+
"type": "core",
|
|
106
|
+
"content_sha256": "16a1985bce1bd358fa3be80fbf7016c253e5360b8fc2b9f182a4ba09b63d4745",
|
|
107
|
+
"hash_history": [],
|
|
108
|
+
"deprecated_aliases": []
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"canonical_name": "fast-mode",
|
|
112
|
+
"type": "official",
|
|
113
|
+
"content_sha256": "9ab535faa315b9fdbe97d78746d532ef70743fbd7bd143efe3f648f3fcf26bc4",
|
|
114
|
+
"hash_history": [],
|
|
115
|
+
"deprecated_aliases": []
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"canonical_name": "fast-off",
|
|
119
|
+
"type": "official",
|
|
120
|
+
"content_sha256": "642c70a36e0bc0a090b842b2a727be347a5f10f14e2926564f1731f68053486c",
|
|
121
|
+
"hash_history": [],
|
|
122
|
+
"deprecated_aliases": []
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"canonical_name": "fast-on",
|
|
126
|
+
"type": "official",
|
|
127
|
+
"content_sha256": "060780cafbf637549bfb5f960aa2c78d5abd2d29a6432214b87f122592dabe39",
|
|
128
|
+
"hash_history": [],
|
|
129
|
+
"deprecated_aliases": []
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"canonical_name": "from-chat-img",
|
|
133
|
+
"type": "official",
|
|
134
|
+
"content_sha256": "a19ec76a4c1061ff8cd5d8869d67077e700625089b4897debc5527877568595a",
|
|
135
|
+
"hash_history": [],
|
|
136
|
+
"deprecated_aliases": []
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
"canonical_name": "getdesign-reference",
|
|
140
|
+
"type": "official",
|
|
141
|
+
"content_sha256": "307f83f9725d05cb1d9b03cbdd37b0c769a3b2638fc7c7a96042215f8d9c9613",
|
|
142
|
+
"hash_history": [],
|
|
143
|
+
"deprecated_aliases": []
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"canonical_name": "goal",
|
|
147
|
+
"type": "official",
|
|
148
|
+
"content_sha256": "4065a7d4a83784b06448f2b0d2c9bb2b66da7f38e6cad87165b36c57c600fc1a",
|
|
149
|
+
"hash_history": [],
|
|
150
|
+
"deprecated_aliases": []
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"canonical_name": "gx",
|
|
154
|
+
"type": "official",
|
|
155
|
+
"content_sha256": "c69ff85ad8ff98ebb3bbadf8a0fe4e35bb752e00e4d1d5f6645665f7ea0d7150",
|
|
156
|
+
"hash_history": [],
|
|
157
|
+
"deprecated_aliases": []
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"canonical_name": "gx-visual-generate",
|
|
161
|
+
"type": "official",
|
|
162
|
+
"content_sha256": "e595fdec9d180ab8b62a24efd10bc5328f0c7b46c059c9b33791a3a3758bcec4",
|
|
163
|
+
"hash_history": [],
|
|
164
|
+
"deprecated_aliases": []
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"canonical_name": "gx-visual-read",
|
|
168
|
+
"type": "official",
|
|
169
|
+
"content_sha256": "1ca14bb2d34f29cdad9761147173f1425c3633a0b5fc1380a7b16d59eb6c0d16",
|
|
170
|
+
"hash_history": [],
|
|
171
|
+
"deprecated_aliases": []
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"canonical_name": "gx-visual-validate",
|
|
175
|
+
"type": "official",
|
|
176
|
+
"content_sha256": "c7ffcfbafc7e5b3f9283093206cf98d06418664f04241b1e784b3f5ff754343e",
|
|
177
|
+
"hash_history": [],
|
|
178
|
+
"deprecated_aliases": []
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"canonical_name": "help",
|
|
182
|
+
"type": "official",
|
|
183
|
+
"content_sha256": "3082acc6e918088422f0e88f399df85aaef0c4bfe3c4e4a8e0834a901058ff89",
|
|
184
|
+
"hash_history": [],
|
|
185
|
+
"deprecated_aliases": []
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"canonical_name": "honest-mode",
|
|
189
|
+
"type": "official",
|
|
190
|
+
"content_sha256": "12911988adfcdbe84447b6088737b4225eeed65ffff227b6e5a25ecef36b194f",
|
|
191
|
+
"hash_history": [],
|
|
192
|
+
"deprecated_aliases": []
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"canonical_name": "hproof-claim-ledger",
|
|
196
|
+
"type": "official",
|
|
197
|
+
"content_sha256": "1e316d75e3e77b77f70632de135e873fb2ebfb9749fd9147a6edfdda5158dab6",
|
|
198
|
+
"hash_history": [],
|
|
199
|
+
"deprecated_aliases": []
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"canonical_name": "hproof-evidence-bind",
|
|
203
|
+
"type": "official",
|
|
204
|
+
"content_sha256": "1cd3ac3c98f2d37a99ec17911156db8161ba2c5548a6de3923ae1a8fca099518",
|
|
205
|
+
"hash_history": [],
|
|
206
|
+
"deprecated_aliases": []
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"canonical_name": "image-ux-review",
|
|
210
|
+
"type": "core",
|
|
211
|
+
"content_sha256": "ee7b79b4088ec236cfeb3957286970f63ae635f7c00b3d7cb7ee45c2deabb9b1",
|
|
212
|
+
"hash_history": [],
|
|
213
|
+
"deprecated_aliases": []
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"canonical_name": "imagegen",
|
|
217
|
+
"type": "official",
|
|
218
|
+
"content_sha256": "935ed73b10f87022457864455b65a1dac495e72c8210cfcb9a78144d61b67c0f",
|
|
219
|
+
"hash_history": [],
|
|
220
|
+
"deprecated_aliases": []
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
"canonical_name": "imagegen-source-scout",
|
|
224
|
+
"type": "official",
|
|
225
|
+
"content_sha256": "432a0b86d575f2d21458a259b297432fedf25aaa0a19c0a1f6958a2345bf0731",
|
|
226
|
+
"hash_history": [],
|
|
227
|
+
"deprecated_aliases": []
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"canonical_name": "init-deep",
|
|
231
|
+
"type": "core",
|
|
232
|
+
"content_sha256": "45a0381245a7d2bb0305a269d9feda6abc3bdc569c1e8492f6059c22928e941f",
|
|
233
|
+
"hash_history": [],
|
|
234
|
+
"deprecated_aliases": []
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"canonical_name": "insane-search",
|
|
238
|
+
"type": "official",
|
|
239
|
+
"content_sha256": "79c2615ca42c3bfd93dacae98631f1053d7fb5b704d4c908ffcd51fa0a646d67",
|
|
240
|
+
"hash_history": [],
|
|
241
|
+
"deprecated_aliases": []
|
|
242
|
+
},
|
|
243
|
+
{
|
|
244
|
+
"canonical_name": "kage-bunshin",
|
|
245
|
+
"type": "official",
|
|
246
|
+
"content_sha256": "9d386304cdf56c70f8275e528a524a48d0d994e9be5980bc75aa5ef7ab019f38",
|
|
247
|
+
"hash_history": [],
|
|
248
|
+
"deprecated_aliases": []
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
"canonical_name": "loop",
|
|
252
|
+
"type": "core",
|
|
253
|
+
"content_sha256": "68e60308a1944c5d7b1207c28ab10490155e04192915b3e7923d95088c45a33a",
|
|
254
|
+
"hash_history": [],
|
|
255
|
+
"deprecated_aliases": []
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"canonical_name": "mad-db",
|
|
259
|
+
"type": "official",
|
|
260
|
+
"content_sha256": "56dc403ad9ee561513a9f929a0e06a3ec02c2b3edf6a83fa935d9623476864ea",
|
|
261
|
+
"hash_history": [],
|
|
262
|
+
"deprecated_aliases": []
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"canonical_name": "mad-sks",
|
|
266
|
+
"type": "official",
|
|
267
|
+
"content_sha256": "c970e328447756c46bb77053e7fb3598970216547deb8066f315442f0da961d0",
|
|
268
|
+
"hash_history": [],
|
|
269
|
+
"deprecated_aliases": []
|
|
270
|
+
},
|
|
271
|
+
{
|
|
272
|
+
"canonical_name": "naruto",
|
|
273
|
+
"type": "core",
|
|
274
|
+
"content_sha256": "3d523d19e7886ab0ef9b62572df6da4fd837245bd75e4a2dfef40170c08712b0",
|
|
275
|
+
"hash_history": [],
|
|
276
|
+
"deprecated_aliases": [
|
|
277
|
+
"shadow-clone-legacy"
|
|
278
|
+
]
|
|
279
|
+
},
|
|
280
|
+
{
|
|
281
|
+
"canonical_name": "performance-evaluator",
|
|
282
|
+
"type": "official",
|
|
283
|
+
"content_sha256": "9959b2461bf29a5f9e2fb1339b0445d9543a440b71bd6f26d4ae681fc9989a02",
|
|
284
|
+
"hash_history": [],
|
|
285
|
+
"deprecated_aliases": []
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"canonical_name": "pipeline-runner",
|
|
289
|
+
"type": "official",
|
|
290
|
+
"content_sha256": "9b3f50cf84fcac1f29fb5548f3188b6a5739ded632821424fe949df81c252c19",
|
|
291
|
+
"hash_history": [],
|
|
292
|
+
"deprecated_aliases": []
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"canonical_name": "plan",
|
|
296
|
+
"type": "official",
|
|
297
|
+
"content_sha256": "476e2438cb99c26ce5d7604b2b2ec8e30db7247e97efd90f8860743cee34852e",
|
|
298
|
+
"hash_history": [],
|
|
299
|
+
"deprecated_aliases": []
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
"canonical_name": "ppt",
|
|
303
|
+
"type": "official",
|
|
304
|
+
"content_sha256": "be7bc2d4be61cbcac7b14f35fcc0890fdcff255a90105876d08c9d58867d52ac",
|
|
305
|
+
"hash_history": [],
|
|
306
|
+
"deprecated_aliases": []
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"canonical_name": "prompt-pipeline",
|
|
310
|
+
"type": "official",
|
|
311
|
+
"content_sha256": "bf3dc48b9d279a454ac826ff7929f1fd9a51667da75c7848c467b59324340009",
|
|
312
|
+
"hash_history": [],
|
|
313
|
+
"deprecated_aliases": []
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"canonical_name": "qa-loop",
|
|
317
|
+
"type": "core",
|
|
318
|
+
"content_sha256": "96187a82e955d3c71aff7e27d2d68e4c11954ccad3069ef5b62069a1ec8d78c1",
|
|
319
|
+
"hash_history": [],
|
|
320
|
+
"deprecated_aliases": [
|
|
321
|
+
"qaloop"
|
|
322
|
+
]
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"canonical_name": "reasoning-router",
|
|
326
|
+
"type": "official",
|
|
327
|
+
"content_sha256": "5a8af4b83ee1539af515c3e0070f738bc43582a4a67f86a692a692732733e3c8",
|
|
328
|
+
"hash_history": [],
|
|
329
|
+
"deprecated_aliases": []
|
|
330
|
+
},
|
|
331
|
+
{
|
|
332
|
+
"canonical_name": "reflection",
|
|
333
|
+
"type": "official",
|
|
334
|
+
"content_sha256": "acf2f0ed4ab2a162b0542f91ee0aabecdaca1160305f6cb948ad547922669210",
|
|
335
|
+
"hash_history": [],
|
|
336
|
+
"deprecated_aliases": []
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"canonical_name": "release-review",
|
|
340
|
+
"type": "official",
|
|
341
|
+
"content_sha256": "337553bc9cf0ac0c501171a8b1c65215f9d538824e4231259e9fb7e6c6e80ed9",
|
|
342
|
+
"hash_history": [],
|
|
343
|
+
"deprecated_aliases": []
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"canonical_name": "research",
|
|
347
|
+
"type": "core",
|
|
348
|
+
"content_sha256": "fd0ede8f92775e17249825f53445980af9317bc1d4c786016d08a711695795ff",
|
|
349
|
+
"hash_history": [],
|
|
350
|
+
"deprecated_aliases": []
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
"canonical_name": "research-discovery",
|
|
354
|
+
"type": "official",
|
|
355
|
+
"content_sha256": "ce83a34cc4b5b84a4ecf7188541cddf00c087764f78884d7da02aa8b4862230a",
|
|
356
|
+
"hash_history": [],
|
|
357
|
+
"deprecated_aliases": []
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"canonical_name": "review",
|
|
361
|
+
"type": "official",
|
|
362
|
+
"content_sha256": "16792f2f51b2e161ae6371a4b0da62e891e732a531e08a82a757d1d65f669c89",
|
|
363
|
+
"hash_history": [],
|
|
364
|
+
"deprecated_aliases": []
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
"canonical_name": "search-visibility-core",
|
|
368
|
+
"type": "core",
|
|
369
|
+
"content_sha256": "0f145feb5908552ec5867e52b410f567b2dc5db66c57969d786d1f23be15b588",
|
|
370
|
+
"hash_history": [],
|
|
371
|
+
"deprecated_aliases": []
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"canonical_name": "seo-geo-optimizer",
|
|
375
|
+
"type": "core",
|
|
376
|
+
"content_sha256": "9bb38a7d7791670402793492e4cebec3e5742fa07a24d377a282556f3ca71802",
|
|
377
|
+
"hash_history": [],
|
|
378
|
+
"deprecated_aliases": []
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
"canonical_name": "shadow-clone",
|
|
382
|
+
"type": "official",
|
|
383
|
+
"content_sha256": "ee8efed4651eb463869e293fcb43103c1a070b686e8745bbc6109e4f941885a1",
|
|
384
|
+
"hash_history": [],
|
|
385
|
+
"deprecated_aliases": []
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
"canonical_name": "sks",
|
|
389
|
+
"type": "official",
|
|
390
|
+
"content_sha256": "49820a64aa2abfe015ecbe5f2566e1a9ad796f10c97531e36c5cda8fe46baa5b",
|
|
391
|
+
"hash_history": [],
|
|
392
|
+
"deprecated_aliases": [
|
|
393
|
+
"ralph",
|
|
394
|
+
"Ralph",
|
|
395
|
+
"ralph-supervisor",
|
|
396
|
+
"ralph-resolver"
|
|
397
|
+
]
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"canonical_name": "solution-scout",
|
|
401
|
+
"type": "official",
|
|
402
|
+
"content_sha256": "5bbeda855719edd3dfa4120877a72b31ab58444edec2d89d5370e6198e732d5c",
|
|
403
|
+
"hash_history": [],
|
|
404
|
+
"deprecated_aliases": []
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"canonical_name": "swarm",
|
|
408
|
+
"type": "official",
|
|
409
|
+
"content_sha256": "b61f775806c7963c123e2c94566c97b2328d515bd8e5e132ae3ec5be8b0103f3",
|
|
410
|
+
"hash_history": [],
|
|
411
|
+
"deprecated_aliases": []
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"canonical_name": "team",
|
|
415
|
+
"type": "official",
|
|
416
|
+
"content_sha256": "a7759e9fabe9183426f581f5ea6533982b22c000eddc955e057d78a0f3df4bfe",
|
|
417
|
+
"hash_history": [],
|
|
418
|
+
"deprecated_aliases": [
|
|
419
|
+
"agent-team"
|
|
420
|
+
]
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
"canonical_name": "turbo-context-pack",
|
|
424
|
+
"type": "official",
|
|
425
|
+
"content_sha256": "f6102a39ae4b9a52d77160d78cc0e270520bc88583a170fec298b7a4283b408b",
|
|
426
|
+
"hash_history": [],
|
|
427
|
+
"deprecated_aliases": []
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"canonical_name": "ui-ux-review",
|
|
431
|
+
"type": "official",
|
|
432
|
+
"content_sha256": "ba7281ec9a5c5dc3911fa9737375aaa396634165c199458f1d9091341cac9d36",
|
|
433
|
+
"hash_history": [],
|
|
434
|
+
"deprecated_aliases": []
|
|
435
|
+
},
|
|
436
|
+
{
|
|
437
|
+
"canonical_name": "ultra-search",
|
|
438
|
+
"type": "official",
|
|
439
|
+
"content_sha256": "3e6b036c36f0680aa574b9cb0ba759ae99ec2f39764c8723c8e5e92871f5f463",
|
|
440
|
+
"hash_history": [],
|
|
441
|
+
"deprecated_aliases": []
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"canonical_name": "ux-review",
|
|
445
|
+
"type": "official",
|
|
446
|
+
"content_sha256": "100ca2e1d0ae286b27a6ca9267193ec49079a98986529ab68628c159030b33dd",
|
|
447
|
+
"hash_history": [],
|
|
448
|
+
"deprecated_aliases": []
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"canonical_name": "visual-review",
|
|
452
|
+
"type": "official",
|
|
453
|
+
"content_sha256": "571f372b93317328f07e00aa1afcb9dcda6b3b87767f817e0ec37485487ae822",
|
|
454
|
+
"hash_history": [],
|
|
455
|
+
"deprecated_aliases": []
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
"canonical_name": "wiki",
|
|
459
|
+
"type": "official",
|
|
460
|
+
"content_sha256": "076987814552a05a777e81dc27a7650ba156ba7db1842fee98b33ec3a23122a1",
|
|
461
|
+
"hash_history": [],
|
|
462
|
+
"deprecated_aliases": [
|
|
463
|
+
"wiki-refresh",
|
|
464
|
+
"wikirefresh"
|
|
465
|
+
]
|
|
466
|
+
},
|
|
467
|
+
{
|
|
468
|
+
"canonical_name": "with-local-llm-off",
|
|
469
|
+
"type": "official",
|
|
470
|
+
"content_sha256": "c8abbe73a7ed0effb57b68cb44b0d566922d0677f58d5c7029d959392313df5a",
|
|
471
|
+
"hash_history": [],
|
|
472
|
+
"deprecated_aliases": []
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"canonical_name": "with-local-llm-on",
|
|
476
|
+
"type": "official",
|
|
477
|
+
"content_sha256": "c4956446f185808d011b6ca160b2cee71c987a8d7c75b20d8c100bd7d595c8ce",
|
|
478
|
+
"hash_history": [],
|
|
479
|
+
"deprecated_aliases": []
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"canonical_name": "work",
|
|
483
|
+
"type": "official",
|
|
484
|
+
"content_sha256": "78b08a3e2fbc2de1e4c39b39d320c98e7a00bebd2591b58321c68703e89fd9d8",
|
|
485
|
+
"hash_history": [],
|
|
486
|
+
"deprecated_aliases": []
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"removed_skills": [
|
|
490
|
+
"old-workflow",
|
|
491
|
+
"team-legacy"
|
|
492
|
+
]
|
|
493
|
+
}
|
|
@@ -6,6 +6,8 @@ export function buildAgentConflictGraph(leases) {
|
|
|
6
6
|
for (let j = i + 1; j < writeLeases.length; j += 1) {
|
|
7
7
|
const a = writeLeases[i];
|
|
8
8
|
const b = writeLeases[j];
|
|
9
|
+
if (a && b && a.agent_id !== b.agent_id && sameTournamentGroup(a, b))
|
|
10
|
+
continue;
|
|
9
11
|
if (a && b && a.agent_id !== b.agent_id && pathOverlaps(a.path, b.path)) {
|
|
10
12
|
conflicts.push({ a: a.id, b: b.id, path_a: a.path, path_b: b.path, reason: 'overlapping_write_lease' });
|
|
11
13
|
}
|
|
@@ -19,4 +21,7 @@ export function buildAgentConflictGraph(leases) {
|
|
|
19
21
|
blockers: conflicts.map((conflict) => conflict.reason + ':' + conflict.path_a + ':' + conflict.path_b)
|
|
20
22
|
};
|
|
21
23
|
}
|
|
24
|
+
function sameTournamentGroup(a, b) {
|
|
25
|
+
return Boolean(a.tournament_group_id && b.tournament_group_id && a.tournament_group_id === b.tournament_group_id);
|
|
26
|
+
}
|
|
22
27
|
//# sourceMappingURL=agent-conflict-graph.js.map
|
|
@@ -18,12 +18,17 @@ export function validateAgentLeases(leases) {
|
|
|
18
18
|
for (let j = i + 1; j < writeLeases.length; j += 1) {
|
|
19
19
|
const a = writeLeases[i];
|
|
20
20
|
const b = writeLeases[j];
|
|
21
|
+
if (a && b && a.agent_id !== b.agent_id && sameTournamentGroup(a, b))
|
|
22
|
+
continue;
|
|
21
23
|
if (a && b && a.agent_id !== b.agent_id && pathOverlaps(a.path, b.path))
|
|
22
24
|
blockers.push('write_overlap:' + a.agent_id + ':' + a.path + ':' + b.agent_id + ':' + b.path);
|
|
23
25
|
}
|
|
24
26
|
}
|
|
25
27
|
return { ok: blockers.length === 0, blockers };
|
|
26
28
|
}
|
|
29
|
+
function sameTournamentGroup(a, b) {
|
|
30
|
+
return Boolean(a.tournament_group_id && b.tournament_group_id && a.tournament_group_id === b.tournament_group_id);
|
|
31
|
+
}
|
|
27
32
|
export function createAgentLease(input) {
|
|
28
33
|
const leasePath = normalizeLeasePath(input.path);
|
|
29
34
|
const lease = {
|
|
@@ -104,6 +104,7 @@ export const AGENT_CENTRAL_LEDGER_RUNTIME_SCHEMAS = {
|
|
|
104
104
|
route: { type: 'string' },
|
|
105
105
|
generated_at: { type: 'string' },
|
|
106
106
|
backend: { type: 'string' },
|
|
107
|
+
execution_class: { enum: ['real', 'mock_fixture'] },
|
|
107
108
|
real_parallel_claim: { type: 'boolean' },
|
|
108
109
|
fake_backend_disclaimer: { anyOf: [{ type: 'string' }, { type: 'null' }] },
|
|
109
110
|
agent_count: { type: 'integer', minimum: 0 },
|