@quantiya/codevibe-codex-plugin 2.0.6 → 2.0.8
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 +20 -23
- package/dist/server.js +21 -21
- package/hooks/common.sh +506 -19
- package/{bin/codevibe-codex → libexec/companion-launcher} +37 -76
- package/node_modules/@quantiya/codevibe-core/README.md +7 -5
- package/node_modules/@quantiya/codevibe-core/dist/agy-cli-contract.d.ts +14 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/appsync-client.d.ts +229 -61
- package/node_modules/@quantiya/codevibe-core/dist/appsync/event-throttle.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/dist/appsync/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/appsync/queries.d.ts +6 -2
- package/node_modules/@quantiya/codevibe-core/dist/auth/auth-telemetry.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/keychain-cli.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/auth/vendor-key-cli.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/index.d.ts +50 -22
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/persist-preference.d.ts +1 -5
- package/node_modules/@quantiya/codevibe-core/dist/companion-mode/resolve-agent.d.ts +5 -4
- package/node_modules/@quantiya/codevibe-core/dist/config/config.d.ts +0 -5
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/oauth-refresh.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/__tests__/upstream-result-helpers.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/broker.d.ts +196 -12
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/chatgpt-config.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/index.d.ts +4 -1
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-account-lock.d.ts +150 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/oauth-refresh.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/types.d.ts +165 -17
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/upstream-client.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/credential-broker/vendor-key-store.d.ts +32 -1
- package/node_modules/@quantiya/codevibe-core/dist/crypto/__tests__/encrypt-for-emit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/__tests__/open-prompt-id.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/encrypt-for-emit.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/index.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/crypto/open-prompt-id.d.ts +36 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/__tests__/process-guards.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/daemon/process-guards.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/__tests__/prompt-raise.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/e1/prompt-raise.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/dist/index.d.ts +20 -2
- package/node_modules/@quantiya/codevibe-core/dist/index.js +4543 -288
- package/node_modules/@quantiya/codevibe-core/dist/keychain/__tests__/keychain-manager.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/__tests__/keychain-migrate.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-backend.d.ts +105 -0
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-manager.d.ts +40 -5
- package/node_modules/@quantiya/codevibe-core/dist/keychain/keychain-migrate.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/anchored-fs.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/bounded-directory.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/bounded-output.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/durable-directory.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/hosted-class-a-sink.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/process-identity.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/process-tree.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/publication-authority-capability.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/reviewer-rationale-flag.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/snapshot-merge.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-authority-fixture.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-authority.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/__tests__/workspace-materializer.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-disposable-repo.d.ts +23 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/agentic-resolve.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/anchored-fs.d.ts +243 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-directory.d.ts +64 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-helper.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/bounded-output.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-emit.d.ts +13 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/class-a-sign.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-directory.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/durable-store.d.ts +217 -25
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/group-decision-outcome.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/hosted-class-a-sink.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/implementor-argv.d.ts +89 -7
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/index.d.ts +3 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/local-executor-impl.d.ts +177 -76
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/merge-conflict-resolve.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-identity.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/process-tree.d.ts +123 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-reconcile.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/revert-runner.d.ts +14 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/reviewer-rationale-flag.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/snapshot-merge.d.ts +124 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/task-group-types.d.ts +7 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/team-execution-flag.d.ts +2 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/track-registry.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/types.d.ts +34 -2
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/build.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/deploy-preflight.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/diff-sanity.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/hostile-grep.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/lint.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/shell-runner.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/source-traceability.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/tests.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-gates/typecheck.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/verification-runner.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-authority.d.ts +45 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-materializer.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/local-executor/workspace-shadow.d.ts +378 -85
- package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/__tests__/detect-agents.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/detect-agents.d.ts +10 -30
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/index.d.ts +1 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a1a-planner-offers.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/a6-cli-surface.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachment-journal.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-attachments-dir-race.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-multi-mention-panel.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-panel-attachments.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/advisory-quota-stdout-result.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/agent-turn-context-batch.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/bounded-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/brainstorm-quorum.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cli-team-session-key.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/command-intent.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-compaction.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-hosted-sync.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items-wiring.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/context-items.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-full-team-events.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/cp8-team-decomposed-zk.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/explicit-tty-exit.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mention-suggest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/planner-offer-e1.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/route-browse-summarize-recovery.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/workspace-shutdown.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/advisory-attachment-journal.d.ts +165 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/attachments.d.ts +53 -8
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/bounded-shutdown.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/brainstorm-quorum.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +97 -70
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +51847 -33465
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/command-intent.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/OrchestrationApp.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-compaction.d.ts +264 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items-hosted-sync.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-items.d.ts +408 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/context-store.d.ts +162 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/declared-test-runner.d.ts +21 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +41 -13
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/explicit-tty-exit.d.ts +17 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-decision-submit.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/gate-prompts.d.ts +78 -3
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +309 -37
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mention-suggest.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +4 -22
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/planner-offer-e1.d.ts +97 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/quorum-loop.d.ts +603 -77
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/reducer.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/task-progress.d.ts +17 -4
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/team-decompose.d.ts +47 -29
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/types.d.ts +103 -6
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/workspace-shutdown.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/index.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-advisory.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/local-gemma.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/planner/types.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/index.d.ts +0 -2
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/output-parser.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/provider.d.ts +9 -6
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/antigravity.d.ts +2 -3
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/registry.d.ts +9 -4
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/token-usage.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/types.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/verdict-classifier.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/device-registration-lease.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/pending-session-create.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-rekey-fingerprint.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-key-reconciliation.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/__tests__/session-resume-pending-first.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/device-key-watcher.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/index.d.ts +4 -2
- package/node_modules/@quantiya/codevibe-core/dist/session/pending-session-create.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/dist/session/register-device-key.d.ts +11 -1
- package/node_modules/@quantiya/codevibe-core/dist/session/session-rekey.d.ts +8 -8
- package/node_modules/@quantiya/codevibe-core/dist/session/session-resume.d.ts +21 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/command-runner.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate/docker.d.ts +14 -32
- package/node_modules/@quantiya/codevibe-core/dist/substrate/index.d.ts +0 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate/sandbox-exec.d.ts +17 -16
- package/node_modules/@quantiya/codevibe-core/dist/substrate/types.d.ts +39 -5
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/__tests__/reviewer-credential-preflight.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/apikey-bootstrap.d.ts +24 -1
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/engage-substrate.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/index.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/reviewer-credential-preflight.d.ts +50 -0
- package/node_modules/@quantiya/codevibe-core/dist/substrate-launch/sanitized-env.d.ts +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/test-publication-authority-setup.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/consolidator.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/digest.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/flock-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/ledger.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/outbox.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/replay-cursor.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/session-map.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/__tests__/socket-rollout-lock.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/atomic-file.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/consolidator.d.ts +253 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/digest.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/flock-rollout-lock.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/index.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/ledger.d.ts +274 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/outbox.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/replay-cursor.d.ts +190 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/session-map.d.ts +133 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/socket-rollout-lock.d.ts +57 -0
- package/node_modules/@quantiya/codevibe-core/dist/tool-activity/types.d.ts +368 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/encryption.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/dist/types/events.d.ts +29 -4
- package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +32 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/README.md +207 -163
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v35.js +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/{esm-node → esm}/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/md5.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/native.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/nil.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/parse.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/regex.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/rng.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1.js +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v3.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v35.js +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v4.js +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v5.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/validate.js +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm/version.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/index.js +9 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/md5.js +113 -193
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/native.js +1 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/nil.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/parse.js +6 -32
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/regex.js +1 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/rng.js +6 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/sha1.js +62 -88
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/stringify.js +27 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1.js +78 -90
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v3.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v35.js +30 -57
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v4.js +21 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v5.js +8 -3
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/validate.js +2 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-browser/version.js +5 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/package.json +73 -76
- package/node_modules/@quantiya/codevibe-core/package.json +7 -6
- package/node_modules/fs-ext/.eslintrc +53 -0
- package/node_modules/fs-ext/.github/workflows/node.js.yml +31 -0
- package/node_modules/fs-ext/.travis.yml +25 -0
- package/node_modules/fs-ext/LICENSE.txt +18 -0
- package/node_modules/fs-ext/README.md +130 -0
- package/node_modules/fs-ext/appveyor.yml +20 -0
- package/node_modules/fs-ext/binding.gyp +11 -0
- package/node_modules/fs-ext/build/Makefile +347 -0
- package/node_modules/fs-ext/build/Release/.deps/Release/fs_ext.node.d +1 -0
- package/node_modules/fs-ext/build/Release/.deps/Release/obj.target/fs_ext/fs-ext.o.d +165 -0
- package/node_modules/fs-ext/build/Release/fs_ext.node +0 -0
- package/node_modules/fs-ext/build/Release/obj.target/fs_ext/fs-ext.o +0 -0
- package/node_modules/fs-ext/build/binding.Makefile +6 -0
- package/node_modules/fs-ext/build/config.gypi +504 -0
- package/node_modules/fs-ext/build/fs_ext.target.mk +183 -0
- package/node_modules/fs-ext/build/gyp-mac-tool +768 -0
- package/node_modules/fs-ext/example.js +57 -0
- package/node_modules/fs-ext/fs-ext.cc +622 -0
- package/node_modules/fs-ext/fs-ext.js +131 -0
- package/node_modules/fs-ext/package.json +42 -0
- package/node_modules/fs-ext/run_tests.js +17 -0
- package/node_modules/fs-ext/tests/test-fs-fcntl.js +350 -0
- package/node_modules/fs-ext/tests/test-fs-flock.js +452 -0
- package/node_modules/fs-ext/tests/test-fs-flock_stress.js +239 -0
- package/node_modules/fs-ext/tests/test-fs-seek.js +607 -0
- package/node_modules/fs-ext/tests/test-fs-seek_stress.js +313 -0
- package/node_modules/fs-ext/tests/test-fs-statvfs.js +15 -0
- package/node_modules/fs-ext/tests/worker-test.js +56 -0
- package/node_modules/fs-ext/wscript +15 -0
- package/node_modules/nan/.github/workflows/ci.yml +46 -0
- package/node_modules/nan/.pre-commit-config.yaml +8 -0
- package/node_modules/nan/CHANGELOG.md +605 -0
- package/node_modules/nan/CMakeLists.txt +138 -0
- package/node_modules/nan/LICENSE.md +9 -0
- package/node_modules/nan/README.md +457 -0
- package/node_modules/nan/doc/asyncworker.md +146 -0
- package/node_modules/nan/doc/buffers.md +54 -0
- package/node_modules/nan/doc/callback.md +76 -0
- package/node_modules/nan/doc/converters.md +41 -0
- package/node_modules/nan/doc/errors.md +226 -0
- package/node_modules/nan/doc/json.md +62 -0
- package/node_modules/nan/doc/maybe_types.md +583 -0
- package/node_modules/nan/doc/methods.md +689 -0
- package/node_modules/nan/doc/new.md +147 -0
- package/node_modules/nan/doc/node_misc.md +123 -0
- package/node_modules/nan/doc/object_wrappers.md +263 -0
- package/node_modules/nan/doc/persistent.md +296 -0
- package/node_modules/nan/doc/scopes.md +73 -0
- package/node_modules/nan/doc/script.md +58 -0
- package/node_modules/nan/doc/string_bytes.md +81 -0
- package/node_modules/nan/doc/v8_internals.md +211 -0
- package/node_modules/nan/doc/v8_misc.md +85 -0
- package/node_modules/nan/include_dirs.js +1 -0
- package/node_modules/nan/nan.h +3202 -0
- package/node_modules/nan/nan_callbacks.h +141 -0
- package/node_modules/nan/nan_callbacks_12_inl.h +730 -0
- package/node_modules/nan/nan_callbacks_pre_12_inl.h +528 -0
- package/node_modules/nan/nan_converters.h +72 -0
- package/node_modules/nan/nan_converters_43_inl.h +68 -0
- package/node_modules/nan/nan_converters_pre_43_inl.h +42 -0
- package/node_modules/nan/nan_define_own_property_helper.h +29 -0
- package/node_modules/nan/nan_implementation_12_inl.h +446 -0
- package/node_modules/nan/nan_implementation_pre_12_inl.h +263 -0
- package/node_modules/nan/nan_json.h +166 -0
- package/node_modules/nan/nan_maybe_43_inl.h +360 -0
- package/node_modules/nan/nan_maybe_pre_43_inl.h +268 -0
- package/node_modules/nan/nan_new.h +340 -0
- package/node_modules/nan/nan_object_wrap.h +156 -0
- package/node_modules/nan/nan_persistent_12_inl.h +132 -0
- package/node_modules/nan/nan_persistent_pre_12_inl.h +242 -0
- package/node_modules/nan/nan_private.h +73 -0
- package/node_modules/nan/nan_scriptorigin.h +97 -0
- package/node_modules/nan/nan_string_bytes.h +305 -0
- package/node_modules/nan/nan_typedarray_contents.h +96 -0
- package/node_modules/nan/nan_weak.h +453 -0
- package/node_modules/nan/package.json +38 -0
- package/node_modules/nan/tools/1to2.js +412 -0
- package/node_modules/nan/tools/README.md +14 -0
- package/node_modules/nan/tools/package.json +19 -0
- package/package.json +5 -5
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/orchestration-cli.d.ts +0 -12
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-bootstrap.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-failure-recourse.d.ts +0 -23
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-save.d.ts +0 -47
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-seat-picker.d.ts +0 -72
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-telemetry.d.ts +0 -54
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-test-agents.d.ts +0 -108
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +0 -146
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-wizard.d.ts +0 -57
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cohort-flag.d.ts +0 -16
- package/node_modules/@quantiya/codevibe-core/dist/reviewer/providers/gemini.d.ts +0 -109
- package/node_modules/@quantiya/codevibe-core/dist/substrate/git-proxy.d.ts +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CHANGELOG.md +0 -274
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/CONTRIBUTING.md +0 -18
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/bin/uuid +0 -2
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/md5.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/native.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/rng.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/sha1.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/commonjs-browser/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/md5.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/native.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/nil.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/parse.js +0 -35
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/regex.js +0 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/rng.js +0 -12
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/sha1.js +0 -13
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/stringify.js +0 -33
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v1.js +0 -95
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v3.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v35.js +0 -66
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v4.js +0 -29
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/v5.js +0 -4
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/validate.js +0 -7
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/esm-node/version.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/index.js +0 -79
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5-browser.js +0 -223
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/md5.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native-browser.js +0 -11
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/native.js +0 -15
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/nil.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/parse.js +0 -45
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/regex.js +0 -8
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng-browser.js +0 -25
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/rng.js +0 -24
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1-browser.js +0 -104
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/sha1.js +0 -23
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/stringify.js +0 -44
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/uuid-bin.js +0 -85
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v1.js +0 -107
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v3.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v35.js +0 -80
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v4.js +0 -43
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/v5.js +0 -16
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/validate.js +0 -17
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/dist/version.js +0 -21
- package/node_modules/@quantiya/codevibe-core/node_modules/uuid/wrapper.mjs +0 -10
- /package/node_modules/@quantiya/codevibe-core/dist/{companion-mode/__tests__/detect-parallel.test.d.ts → appsync/__tests__/appsync-client-context-items.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration-shell/__tests__/cli-stub-session-adapter.test.d.ts → appsync/__tests__/heartbeat-active.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-bootstrap.test.d.ts → appsync/__tests__/orphan-sweep-null-heartbeat.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-failure-recourse.test.d.ts → appsync/__tests__/refresh-open-prompt-ttl-chunk.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-save.test.d.ts → auth/__tests__/keychain-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-seat-picker.test.d.ts → auth/__tests__/vendor-key-cli.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-telemetry.test.d.ts → companion-mode/__tests__/mode-selected-emit.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-test-agents.test.d.ts → companion-mode/__tests__/private-launcher-detection.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-types.test.d.ts → companion-mode/__tests__/private-launcher-path.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{orchestration/__tests__/setup-wizard.test.d.ts → credential-broker/__tests__/broker-c4.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini-live-smoke.test.d.ts → credential-broker/__tests__/broker-streaming.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{reviewer/providers/__tests__/gemini.test.d.ts → credential-broker/__tests__/chatgpt-config.test.d.ts} +0 -0
- /package/node_modules/@quantiya/codevibe-core/dist/{substrate/__tests__/git-proxy.test.d.ts → credential-broker/__tests__/oauth-account-lock.test.d.ts} +0 -0
|
@@ -6,3 +6,12 @@ export declare const CONVERSATION_BUFFER_MAX = 500;
|
|
|
6
6
|
* mutates `state` in place. Map fields are cloned via `new Map(state.x)`.
|
|
7
7
|
*/
|
|
8
8
|
export declare function reducer(state: OrchestrationState, action: OrchestrationAction): OrchestrationState;
|
|
9
|
+
/**
|
|
10
|
+
* P10 E3 r6/r8 — "is a single-implementor task actually running?" from the
|
|
11
|
+
* TRUTHFUL `sessionTasks` lifecycle (the task-end closers terminalize it;
|
|
12
|
+
* `runningTasks` never terminalizes in production and is kept ONLY for the
|
|
13
|
+
* decision-spawned-a-task size heuristic). Shared by the `/status` running
|
|
14
|
+
* line, `deriveCurrentTaskState` (the planner packet), and the reviewer-line
|
|
15
|
+
* SET guard below.
|
|
16
|
+
*/
|
|
17
|
+
export declare function hasRunningSingleTask(state: OrchestrationState): boolean;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* One desktop-local progress phase. Discriminated by `phase`. Every variant is
|
|
3
|
-
* counts + labels + paths only —
|
|
3
|
+
* counts + labels + paths only — never workspace/diff/reasoning plaintext —
|
|
4
|
+
* with the module invariant's ONE documented exception: `halt_notice.message`
|
|
5
|
+
* (controlled operational notice text; see the header + the entry's carve-out).
|
|
4
6
|
*/
|
|
5
7
|
export type TaskProgressEvent = ({
|
|
6
8
|
phase: 'shadow_created';
|
|
@@ -43,6 +45,7 @@ export type TaskProgressEvent = ({
|
|
|
43
45
|
phase: 'round_failed';
|
|
44
46
|
round: number;
|
|
45
47
|
reason: string;
|
|
48
|
+
taskId?: string;
|
|
46
49
|
} | {
|
|
47
50
|
phase: 'continuation_offered';
|
|
48
51
|
round: number;
|
|
@@ -57,18 +60,25 @@ export type TaskProgressEvent = ({
|
|
|
57
60
|
} | {
|
|
58
61
|
phase: 'promoted';
|
|
59
62
|
files: number;
|
|
63
|
+
taskId?: string;
|
|
60
64
|
} | {
|
|
61
65
|
phase: 'discarding';
|
|
62
66
|
} | {
|
|
63
67
|
phase: 'discarded';
|
|
68
|
+
taskId?: string;
|
|
64
69
|
} | {
|
|
65
70
|
phase: 'waiting_user';
|
|
66
71
|
} | {
|
|
67
72
|
phase: 'planner_classifying';
|
|
68
73
|
} | {
|
|
69
74
|
phase: 'familiarizing';
|
|
75
|
+
} | {
|
|
76
|
+
phase: 'agent_advisory';
|
|
70
77
|
} | {
|
|
71
78
|
phase: 'progress_cleared';
|
|
79
|
+
} | {
|
|
80
|
+
phase: 'halt_notice';
|
|
81
|
+
message: string;
|
|
72
82
|
}) & {
|
|
73
83
|
epoch?: number;
|
|
74
84
|
tokens?: number;
|
|
@@ -107,9 +117,12 @@ export declare function formatTokens(n: number): string;
|
|
|
107
117
|
*/
|
|
108
118
|
export declare function isSpinnerPhase(phase: TaskProgressEvent['phase']): boolean;
|
|
109
119
|
/**
|
|
110
|
-
* Render the user-facing ONE-LINE text for a progress event. Pure
|
|
111
|
-
* —
|
|
112
|
-
*
|
|
120
|
+
* Render the user-facing ONE-LINE text for a progress event. Pure. No
|
|
121
|
+
* workspace/diff/reasoning plaintext — counts/labels/paths/elapsed, plus the
|
|
122
|
+
* module invariant's ONE documented exception: `halt_notice` renders its
|
|
123
|
+
* controlled operational `message` verbatim (see the header carve-out). The
|
|
124
|
+
* TUI shows spinner phases as an ephemeral live line and milestone phases as
|
|
125
|
+
* persisted scrollback entries.
|
|
113
126
|
*/
|
|
114
127
|
export declare function renderProgressLine(event: TaskProgressEvent): string;
|
|
115
128
|
/**
|
|
@@ -18,17 +18,17 @@ export declare const WorkItemInputSchema: z.ZodDiscriminatedUnion<"decompose", [
|
|
|
18
18
|
access: z.ZodEnum<["write", "read"]>;
|
|
19
19
|
}, "strip", z.ZodTypeAny, {
|
|
20
20
|
path: string;
|
|
21
|
-
access: "
|
|
21
|
+
access: "read" | "write";
|
|
22
22
|
}, {
|
|
23
23
|
path: string;
|
|
24
|
-
access: "
|
|
24
|
+
access: "read" | "write";
|
|
25
25
|
}>, "many">;
|
|
26
26
|
test_surfaces: z.ZodArray<z.ZodString, "many">;
|
|
27
27
|
auto_modified_files: z.ZodArray<z.ZodString, "many">;
|
|
28
28
|
}, "strip", z.ZodTypeAny, {
|
|
29
29
|
shared_contracts: {
|
|
30
30
|
path: string;
|
|
31
|
-
access: "
|
|
31
|
+
access: "read" | "write";
|
|
32
32
|
}[];
|
|
33
33
|
write_paths: string[];
|
|
34
34
|
test_surfaces: string[];
|
|
@@ -36,13 +36,13 @@ export declare const WorkItemInputSchema: z.ZodDiscriminatedUnion<"decompose", [
|
|
|
36
36
|
}, {
|
|
37
37
|
shared_contracts: {
|
|
38
38
|
path: string;
|
|
39
|
-
access: "
|
|
39
|
+
access: "read" | "write";
|
|
40
40
|
}[];
|
|
41
41
|
write_paths: string[];
|
|
42
42
|
test_surfaces: string[];
|
|
43
43
|
auto_modified_files: string[];
|
|
44
44
|
}>;
|
|
45
|
-
implementorAgent: z.ZodEffects<z.ZodEnum<["CLAUDE", "CODEX", "
|
|
45
|
+
implementorAgent: z.ZodEffects<z.ZodEnum<["CLAUDE", "CODEX", "ANTIGRAVITY"]>, "CLAUDE" | "CODEX" | "ANTIGRAVITY", unknown>;
|
|
46
46
|
isSharedTestOwner: z.ZodBoolean;
|
|
47
47
|
description: z.ZodString;
|
|
48
48
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -50,20 +50,20 @@ export declare const WorkItemInputSchema: z.ZodDiscriminatedUnion<"decompose", [
|
|
|
50
50
|
ownershipScope: {
|
|
51
51
|
shared_contracts: {
|
|
52
52
|
path: string;
|
|
53
|
-
access: "
|
|
53
|
+
access: "read" | "write";
|
|
54
54
|
}[];
|
|
55
55
|
write_paths: string[];
|
|
56
56
|
test_surfaces: string[];
|
|
57
57
|
auto_modified_files: string[];
|
|
58
58
|
};
|
|
59
|
-
implementorAgent: "CLAUDE" | "
|
|
59
|
+
implementorAgent: "CLAUDE" | "CODEX" | "ANTIGRAVITY";
|
|
60
60
|
isSharedTestOwner: boolean;
|
|
61
61
|
}, {
|
|
62
62
|
description: string;
|
|
63
63
|
ownershipScope: {
|
|
64
64
|
shared_contracts: {
|
|
65
65
|
path: string;
|
|
66
|
-
access: "
|
|
66
|
+
access: "read" | "write";
|
|
67
67
|
}[];
|
|
68
68
|
write_paths: string[];
|
|
69
69
|
test_surfaces: string[];
|
|
@@ -73,29 +73,28 @@ export declare const WorkItemInputSchema: z.ZodDiscriminatedUnion<"decompose", [
|
|
|
73
73
|
implementorAgent?: unknown;
|
|
74
74
|
}>, "many">;
|
|
75
75
|
}, "strip", z.ZodTypeAny, {
|
|
76
|
-
decompose: true;
|
|
77
76
|
workItems: {
|
|
78
77
|
description: string;
|
|
79
78
|
ownershipScope: {
|
|
80
79
|
shared_contracts: {
|
|
81
80
|
path: string;
|
|
82
|
-
access: "
|
|
81
|
+
access: "read" | "write";
|
|
83
82
|
}[];
|
|
84
83
|
write_paths: string[];
|
|
85
84
|
test_surfaces: string[];
|
|
86
85
|
auto_modified_files: string[];
|
|
87
86
|
};
|
|
88
|
-
implementorAgent: "CLAUDE" | "
|
|
87
|
+
implementorAgent: "CLAUDE" | "CODEX" | "ANTIGRAVITY";
|
|
89
88
|
isSharedTestOwner: boolean;
|
|
90
89
|
}[];
|
|
91
|
-
}, {
|
|
92
90
|
decompose: true;
|
|
91
|
+
}, {
|
|
93
92
|
workItems: {
|
|
94
93
|
description: string;
|
|
95
94
|
ownershipScope: {
|
|
96
95
|
shared_contracts: {
|
|
97
96
|
path: string;
|
|
98
|
-
access: "
|
|
97
|
+
access: "read" | "write";
|
|
99
98
|
}[];
|
|
100
99
|
write_paths: string[];
|
|
101
100
|
test_surfaces: string[];
|
|
@@ -104,6 +103,7 @@ export declare const WorkItemInputSchema: z.ZodDiscriminatedUnion<"decompose", [
|
|
|
104
103
|
isSharedTestOwner: boolean;
|
|
105
104
|
implementorAgent?: unknown;
|
|
106
105
|
}[];
|
|
106
|
+
decompose: true;
|
|
107
107
|
}>, z.ZodObject<{
|
|
108
108
|
decompose: z.ZodLiteral<false>;
|
|
109
109
|
reason: z.ZodString;
|
|
@@ -127,27 +127,37 @@ export type DecomposerResult = {
|
|
|
127
127
|
reason: string;
|
|
128
128
|
};
|
|
129
129
|
/**
|
|
130
|
-
* Read the implementor's FINAL message text per-agent (§3.B / L9).
|
|
131
|
-
*
|
|
132
|
-
*
|
|
133
|
-
*
|
|
134
|
-
*
|
|
130
|
+
* Read the implementor's FINAL message text per-agent (§3.B / L9). For Codex
|
|
131
|
+
* we read AND unlink the `--output-last-message` temp file (a Codex decomposer
|
|
132
|
+
* would otherwise always parse-fail on its `--json` JSONL stdout). Since A1b
|
|
133
|
+
* the file branch delegates to the SHARED `readImplementorLastMessage` helper
|
|
134
|
+
* (the same read `extractAgentSummary` uses), threading `workdir` so a
|
|
135
|
+
* SUBSTRATE-relocated capture file is found at `<workdir>/<basename>` — the
|
|
136
|
+
* decomposer runs through `LocalExecutor.spawnImplementor` with a synthetic
|
|
137
|
+
* taskId, so CP-7 DOES engage for it and the relocation applies. Unlike
|
|
138
|
+
* `extractAgentSummary`, the decomposer reads even on a NON-ZERO exit (a
|
|
139
|
+
* partial reply may still parse) — the exit-code gate stays a quorum-loop
|
|
140
|
+
* concern.
|
|
135
141
|
* - Claude → `capture.kind === 'stdout'` → `handle.stdout()`.
|
|
136
|
-
* - Codex → `capture.kind === 'file'` → read+unlink
|
|
137
|
-
* - Gemini → stdout, unwrap the `{ response }` JSON envelope.
|
|
142
|
+
* - Codex → `capture.kind === 'file'` → shared read+unlink helper.
|
|
138
143
|
* NEVER throws — a capture error returns '' (→ the caller's parse-fail →
|
|
139
144
|
* single-task fallback).
|
|
140
145
|
*/
|
|
141
146
|
export declare function readImplementorFinalMessage(plan: ReturnType<typeof buildImplementorArgv>, handle: {
|
|
142
147
|
stdout: () => string;
|
|
143
|
-
}, agent: AgentKind, exitCode: number): Promise<string>;
|
|
148
|
+
}, agent: AgentKind, exitCode: number, workdir?: string): Promise<string>;
|
|
144
149
|
/**
|
|
145
150
|
* Build the decomposition prompt fed to the local decomposer on stdin (§3.B).
|
|
146
151
|
* `brief` is the composed lossless implementation brief (§3.D step 0).
|
|
147
152
|
* `availableAgents` is the DETECTED set (§3.C) — the strengths list is filtered
|
|
148
153
|
* to it, and the decomposer is told to pick `implementorAgent` from it.
|
|
154
|
+
* `repoContext` (A1e slice-wiring REMAP) is the OPTIONAL bounded repository-
|
|
155
|
+
* context block (`composeDispatchContextBlock` — the resolved `context_ref`
|
|
156
|
+
* slice + the fresh-only `repo_state` overview), appended verbatim so the
|
|
157
|
+
* decomposer partitions with the SAME grounded repo picture the implementors
|
|
158
|
+
* get. Empty/absent → the prompt is byte-identical to pre-A1e.
|
|
149
159
|
*/
|
|
150
|
-
export declare function buildDecomposerPrompt(brief: string, availableAgents: AgentKind[]): string;
|
|
160
|
+
export declare function buildDecomposerPrompt(brief: string, availableAgents: AgentKind[], repoContext?: string): string;
|
|
151
161
|
/**
|
|
152
162
|
* #590 — append a deterministic "allowed test files" line to a track's brief so
|
|
153
163
|
* the implementor agent writes its own-module tests at the EXACT declared
|
|
@@ -184,13 +194,21 @@ export interface RunLocalDecomposerDeps {
|
|
|
184
194
|
* the first detected agent; CP-7 engages because `role:'implementor'` + a
|
|
185
195
|
* (synthetic) `taskId` are passed.
|
|
186
196
|
*/
|
|
187
|
-
export declare function runLocalDecomposer(deps: RunLocalDecomposerDeps, brief: string, availableAgents: AgentKind[]
|
|
197
|
+
export declare function runLocalDecomposer(deps: RunLocalDecomposerDeps, brief: string, availableAgents: AgentKind[],
|
|
198
|
+
/**
|
|
199
|
+
* A1e (slice-wiring REMAP) — the optional bounded repository-context block
|
|
200
|
+
* (`composeDispatchContextBlock`), appended to the decomposer prompt so the
|
|
201
|
+
* partitioning is grounded in the same projected repo picture the
|
|
202
|
+
* implementors get. Empty/absent → byte-identical prompt.
|
|
203
|
+
*/
|
|
204
|
+
repoContext?: string): Promise<DecomposerResult>;
|
|
188
205
|
/**
|
|
189
|
-
* Validate + normalize each work item's `implementorAgent` against the
|
|
190
|
-
* agent set (§3.C — v1 is DETECTED-ONLY; NO capability-health
|
|
191
|
-
* per-spawn auth-recheck). For each item:
|
|
192
|
-
* suggested agent; keep it if
|
|
193
|
-
*
|
|
194
|
-
*
|
|
206
|
+
* Validate + normalize each work item's `implementorAgent` against the active
|
|
207
|
+
* detected agent set (§3.C — v1 is DETECTED-ONLY; NO capability-health
|
|
208
|
+
* filtering, NO per-spawn auth-recheck). For each item:
|
|
209
|
+
* `.toUpperCase()`-normalize the suggested agent; keep it if active +
|
|
210
|
+
* detected; else SUBSTITUTE the first active detected agent. If NO active
|
|
211
|
+
* agent is detected → `null` (the caller falls back to single). Returns NEW
|
|
212
|
+
* work items (does not mutate the inputs).
|
|
195
213
|
*/
|
|
196
214
|
export declare function validateAgentAvailability(workItems: DecomposerWorkItem[], detected: AgentKind[]): DecomposerWorkItem[] | null;
|
|
@@ -136,6 +136,29 @@ export interface RunningTaskState {
|
|
|
136
136
|
exitCode?: number;
|
|
137
137
|
bypassReason?: 'deterministic_shortcut' | 'planner_outage' | 'planner_degraded_explicit_override';
|
|
138
138
|
}
|
|
139
|
+
/**
|
|
140
|
+
* P10 E3 r2 — one row of the bare-`/audit` session listing (the
|
|
141
|
+
* `sessionTasks` value). Deliberately NOT `RunningTaskState`: Agent Teams
|
|
142
|
+
* child tasks arrive via TEAM_TRACK_ASSIGNED (Stage-2 r1 Codex MED-1) which
|
|
143
|
+
* carries no pid, so forcing that shape would fabricate fields. Display-only.
|
|
144
|
+
*/
|
|
145
|
+
export interface SessionTaskRecord {
|
|
146
|
+
taskId: string;
|
|
147
|
+
/** Implementor agent when known; a team ASSIGNED event may omit it. */
|
|
148
|
+
agentKind?: string;
|
|
149
|
+
/** 'single' = TASK_LIFECYCLE-tracked; 'team' = Agent Teams track. */
|
|
150
|
+
origin: 'single' | 'team';
|
|
151
|
+
/**
|
|
152
|
+
* Singles: the lifecycle status — 'running' at dispatch, flipped terminal
|
|
153
|
+
* by the task-end CLOSER progress events (promoted → 'completed',
|
|
154
|
+
* discarded → 'cancelled', round_failed → 'failed'; Stage-2 r1 Codex
|
|
155
|
+
* MED-2 — no production TASK_LIFECYCLE dispatch ever carries a terminal
|
|
156
|
+
* status). Team rows: the TeamTrackState label verbatim.
|
|
157
|
+
*/
|
|
158
|
+
status: string;
|
|
159
|
+
/** Singles: the dispatch stamp. Team rows: first-observed stamp. */
|
|
160
|
+
startedAt: string;
|
|
161
|
+
}
|
|
139
162
|
/**
|
|
140
163
|
* §5.1 LOCK (lines 547-556). Single reviewer subprocess identity +
|
|
141
164
|
* verdict. `reviewerKind` is hand-listed per CP-1 — CP-3 Stage A
|
|
@@ -330,6 +353,8 @@ export type ConversationEntry = {
|
|
|
330
353
|
final: true;
|
|
331
354
|
source: 'planner' | 'shell';
|
|
332
355
|
text: string;
|
|
356
|
+
localOnly?: true;
|
|
357
|
+
handoffExcluded?: true;
|
|
333
358
|
} | {
|
|
334
359
|
kind: 'gate-prompt';
|
|
335
360
|
id: string;
|
|
@@ -409,6 +434,54 @@ export interface PendingClarification {
|
|
|
409
434
|
*/
|
|
410
435
|
attachmentPaths?: string[];
|
|
411
436
|
}
|
|
437
|
+
/**
|
|
438
|
+
* A1a #3/#4 — one numbered choice in a `PendingPlannerOffer`. Contract-ready
|
|
439
|
+
* shape (mirrors `GatePromptOption`) so an F4 mobile renderer (Wave 3, after the
|
|
440
|
+
* contract freeze) can consume it verbatim; `id` is a stable option key,
|
|
441
|
+
* `label`/`description` are the shell-authored (never model-authored) render copy.
|
|
442
|
+
*/
|
|
443
|
+
export interface PlannerOfferOption {
|
|
444
|
+
readonly id: string;
|
|
445
|
+
readonly label: string;
|
|
446
|
+
readonly description: string;
|
|
447
|
+
}
|
|
448
|
+
/**
|
|
449
|
+
* A1a #3/#4 (design §7 R3 / §8.3) — a lightweight interactive offer the shell
|
|
450
|
+
* presents instead of a silent spawn. Modeled on `pendingClarification` (NOT the
|
|
451
|
+
* server-coupled gate-prompt path): the offer + its numbered options are held in
|
|
452
|
+
* the local store, and the numbered reply resolves it locally. F4 mirrors a
|
|
453
|
+
* separate encrypted INTERACTIVE_PROMPT for mobile rendering; the local menu text
|
|
454
|
+
* stays out of workflow handoff context.
|
|
455
|
+
*
|
|
456
|
+
* - `team_decomposition` (#4): the planner routed `team_decompose`; rather than
|
|
457
|
+
* silent-launching a team, offer Accept-team / Reject→single / Talk-it-through.
|
|
458
|
+
* - `build_transition` (#3): a mid-active-design "let's build it"; rather than
|
|
459
|
+
* silent-spawning an implementor, offer Build-now / Keep-discussing.
|
|
460
|
+
*
|
|
461
|
+
* The stashed context lets each kind resolve WITHOUT re-classifying: the
|
|
462
|
+
* team-decomposition briefs the accept path feeds to `routeTeamDecompose` /
|
|
463
|
+
* `dispatchSynthesizedSingleStartTask`, and the build request the transition
|
|
464
|
+
* proceeds with.
|
|
465
|
+
*/
|
|
466
|
+
export interface PendingPlannerOffer {
|
|
467
|
+
kind: 'team_decomposition' | 'build_transition';
|
|
468
|
+
/** Contract-ready shape (mirror GatePromptOption). Shell-authored copy. */
|
|
469
|
+
options: ReadonlyArray<PlannerOfferOption>;
|
|
470
|
+
/** The `advisory` conversation entry that rendered the numbered options. */
|
|
471
|
+
conversationEntryId: string;
|
|
472
|
+
/** The planner's short reason (why this offer) — surfaced in the render. */
|
|
473
|
+
rationale: string;
|
|
474
|
+
/** team_decomposition: the decomposer input brief for `routeTeamDecompose`. */
|
|
475
|
+
decomposerBrief?: string;
|
|
476
|
+
/** team_decomposition / build fallback: the brief for reject → single agent. */
|
|
477
|
+
singleFallbackBrief?: string;
|
|
478
|
+
/** build_transition: the build request to proceed with on accept (no re-classify). */
|
|
479
|
+
originalUserPrompt?: string;
|
|
480
|
+
/** IMAGE-ATTACHMENT-DESIGN.md §5/§7.5 — team attachments, armed on the launch. */
|
|
481
|
+
attachments?: ImageAttachment[];
|
|
482
|
+
/** §13 Option-2 — ordered-with-dups carried paths for the number-based chip rewrite. */
|
|
483
|
+
attachmentPaths?: string[];
|
|
484
|
+
}
|
|
412
485
|
/**
|
|
413
486
|
* [ADDITIVE WIDENING — CP-12 W3, per PHASE-CP-12-DESIGN.md §3.5 "minimal
|
|
414
487
|
* multi-track status node; rich UX is #469"]. Per-track lifecycle state as the
|
|
@@ -445,7 +518,7 @@ export interface TeamTrackEntry {
|
|
|
445
518
|
}
|
|
446
519
|
/**
|
|
447
520
|
* [ADDITIVE WIDENING — CP-12 W3] Minimal team state. `null` for
|
|
448
|
-
* single-track/Companion
|
|
521
|
+
* single-track/Companion sessions (no team → no status node). Populated
|
|
449
522
|
* when `/team` accepts a task group + per-track W2.b shell events arrive.
|
|
450
523
|
*/
|
|
451
524
|
export interface TeamState {
|
|
@@ -494,13 +567,15 @@ export interface TeamState {
|
|
|
494
567
|
* the user is in control (a gate prompt is shown → `waiting_user` clears it).
|
|
495
568
|
* Milestones (diff captured, verdicts received, promoted, …) are NOT stored here
|
|
496
569
|
* — they are appended to `conversation` as persisted scrollback entries. This is
|
|
497
|
-
* desktop-LOCAL only: counts/labels/elapsed, never plaintext
|
|
570
|
+
* desktop-LOCAL only: counts/labels/elapsed, never plaintext — `halt_notice`,
|
|
571
|
+
* the union's one free-text exception, can never open or refresh this live
|
|
572
|
+
* line (reducer phase-family guard); it is scrollback-only (see
|
|
498
573
|
* `task-progress.ts`).
|
|
499
574
|
*/
|
|
500
575
|
export interface LiveProgress {
|
|
501
576
|
/** The phase of the in-flight spinner line. */
|
|
502
577
|
phase: TaskProgressEvent['phase'];
|
|
503
|
-
/** The BOUNDED live label (counts/labels/paths only — no plaintext
|
|
578
|
+
/** The BOUNDED live label (counts/labels/paths only — no plaintext; `halt_notice` never reaches here; no embedded timer). */
|
|
504
579
|
text: string;
|
|
505
580
|
/** When this line was last refreshed. Retained; currently unused (no component reads it). */
|
|
506
581
|
updatedAt: string;
|
|
@@ -532,10 +607,25 @@ export interface OrchestrationState {
|
|
|
532
607
|
plannerHealth: PlannerHealthState;
|
|
533
608
|
conversation: ConversationEntry[];
|
|
534
609
|
runningTasks: Map<string, RunningTaskState>;
|
|
610
|
+
sessionTasks: Map<string, SessionTaskRecord>;
|
|
611
|
+
lastReviewerProgress: {
|
|
612
|
+
text: string;
|
|
613
|
+
at: string;
|
|
614
|
+
} | null;
|
|
535
615
|
queuedTasks: QueuedTask[];
|
|
536
616
|
activeReviewerSeats: Map<string, ReviewerSeatState>;
|
|
537
617
|
currentGate: GateState | null;
|
|
538
618
|
pendingClarification: PendingClarification | null;
|
|
619
|
+
/**
|
|
620
|
+
* `[ADDITIVE WIDENING — A1a #3/#4]` The active lightweight local interactive
|
|
621
|
+
* offer (team-decomposition / build-transition), or `null` when none is in
|
|
622
|
+
* flight (the default). Set by `PLANNER_OFFER_PRESENTED`; a single in-range
|
|
623
|
+
* numeric reply resolves it locally (see `handleShellUserInput`), and any
|
|
624
|
+
* non-offer resolution clears it (`CLEAR_PENDING_PLANNER_OFFER`). F4 mirrors an
|
|
625
|
+
* encrypted INTERACTIVE_PROMPT for mobile, but this store node remains the local
|
|
626
|
+
* source of truth.
|
|
627
|
+
*/
|
|
628
|
+
pendingPlannerOffer: PendingPlannerOffer | null;
|
|
539
629
|
inputHistory: string[];
|
|
540
630
|
/**
|
|
541
631
|
* `[ADDITIVE WIDENING — CP-1.d]` per `PHASE-CP-1-D-DESIGN.md` §4.8
|
|
@@ -552,7 +642,7 @@ export interface OrchestrationState {
|
|
|
552
642
|
structuralSummaryError: string | null;
|
|
553
643
|
/**
|
|
554
644
|
* `[ADDITIVE WIDENING — CP-12 W3]` per PHASE-CP-12-DESIGN.md §3.5. `null`
|
|
555
|
-
* for single-track/Companion
|
|
645
|
+
* for single-track/Companion sessions (the status node is hidden).
|
|
556
646
|
* Populated by `/team` (createTaskGroup accepted) + the W2.b per-track shell
|
|
557
647
|
* events. Rich per-track timeline + MergeGate result card are
|
|
558
648
|
* [DEFERRED → CP-8 #469].
|
|
@@ -563,7 +653,7 @@ export interface OrchestrationState {
|
|
|
563
653
|
* live status line (spinner). `null` when idle / waiting on the user. Updated
|
|
564
654
|
* in place by `TASK_PROGRESS` spinner phases; cleared by `waiting_user` and by
|
|
565
655
|
* the terminal milestone phases (`promoted` / `discarded`). Non-loop /
|
|
566
|
-
* Companion
|
|
656
|
+
* Companion sessions never dispatch `TASK_PROGRESS`, so this stays null.
|
|
567
657
|
*/
|
|
568
658
|
progress: LiveProgress | null;
|
|
569
659
|
/**
|
|
@@ -585,7 +675,7 @@ export interface OrchestrationState {
|
|
|
585
675
|
* props with no in-component network I/O:
|
|
586
676
|
* - `tier` decides the seat budget (Pro = 2 seats, Max = 3).
|
|
587
677
|
* - `installedAgents` is the host-detected agent set — the wizard offers ONLY
|
|
588
|
-
* these as reviewer choices (mirrors the `
|
|
678
|
+
* these as reviewer choices (mirrors the `/reviewer-setup`
|
|
589
679
|
* CLI), so a user can never pick an uninstalled agent.
|
|
590
680
|
* - `currentSeats` is shown as a CONTEXT line at the top of the wizard (the
|
|
591
681
|
* user's existing panel) — display only; the wizard starts fresh at the
|
|
@@ -675,6 +765,11 @@ export type OrchestrationAction = {
|
|
|
675
765
|
task: RunningTaskState;
|
|
676
766
|
} | {
|
|
677
767
|
type: 'CLEAR_PENDING_CLARIFICATION';
|
|
768
|
+
} | {
|
|
769
|
+
type: 'PLANNER_OFFER_PRESENTED';
|
|
770
|
+
offer: PendingPlannerOffer;
|
|
771
|
+
} | {
|
|
772
|
+
type: 'CLEAR_PENDING_PLANNER_OFFER';
|
|
678
773
|
} | {
|
|
679
774
|
type: 'STRUCTURAL_SUMMARY_GENERATED';
|
|
680
775
|
summary: StructuralSummary;
|
|
@@ -711,6 +806,8 @@ export type OrchestrationAction = {
|
|
|
711
806
|
type: 'SHELL_ADVISORY';
|
|
712
807
|
text: string;
|
|
713
808
|
source: 'shell';
|
|
809
|
+
localOnly?: true;
|
|
810
|
+
handoffExcluded?: true;
|
|
714
811
|
} | {
|
|
715
812
|
type: 'GATE_PROMPT_NOTES_CANCELLED';
|
|
716
813
|
promptEntryId: string;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export interface WorkspaceShutdownOperations {
|
|
2
|
+
flushPlannerCache?: () => Promise<void>;
|
|
3
|
+
clearPlannerSession?: () => void;
|
|
4
|
+
disposeQuorumWorkspaces?: () => Promise<void>;
|
|
5
|
+
drainLocalWorkspaces?: () => Promise<void>;
|
|
6
|
+
/** Settle already-admitted shell turns after their agent processes drain. */
|
|
7
|
+
drainShellSubmissions?: () => Promise<void>;
|
|
8
|
+
/** Flush the settled turns' local and hosted canonical context publications. */
|
|
9
|
+
finalizeContextItemPublications?: () => Promise<void>;
|
|
10
|
+
/** Audit/retry exact advisory-image authority after every owning turn settles. */
|
|
11
|
+
disposeAdvisoryAttachmentAuthority?: () => Promise<void>;
|
|
12
|
+
disposeLocalDurableSessionResources?: () => Promise<void>;
|
|
13
|
+
/** Final hosted terminal mutation; no local or hosted turn publication follows. */
|
|
14
|
+
retireHostedSession?: () => Promise<void>;
|
|
15
|
+
onPlannerFlushFailure?: (error: Error) => void;
|
|
16
|
+
onWorkspaceFailure?: (error: Error) => void;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Start every independent shutdown fence before awaiting any one owner.
|
|
20
|
+
*
|
|
21
|
+
* The LocalExecutor's shared durable group retirement is deliberately a final
|
|
22
|
+
* phase: Quorum may still have an already-admitted terminal publisher that is
|
|
23
|
+
* allowed to finish while its ingress is closed. Only after both Quorum and
|
|
24
|
+
* LocalExecutor drains settle can the durable store be enumerated exactly once
|
|
25
|
+
* without a late publisher recreating a group behind the cleanup pass.
|
|
26
|
+
*/
|
|
27
|
+
export declare function runWorkspaceShutdownOperations(operations: WorkspaceShutdownOperations): Promise<void>;
|
|
@@ -3,5 +3,5 @@ export * from './adapter';
|
|
|
3
3
|
export { PlannerCacheLayer } from './cache';
|
|
4
4
|
export { PlannerHealthMachine } from './health-state';
|
|
5
5
|
export { BackendPlannerClient, PlannerBudgetExceededError, PlannerTierGateRejectedError, type PlannerAppSyncTransport, type PlannerCryptoBridge, type SessionKeyResolver, type ShellEventEmit, type EmitShellEventFn, } from './client';
|
|
6
|
-
export { LocalGemmaPlannerAdapter, parseLocalGemmaPlannerDecision, renderLocalGemmaPlannerPrompt, type LocalGemmaPlannerRunner, } from './local-gemma';
|
|
6
|
+
export { LocalGemmaPlannerAdapter, parseLocalGemmaPlannerDecision, PlannerOutputUnparseableError, renderLocalGemmaPlannerPrompt, type LocalGemmaPlannerRunner, } from './local-gemma';
|
|
7
7
|
export { parseLocalGemmaAdvisorySummary, renderLocalGemmaFamiliarizePrompt, type LocalGemmaAdvisoryRunner, } from './local-advisory';
|
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import type { StructuralSummary } from '../structural-summary/types';
|
|
2
2
|
export interface LocalGemmaAdvisoryRunner {
|
|
3
3
|
generateAdvisory(promptText: string, options?: LocalGemmaAdvisoryOptions): Promise<string>;
|
|
4
|
+
/**
|
|
5
|
+
* Dogfood #618 — optional fire-and-forget model pre-warm (load + keep_alive).
|
|
6
|
+
* Never throws; resolves false on failure. Called once at shell startup.
|
|
7
|
+
*/
|
|
8
|
+
warm?(): Promise<boolean>;
|
|
9
|
+
/**
|
|
10
|
+
* #618 Stage-2 — optional fire-and-forget model release (keep_alive: 0).
|
|
11
|
+
* Never throws; resolves false on failure. Called once at shell teardown so
|
|
12
|
+
* the model's memory isn't held for the keep_alive window after quit.
|
|
13
|
+
*/
|
|
14
|
+
unload?(): Promise<boolean>;
|
|
4
15
|
runtimeLabel: string;
|
|
5
16
|
}
|
|
6
17
|
export type LocalGemmaAdvisoryResponseFormat = 'json' | 'text';
|
|
@@ -46,6 +57,7 @@ export declare function renderLocalGemmaBrowsePrompt(args: {
|
|
|
46
57
|
};
|
|
47
58
|
content: string;
|
|
48
59
|
}): string;
|
|
60
|
+
export declare function boundedPriorBrainstormTurns(turns: string[] | undefined): string[];
|
|
49
61
|
/**
|
|
50
62
|
* WEB-BROWSING (search-route): turn the user's request + recent conversation into a
|
|
51
63
|
* concise web-search QUERY. The local model resolves acronyms/pronouns from context
|
|
@@ -5,8 +5,35 @@ export interface LocalGemmaPlannerRunner {
|
|
|
5
5
|
classify(promptText: string): Promise<string>;
|
|
6
6
|
generateAdvisory?: LocalGemmaAdvisoryRunner['generateAdvisory'];
|
|
7
7
|
probe?(): Promise<PlannerProbeResult>;
|
|
8
|
+
/**
|
|
9
|
+
* Dogfood #618 — optional fire-and-forget model pre-warm (load into memory +
|
|
10
|
+
* arm keep_alive). Never throws; resolves false on failure. The shell calls
|
|
11
|
+
* this once at startup so the session's first classify/advisory doesn't pay
|
|
12
|
+
* the runtime's cold load.
|
|
13
|
+
*/
|
|
14
|
+
warm?(): Promise<boolean>;
|
|
15
|
+
/**
|
|
16
|
+
* #618 Stage-2 — optional fire-and-forget model release (keep_alive: 0),
|
|
17
|
+
* called once at shell teardown. Never throws; resolves false on failure.
|
|
18
|
+
*/
|
|
19
|
+
unload?(): Promise<boolean>;
|
|
8
20
|
runtimeLabel: string;
|
|
9
21
|
}
|
|
22
|
+
/**
|
|
23
|
+
* A1a P0 (R3 — design §7 "the conductor must NEVER hard-fail"): thrown when the
|
|
24
|
+
* local Gemma model RESPONDED but its output could not be parsed into a valid
|
|
25
|
+
* route (out-of-domain prose, truncated JSON, unsupported action/keys, etc.).
|
|
26
|
+
*
|
|
27
|
+
* This is deliberately DISTINCT from an infrastructure failure (Ollama
|
|
28
|
+
* unreachable / timeout / budget / tier-gate — those reject out of the runner,
|
|
29
|
+
* never reach the parser). The orchestration shell catches THIS class and
|
|
30
|
+
* degrades to a safe "general question / not a build request" advisory route
|
|
31
|
+
* instead of surfacing a `planner-error`; a genuine infra failure still surfaces
|
|
32
|
+
* "Planner unavailable" because retrying would not help.
|
|
33
|
+
*/
|
|
34
|
+
export declare class PlannerOutputUnparseableError extends Error {
|
|
35
|
+
constructor(message: string);
|
|
36
|
+
}
|
|
10
37
|
/**
|
|
11
38
|
* Text-only route classifier prompt. It intentionally excludes repository
|
|
12
39
|
* paths, summaries, source snippets, file bodies, and the raw structural digest.
|
|
@@ -63,6 +63,13 @@ export interface PlannerInput {
|
|
|
63
63
|
clarifications: Clarification[];
|
|
64
64
|
sessionContext: SessionContext;
|
|
65
65
|
budgetHint: BudgetHint;
|
|
66
|
+
/**
|
|
67
|
+
* Local-planner-only, role-filtered rendering of the canonical ContextItems
|
|
68
|
+
* session history. The hosted planner client deliberately ignores this field;
|
|
69
|
+
* it exists so local Gemma can resolve ordinary multi-turn references without
|
|
70
|
+
* relying on shell text heuristics or a model-private conversation cache.
|
|
71
|
+
*/
|
|
72
|
+
canonicalConversationContext?: string;
|
|
66
73
|
}
|
|
67
74
|
export interface PlannerDecision {
|
|
68
75
|
action: 'start_task' | 'summarize_current_status' | 'advisory_response' | 'ask_user' | 'refuse' | 'team_decompose' | 'familiarize' | 'brainstorm' | 'browse';
|
|
@@ -7,8 +7,6 @@ export type { RunReviewerOptions, SubprocessError, SubprocessOutcome, } from './
|
|
|
7
7
|
export { runReviewer, SubprocessErrorClass } from './subprocess.js';
|
|
8
8
|
export type { ClaudeReviewerProviderOptions } from './providers/claude.js';
|
|
9
9
|
export { ClaudeReviewerProvider } from './providers/claude.js';
|
|
10
|
-
export type { GeminiEnvelope, GeminiModelStats, GeminiReviewerProviderOptions, GeminiStats, } from './providers/gemini.js';
|
|
11
|
-
export { GeminiReviewerProvider } from './providers/gemini.js';
|
|
12
10
|
export type { CodexReviewerProviderOptions } from './providers/codex.js';
|
|
13
11
|
export { CodexReviewerProvider } from './providers/codex.js';
|
|
14
12
|
export type { AntigravityReviewerProviderOptions } from './providers/antigravity.js';
|
|
@@ -19,7 +19,26 @@ export interface ParsedVerdict {
|
|
|
19
19
|
* via `revise_missing_changes` / `suggested_changes_require_revise`).
|
|
20
20
|
*/
|
|
21
21
|
suggested_changes: string[];
|
|
22
|
+
/**
|
|
23
|
+
* Ordered non-blocking observations from the explicit
|
|
24
|
+
* `RESIDUAL OBSERVATIONS:` section. These never count as suggested changes.
|
|
25
|
+
*/
|
|
26
|
+
residual_observations: string[];
|
|
27
|
+
}
|
|
28
|
+
export interface ResidualObservationSplit {
|
|
29
|
+
/** Reviewer output with the explicit residual section removed. */
|
|
30
|
+
reviewText: string;
|
|
31
|
+
/** Ordered, non-empty residual observations. */
|
|
32
|
+
residualObservations: string[];
|
|
22
33
|
}
|
|
34
|
+
/**
|
|
35
|
+
* Split the optional P15 residual-observation section from reviewer prose.
|
|
36
|
+
*
|
|
37
|
+
* The heading must occupy its own line. Bullets are preferred, but plain
|
|
38
|
+
* non-empty lines are retained as observations so harmless reviewer format
|
|
39
|
+
* drift cannot turn a non-blocking note into a revision request.
|
|
40
|
+
*/
|
|
41
|
+
export declare function splitResidualObservations(raw: string): ResidualObservationSplit;
|
|
23
42
|
/**
|
|
24
43
|
* Why a reviewer's reply failed the locked-format check. Discriminated
|
|
25
44
|
* union; the subprocess layer maps any of these into `ReviewerError` with
|
|
@@ -37,8 +37,10 @@ export interface ReviewerEvaluateOptions {
|
|
|
37
37
|
* the workdir on BOTH backends — A5 `cwd: workdir`; Docker `docker exec -w
|
|
38
38
|
* /workspace`) and reads it back from `<workdir>/<name>` on the host (the same
|
|
39
39
|
* inode, even when A5 canonicalizes the workdir — the host read follows the
|
|
40
|
-
* symlink). The Claude
|
|
41
|
-
*
|
|
40
|
+
* symlink). The Claude provider uses no file output and ignores this field;
|
|
41
|
+
* the Antigravity provider writes no verdict file either but DOES consume
|
|
42
|
+
* `workdir` (`--add-dir <workdir>` — agy is workspace-centric). ABSENT
|
|
43
|
+
* (legacy path / non-substrate) → the provider uses
|
|
42
44
|
* its byte-identical legacy `os.tmpdir()` location.
|
|
43
45
|
*
|
|
44
46
|
* # Why this is NOT derivable from `substrate`
|
|
@@ -105,10 +107,11 @@ export interface ReviewerSpec {
|
|
|
105
107
|
* is agent-agnostic here; each provider enforces the sandbox in its own
|
|
106
108
|
* way:
|
|
107
109
|
* - Claude: `--allowed-tools Read,Grep,Glob` CLI flag.
|
|
108
|
-
* -
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
* `--
|
|
110
|
+
* - Antigravity: no native read-only flag AND no CP-7 substrate — agy is
|
|
111
|
+
* reduced-trust (§6 Q4), so the loop pre-routes agy seats to the LEGACY
|
|
112
|
+
* unsandboxed path with a reduced-trust badge. Agy 1.1.2 requires the
|
|
113
|
+
* prompt as `--print <prompt>` and is granted the repo via
|
|
114
|
+
* `--add-dir <workdir>`.
|
|
112
115
|
* - Codex: `--sandbox read-only --skip-git-repo-check` flags + per-spawn
|
|
113
116
|
* ephemeral output file.
|
|
114
117
|
*/
|
|
@@ -25,9 +25,8 @@ export declare class AntigravityReviewerProvider implements ReviewerProvider {
|
|
|
25
25
|
/**
|
|
26
26
|
* Construct the agy CLI invocation (design D4):
|
|
27
27
|
*
|
|
28
|
-
* - `--print
|
|
29
|
-
*
|
|
30
|
-
* argv (same posture as gemini's `-p ''`).
|
|
28
|
+
* - `--print <prompt>` — non-interactive one-shot. Agy 1.1.2 requires the
|
|
29
|
+
* prompt value in argv; stdin prompt mode was removed.
|
|
31
30
|
* - `--model <hint>` — optional; omitted when `spec.model_hint` is `null`
|
|
32
31
|
* (agy default model).
|
|
33
32
|
* - `--print-timeout <s>s` — agy's INTERNAL print-mode poll ceiling, derived
|