sneakoscope 2.0.14 → 2.0.16
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 +6 -3
- 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/.sks-build-stamp.json +4 -4
- package/dist/bin/sks.js +1 -1
- package/dist/cli/command-registry.js +2 -1
- package/dist/commands/mad-db.js +5 -0
- package/dist/commands/zellij-slot-pane.js +3 -1
- package/dist/core/agents/agent-orchestrator.js +66 -3
- package/dist/core/agents/agent-plan.js +3 -2
- package/dist/core/agents/agent-scheduler.js +204 -86
- package/dist/core/agents/agent-schema.js +1 -1
- package/dist/core/agents/native-cli-session-swarm.js +199 -15
- package/dist/core/agents/native-cli-worker.js +85 -0
- package/dist/core/agents/parallel-runtime-proof.js +217 -0
- package/dist/core/codex-control/codex-task-runner.js +32 -4
- package/dist/core/codex-control/model-call-concurrency.js +106 -0
- package/dist/core/commands/basic-cli.js +1 -1
- package/dist/core/commands/command-suggestions.js +1 -1
- package/dist/core/commands/mad-db-command.js +106 -0
- package/dist/core/commands/mad-sks-command.js +50 -13
- package/dist/core/commands/naruto-command.js +128 -5
- package/dist/core/commands/research-command.js +13 -1
- package/dist/core/commands/team-command.js +23 -175
- package/dist/core/db-safety.js +55 -1
- package/dist/core/fsx.js +1 -1
- package/dist/core/git/git-worktree-capability.js +18 -0
- package/dist/core/git/git-worktree-manager.js +80 -0
- package/dist/core/git/git-worktree-pool.js +4 -0
- package/dist/core/mad-db/mad-db-capability.js +116 -0
- package/dist/core/mad-db/mad-db-ledger.js +31 -0
- package/dist/core/mad-db/mad-db-policy-resolver.js +48 -0
- package/dist/core/naruto/naruto-concurrency-governor.js +14 -1
- package/dist/core/pipeline-internals/runtime-core.js +74 -8
- package/dist/core/pipeline-internals/runtime-gates.js +44 -0
- package/dist/core/proof/route-proof-gate.js +5 -3
- package/dist/core/proof/route-proof-policy.js +9 -1
- package/dist/core/release/release-gate-affected-selector.js +113 -0
- package/dist/core/release/release-gate-batch-runner.js +67 -0
- package/dist/core/release/release-gate-dag.js +22 -3
- package/dist/core/release/release-gate-resource-governor.js +23 -11
- package/dist/core/research/implementation-blueprint-densifier.js +1 -1
- package/dist/core/research/implementation-blueprint-markdown.js +1 -1
- package/dist/core/research/implementation-blueprint.js +68 -7
- package/dist/core/research/research-final-reviewer.js +27 -1
- package/dist/core/research/research-handoff.js +69 -5
- package/dist/core/research/research-realistic-report.js +162 -0
- package/dist/core/research/research-repetition-detector.js +75 -0
- package/dist/core/research/research-report-quality.js +27 -5
- package/dist/core/research/research-stage-runner.js +40 -13
- package/dist/core/research/research-synthesis-prompt.js +52 -0
- package/dist/core/research/research-synthesis-writer.js +208 -0
- package/dist/core/research.js +60 -48
- package/dist/core/routes.js +23 -19
- package/dist/core/update/update-notice.js +120 -0
- package/dist/core/version.js +1 -1
- package/dist/core/zellij/zellij-dashboard-renderer.js +2 -0
- package/dist/core/zellij/zellij-slot-column-anchor.js +35 -1
- package/dist/core/zellij/zellij-slot-pane-renderer.js +57 -0
- package/dist/core/zellij/zellij-slot-telemetry.js +237 -0
- package/dist/scripts/release-gate-dag-runner.js +5 -0
- package/dist/scripts/release-speed-summary.js +27 -0
- package/package.json +76 -5
- package/schemas/agents/parallel-runtime-proof.schema.json +48 -0
- package/schemas/mad-db/mad-db-capability.schema.json +31 -0
- package/schemas/mad-db/mad-db-ledger.schema.json +14 -0
- package/schemas/research/implementation-blueprint.schema.json +6 -1
- package/schemas/research/research-final-review.schema.json +10 -0
- package/schemas/research/research-synthesis-output.schema.json +62 -0
- package/schemas/update/update-notice.schema.json +19 -0
- package/schemas/zellij/zellij-slot-telemetry.schema.json +89 -0
- package/dist/scripts/agent-ast-aware-work-graph-check.js +0 -25
- package/dist/scripts/agent-backfill-replenishment-check.js +0 -13
- package/dist/scripts/agent-backfill-route-blackbox.js +0 -5
- package/dist/scripts/agent-background-terminals-check.js +0 -16
- package/dist/scripts/agent-cleanup-command-ux-check.js +0 -12
- package/dist/scripts/agent-cleanup-executor-check.js +0 -53
- package/dist/scripts/agent-cleanup-executor-v2-check.js +0 -39
- package/dist/scripts/agent-cli-options-to-task-graph-check.js +0 -5
- package/dist/scripts/agent-codex-app-cockpit-check.js +0 -91
- package/dist/scripts/agent-codex-child-overlap-check.js +0 -21
- package/dist/scripts/agent-dynamic-cockpit-check.js +0 -10
- package/dist/scripts/agent-dynamic-pool-check.js +0 -13
- package/dist/scripts/agent-dynamic-pool-route-blackbox.js +0 -5
- package/dist/scripts/agent-fast-mode-default-check.js +0 -62
- package/dist/scripts/agent-fast-mode-worker-propagation-check.js +0 -7
- package/dist/scripts/agent-follow-up-work-schema-check.js +0 -80
- package/dist/scripts/agent-goal-mode-propagation-check.js +0 -9
- package/dist/scripts/agent-intelligent-work-graph-check.js +0 -25
- package/dist/scripts/agent-janitor-check.js +0 -76
- package/dist/scripts/agent-main-no-scout-check.js +0 -11
- package/dist/scripts/agent-model-authored-patch-envelope-check.js +0 -15
- package/dist/scripts/agent-multi-project-isolation-check.js +0 -86
- package/dist/scripts/agent-native-cli-session-proof-check.js +0 -7
- package/dist/scripts/agent-native-cli-session-swarm-10-check.js +0 -7
- package/dist/scripts/agent-native-cli-session-swarm-20-check.js +0 -7
- package/dist/scripts/agent-native-cli-session-swarm-check.js +0 -7
- package/dist/scripts/agent-no-subagent-scaling-check.js +0 -7
- package/dist/scripts/agent-parallel-write-blackbox.js +0 -56
- package/dist/scripts/agent-parallel-write-kernel-check.js +0 -103
- package/dist/scripts/agent-patch-conflict-rebase-check.js +0 -198
- package/dist/scripts/agent-patch-envelope-extraction-check.js +0 -17
- package/dist/scripts/agent-patch-proof-check.js +0 -41
- package/dist/scripts/agent-patch-proof-runtime-check.js +0 -63
- package/dist/scripts/agent-patch-queue-runtime-check.js +0 -36
- package/dist/scripts/agent-patch-rollback-check.js +0 -38
- package/dist/scripts/agent-patch-rollback-dag-check.js +0 -14
- package/dist/scripts/agent-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/agent-patch-swarm-runtime-check.js +0 -10
- package/dist/scripts/agent-patch-swarm-runtime-truth-check.js +0 -76
- package/dist/scripts/agent-patch-transaction-journal-check.js +0 -57
- package/dist/scripts/agent-patch-verification-dag-check.js +0 -14
- package/dist/scripts/agent-proof-contract-reconciled-check.js +0 -5
- package/dist/scripts/agent-real-codex-dynamic-smoke-check.js +0 -166
- package/dist/scripts/agent-real-codex-dynamic-smoke-v2-check.js +0 -14
- package/dist/scripts/agent-real-codex-in-zellij-worker-pane-check.js +0 -229
- package/dist/scripts/agent-real-codex-parallel-workers-10-check.js +0 -5
- package/dist/scripts/agent-real-codex-parallel-workers-20-check.js +0 -5
- package/dist/scripts/agent-real-codex-parallel-workers-5-check.js +0 -5
- package/dist/scripts/agent-real-codex-parallel-workers-check.js +0 -5
- package/dist/scripts/agent-role-config-repair-check.js +0 -33
- package/dist/scripts/agent-rollback-command-check.js +0 -86
- package/dist/scripts/agent-route-truth-backfill-check.js +0 -5
- package/dist/scripts/agent-scheduler-proof-check.js +0 -13
- package/dist/scripts/agent-scheduler-proof-hardening-check.js +0 -22
- package/dist/scripts/agent-session-generation-check.js +0 -21
- package/dist/scripts/agent-slot-pane-binding-proof-check.js +0 -64
- package/dist/scripts/agent-source-intelligence-propagation-check.js +0 -9
- package/dist/scripts/agent-strategy-to-lease-wiring-check.js +0 -32
- package/dist/scripts/agent-strategy-to-patch-strict-check.js +0 -54
- package/dist/scripts/agent-task-graph-expansion-check.js +0 -14
- package/dist/scripts/agent-terminal-generations-check.js +0 -23
- package/dist/scripts/agent-visual-consistency-check.js +0 -9
- package/dist/scripts/agent-wiki-context-proof-check.js +0 -62
- package/dist/scripts/agent-worker-backend-router-check.js +0 -63
- package/dist/scripts/agent-worker-scout-limited-check.js +0 -17
- package/dist/scripts/agent-zellij-dynamic-backfill-panes-check.js +0 -34
- package/dist/scripts/agent-zellij-runtime-check.js +0 -84
- package/dist/scripts/all-feature-deep-completion-check.js +0 -31
- package/dist/scripts/appshots-capability-check.js +0 -18
- package/dist/scripts/appshots-evidence-check.js +0 -48
- package/dist/scripts/appshots-operator-policy-check.js +0 -25
- package/dist/scripts/appshots-privacy-safety-check.js +0 -48
- package/dist/scripts/appshots-source-intelligence-check.js +0 -53
- package/dist/scripts/appshots-thread-attachment-discovery-check.js +0 -87
- package/dist/scripts/appshots-triwiki-voxel-check.js +0 -46
- package/dist/scripts/architecture-guard-check.js +0 -55
- package/dist/scripts/changelog-check.js +0 -47
- package/dist/scripts/codex-0-133-official-compat-report.js +0 -53
- package/dist/scripts/codex-0-134-official-compat-report.js +0 -110
- package/dist/scripts/codex-0-134-runner-truth-check.js +0 -66
- package/dist/scripts/codex-0-135-compat-check.js +0 -57
- package/dist/scripts/codex-0-136-compat-check.js +0 -30
- package/dist/scripts/codex-0-137-compat-check.js +0 -27
- package/dist/scripts/codex-app-fast-ui-preservation-check.js +0 -32
- package/dist/scripts/codex-app-provider-badge-check.js +0 -37
- package/dist/scripts/codex-app-ui-clobber-guard-check.js +0 -22
- package/dist/scripts/codex-app-ui-preservation-check.js +0 -96
- package/dist/scripts/codex-control-all-pipelines-check.js +0 -36
- package/dist/scripts/codex-control-capability-check.js +0 -10
- package/dist/scripts/codex-control-empty-result-retry-check.js +0 -43
- package/dist/scripts/codex-control-event-stream-ledger-check.js +0 -10
- package/dist/scripts/codex-control-keepalive-no-cot-leak-check.js +0 -14
- package/dist/scripts/codex-control-no-legacy-fallback-check.js +0 -31
- package/dist/scripts/codex-control-side-effect-scope-check.js +0 -26
- package/dist/scripts/codex-control-stream-idle-watchdog-check.js +0 -18
- package/dist/scripts/codex-control-structured-output-check.js +0 -11
- package/dist/scripts/codex-control-thread-registry-check.js +0 -11
- package/dist/scripts/codex-control-tool-call-sequence-repair-check.js +0 -14
- package/dist/scripts/codex-environment-scoped-approvals-check.js +0 -10
- package/dist/scripts/codex-exec-output-schema-actual-syntax-check.js +0 -33
- package/dist/scripts/codex-fast-mode-profile-propagation-check.js +0 -12
- package/dist/scripts/codex-history-search-check.js +0 -19
- package/dist/scripts/codex-hook-semantic-check.js +0 -15
- package/dist/scripts/codex-hook-strict-subset-check.js +0 -61
- package/dist/scripts/codex-lb-config-toml-safety-check.js +0 -85
- package/dist/scripts/codex-lb-persistence-truth-check.js +0 -96
- package/dist/scripts/codex-lb-setup-fixture-check.js +0 -91
- package/dist/scripts/codex-lb-setup-truthfulness-check.js +0 -84
- package/dist/scripts/codex-legacy-profile-consumers-removed-check.js +0 -24
- package/dist/scripts/codex-managed-proxy-env-check.js +0 -17
- package/dist/scripts/codex-output-schema-fixture-check.js +0 -25
- package/dist/scripts/codex-permission-profiles-check.js +0 -36
- package/dist/scripts/codex-plugin-list-json-check.js +0 -8
- package/dist/scripts/codex-profile-primary-check.js +0 -13
- package/dist/scripts/codex-project-config-policy-splitter-check.js +0 -51
- package/dist/scripts/codex-resume-cwd-truth-check.js +0 -17
- package/dist/scripts/codex-sdk-all-pipelines-check.js +0 -32
- package/dist/scripts/codex-sdk-backend-router-check.js +0 -65
- package/dist/scripts/codex-sdk-capability-check.js +0 -11
- package/dist/scripts/codex-sdk-core-skill-pipeline-check.js +0 -9
- package/dist/scripts/codex-sdk-dfix-pipeline-check.js +0 -9
- package/dist/scripts/codex-sdk-event-stream-ledger-check.js +0 -9
- package/dist/scripts/codex-sdk-no-legacy-fallback-check.js +0 -33
- package/dist/scripts/codex-sdk-qa-pipeline-check.js +0 -8
- package/dist/scripts/codex-sdk-real-smoke-check.js +0 -39
- package/dist/scripts/codex-sdk-release-review-pipeline-check.js +0 -13
- package/dist/scripts/codex-sdk-research-pipeline-check.js +0 -47
- package/dist/scripts/codex-sdk-sandbox-policy-check.js +0 -21
- package/dist/scripts/codex-sdk-structured-output-check.js +0 -10
- package/dist/scripts/codex-sdk-team-naruto-agent-pipeline-check.js +0 -12
- package/dist/scripts/codex-sdk-thread-registry-check.js +0 -11
- package/dist/scripts/codex-sdk-ux-ppt-review-pipeline-check.js +0 -9
- package/dist/scripts/codex-sdk-zellij-pane-binding-check.js +0 -13
- package/dist/scripts/codex-thread-runtime-choice-check.js +0 -10
- package/dist/scripts/codex-web-adapter-check.js +0 -12
- package/dist/scripts/computer-use-live-evidence-check.js +0 -55
- package/dist/scripts/computer-use-live-optional-check.js +0 -32
- package/dist/scripts/computer-use-policy-check.js +0 -69
- package/dist/scripts/computer-use-visual-route-fixture-check.js +0 -37
- package/dist/scripts/core-skill-card-schema-check.js +0 -61
- package/dist/scripts/core-skill-deployment-snapshot-check.js +0 -54
- package/dist/scripts/core-skill-heldout-validation-check.js +0 -49
- package/dist/scripts/core-skill-no-inference-optimizer-check.js +0 -75
- package/dist/scripts/core-skill-patch-check.js +0 -79
- package/dist/scripts/core-skill-promotion-side-effect-ledger-check.js +0 -64
- package/dist/scripts/core-skill-rollout-scoring-check.js +0 -72
- package/dist/scripts/core-skill-route-runtime-integration-check.js +0 -49
- package/dist/scripts/dfix-fast-blackbox-check.js +0 -37
- package/dist/scripts/dfix-fast-kernel-check.js +0 -26
- package/dist/scripts/dfix-fixture-check.js +0 -6
- package/dist/scripts/dfix-parallel-write-blackbox.js +0 -48
- package/dist/scripts/dfix-patch-handoff-check.js +0 -13
- package/dist/scripts/dfix-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/dfix-performance-check.js +0 -15
- package/dist/scripts/dfix-verification-check.js +0 -9
- package/dist/scripts/dfix-verification-recommendation-check.js +0 -15
- package/dist/scripts/docs-truthfulness-check.js +0 -61
- package/dist/scripts/doctor-codex-doctor-parity-check.js +0 -17
- package/dist/scripts/doctor-fix-proves-codex-read-check.js +0 -64
- package/dist/scripts/doctor-fix-recovers-corrupted-config-check.js +0 -122
- package/dist/scripts/doctor-fixes-codex-app-fast-ui-check.js +0 -39
- package/dist/scripts/evidence-fixture-check.js +0 -26
- package/dist/scripts/evidence-flagship-coverage-check.js +0 -55
- package/dist/scripts/fake-real-proof-policy-v2-check.js +0 -27
- package/dist/scripts/fake-vs-real-proof-policy-check.js +0 -14
- package/dist/scripts/fast-codex-service-tier-proof-check.js +0 -42
- package/dist/scripts/flagship-proof-graph-v2-check.js +0 -48
- package/dist/scripts/flagship-proof-graph-v3-check.js +0 -67
- package/dist/scripts/flagship-proof-graph-v4-check.js +0 -61
- package/dist/scripts/git-precommit-fixture-check.js +0 -41
- package/dist/scripts/git-worktree-cache-performance-check.js +0 -25
- package/dist/scripts/git-worktree-capability-check.js +0 -27
- package/dist/scripts/git-worktree-checkpoint-check.js +0 -20
- package/dist/scripts/git-worktree-cleanup-check.js +0 -27
- package/dist/scripts/git-worktree-cross-rebase-check.js +0 -39
- package/dist/scripts/git-worktree-diff-envelope-check.js +0 -17
- package/dist/scripts/git-worktree-diff-export-check.js +0 -43
- package/dist/scripts/git-worktree-dirty-lock-check.js +0 -17
- package/dist/scripts/git-worktree-dirty-main-detection-check.js +0 -14
- package/dist/scripts/git-worktree-integration-primary-check.js +0 -24
- package/dist/scripts/git-worktree-integration-primary-runtime-check.js +0 -20
- package/dist/scripts/git-worktree-manager-check.js +0 -37
- package/dist/scripts/git-worktree-manifest-append-check.js +0 -18
- package/dist/scripts/git-worktree-merge-queue-check.js +0 -31
- package/dist/scripts/git-worktree-pool-performance-check.js +0 -20
- package/dist/scripts/git-worktree-untracked-diff-check.js +0 -18
- package/dist/scripts/goal-mode-official-default-check.js +0 -12
- package/dist/scripts/gpt-final-arbiter-check.js +0 -63
- package/dist/scripts/gpt-final-arbiter-performance-check.js +0 -36
- package/dist/scripts/gpt-image-2-request-validator-check.js +0 -35
- package/dist/scripts/hooks-0.134-context-parity-check.js +0 -20
- package/dist/scripts/hooks-actual-parity-check.js +0 -17
- package/dist/scripts/hooks-actual-parity-v2-check.js +0 -21
- package/dist/scripts/hooks-latest-schema-check.js +0 -20
- package/dist/scripts/hooks-managed-install-fixture-check.js +0 -21
- package/dist/scripts/hooks-official-hash-oracle-check.js +0 -35
- package/dist/scripts/hooks-official-hash-parity-check.js +0 -17
- package/dist/scripts/hooks-subagent-events-check.js +0 -17
- package/dist/scripts/hooks-trust-state-check.js +0 -14
- package/dist/scripts/image-fidelity-fixture-check.js +0 -24
- package/dist/scripts/imagegen-capability-check.js +0 -30
- package/dist/scripts/imagegen-real-smoke-check.js +0 -155
- package/dist/scripts/install-update-preserves-config-check.js +0 -87
- package/dist/scripts/json-schema-recursive-check.js +0 -78
- package/dist/scripts/legacy-multiagent-removal-check.js +0 -85
- package/dist/scripts/legacy-upgrade-matrix-check.js +0 -300
- package/dist/scripts/local-collab-all-pipelines-final-gpt-check.js +0 -21
- package/dist/scripts/local-collab-gpt-final-availability-check.js +0 -58
- package/dist/scripts/local-collab-no-local-only-final-check.js +0 -27
- package/dist/scripts/local-collab-policy-check.js +0 -17
- package/dist/scripts/local-collab-worktree-gpt-final-apply-policy-check.js +0 -63
- package/dist/scripts/local-llm-all-pipelines-check.js +0 -11
- package/dist/scripts/local-llm-cache-performance-check.js +0 -10
- package/dist/scripts/local-llm-capability-check.js +0 -14
- package/dist/scripts/local-llm-smoke-check.js +0 -23
- package/dist/scripts/local-llm-structured-output-check.js +0 -11
- package/dist/scripts/local-llm-throughput-check.js +0 -10
- package/dist/scripts/local-llm-tool-call-repair-check.js +0 -10
- package/dist/scripts/local-llm-warmup-check.js +0 -11
- package/dist/scripts/loop-blocker-check.js +0 -15
- package/dist/scripts/mad-preflight-blocks-unreadable-config-check.js +0 -35
- package/dist/scripts/mad-sks-actual-executor-blackbox.js +0 -5
- package/dist/scripts/mad-sks-app-ui-no-mutation-check.js +0 -92
- package/dist/scripts/mad-sks-audit-proof-check.js +0 -34
- package/dist/scripts/mad-sks-db-executor-check.js +0 -5
- package/dist/scripts/mad-sks-executor-proof-graph-check.js +0 -5
- package/dist/scripts/mad-sks-fast-mode-propagation-check.js +0 -24
- package/dist/scripts/mad-sks-file-write-executor-check.js +0 -5
- package/dist/scripts/mad-sks-immutable-harness-check.js +0 -36
- package/dist/scripts/mad-sks-no-harness-modification-check.js +0 -25
- package/dist/scripts/mad-sks-package-executor-check.js +0 -5
- package/dist/scripts/mad-sks-permission-model-check.js +0 -22
- package/dist/scripts/mad-sks-rollback-apply-check.js +0 -5
- package/dist/scripts/mad-sks-service-executor-check.js +0 -5
- package/dist/scripts/mad-sks-shell-executor-check.js +0 -5
- package/dist/scripts/mad-sks-write-guard-check.js +0 -28
- package/dist/scripts/mad-sks-zellij-default-pane-worker-check.js +0 -37
- package/dist/scripts/mad-sks-zellij-launch-check.js +0 -102
- package/dist/scripts/mcp-0-134-modernization-check.js +0 -55
- package/dist/scripts/mcp-readonly-concurrency-check.js +0 -17
- package/dist/scripts/mcp-readonly-runtime-scheduler-check.js +0 -20
- package/dist/scripts/mcp-tool-naming-parity-check.js +0 -16
- package/dist/scripts/memory-summary-rebuild-check.js +0 -22
- package/dist/scripts/mutation-callsite-coverage-check.js +0 -180
- package/dist/scripts/naruto-active-pool-check.js +0 -39
- package/dist/scripts/naruto-actual-worker-control-plane-check.js +0 -56
- package/dist/scripts/naruto-allocation-policy-check.js +0 -33
- package/dist/scripts/naruto-allocation-runtime-wiring-check.js +0 -92
- package/dist/scripts/naruto-concurrency-governor-check.js +0 -53
- package/dist/scripts/naruto-extreme-parallelism-check.js +0 -22
- package/dist/scripts/naruto-extreme-parallelism-real-check.js +0 -43
- package/dist/scripts/naruto-gpt-final-pack-check.js +0 -34
- package/dist/scripts/naruto-orchestrator-runtime-source-check.js +0 -70
- package/dist/scripts/naruto-parallel-patch-apply-check.js +0 -41
- package/dist/scripts/naruto-readonly-routing-check.js +0 -116
- package/dist/scripts/naruto-real-active-pool-check.js +0 -39
- package/dist/scripts/naruto-real-active-pool-runtime-check.js +0 -55
- package/dist/scripts/naruto-rebalance-policy-check.js +0 -41
- package/dist/scripts/naruto-role-distribution-check.js +0 -23
- package/dist/scripts/naruto-shadow-clone-swarm-check.js +0 -153
- package/dist/scripts/naruto-verification-pool-check.js +0 -36
- package/dist/scripts/naruto-work-graph-check.js +0 -24
- package/dist/scripts/naruto-worktree-coding-blackbox.js +0 -29
- package/dist/scripts/naruto-worktree-coding-check.js +0 -44
- package/dist/scripts/naruto-worktree-gpt-final-check.js +0 -45
- package/dist/scripts/naruto-worktree-zellij-ui-check.js +0 -28
- package/dist/scripts/naruto-zellij-dynamic-right-column-check.js +0 -48
- package/dist/scripts/naruto-zellij-massive-ui-check.js +0 -23
- package/dist/scripts/non-recursive-pipeline-check.js +0 -68
- package/dist/scripts/npm-publish-performance-check.js +0 -65
- package/dist/scripts/official-docs-compat-report.js +0 -304
- package/dist/scripts/packlist-performance-check.js +0 -83
- package/dist/scripts/parallel-verification-engine-check.js +0 -85
- package/dist/scripts/postinstall-safe-side-effects-check.js +0 -65
- package/dist/scripts/ppt-full-e2e-artifact-graph-check.js +0 -40
- package/dist/scripts/ppt-full-e2e-blackbox-check.js +0 -109
- package/dist/scripts/ppt-image-voxel-relations-check.js +0 -9
- package/dist/scripts/ppt-imagegen-blackbox-check.js +0 -46
- package/dist/scripts/ppt-imagegen-review-fixture-check.js +0 -6
- package/dist/scripts/ppt-issue-extraction-fixture-check.js +0 -7
- package/dist/scripts/ppt-no-mock-as-real-check.js +0 -8
- package/dist/scripts/ppt-no-text-fallback-check.js +0 -7
- package/dist/scripts/ppt-proof-trust-fixture-check.js +0 -10
- package/dist/scripts/ppt-real-export-adapter-check.js +0 -13
- package/dist/scripts/ppt-real-imagegen-smoke-check.js +0 -42
- package/dist/scripts/ppt-real-imagegen-wiring-check.js +0 -16
- package/dist/scripts/ppt-reexport-rereview-check.js +0 -19
- package/dist/scripts/ppt-slide-export-fixture-check.js +0 -7
- package/dist/scripts/prepublish-fast-check.js +0 -128
- package/dist/scripts/priority-full-closure-check.js +0 -12
- package/dist/scripts/product-design-auto-install-check.js +0 -119
- package/dist/scripts/product-design-plugin-routing-check.js +0 -101
- package/dist/scripts/prompt-placeholder-guard-check.js +0 -33
- package/dist/scripts/provider-badge-context-check.js +0 -26
- package/dist/scripts/provider-context-config-toml-check.js +0 -63
- package/dist/scripts/python-codex-sdk-all-pipelines-check.js +0 -47
- package/dist/scripts/python-codex-sdk-capability-check.js +0 -75
- package/dist/scripts/python-codex-sdk-sandbox-policy-check.js +0 -10
- package/dist/scripts/python-codex-sdk-stream-bridge-check.js +0 -12
- package/dist/scripts/python-tools-smoke-check.js +0 -71
- package/dist/scripts/qa-actual-route-backfill-check.js +0 -5
- package/dist/scripts/qa-backfill-route-blackbox.js +0 -5
- package/dist/scripts/qa-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/readme-architecture-imagegen-official-check.js +0 -448
- package/dist/scripts/release-cache-glob-hashing-check.js +0 -42
- package/dist/scripts/release-dag-full-coverage-check.js +0 -66
- package/dist/scripts/release-dist-freshness-check.js +0 -8
- package/dist/scripts/release-dynamic-performance-check.js +0 -103
- package/dist/scripts/release-gate-budget-check.js +0 -36
- package/dist/scripts/release-gate-dag-runner-check.js +0 -17
- package/dist/scripts/release-metadata-1-11-check.js +0 -37
- package/dist/scripts/release-metadata-1-12-check.js +0 -48
- package/dist/scripts/release-metadata-1-13-check.js +0 -53
- package/dist/scripts/release-metadata-1-14-check.js +0 -63
- package/dist/scripts/release-metadata-1-16-check.js +0 -81
- package/dist/scripts/release-metadata-1-17-check.js +0 -51
- package/dist/scripts/release-metadata-1-19-check.js +0 -371
- package/dist/scripts/release-metadata-check.js +0 -7
- package/dist/scripts/release-native-agent-fixture-check.js +0 -41
- package/dist/scripts/release-parallel-check.js +0 -374
- package/dist/scripts/release-parallel-full-coverage-check.js +0 -13
- package/dist/scripts/release-parallel-speed-budget-check.js +0 -84
- package/dist/scripts/release-provenance-check.js +0 -150
- package/dist/scripts/release-real-check.js +0 -330
- package/dist/scripts/release-registry-check.js +0 -344
- package/dist/scripts/release-runtime-truth-matrix-check.js +0 -47
- package/dist/scripts/release-stability-report-check.js +0 -99
- package/dist/scripts/release-version-truth-check.js +0 -134
- package/dist/scripts/research-actual-route-backfill-check.js +0 -5
- package/dist/scripts/research-backfill-route-blackbox.js +0 -5
- package/dist/scripts/research-blueprint-densifier-check.js +0 -21
- package/dist/scripts/research-claim-builder-check.js +0 -19
- package/dist/scripts/research-complete-package-fixture-check.js +0 -23
- package/dist/scripts/research-final-reviewer-blackbox.js +0 -22
- package/dist/scripts/research-parallel-source-shards-check.js +0 -22
- package/dist/scripts/research-quality-gate-check.js +0 -111
- package/dist/scripts/research-real-cycle-no-legacy-final-md-check.js +0 -14
- package/dist/scripts/research-short-report-rejection-check.js +0 -46
- package/dist/scripts/research-source-ledger-merge-check.js +0 -26
- package/dist/scripts/research-stage-cycle-runtime-blackbox.js +0 -24
- package/dist/scripts/responses-retry-policy-centralized-check.js +0 -19
- package/dist/scripts/retention-cleanup-safety-check.js +0 -155
- package/dist/scripts/route-blackbox-realism-check.js +0 -21
- package/dist/scripts/route-proof-artifact-structure-check.js +0 -145
- package/dist/scripts/runtime-dist-parity-check.js +0 -78
- package/dist/scripts/runtime-no-mjs-scripts-check.js +0 -45
- package/dist/scripts/runtime-no-src-mjs-check.js +0 -32
- package/dist/scripts/runtime-no-tmux-check.js +0 -113
- package/dist/scripts/runtime-ts-python-boundary-check.js +0 -59
- package/dist/scripts/runtime-ts-rust-boundary-check.js +0 -74
- package/dist/scripts/runtime-ts-source-of-truth-check.js +0 -55
- package/dist/scripts/safety-check.js +0 -23
- package/dist/scripts/shared-memory-fixture-check.js +0 -27
- package/dist/scripts/side-effect-runtime-report-check.js +0 -19
- package/dist/scripts/side-effect-zero-gate-check.js +0 -226
- package/dist/scripts/sks-1-11-fixture-check.js +0 -130
- package/dist/scripts/source-intelligence-all-modes-check.js +0 -32
- package/dist/scripts/source-intelligence-policy-check.js +0 -13
- package/dist/scripts/strategy-adhd-orchestrating-gate-check.js +0 -22
- package/dist/scripts/strategy-file-ownership-plan-check.js +0 -18
- package/dist/scripts/strategy-parallel-modification-plan-check.js +0 -19
- package/dist/scripts/strategy-verification-rollback-dag-check.js +0 -19
- package/dist/scripts/team-actual-route-backfill-check.js +0 -5
- 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/terminal-keyboard-enhancement-safety-check.js +0 -12
- package/dist/scripts/terminal-tui-output-stability-check.js +0 -35
- package/dist/scripts/test-no-orphan-dist-imports-check.js +0 -73
- package/dist/scripts/trust-fixture-check.js +0 -33
- package/dist/scripts/typescript-migration-report.js +0 -78
- package/dist/scripts/ultra-router-auto-router-check.js +0 -33
- package/dist/scripts/ultra-router-classification-check.js +0 -28
- package/dist/scripts/ux-patch-swarm-route-blackbox.js +0 -10
- package/dist/scripts/ux-ppt-structured-extraction-check.js +0 -21
- package/dist/scripts/ux-review-extract-real-callouts-fixture-check.js +0 -8
- package/dist/scripts/ux-review-extract-wires-real-extractor-check.js +0 -15
- package/dist/scripts/ux-review-generate-callouts-fixture-check.js +0 -9
- package/dist/scripts/ux-review-image-voxel-relations-check.js +0 -31
- package/dist/scripts/ux-review-imagegen-blackbox-check.js +0 -67
- package/dist/scripts/ux-review-no-fake-callouts-check.js +0 -8
- package/dist/scripts/ux-review-no-text-fallback-check.js +0 -25
- package/dist/scripts/ux-review-patch-diff-recheck-check.js +0 -20
- package/dist/scripts/ux-review-patch-handoff-fixture-check.js +0 -8
- package/dist/scripts/ux-review-real-imagegen-smoke-check.js +0 -31
- package/dist/scripts/ux-review-real-loop-fixture-check.js +0 -24
- package/dist/scripts/ux-review-recapture-recheck-fixture-check.js +0 -8
- package/dist/scripts/ux-review-run-wires-imagegen-check.js +0 -11
- package/dist/scripts/worker-pane-communication-contract-check.js +0 -54
- package/dist/scripts/wrongness-fixture-check.js +0 -65
- package/dist/scripts/xai-mcp-capability-check.js +0 -14
- package/dist/scripts/zellij-capability-check.js +0 -15
- package/dist/scripts/zellij-dashboard-pane-check.js +0 -70
- package/dist/scripts/zellij-developer-controls-check.js +0 -20
- package/dist/scripts/zellij-doctor-readiness-check.js +0 -63
- package/dist/scripts/zellij-dynamic-pane-lifecycle-check.js +0 -21
- package/dist/scripts/zellij-first-slot-down-stack-check.js +0 -20
- package/dist/scripts/zellij-first-slot-down-stack-real-check.js +0 -356
- package/dist/scripts/zellij-initial-main-only-blackbox.js +0 -28
- package/dist/scripts/zellij-lane-renderer-check.js +0 -65
- package/dist/scripts/zellij-launch-command-truth-check.js +0 -75
- package/dist/scripts/zellij-layout-valid-check.js +0 -90
- package/dist/scripts/zellij-pane-proof-check.js +0 -59
- package/dist/scripts/zellij-real-session-cleanup-check.js +0 -21
- package/dist/scripts/zellij-real-session-heartbeat-check.js +0 -49
- package/dist/scripts/zellij-real-session-launch-check.js +0 -57
- package/dist/scripts/zellij-right-column-headless-overflow-check.js +0 -22
- package/dist/scripts/zellij-right-column-manager-check.js +0 -27
- package/dist/scripts/zellij-screen-proof-check.js +0 -45
- package/dist/scripts/zellij-slot-column-anchor-check.js +0 -66
- package/dist/scripts/zellij-slot-only-ui-check.js +0 -26
- package/dist/scripts/zellij-slot-pane-renderer-check.js +0 -106
- package/dist/scripts/zellij-slot-renderer-proof-semantics-check.js +0 -59
- package/dist/scripts/zellij-spawn-on-demand-layout-check.js +0 -40
- package/dist/scripts/zellij-ui-design-check.js +0 -105
- package/dist/scripts/zellij-worker-pane-manager-check.js +0 -109
- package/dist/scripts/zellij-worker-pane-manager-single-owner-check.js +0 -47
- package/dist/scripts/zellij-worker-pane-real-ui-blackbox.js +0 -202
- package/dist/scripts/zellij-worker-pane-spawn-order-check.js +0 -35
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import fs from 'node:fs';
|
|
4
|
-
import path from 'node:path';
|
|
5
|
-
import { assertGate, emitGate, root } from './sks-1-18-gate-lib.js';
|
|
6
|
-
const uiMode = fs.readFileSync(path.join(root, 'src/core/zellij/zellij-ui-mode.ts'), 'utf8');
|
|
7
|
-
const manager = fs.readFileSync(path.join(root, 'src/core/zellij/zellij-right-column-manager.ts'), 'utf8');
|
|
8
|
-
const worker = fs.readFileSync(path.join(root, 'src/core/zellij/zellij-worker-pane-manager.ts'), 'utf8');
|
|
9
|
-
const swarm = fs.readFileSync(path.join(root, 'src/core/agents/native-cli-session-swarm.ts'), 'utf8');
|
|
10
|
-
const report = {
|
|
11
|
-
schema: 'sks.zellij-slot-only-ui-check.v1',
|
|
12
|
-
default_compact_slots: uiMode.includes("return 'compact-slots'"),
|
|
13
|
-
state_records_ui_mode: manager.includes('ui_mode: uiMode'),
|
|
14
|
-
compact_skips_dashboard: manager.includes('if (!createDashboard)') && manager.includes('dashboard_created: false'),
|
|
15
|
-
first_slot_creates_slot_anchor_right: worker.includes('buildZellijSlotColumnAnchorCommand') && worker.includes("'--direction', 'right', '--name', 'SLOTS'"),
|
|
16
|
-
workers_stack_down_from_anchor: worker.includes("const directionRequested: 'right' | 'down' = 'down'")
|
|
17
|
-
&& worker.includes("directionRequested === 'down' ? ['--near-current-pane'] : []")
|
|
18
|
-
&& worker.includes('slot_column_anchor_pane_id'),
|
|
19
|
-
compact_uses_renderer: swarm.includes('buildZellijSlotPaneCommand') && swarm.includes("slot_visualization = uiMode === 'full-debug' ? 'worker-command-pane' : 'zellij-slot-pane-renderer'")
|
|
20
|
-
&& swarm.includes('paneRecord.pane_kind')
|
|
21
|
-
&& swarm.includes('paneRecord.scaling_primitive')
|
|
22
|
-
};
|
|
23
|
-
const ok = Object.values(report).every((value) => value === true || typeof value === 'string');
|
|
24
|
-
assertGate(ok, 'Zellij default UI must be compact slot-only with opt-in dashboard', report);
|
|
25
|
-
emitGate('zellij:slot-only-ui', report);
|
|
26
|
-
//# sourceMappingURL=zellij-slot-only-ui-check.js.map
|
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import fs from 'node:fs/promises';
|
|
4
|
-
import os from 'node:os';
|
|
5
|
-
import path from 'node:path';
|
|
6
|
-
import { assertGate, emitGate, importDist } from './sks-1-18-gate-lib.js';
|
|
7
|
-
const renderer = await importDist('core/zellij/zellij-slot-pane-renderer.js');
|
|
8
|
-
const text = renderer.renderZellijSlotPane({
|
|
9
|
-
slotId: 'slot-003',
|
|
10
|
-
generationIndex: 2,
|
|
11
|
-
role: 'implementer',
|
|
12
|
-
backend: 'local-llm',
|
|
13
|
-
status: 'coding',
|
|
14
|
-
fastMode: true,
|
|
15
|
-
serviceTier: 'fast',
|
|
16
|
-
provider: 'codex-lb',
|
|
17
|
-
authMode: 'codex_lb_key',
|
|
18
|
-
model: 'gpt-5.5',
|
|
19
|
-
reasoningEffort: 'medium',
|
|
20
|
-
currentFile: 'src/core/foo.ts',
|
|
21
|
-
currentTask: 'Editing Zellij slot pane renderer',
|
|
22
|
-
changedFiles: ['src/core/foo.ts', 'src/core/bar.ts'],
|
|
23
|
-
patchStatus: 'candidate',
|
|
24
|
-
verifyStatus: 'queued',
|
|
25
|
-
heartbeatAgeMs: 2000,
|
|
26
|
-
worktreeId: 'WT-0007',
|
|
27
|
-
eventLines: ['running: tool apply_patch', 'running: file src/core/foo.ts'],
|
|
28
|
-
stdoutTail: ['renderer updated live pane output'],
|
|
29
|
-
mode: 'compact-slots'
|
|
30
|
-
});
|
|
31
|
-
const lines = text.split(/\n/);
|
|
32
|
-
const artifactDir = await fs.mkdtemp(path.join(os.tmpdir(), 'sks-slot-pane-renderer-'));
|
|
33
|
-
await fs.writeFile(path.join(artifactDir, 'worker-intake.json'), JSON.stringify({
|
|
34
|
-
agent: { session_id: 'session-slot-003', role: 'implementer' },
|
|
35
|
-
backend: 'codex-sdk',
|
|
36
|
-
fast_mode: true,
|
|
37
|
-
service_tier: 'fast',
|
|
38
|
-
slice: {
|
|
39
|
-
title: 'Hydrate live slot pane from artifacts',
|
|
40
|
-
write_paths: ['src/core/zellij/zellij-slot-pane-renderer.ts']
|
|
41
|
-
},
|
|
42
|
-
worktree: { id: 'WT-0007' }
|
|
43
|
-
}, null, 2));
|
|
44
|
-
await fs.writeFile(path.join(artifactDir, 'worker-fast-mode.json'), JSON.stringify({
|
|
45
|
-
fast_mode: true,
|
|
46
|
-
service_tier: 'fast'
|
|
47
|
-
}, null, 2));
|
|
48
|
-
await fs.writeFile(path.join(artifactDir, 'zellij-worker-pane.json'), JSON.stringify({
|
|
49
|
-
provider: 'codex-lb',
|
|
50
|
-
service_tier: 'fast',
|
|
51
|
-
provider_context: {
|
|
52
|
-
provider: 'codex-lb',
|
|
53
|
-
auth_mode: 'codex_lb_key'
|
|
54
|
-
}
|
|
55
|
-
}, null, 2));
|
|
56
|
-
await fs.writeFile(path.join(artifactDir, 'codex-control-proof.json'), JSON.stringify({
|
|
57
|
-
config: {
|
|
58
|
-
model: 'gpt-5.5',
|
|
59
|
-
model_provider: 'codex-lb',
|
|
60
|
-
service_tier: 'fast',
|
|
61
|
-
model_reasoning_effort: 'medium'
|
|
62
|
-
}
|
|
63
|
-
}, null, 2));
|
|
64
|
-
await fs.writeFile(path.join(artifactDir, 'worker-heartbeat.jsonl'), `${JSON.stringify({ event: 'started', status: 'running' })}\n`);
|
|
65
|
-
await fs.writeFile(path.join(artifactDir, 'codex-sdk-events.jsonl'), `${JSON.stringify({
|
|
66
|
-
sdk_event_type: 'item.completed',
|
|
67
|
-
lane_status: 'running',
|
|
68
|
-
current_tool: 'apply_patch',
|
|
69
|
-
current_file: 'src/core/zellij/zellij-slot-pane-renderer.ts',
|
|
70
|
-
message_tail: null
|
|
71
|
-
})}\n`);
|
|
72
|
-
await fs.writeFile(path.join(artifactDir, 'worker.stdout.log'), 'renderer stdout tail\n');
|
|
73
|
-
const hydrated = await renderer.renderZellijSlotPaneFromArtifacts({
|
|
74
|
-
artifactDir,
|
|
75
|
-
slotId: 'slot-003',
|
|
76
|
-
generationIndex: 2,
|
|
77
|
-
mode: 'compact-slots'
|
|
78
|
-
});
|
|
79
|
-
await fs.rm(artifactDir, { recursive: true, force: true });
|
|
80
|
-
const command = renderer.buildZellijSlotPaneCommand({
|
|
81
|
-
cliPath: '/repo/dist/bin/sks.js',
|
|
82
|
-
missionId: 'M-test',
|
|
83
|
-
slotId: 'slot-003',
|
|
84
|
-
generationIndex: 2,
|
|
85
|
-
artifactDir: '/tmp/worker',
|
|
86
|
-
watch: true
|
|
87
|
-
});
|
|
88
|
-
const report = {
|
|
89
|
-
schema: 'sks.zellij-slot-pane-renderer-check.v1',
|
|
90
|
-
line_count: lines.length,
|
|
91
|
-
max_compact_lines: 17,
|
|
92
|
-
contains_slot: /LIVE SLOT slot-003/.test(text) && /slot: slot-003 \/ gen-2/.test(text),
|
|
93
|
-
contains_status: /coding/.test(text),
|
|
94
|
-
contains_runtime: /runtime: fast on/.test(text) && /model: gpt-5\.5/.test(text) && /provider: codex-lb/.test(text),
|
|
95
|
-
contains_files: /src\/core\/foo\.ts/.test(text) && /src\/core\/bar\.ts/.test(text),
|
|
96
|
-
contains_live_event: /event: running:/.test(text),
|
|
97
|
-
artifact_hydrates_runtime: /runtime: fast on/.test(hydrated) && /model: gpt-5\.5/.test(hydrated) && /reasoning: medium/.test(hydrated) && /auth: codex_lb_key/.test(hydrated),
|
|
98
|
-
artifact_hydrates_live_event: /tool apply_patch/.test(hydrated) && /renderer stdout tail/.test(hydrated),
|
|
99
|
-
artifact_hydrates_planned_file: /zellij-slot-pane-renderer\.ts/.test(hydrated),
|
|
100
|
-
command_uses_slot_pane: command.includes('zellij-slot-pane') && command.includes('--watch'),
|
|
101
|
-
snapshot: text,
|
|
102
|
-
hydrated_snapshot: hydrated
|
|
103
|
-
};
|
|
104
|
-
assertGate(lines.length <= 17 && report.contains_slot && report.contains_status && report.contains_runtime && report.contains_files && report.contains_live_event && report.artifact_hydrates_runtime && report.artifact_hydrates_live_event && report.artifact_hydrates_planned_file && report.command_uses_slot_pane, 'compact slot pane renderer must render one live work pane per slot', report);
|
|
105
|
-
emitGate('zellij:compact-slot-renderer', report);
|
|
106
|
-
//# sourceMappingURL=zellij-slot-pane-renderer-check.js.map
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import fs from 'node:fs';
|
|
3
|
-
import path from 'node:path';
|
|
4
|
-
import { assertGate, emitGate } from './sks-1-18-gate-lib.js';
|
|
5
|
-
import { buildWorkerPaneArtifact } from '../core/zellij/zellij-worker-pane-manager.js';
|
|
6
|
-
const root = process.cwd();
|
|
7
|
-
const managerSource = fs.readFileSync(path.join(root, 'src/core/zellij/zellij-worker-pane-manager.ts'), 'utf8');
|
|
8
|
-
const swarmSource = fs.readFileSync(path.join(root, 'src/core/agents/native-cli-session-swarm.ts'), 'utf8');
|
|
9
|
-
const base = {
|
|
10
|
-
root,
|
|
11
|
-
missionId: 'M-slot-renderer-proof-semantics',
|
|
12
|
-
sessionName: 'sks-M-slot-renderer-proof-semantics',
|
|
13
|
-
slotId: 'slot-001',
|
|
14
|
-
generationIndex: 1,
|
|
15
|
-
sessionId: 'slot-001-gen-1',
|
|
16
|
-
workerArtifactDir: 'sessions/slot-001/gen-1/worker',
|
|
17
|
-
resultPath: 'sessions/slot-001/gen-1/worker/worker-result.json',
|
|
18
|
-
heartbeatPath: 'sessions/slot-001/gen-1/worker/worker-heartbeat.jsonl',
|
|
19
|
-
patchEnvelopePath: 'sessions/slot-001/gen-1/worker/worker-patch-envelope.json',
|
|
20
|
-
stdoutLog: 'sessions/slot-001/gen-1/worker/worker.stdout.log',
|
|
21
|
-
stderrLog: 'sessions/slot-001/gen-1/worker/worker.stderr.log',
|
|
22
|
-
paneId: '101',
|
|
23
|
-
paneIdSource: 'zellij_worker_new_pane_stdout',
|
|
24
|
-
status: 'running',
|
|
25
|
-
blockers: []
|
|
26
|
-
};
|
|
27
|
-
const slotRenderer = buildWorkerPaneArtifact({
|
|
28
|
-
...base,
|
|
29
|
-
workerCommand: 'node dist/bin/sks.js zellij-slot-pane --watch'
|
|
30
|
-
});
|
|
31
|
-
const workerCommand = buildWorkerPaneArtifact({
|
|
32
|
-
...base,
|
|
33
|
-
slotId: 'slot-002',
|
|
34
|
-
sessionId: 'slot-002-gen-1',
|
|
35
|
-
workerCommand: 'node dist/bin/sks.js --agent worker --intake worker-intake.json --json'
|
|
36
|
-
});
|
|
37
|
-
const report = {
|
|
38
|
-
schema: 'sks.zellij-slot-renderer-proof-semantics-check.v1',
|
|
39
|
-
ok: true,
|
|
40
|
-
slot_renderer_pane_kind: slotRenderer.pane_kind,
|
|
41
|
-
slot_renderer_scaling_primitive: slotRenderer.scaling_primitive,
|
|
42
|
-
worker_pane_kind: workerCommand.pane_kind,
|
|
43
|
-
worker_scaling_primitive: workerCommand.scaling_primitive,
|
|
44
|
-
launch_ledger_uses_record_values: managerSource.includes('pane_kind: record.pane_kind') && managerSource.includes('scaling_primitive: record.scaling_primitive'),
|
|
45
|
-
swarm_uses_pane_record_values: swarmSource.includes('input.record.pane_kind = paneRecord.pane_kind') && swarmSource.includes('input.record.scaling_primitive = paneRecord.scaling_primitive'),
|
|
46
|
-
blockers: []
|
|
47
|
-
};
|
|
48
|
-
report.blockers = [
|
|
49
|
-
...(slotRenderer.pane_kind === 'slot_status_renderer' ? [] : ['slot_renderer_pane_kind_not_distinct']),
|
|
50
|
-
...(slotRenderer.scaling_primitive === 'native_cli_process_with_zellij_slot_renderer' ? [] : ['slot_renderer_scaling_primitive_not_distinct']),
|
|
51
|
-
...(workerCommand.pane_kind === 'worker_codex_sdk' ? [] : ['worker_pane_kind_regressed']),
|
|
52
|
-
...(workerCommand.scaling_primitive === 'native_cli_process_in_zellij_worker_pane' ? [] : ['worker_scaling_primitive_regressed']),
|
|
53
|
-
...(report.launch_ledger_uses_record_values ? [] : ['launch_ledger_semantics_not_record_backed']),
|
|
54
|
-
...(report.swarm_uses_pane_record_values ? [] : ['swarm_semantics_not_record_backed'])
|
|
55
|
-
];
|
|
56
|
-
report.ok = report.blockers.length === 0;
|
|
57
|
-
assertGate(report.ok, 'Zellij compact slot renderer proof semantics must distinguish status renderer panes from worker command panes', report);
|
|
58
|
-
emitGate('zellij:slot-renderer-proof-semantics', report);
|
|
59
|
-
//# sourceMappingURL=zellij-slot-renderer-proof-semantics-check.js.map
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import fs from 'node:fs/promises';
|
|
3
|
-
import path from 'node:path';
|
|
4
|
-
import { packageRoot } from '../core/fsx.js';
|
|
5
|
-
import { buildZellijLayoutKdl, validateZellijLayoutKdl, writeZellijLayout } from '../core/zellij/zellij-layout-builder.js';
|
|
6
|
-
const root = packageRoot();
|
|
7
|
-
const tmpRoot = path.join(root, '.sneakoscope', 'tmp', 'spawn-on-demand-layout-check');
|
|
8
|
-
const built = buildZellijLayoutKdl({ missionId: 'M-spawn-on-demand-layout', ledgerRoot: tmpRoot, cwd: root, kind: 'naruto', slotCount: 24 });
|
|
9
|
-
const validation = validateZellijLayoutKdl(built.layout_kdl);
|
|
10
|
-
const writeBuilt = await writeZellijLayout(root, { missionId: 'M-spawn-on-demand-layout-write', ledgerRoot: tmpRoot, cwd: root, kind: 'agent', slotCount: 5 });
|
|
11
|
-
const manifest = JSON.parse(await fs.readFile(path.join(tmpRoot, 'zellij-lane-runtime.json'), 'utf8'));
|
|
12
|
-
const workerPaneMatches = built.layout_kdl.match(/pane name="slot-/g) || [];
|
|
13
|
-
const laneCommandMatches = built.layout_kdl.match(/\bzellij-lane\b/g) || [];
|
|
14
|
-
const ok = validation.ok
|
|
15
|
-
&& built.initial_worker_panes === 0
|
|
16
|
-
&& built.lane_runtime_policies.length === 0
|
|
17
|
-
&& workerPaneMatches.length === 0
|
|
18
|
-
&& laneCommandMatches.length === 0
|
|
19
|
-
&& manifest.lanes.length === 0
|
|
20
|
-
&& writeBuilt.initial_worker_panes === 0;
|
|
21
|
-
emit({
|
|
22
|
-
schema: 'sks.zellij-spawn-on-demand-layout-check.v1',
|
|
23
|
-
ok,
|
|
24
|
-
initial_worker_panes: built.initial_worker_panes,
|
|
25
|
-
slot_count_request: built.slot_count,
|
|
26
|
-
lane_runtime_policy_count: built.lane_runtime_policies.length,
|
|
27
|
-
worker_pane_matches: workerPaneMatches.length,
|
|
28
|
-
lane_command_matches: laneCommandMatches.length,
|
|
29
|
-
monitor_pane_enabled: built.monitor_pane_enabled,
|
|
30
|
-
validation,
|
|
31
|
-
manifest_lane_count: manifest.lanes.length,
|
|
32
|
-
layout_path: writeBuilt.layout_path,
|
|
33
|
-
blockers: ok ? [] : ['zellij_spawn_on_demand_layout_contract_failed']
|
|
34
|
-
});
|
|
35
|
-
function emit(report) {
|
|
36
|
-
console.log(JSON.stringify(report, null, 2));
|
|
37
|
-
if (!report.ok)
|
|
38
|
-
process.exitCode = 1;
|
|
39
|
-
}
|
|
40
|
-
//# sourceMappingURL=zellij-spawn-on-demand-layout-check.js.map
|
|
@@ -1,105 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
// @ts-nocheck
|
|
3
|
-
import fs from 'node:fs/promises';
|
|
4
|
-
import path from 'node:path';
|
|
5
|
-
import { root, assertGate, emitGate, importDist, readText } from './sks-1-18-gate-lib.js';
|
|
6
|
-
// Validates the lane UI design constraints: no line overflow at common widths,
|
|
7
|
-
// all required sections present, blocker cap + report pointer, middle-ellipsis
|
|
8
|
-
// for long paths, NO_COLOR / color-strippability, and that footer `sks ...`
|
|
9
|
-
// commands are really registered.
|
|
10
|
-
const ESC = '';
|
|
11
|
-
const ANSI_RE = /\[[0-9;]*m/g;
|
|
12
|
-
const mod = await importDist('core/zellij/zellij-lane-renderer.js');
|
|
13
|
-
const { composeLaneFrame, ZELLIJ_LANE_FOOTER_KEYS, ZELLIJ_LANE_MAX_BLOCKERS, ZELLIJ_LANE_SECTIONS } = mod;
|
|
14
|
-
assertGate(typeof composeLaneFrame === 'function', 'composeLaneFrame export missing', {});
|
|
15
|
-
assertGate(Array.isArray(ZELLIJ_LANE_FOOTER_KEYS), 'ZELLIJ_LANE_FOOTER_KEYS export missing', {});
|
|
16
|
-
assertGate(ZELLIJ_LANE_MAX_BLOCKERS === 3, 'ZELLIJ_LANE_MAX_BLOCKERS should be 3', { actual: ZELLIJ_LANE_MAX_BLOCKERS });
|
|
17
|
-
const longPath = `src/core/${'deep/'.repeat(40)}final-file.ts`;
|
|
18
|
-
const view = {
|
|
19
|
-
missionId: 'M-ui',
|
|
20
|
-
slot: 'slot-001',
|
|
21
|
-
updatedAt: '2026-05-30T00:00:00.000Z',
|
|
22
|
-
mode: 'Naruto',
|
|
23
|
-
fast: 'on · service_tier=fast',
|
|
24
|
-
workers: 'active 5/20 · clone 003/100 · pending 12',
|
|
25
|
-
codexChild: 'active 5',
|
|
26
|
-
currentFile: longPath,
|
|
27
|
-
queue: 'pending 12 · applying 2 · verified 8 · blocked 0',
|
|
28
|
-
patch: 'apply ok · verify ok · model-authored 3',
|
|
29
|
-
lease: 'ok',
|
|
30
|
-
protectedPaths: 'ok',
|
|
31
|
-
rollback: 'ready',
|
|
32
|
-
blockers: ['blocker_one', 'blocker_two', 'blocker_three', 'blocker_four', 'blocker_five', 'blocker_six'],
|
|
33
|
-
reports: '.sneakoscope/reports/agent-proof-evidence.json',
|
|
34
|
-
laneNote: 'fixture'
|
|
35
|
-
};
|
|
36
|
-
// Canonical composed-frame superset (shared with screen-proof's scrapeable subset).
|
|
37
|
-
const REQUIRED_SECTIONS = ZELLIJ_LANE_SECTIONS;
|
|
38
|
-
// No-overflow + all-sections across the common Zellij pane widths.
|
|
39
|
-
for (const width of [80, 100, 120]) {
|
|
40
|
-
const frame = composeLaneFrame(view, { width, color: false });
|
|
41
|
-
const lines = frame.split('\n');
|
|
42
|
-
for (const line of lines) {
|
|
43
|
-
assertGate(line.length <= width, `line_overflow_at_${width}`, { width, line, length: line.length });
|
|
44
|
-
}
|
|
45
|
-
for (const token of REQUIRED_SECTIONS) {
|
|
46
|
-
assertGate(frame.includes(token), `missing section "${token}" at width ${width}`, { width, token });
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
// Blocker cap at width 100: first 3 shown + "+3 more" + report path; the rest hidden.
|
|
50
|
-
const frame100 = composeLaneFrame(view, { width: 100, color: false });
|
|
51
|
-
for (const shown of ['blocker_one', 'blocker_two', 'blocker_three']) {
|
|
52
|
-
assertGate(frame100.includes(shown), `blocker "${shown}" should be shown`, {});
|
|
53
|
-
}
|
|
54
|
-
assertGate(frame100.includes('+3 more'), 'should summarize "+3 more" overflow blockers', {});
|
|
55
|
-
assertGate(frame100.includes(view.reports), 'overflow summary should point at the report path', {});
|
|
56
|
-
for (const hidden of ['blocker_four', 'blocker_five', 'blocker_six']) {
|
|
57
|
-
assertGate(!frame100.includes(hidden), `blocker "${hidden}" should be capped/hidden`, {});
|
|
58
|
-
}
|
|
59
|
-
// Middle-ellipsis: long path is truncated with '…' and the full run is gone.
|
|
60
|
-
const frame80 = composeLaneFrame(view, { width: 80, color: false });
|
|
61
|
-
assertGate(frame80.includes('…'), 'long path should be middle-ellipsized', {});
|
|
62
|
-
assertGate(!frame80.includes(longPath), 'full long path should not appear (truncated)', {});
|
|
63
|
-
// NO_COLOR respect: when color is derived from NO_COLOR, no ESC bytes appear.
|
|
64
|
-
process.env.NO_COLOR = '1';
|
|
65
|
-
const frameA = composeLaneFrame(view, { width: 100 });
|
|
66
|
-
assertGate(!frameA.includes(ESC), 'NO_COLOR=1 must suppress ANSI escape bytes', {});
|
|
67
|
-
const frameB = composeLaneFrame(view, { width: 100, color: false });
|
|
68
|
-
assertGate(!frameB.includes(ESC), 'color:false must suppress ANSI escape bytes', {});
|
|
69
|
-
delete process.env.NO_COLOR;
|
|
70
|
-
// With color on, stripping ANSI must still leave all sections readable.
|
|
71
|
-
const frameC = composeLaneFrame(view, { width: 100, color: true });
|
|
72
|
-
const stripped = frameC.replace(ANSI_RE, '');
|
|
73
|
-
for (const token of REQUIRED_SECTIONS) {
|
|
74
|
-
assertGate(stripped.includes(token), `section "${token}" must survive ANSI strip`, { token });
|
|
75
|
-
}
|
|
76
|
-
// Footer `sks ...` commands must be real registry keys.
|
|
77
|
-
const registry = readText('src/cli/command-registry.ts');
|
|
78
|
-
const footerCommands = [];
|
|
79
|
-
for (const key of ZELLIJ_LANE_FOOTER_KEYS) {
|
|
80
|
-
if (!key.startsWith('sks '))
|
|
81
|
-
continue;
|
|
82
|
-
const cmd = key.split(/\s+/)[1];
|
|
83
|
-
if (cmd)
|
|
84
|
-
footerCommands.push(cmd);
|
|
85
|
-
}
|
|
86
|
-
for (const cmd of footerCommands) {
|
|
87
|
-
const registered = registry.includes(`\n ${cmd}:`) ||
|
|
88
|
-
registry.includes(`'${cmd}':`) ||
|
|
89
|
-
registry.includes(`"${cmd}":`);
|
|
90
|
-
assertGate(registered, `footer command "${cmd}" is not a registered CLI command`, { cmd });
|
|
91
|
-
}
|
|
92
|
-
for (const required of ['doctor', 'zellij', 'agent']) {
|
|
93
|
-
assertGate(footerCommands.includes(required), `expected footer command "${required}" not found`, { footerCommands });
|
|
94
|
-
}
|
|
95
|
-
const report = {
|
|
96
|
-
schema: 'sks.zellij-ui-design.v1',
|
|
97
|
-
ok: true,
|
|
98
|
-
widths: [80, 100, 120],
|
|
99
|
-
sections: REQUIRED_SECTIONS.length,
|
|
100
|
-
footer_commands: footerCommands
|
|
101
|
-
};
|
|
102
|
-
await fs.mkdir(path.join(root, '.sneakoscope', 'reports'), { recursive: true });
|
|
103
|
-
await fs.writeFile(path.join(root, '.sneakoscope', 'reports', 'zellij-ui-design.json'), `${JSON.stringify(report, null, 2)}\n`);
|
|
104
|
-
emitGate('zellij:ui-design', { widths: [80, 100, 120], sections: REQUIRED_SECTIONS.length });
|
|
105
|
-
//# sourceMappingURL=zellij-ui-design-check.js.map
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import fs from 'node:fs/promises';
|
|
3
|
-
import path from 'node:path';
|
|
4
|
-
import { packageRoot } from '../core/fsx.js';
|
|
5
|
-
import { buildWorkerPaneArtifact, evaluateZellijWorkerPaneSpawnOrder, isRealZellijWorkerPaneIdSource } from '../core/zellij/zellij-worker-pane-manager.js';
|
|
6
|
-
const root = packageRoot();
|
|
7
|
-
const source = await fs.readFile(path.join(root, 'src', 'core', 'zellij', 'zellij-worker-pane-manager.ts'), 'utf8');
|
|
8
|
-
const artifact = buildWorkerPaneArtifact({
|
|
9
|
-
root,
|
|
10
|
-
missionId: 'M-worker-pane-manager',
|
|
11
|
-
sessionName: 'sks-M-worker-pane-manager',
|
|
12
|
-
slotId: 'slot-001',
|
|
13
|
-
generationIndex: 7,
|
|
14
|
-
sessionId: 'slot-001-gen-7',
|
|
15
|
-
workerArtifactDir: 'sessions/slot-001/gen-7/worker',
|
|
16
|
-
resultPath: 'sessions/slot-001/gen-7/worker/worker-result.json',
|
|
17
|
-
heartbeatPath: 'sessions/slot-001/gen-7/worker/worker-heartbeat.jsonl',
|
|
18
|
-
patchEnvelopePath: 'sessions/slot-001/gen-7/worker/worker-patch-envelope.json',
|
|
19
|
-
stdoutLog: 'sessions/slot-001/gen-7/worker/worker.stdout.log',
|
|
20
|
-
stderrLog: 'sessions/slot-001/gen-7/worker/worker.stderr.log',
|
|
21
|
-
paneId: '42',
|
|
22
|
-
paneIdSource: 'zellij_worker_new_pane_stdout',
|
|
23
|
-
providerContext: {
|
|
24
|
-
schema: 'sks.provider-context.v1',
|
|
25
|
-
generated_at: new Date().toISOString(),
|
|
26
|
-
provider: 'codex-lb',
|
|
27
|
-
auth_mode: 'codex_lb_key',
|
|
28
|
-
route: '$Naruto',
|
|
29
|
-
service_tier: 'fast',
|
|
30
|
-
source: 'codex_lb',
|
|
31
|
-
confidence: 'high',
|
|
32
|
-
conflict: false,
|
|
33
|
-
warnings: [],
|
|
34
|
-
signals: {
|
|
35
|
-
openai_api_key_present: false,
|
|
36
|
-
codex_lb_key_present: true,
|
|
37
|
-
codex_lb_explicit: true,
|
|
38
|
-
codex_app_auth_present: false,
|
|
39
|
-
model_provider: 'codex-lb'
|
|
40
|
-
}
|
|
41
|
-
},
|
|
42
|
-
serviceTier: 'fast',
|
|
43
|
-
sdkThreadId: 'sdk-thread-7',
|
|
44
|
-
sdkRunId: 'sdk-run-7',
|
|
45
|
-
streamEventCount: 4,
|
|
46
|
-
structuredOutputValid: true,
|
|
47
|
-
status: 'running',
|
|
48
|
-
workerCommand: 'node dist/bin/sks.js --agent worker',
|
|
49
|
-
blockers: []
|
|
50
|
-
});
|
|
51
|
-
const slotRendererArtifact = buildWorkerPaneArtifact({
|
|
52
|
-
root,
|
|
53
|
-
missionId: 'M-worker-pane-manager',
|
|
54
|
-
sessionName: 'sks-M-worker-pane-manager',
|
|
55
|
-
slotId: 'slot-002',
|
|
56
|
-
generationIndex: 1,
|
|
57
|
-
sessionId: 'slot-002-gen-1',
|
|
58
|
-
workerArtifactDir: 'sessions/slot-002/gen-1/worker',
|
|
59
|
-
resultPath: 'sessions/slot-002/gen-1/worker/worker-result.json',
|
|
60
|
-
heartbeatPath: 'sessions/slot-002/gen-1/worker/worker-heartbeat.jsonl',
|
|
61
|
-
patchEnvelopePath: 'sessions/slot-002/gen-1/worker/worker-patch-envelope.json',
|
|
62
|
-
stdoutLog: 'sessions/slot-002/gen-1/worker/worker.stdout.log',
|
|
63
|
-
stderrLog: 'sessions/slot-002/gen-1/worker/worker.stderr.log',
|
|
64
|
-
paneId: '43',
|
|
65
|
-
paneIdSource: 'zellij_worker_new_pane_stdout',
|
|
66
|
-
status: 'running',
|
|
67
|
-
workerCommand: 'node dist/bin/sks.js zellij-slot-pane --watch',
|
|
68
|
-
blockers: []
|
|
69
|
-
});
|
|
70
|
-
const spawnOrder = evaluateZellijWorkerPaneSpawnOrder([
|
|
71
|
-
{ event_type: 'session_launch_started' },
|
|
72
|
-
{ event_type: 'zellij_worker_pane_created' },
|
|
73
|
-
{ event_type: 'worker_started' },
|
|
74
|
-
{ event_type: 'codex_sdk_thread_started' },
|
|
75
|
-
{ event_type: 'result_written' },
|
|
76
|
-
{ event_type: 'pane_closed' }
|
|
77
|
-
]);
|
|
78
|
-
const syntheticRejected = !isRealZellijWorkerPaneIdSource('synthetic_layout_pending_proof')
|
|
79
|
-
&& !isRealZellijWorkerPaneIdSource('zellij_worker_pane_stdout_missing');
|
|
80
|
-
const sourceOk = source.includes("action', 'new-pane'")
|
|
81
|
-
&& source.includes("'--direction', directionRequested")
|
|
82
|
-
&& source.includes("'--near-current-pane'")
|
|
83
|
-
&& source.includes("'--name', paneName")
|
|
84
|
-
&& source.includes("'--', 'sh', '-lc'")
|
|
85
|
-
&& source.includes('zellij_worker_new_pane_stdout')
|
|
86
|
-
&& source.includes('zellij_worker_list_panes')
|
|
87
|
-
&& source.includes('provider_context');
|
|
88
|
-
const ok = artifact.ok
|
|
89
|
-
&& artifact.pane_name === 'slot-001/gen-7 · codex-sdk · fast · codex-lb · running'
|
|
90
|
-
&& artifact.pane_kind === 'worker_codex_sdk'
|
|
91
|
-
&& artifact.provider === 'codex-lb'
|
|
92
|
-
&& artifact.service_tier === 'fast'
|
|
93
|
-
&& artifact.direction_requested === 'down'
|
|
94
|
-
&& artifact.direction_applied === 'not_applied'
|
|
95
|
-
&& artifact.sdk_thread_id === 'sdk-thread-7'
|
|
96
|
-
&& artifact.stream_event_count === 4
|
|
97
|
-
&& artifact.scaling_primitive === 'native_cli_process_in_zellij_worker_pane'
|
|
98
|
-
&& slotRendererArtifact.pane_kind === 'slot_status_renderer'
|
|
99
|
-
&& slotRendererArtifact.scaling_primitive === 'native_cli_process_with_zellij_slot_renderer'
|
|
100
|
-
&& syntheticRejected
|
|
101
|
-
&& spawnOrder.ok
|
|
102
|
-
&& sourceOk;
|
|
103
|
-
emit({ schema: 'sks.zellij-worker-pane-manager-check.v1', ok, artifact, synthetic_rejected: syntheticRejected, spawn_order: spawnOrder, source_ok: sourceOk, blockers: ok ? [] : ['zellij_worker_pane_manager_contract_failed'] });
|
|
104
|
-
function emit(report) {
|
|
105
|
-
console.log(JSON.stringify(report, null, 2));
|
|
106
|
-
if (!report.ok)
|
|
107
|
-
process.exitCode = 1;
|
|
108
|
-
}
|
|
109
|
-
//# sourceMappingURL=zellij-worker-pane-manager-check.js.map
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
import fs from 'node:fs/promises';
|
|
3
|
-
import path from 'node:path';
|
|
4
|
-
import { packageRoot } from '../core/fsx.js';
|
|
5
|
-
const root = packageRoot();
|
|
6
|
-
const managerPath = path.join(root, 'src', 'core', 'zellij', 'zellij-worker-pane-manager.ts');
|
|
7
|
-
const nativePath = path.join(root, 'src', 'core', 'agents', 'native-cli-session-swarm.ts');
|
|
8
|
-
const manager = await fs.readFile(managerPath, 'utf8');
|
|
9
|
-
const native = await fs.readFile(nativePath, 'utf8');
|
|
10
|
-
const managerOwnsNewPane = /runZellij\(\[[\s\S]{0,800}'new-pane'/.test(manager)
|
|
11
|
-
|| (manager.includes("'new-pane'") && manager.includes('const newPaneArgs') && manager.includes('runZellij(newPaneArgs'));
|
|
12
|
-
const nativeDirectNewPane = /runZellij\(\[[\s\S]{0,500}'new-pane'/.test(native);
|
|
13
|
-
const nativeUsesManager = native.includes('openWorkerPane({') && native.includes('closeWorkerPane({');
|
|
14
|
-
const dynamicDirection = manager.includes("'--direction', directionRequested") && manager.includes("'--near-current-pane'");
|
|
15
|
-
const fallbackRecorded = manager.includes('worker_direction_applied')
|
|
16
|
-
&& manager.includes("directionApplied = rightColumn ? 'down' : 'unknown'")
|
|
17
|
-
&& manager.includes("directionApplied === 'down' ? 'down' : directionApplied === 'unknown' ? 'unknown' : 'not_applied'");
|
|
18
|
-
const slotAnchorOwned = manager.includes('buildZellijSlotColumnAnchorCommand')
|
|
19
|
-
&& manager.includes("recordSlotColumnAnchorInRightColumn")
|
|
20
|
-
&& manager.includes("'--direction', 'right', '--name', 'SLOTS'");
|
|
21
|
-
const ok = managerOwnsNewPane && !nativeDirectNewPane && nativeUsesManager && dynamicDirection && fallbackRecorded && slotAnchorOwned;
|
|
22
|
-
emit({
|
|
23
|
-
schema: 'sks.zellij-worker-pane-manager-single-owner-check.v1',
|
|
24
|
-
ok,
|
|
25
|
-
checks: {
|
|
26
|
-
manager_owns_new_pane: managerOwnsNewPane,
|
|
27
|
-
native_direct_new_pane_absent: !nativeDirectNewPane,
|
|
28
|
-
native_uses_manager: nativeUsesManager,
|
|
29
|
-
dynamic_direction_requested: dynamicDirection,
|
|
30
|
-
fallback_recorded: fallbackRecorded,
|
|
31
|
-
slot_anchor_owned: slotAnchorOwned
|
|
32
|
-
},
|
|
33
|
-
blockers: ok ? [] : [
|
|
34
|
-
...(!managerOwnsNewPane ? ['worker_pane_manager_new_pane_missing'] : []),
|
|
35
|
-
...(nativeDirectNewPane ? ['native_cli_session_swarm_direct_new_pane'] : []),
|
|
36
|
-
...(!nativeUsesManager ? ['native_cli_session_swarm_not_using_worker_pane_manager'] : []),
|
|
37
|
-
...(!dynamicDirection ? ['zellij_worker_dynamic_direction_missing'] : []),
|
|
38
|
-
...(!fallbackRecorded ? ['zellij_worker_direction_fallback_not_recorded'] : []),
|
|
39
|
-
...(!slotAnchorOwned ? ['zellij_worker_slot_column_anchor_not_owned'] : [])
|
|
40
|
-
]
|
|
41
|
-
});
|
|
42
|
-
function emit(report) {
|
|
43
|
-
console.log(JSON.stringify(report, null, 2));
|
|
44
|
-
if (!report.ok)
|
|
45
|
-
process.exitCode = 1;
|
|
46
|
-
}
|
|
47
|
-
//# sourceMappingURL=zellij-worker-pane-manager-single-owner-check.js.map
|