@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
|
@@ -1,14 +1,18 @@
|
|
|
1
|
+
import { AsyncLocalStorage } from 'node:async_hooks';
|
|
1
2
|
import { AppSyncClient } from '../appsync';
|
|
2
3
|
import { Session } from '../types';
|
|
3
4
|
import { OrchestrationStore } from './store';
|
|
5
|
+
import { AdvisoryAttachmentJournal } from './advisory-attachment-journal';
|
|
4
6
|
import type { ImageAttachment } from './types';
|
|
5
7
|
import { type GroupDecisionSubmitDeps } from './gate-decision-submit';
|
|
6
8
|
import { type ContinuationCliResult, type ContinuationCliDeps } from './slash-routes/continuation';
|
|
7
9
|
import { loadReviewerWizardData } from './slash-routes/reviewers';
|
|
8
10
|
import { createShellEventEmitter } from './emit-shell-event';
|
|
11
|
+
import { type AgentMentionIntent, type CommandIntentTarget } from './command-intent';
|
|
12
|
+
import { type BrainstormPanelActiveAgent } from './brainstorm-quorum';
|
|
9
13
|
import { type RunAuditBrowserResult } from './audit-runner';
|
|
10
14
|
import { Tier } from './types';
|
|
11
|
-
import type { PendingClarification } from './types';
|
|
15
|
+
import type { ConversationEntry, PendingClarification } from './types';
|
|
12
16
|
import { type GatePromptEnvelope, type DecryptedReviewSummaryInput } from './gate-prompts';
|
|
13
17
|
import type { Event, UpdateEventStatusInput } from '../types/events';
|
|
14
18
|
import { type StructuralSummaryGenerator } from '../structural-summary';
|
|
@@ -21,7 +25,13 @@ import type { WorkItemInput, DisjointnessRejection, RevertManifestStore } from '
|
|
|
21
25
|
import type { QuorumLoop } from './quorum-loop';
|
|
22
26
|
import { ensureFreshContextStore } from './context-store';
|
|
23
27
|
import type { EnsureFreshResult } from './context-store';
|
|
28
|
+
import { contextItemOccurrence, type ContextDurabilityReceipt } from './context-items';
|
|
29
|
+
import { renderRehydratedSessionContext } from './context-compaction';
|
|
24
30
|
import { type TaskProgressEvent } from './task-progress';
|
|
31
|
+
export declare class OrchestrationShellStartupError extends Error {
|
|
32
|
+
readonly cause?: unknown;
|
|
33
|
+
constructor(message: string, cause?: unknown);
|
|
34
|
+
}
|
|
25
35
|
export interface RunOrchestrationShellArgs {
|
|
26
36
|
/** Authenticated AppSync client (caller is responsible for `authenticateWithStoredTokens`). */
|
|
27
37
|
appsyncClient: AppSyncClient;
|
|
@@ -29,6 +39,13 @@ export interface RunOrchestrationShellArgs {
|
|
|
29
39
|
session: Session;
|
|
30
40
|
/** Current tier — used by the StatusBar + downstream tier gating. */
|
|
31
41
|
tier: Tier;
|
|
42
|
+
/**
|
|
43
|
+
* Startup lifecycle handoff. Called only after this function's catch-all
|
|
44
|
+
* teardown `finally` is armed; until then the admitting CLI owns retirement.
|
|
45
|
+
*/
|
|
46
|
+
acceptSessionLifecycleOwnership?: () => void;
|
|
47
|
+
/** @internal isolated durable advisory-attachment authority for tests. */
|
|
48
|
+
advisoryAttachmentJournal?: AdvisoryAttachmentJournal;
|
|
32
49
|
/**
|
|
33
50
|
* CP-1.b IMPL r2 H-3 — Optional planner adapter. When supplied,
|
|
34
51
|
* `runOrchestrationShell` binds the active session via
|
|
@@ -93,7 +110,7 @@ export interface RunOrchestrationShellArgs {
|
|
|
93
110
|
* (a) subscribes `subscribeToClassBPackets(session.userId)` →
|
|
94
111
|
* `localExecutor.consumeClassB(packet)` (item 2) + teardown cleanup;
|
|
95
112
|
* (b) enables the `/team` slash command (item 5).
|
|
96
|
-
* A single-track/Companion
|
|
113
|
+
* A single-track/Companion session OMITS this — no Class B
|
|
97
114
|
* subscription, no team mode, no status node (byte-identical behavior).
|
|
98
115
|
*/
|
|
99
116
|
localExecutor?: LocalExecutor;
|
|
@@ -128,7 +145,7 @@ export interface RunOrchestrationShellArgs {
|
|
|
128
145
|
* `runOrchestrationShell` installs the store-dispatching `fn` so the loop's
|
|
129
146
|
* `onProgress` events render as an ephemeral spinner line + persisted
|
|
130
147
|
* milestones, and emits `waiting_user` when a gate prompt arrives. A non-loop
|
|
131
|
-
* / Companion
|
|
148
|
+
* / Companion session OMITS this — no spinner line ever renders.
|
|
132
149
|
*/
|
|
133
150
|
progressTap?: {
|
|
134
151
|
fn: (event: TaskProgressEvent) => void;
|
|
@@ -140,7 +157,7 @@ export interface RunOrchestrationShellArgs {
|
|
|
140
157
|
* PolicyRejection becomes a classified `SHELL_ADVISORY` in the conversation
|
|
141
158
|
* (the existing mobile NOTIFICATION path is unchanged). The shadow-discard side
|
|
142
159
|
* is handled by `cli.ts` (which holds the QuorumLoop reference). A non-loop /
|
|
143
|
-
* Companion
|
|
160
|
+
* Companion session OMITS this.
|
|
144
161
|
*/
|
|
145
162
|
policyRejectionTap?: {
|
|
146
163
|
fn: (info: {
|
|
@@ -149,6 +166,22 @@ export interface RunOrchestrationShellArgs {
|
|
|
149
166
|
recommendedRecovery: string;
|
|
150
167
|
}) => void;
|
|
151
168
|
};
|
|
169
|
+
/**
|
|
170
|
+
* A1e (P3 slice-wiring REMAP) — the dispatch-context tap holder (`cli.ts`
|
|
171
|
+
* builds it alongside the loop). When present, `runOrchestrationShell`
|
|
172
|
+
* installs the real composer (`composeDispatchContextBlock`): the resolved
|
|
173
|
+
* `context_ref` structural slice + the FRESH-ONLY `repo_state` overview,
|
|
174
|
+
* with the §8.3 stale→background-re-delegation hook wired to the quiet
|
|
175
|
+
* frontier re-read. A non-loop / Companion session OMITS this — the
|
|
176
|
+
* implementor stdin stays byte-identical to pre-A1e.
|
|
177
|
+
*/
|
|
178
|
+
dispatchContextTap?: {
|
|
179
|
+
fn: (input: {
|
|
180
|
+
taskId: string;
|
|
181
|
+
agent: string;
|
|
182
|
+
roundNumber: number;
|
|
183
|
+
}) => Promise<string>;
|
|
184
|
+
};
|
|
152
185
|
/**
|
|
153
186
|
* PHASE-589/469 W3.2 — the two-phase group-escalation decision deps, built in
|
|
154
187
|
* `cli.ts` alongside the team LE (the keychain/E2E/signing-heavy assembly:
|
|
@@ -189,10 +222,12 @@ export interface TeamTapEvent {
|
|
|
189
222
|
}
|
|
190
223
|
export { processMarkers, withRoleMarker } from './process-markers';
|
|
191
224
|
export { emitShellEvent, createShellEventEmitter, type ShellEventEmit, type NewEventTypeKind, } from './emit-shell-event';
|
|
192
|
-
export { pickMode,
|
|
225
|
+
export { pickMode, type ModeSelectionDeps, } from './mode-selection';
|
|
193
226
|
export { readStickyPreference, writeStickyPreference, stickyPreferenceFilePath, } from './sticky-preference';
|
|
194
|
-
export {
|
|
195
|
-
export {
|
|
227
|
+
export { deriveWorkspaceId, deriveRepoId, normalizeRepoRelativePath, contextStoreDir, loadContextStore, writeContextStore, writeRepoState, loadRepoState, type RepoStateRecord, gcContextStore, computeSummaryInputHash, probeFreshness, ensureFreshContextStore, mintContextRef, resolveContextRef, sliceSummary, type ContextRef, type SliceSelector, type SliceSelectorEntry, type ContextStoreMetadata, type ContextStoreEntry, type ResolvedContextSlice, type FreshnessProbeResult, type EnsureFreshResult, type EnsureFreshDeps, } from './context-store';
|
|
228
|
+
export { CONTEXT_SESSION_PSEUDO_TASK_NAMESPACE, deriveSessionPseudoTaskId, auditPartitionTaskIdFor, appendContextItem, flushContextItems, readContextItems, readVerifiedContextItems, verifyContextItemChain, buildContextItemWireRow, decryptContextItemWireRow, projectItemsForRole, labelPermitsRole, projectRepoStateForDispatch, appendRepoStateItem, composeDispatchContextBlock, contextItemsLogPath, isTransientContextItem, DISPATCH_CONTEXT_MAX_CHARS, NON_GIT_REPO_STATE_MAX_AGE_MS, type ContextItem, type ContextItemDraft, type ContextItemKind, type ContextItemAuthor, type ContextItemSensitivity, type ContextItemProjectionRole, type ContextItemValidity, type ContextItemWireRow, type RepoStateBody, type RepoStateProjection, type ChainVerificationResult, type VerifiedContextItemsResult, } from './context-items';
|
|
229
|
+
export { configureContextItemsHostedSync, wakeContextItemsHostedSync, drainContextItemsHostedSync, clearContextItemsHostedSync, contextItemsHostedSyncStatePath, type ContextItemsHostedSyncDeps, } from './context-items-hosted-sync';
|
|
230
|
+
export { compactSessionContext, maybeFireCompactionSafetyValve, rehydrateSessionContext, renderRehydratedSessionContext, distillItems, projectDistilledForRole, loadCompactionCache, compactionCachePath, onTaskBoundary, gcContextItemLogs, scheduleContextItemsGc, COMPACTION_SAFETY_VALVE_TAIL_BYTES, COMPACTION_KEEP_HOT_RECENT_ITEMS, CONTEXT_ITEMS_RETENTION_MS, SESSION_CONTEXT_SECTION_MAX_CHARS, type DistilledFact, type DistilledTaskSummary, type SessionCompactionCache, type CompactionResult, type RehydratedSessionContext, } from './context-compaction';
|
|
196
231
|
export { routeSlashCommand, applySlashOutput, type SlashOutput, type ShellAction, } from './slash-router';
|
|
197
232
|
export { buildAuditBrowserModel, routeAuditEntry, auditKindLabel, auditKindCopy, renderAuditBrowserText, renderAuditEntryText, ENTRY_DETAILS_UNAVAILABLE, NO_AUDIT_ENTRIES, AUDIT_LOG_TOO_LARGE, AUDIT_LOG_TITLE, AUDIT_BROWSER_MAX_HEADLINE, WIRE_PUBLIC_PLAINTEXT_KINDS, type AuditBrowserModel, type AuditEntryModel, type AuditReviewerVerdictModel, type AuditTaskAuthorizedModel, type DecryptContentFn, } from './audit-browser';
|
|
198
233
|
export { runAuditBrowser, renderAuditResultText, AUDIT_BROWSER_UPGRADE_HINT, type RunAuditBrowserResult, type RunAuditBrowserDeps, } from './audit-runner';
|
|
@@ -202,6 +237,59 @@ export { createOrchestrationStore, type OrchestrationStore } from './store';
|
|
|
202
237
|
export type { Mode, Tier, PlannerDecision, AgentKind, PlannerHealthState, RunningTaskState, ReviewerSeatState, GateState, ExecutionEventEntry, RefusalEventEntry, BypassEventEntry, MobileEventEntry, EventStreamEntry, ConversationEntry, QueuedTask, PendingClarification, OrchestrationState, OrchestrationAction, LastModeFile, TeamState, TeamTrackEntry, TeamTrackState, TeamMergeGateStatus, LiveProgress, } from './types';
|
|
203
238
|
export { formatElapsed, isSpinnerPhase, renderProgressLine, type TaskProgressEvent, type OnProgress, } from './task-progress';
|
|
204
239
|
export { runDeclaredTestSurfaces, DECLARED_TEST_TIMEOUT_MS, type DeclaredTestResult, type DeclaredTestReason, type RunDeclaredTestSurfacesArgs, } from './declared-test-runner';
|
|
240
|
+
/**
|
|
241
|
+
* [A1g] Round-5 (Codex round-4 MEDIUM) — INVOCATION-OWNED conversation deltas.
|
|
242
|
+
*
|
|
243
|
+
* The turn mirror (`emitOrchestrationTurnMirror`) authors THIS turn's conductor
|
|
244
|
+
* reply + mobile `ASSISTANT_RESPONSE` from the entries this submission produced.
|
|
245
|
+
* It USED to slice a GLOBAL window (`conversation.slice(convLenBefore)` → end),
|
|
246
|
+
* which is only sound for a strictly-serialized turn. A slash COMMAND bypasses
|
|
247
|
+
* the NL queue (`serializeShellSubmissions`), so it runs CONCURRENTLY with an
|
|
248
|
+
* in-flight `@all` panel / NL turn; the global window then bleeds in the
|
|
249
|
+
* concurrent turn's non-`localOnly` advisory (e.g. the panel's joined
|
|
250
|
+
* `### Agent …` blob), which the bypassing (always-UNOWNED) mirror would author
|
|
251
|
+
* as its OWN conductor turn — MISATTRIBUTING the agents' design output to the
|
|
252
|
+
* conductor (defeating the F2 suppression the owning turn applies).
|
|
253
|
+
*
|
|
254
|
+
* The fix attributes each newly-appended `ConversationEntry` to the submission
|
|
255
|
+
* that dispatched it. `AsyncLocalStorage` carries a per-submission `ownEntries`
|
|
256
|
+
* sink; the wrapped `store.dispatch` (below) pushes each new conversation entry
|
|
257
|
+
* into the CURRENTLY-EXECUTING submission's sink. ALS propagates the context
|
|
258
|
+
* across `await`s AND isolates concurrent submissions, so `@all`'s advisory
|
|
259
|
+
* lands in `@all`'s sink and a concurrent `/status`'s mirror never sees it. The
|
|
260
|
+
* mirror then authors from `ownEntries` (this turn's OWN entries), not the
|
|
261
|
+
* global slice. Backward-compatible: callers/tests that pass no `ownEntries`
|
|
262
|
+
* fall back to the `convLenBefore` slice (unchanged behavior).
|
|
263
|
+
*/
|
|
264
|
+
export interface TurnAuthoringSink {
|
|
265
|
+
ownEntries: ConversationEntry[];
|
|
266
|
+
}
|
|
267
|
+
export declare const turnAuthoringContext: AsyncLocalStorage<TurnAuthoringSink>;
|
|
268
|
+
/**
|
|
269
|
+
* [A1g] Round-5 (Codex round-4 MEDIUM) — install the invocation-owned-delta
|
|
270
|
+
* attribution wrapper on `store.dispatch`. After each dispatch, any NEWLY
|
|
271
|
+
* appended `ConversationEntry` is pushed into the CURRENTLY-EXECUTING
|
|
272
|
+
* submission's `ownEntries` sink (from `turnAuthoringContext`). ALS hands the
|
|
273
|
+
* wrapper the right sink even across `await`s and through the whole handler
|
|
274
|
+
* call tree, so concurrent submissions (a slash bypass vs. an in-flight `@all`)
|
|
275
|
+
* never cross-contaminate each other's invocation-owned delta. Dispatched
|
|
276
|
+
* outside a submission (no active sink) ⇒ no attribution (those entries were
|
|
277
|
+
* never part of a turn's mirror anyway). Exported so the concurrent-isolation
|
|
278
|
+
* property can be unit-tested without spinning up the full TUI.
|
|
279
|
+
*
|
|
280
|
+
* [A1g] Round-6 (Codex round-5 MEDIUM) — detect new entries by ulid IDENTITY,
|
|
281
|
+
* NOT by `conversation.length` growth. The conversation is a RING BUFFER that
|
|
282
|
+
* front-evicts at `CONVERSATION_BUFFER_MAX` (reducer.ts `appendConversation`),
|
|
283
|
+
* so once at capacity an append keeps `length` FLAT — a length-growth test
|
|
284
|
+
* would then collect NOTHING, so the mirror emits neither the companion prompt
|
|
285
|
+
* nor the reply AND omits the human ContextItem, while the ownership token
|
|
286
|
+
* still drains the buffered panel replies → agent turns persisted WITHOUT their
|
|
287
|
+
* human question (fail-closed question-before-answer violation). An id-set diff
|
|
288
|
+
* is eviction-proof. A reentrancy depth-guard ensures a synchronous nested
|
|
289
|
+
* dispatch (a subscriber that re-dispatches) is attributed exactly once by the
|
|
290
|
+
* OUTERMOST diff — never double-pushed.
|
|
291
|
+
*/
|
|
292
|
+
export declare function installTurnAuthoringDispatchWrapper(store: OrchestrationStore): void;
|
|
205
293
|
/**
|
|
206
294
|
* §5 lines 336-365 LOCK + §16 LOCK #14. Single entrypoint that wires
|
|
207
295
|
* the store + emit chokepoint + slash router and either mounts the
|
|
@@ -339,6 +427,42 @@ export declare function createSubscribedEventDispatcher(deps: {
|
|
|
339
427
|
* #469]). Called from the `teamShellEventTap.fn` installed at startup.
|
|
340
428
|
*/
|
|
341
429
|
export declare function routeTeamShellEventToStore(store: OrchestrationStore, evt: TeamTapEvent): void;
|
|
430
|
+
export declare const BRAINSTORM_PANEL_ADVISORY_TIMEOUT_MS = 1800000;
|
|
431
|
+
export declare function routeReadOnlyAgentMention(args: {
|
|
432
|
+
store: OrchestrationStore;
|
|
433
|
+
shellArgs: RunOrchestrationShellArgs;
|
|
434
|
+
intent: AgentMentionIntent;
|
|
435
|
+
advisoryBrief: string;
|
|
436
|
+
/**
|
|
437
|
+
* [#637] This turn's validated image attachments + the ordered `[Image #N]`
|
|
438
|
+
* chip-path list — the SAME `turnAttachments`/`turnImagePaths` pair the /task
|
|
439
|
+
* path threads into `composeImplementationBrief`. When present, the panel
|
|
440
|
+
* dispatch rewrites the brief's image tokens to staged in-worktree refs and
|
|
441
|
+
* appends a per-agent read-list per cell, so a CLI advisory agent receives
|
|
442
|
+
* real file refs instead of the literal chip token / a raw local path.
|
|
443
|
+
*/
|
|
444
|
+
attachments?: ImageAttachment[];
|
|
445
|
+
attachmentPaths?: string[];
|
|
446
|
+
/**
|
|
447
|
+
* [#637] ALL `@`-mention targets of this turn (ordered, de-duplicated —
|
|
448
|
+
* `extractAllAgentMentionIntents`). Widens ONLY the LOCAL panel active set on
|
|
449
|
+
* a multi-mention directed turn; the FROZEN `CommandIntentEnvelope` still
|
|
450
|
+
* carries the FIRST mention (`args.intent`). Absent/single-element → exactly
|
|
451
|
+
* the prior directed behavior.
|
|
452
|
+
*/
|
|
453
|
+
mentionTargets?: readonly CommandIntentTarget[];
|
|
454
|
+
/**
|
|
455
|
+
* [A1g] Round-4 — the per-turn ownership token this invocation stamps when it
|
|
456
|
+
* commits to a panel turn (see `BrainstormTurnOwnership`). Optional so direct
|
|
457
|
+
* unit callers/tests can omit it; the turn-mirror reads the SAME object to
|
|
458
|
+
* decide whether to drain this turn's buffered replies.
|
|
459
|
+
*/
|
|
460
|
+
turnOwnership?: BrainstormTurnOwnership;
|
|
461
|
+
emitShellEventBound?: ReturnType<typeof createShellEventEmitter>;
|
|
462
|
+
promptText?: string;
|
|
463
|
+
promptOrigin?: 'desktop' | 'mobile';
|
|
464
|
+
mobilePromptEventId?: string;
|
|
465
|
+
}): Promise<boolean>;
|
|
342
466
|
/**
|
|
343
467
|
* PHASE-590 §3.D step 0 / §4.4 — compose the LOSSLESS implementation brief.
|
|
344
468
|
*
|
|
@@ -483,6 +607,8 @@ export declare function routeTeamDecompose(deps: {
|
|
|
483
607
|
/** Stage-2 R3 HIGH — the loop's durable store, so the live launch persists the retained spec + attachments. */
|
|
484
608
|
durableStore?: RevertManifestStore;
|
|
485
609
|
}): Promise<void>;
|
|
610
|
+
/** Test seam — reset the module-level A1e composer (vitest-gated). */
|
|
611
|
+
export declare function resetDispatchContextComposerForTests(): void;
|
|
486
612
|
/**
|
|
487
613
|
* CP-4 §4.1 (#600) — `familiarize` desktop route: the context-priming task.
|
|
488
614
|
*
|
|
@@ -566,6 +692,23 @@ export declare function routeAdvisory(deps: {
|
|
|
566
692
|
args: RunOrchestrationShellArgs;
|
|
567
693
|
userPrompt: string;
|
|
568
694
|
images: string[];
|
|
695
|
+
/**
|
|
696
|
+
* #619 — recent conversation turns for the TEXT-ONLY answerer case. When an
|
|
697
|
+
* `advisory_response` lands mid-conversation, the classifier's inline
|
|
698
|
+
* `advisory_summary` is BLIND to context (it rendered a meta-monologue "I
|
|
699
|
+
* will provide a helpful response…" in real dogfood). With `priorTurns`
|
|
700
|
+
* threaded, THIS produces the sole answer instead: a context-aware direct
|
|
701
|
+
* reply from the local answerer. Turns are already bounded + per-turn capped
|
|
702
|
+
* by the collector (compact-don't-wipe).
|
|
703
|
+
*/
|
|
704
|
+
priorTurns?: string[];
|
|
705
|
+
/**
|
|
706
|
+
* #619 Stage-2 (Codex LOW) — how many images the USER attached this turn,
|
|
707
|
+
* regardless of how many survived base64 read. When >0 but `images` is empty
|
|
708
|
+
* (all unreadable), the prompt keeps the image framing so the model says the
|
|
709
|
+
* image couldn't be used instead of answering as if none was attached.
|
|
710
|
+
*/
|
|
711
|
+
attemptedImages?: number;
|
|
569
712
|
}): Promise<void>;
|
|
570
713
|
export declare function parseTeamWorkItems(rawArg: string): {
|
|
571
714
|
ok: true;
|
|
@@ -611,6 +754,16 @@ export interface HandleShellUserInputDeps extends StructuralSummaryRunDeps {
|
|
|
611
754
|
* and the `[Image #N]` labels are stripped from the classify prompt.
|
|
612
755
|
*/
|
|
613
756
|
images?: string[];
|
|
757
|
+
/**
|
|
758
|
+
* The submission's origin. `'mobile'` marks the mobile→desktop RETURN path
|
|
759
|
+
* (`routeMobileUserPrompt` → the serialized submission wrapper): the turn mirror
|
|
760
|
+
* suppresses USER_PROMPT to avoid duplicating the phone's sent message, while
|
|
761
|
+
* pending planner offers remain answerable because F4 mirrors them as
|
|
762
|
+
* INTERACTIVE_PROMPT. Absent ⇒ a keyboard turn.
|
|
763
|
+
*/
|
|
764
|
+
inputOrigin?: 'mobile';
|
|
765
|
+
/** Loaded mobile USER_PROMPT event id used as the structured turn anchor. */
|
|
766
|
+
inputOriginEventId?: string;
|
|
614
767
|
/** Test seam — defaults to the real `addBodyPath`. */
|
|
615
768
|
addBodyPathFn?: (path: string, tier: Tier) => Promise<unknown>;
|
|
616
769
|
/** Test seam — defaults to the real `regenerateStructuralSummary`. */
|
|
@@ -645,6 +798,12 @@ export interface HandleShellUserInputDeps extends StructuralSummaryRunDeps {
|
|
|
645
798
|
* touching the filesystem / git.
|
|
646
799
|
*/
|
|
647
800
|
ensureFreshContextStoreFn?: typeof ensureFreshContextStore;
|
|
801
|
+
/**
|
|
802
|
+
* Test seam for the local planner's canonical multi-turn context projection.
|
|
803
|
+
* Production uses the same role-filtered ContextItems renderer used by agent
|
|
804
|
+
* dispatch; hosted-planner turns do not call it.
|
|
805
|
+
*/
|
|
806
|
+
renderRehydratedSessionContextFn?: typeof renderRehydratedSessionContext;
|
|
648
807
|
/**
|
|
649
808
|
* `/reviewer-setup` wizard (2026-06-29) — Test seam for the async wizard-open
|
|
650
809
|
* data load. Defaults to the real `loadReviewerWizardData` (detect installed
|
|
@@ -660,6 +819,14 @@ export interface HandleShellUserInputDeps extends StructuralSummaryRunDeps {
|
|
|
660
819
|
* path (vitest runs non-TTY) and `() => false` for the fallback advisory.
|
|
661
820
|
*/
|
|
662
821
|
isInteractiveTtyFn?: () => boolean;
|
|
822
|
+
/**
|
|
823
|
+
* [A1g] Round-4 — the per-turn brainstorm-panel ownership token minted by
|
|
824
|
+
* `serializeShellSubmissions` for THIS submission. The read-only `@`-mention
|
|
825
|
+
* router stamps `brainstormPanelOwned` on it when it commits to a panel turn;
|
|
826
|
+
* the turn-mirror reads the SAME object to decide whether to drain this turn's
|
|
827
|
+
* buffered replies. Optional — direct unit callers/tests may omit it.
|
|
828
|
+
*/
|
|
829
|
+
turnOwnership?: BrainstormTurnOwnership;
|
|
663
830
|
}
|
|
664
831
|
/**
|
|
665
832
|
* Slash + natural-language dispatch. Extracted from `runOrchestrationShell`
|
|
@@ -699,6 +866,8 @@ export interface ShellSubmitOptions {
|
|
|
699
866
|
* keyboard turn (both `USER_PROMPT` + `ASSISTANT_RESPONSE` mirror as today).
|
|
700
867
|
*/
|
|
701
868
|
fromMobile?: boolean;
|
|
869
|
+
/** Exact loaded MOBILE USER_PROMPT anchor for an attributed agent turn. */
|
|
870
|
+
mobilePromptEventId?: string;
|
|
702
871
|
}
|
|
703
872
|
export declare function serializeShellSubmissions(handler: (text: string, images?: string[], options?: ShellSubmitOptions) => Promise<void>): (text: string, images?: string[], options?: ShellSubmitOptions) => Promise<void>;
|
|
704
873
|
/**
|
|
@@ -738,37 +907,123 @@ export declare function buildContinuationActionDeps(args: RunOrchestrationShellA
|
|
|
738
907
|
export declare function detectBrowseFastPath(text: string, pending: PendingClarification | null): string[] | null;
|
|
739
908
|
export declare function handleShellUserInput(deps: HandleShellUserInputDeps): Promise<void>;
|
|
740
909
|
/**
|
|
741
|
-
*
|
|
742
|
-
*
|
|
743
|
-
*
|
|
744
|
-
*
|
|
745
|
-
*
|
|
746
|
-
*
|
|
747
|
-
*
|
|
748
|
-
*
|
|
749
|
-
*
|
|
750
|
-
*
|
|
751
|
-
*
|
|
752
|
-
*
|
|
753
|
-
*
|
|
754
|
-
*
|
|
755
|
-
*
|
|
756
|
-
*
|
|
757
|
-
*
|
|
758
|
-
*
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
910
|
+
* [A1g] Stage-2 round-4 (Codex round-3 MEDIUM) — the EXPLICIT per-turn panel-
|
|
911
|
+
* ownership token. `serializeShellSubmissions` mints ONE fresh object per
|
|
912
|
+
* submission and threads it into BOTH `handleShellUserInput` (whose router SETS
|
|
913
|
+
* `brainstormPanelOwned` at the SAME point it commits to a panel turn + buffers
|
|
914
|
+
* replies) AND the turn-mirror (which DRAINS the buffered replies and suppresses
|
|
915
|
+
* step-4b conductor authoring iff owned). Ownership is decided by the ACTUAL
|
|
916
|
+
* router this invocation — never re-inferred from the current turn's text.
|
|
917
|
+
*
|
|
918
|
+
* Re-inferring from `userEntry.text` (the prior `isBrainstormMentionTurn` probe)
|
|
919
|
+
* was WRONG on two paths: (a) a clarification-ANSWER turn that carries an earlier
|
|
920
|
+
* `@agent` override routes the panel (via `agentMentionIntentFromOverride` →
|
|
921
|
+
* `suppressMentionLocalAnswer`), yet its OWN text has no leading `@`-mention, so
|
|
922
|
+
* the mirror failed to drain — leaking a stale buffered reply into a LATER
|
|
923
|
+
* mention turn; (b) a bypassing slash command (`/status`) has no user-message
|
|
924
|
+
* entry at all. A per-invocation token is immune to both: the slash / clarify
|
|
925
|
+
* turn simply never sets it, and the routing turn always does. Replaces the old
|
|
926
|
+
* session-keyed `brainstormPanelTurns` marker (the token fully subsumes it —
|
|
927
|
+
* "a panel ran this turn" is exactly `brainstormPanelOwned`).
|
|
928
|
+
*/
|
|
929
|
+
export interface BrainstormTurnOwnership {
|
|
930
|
+
brainstormPanelOwned: boolean;
|
|
931
|
+
agentTurn?: {
|
|
932
|
+
route: 'broadcast' | 'directed';
|
|
933
|
+
turnId: string;
|
|
934
|
+
header: string;
|
|
935
|
+
cells: Array<{
|
|
936
|
+
authorAgent: BrainstormPanelActiveAgent;
|
|
937
|
+
status: 'completed' | 'quota_walled' | 'failed';
|
|
938
|
+
boundedBody: string;
|
|
939
|
+
}>;
|
|
940
|
+
prompt: {
|
|
941
|
+
kind: 'legacy_joined';
|
|
942
|
+
} | {
|
|
943
|
+
kind: 'mobile_existing';
|
|
944
|
+
eventId: string;
|
|
945
|
+
} | {
|
|
946
|
+
kind: 'agent_turn_pre_emitted';
|
|
947
|
+
eventId: string;
|
|
948
|
+
writerEventNonce: string;
|
|
949
|
+
contentCiphertextSha256: string;
|
|
950
|
+
metadataCiphertextSha256: string;
|
|
951
|
+
} | {
|
|
952
|
+
kind: 'agent_turn_pre_emit_failed';
|
|
953
|
+
};
|
|
954
|
+
responseWriterEventNonce: string;
|
|
955
|
+
authoring?: {
|
|
956
|
+
kind: 'committed';
|
|
957
|
+
receipt: ContextDurabilityReceipt;
|
|
958
|
+
humanOccurrence: ReturnType<typeof contextItemOccurrence>;
|
|
959
|
+
agentOccurrences: Map<string, ReturnType<typeof contextItemOccurrence>>;
|
|
960
|
+
} | {
|
|
961
|
+
kind: 'authority_failed';
|
|
962
|
+
};
|
|
963
|
+
};
|
|
964
|
+
}
|
|
965
|
+
/** Vitest-gated reset for the M5 registry + [A1g] panel state (the established seam pattern). */
|
|
966
|
+
export declare function resetTurnAuthoringStateForTests(): void;
|
|
967
|
+
/**
|
|
968
|
+
* [A1g] Stage-2 (agy LOW-3) — release a session's turn-authoring + panel state at
|
|
969
|
+
* shell teardown. The shell is single-session-per-process, so these session-keyed
|
|
970
|
+
* maps hold ≤1 key in practice; this closes the unbounded-growth seam anyway (and
|
|
971
|
+
* the pre-existing A1f `openQuestionRegistry` gap) so a long-lived host embedding
|
|
972
|
+
* the shell across sessions never accumulates dead keys. Idempotent; safe to call
|
|
973
|
+
* on any exit path. Non-throwing (delete on a Map/Set never throws).
|
|
771
974
|
*/
|
|
975
|
+
export declare function clearTurnAuthoringSessionState(sessionId: string): void;
|
|
976
|
+
/**
|
|
977
|
+
* A1f (design §6 + the A1e-deferred full-vocabulary authoring) — author this
|
|
978
|
+
* turn's typed ContextItems at the ONE per-turn chokepoint: the turn mirror
|
|
979
|
+
* runs once per serialized turn (keyboard AND mobile-origin — the §4.2
|
|
980
|
+
* single write authority folds mobile turns into the chain HERE) with the
|
|
981
|
+
* turn's conversation delta.
|
|
982
|
+
*
|
|
983
|
+
* Deterministic emitter-assigned labels (§4.2 — never the conductor):
|
|
984
|
+
* - human `turn` (DURABLE per Finding-2) — Stage-2 R1 H1: labeled
|
|
985
|
+
* planner/brainstorm ONLY (conversation, not task contract — §5
|
|
986
|
+
* explicitly excludes the full conversation from implementor windows;
|
|
987
|
+
* the implementor-sanctioned "answered clarifications + prior handoff
|
|
988
|
+
* turns" ride the existing brief-composition path, not this projection).
|
|
989
|
+
* An answering turn carries `refs` to the question item it answers (M5).
|
|
990
|
+
* - `decision` per planner-decision entry (author `conductor`; durable) —
|
|
991
|
+
* broadly visible (task-shaping, §6 distillation payload), task-scoped
|
|
992
|
+
* when the decision carries a taskId (H1 scope).
|
|
993
|
+
* - `open_question` when THIS turn asked a still-unanswered clarification
|
|
994
|
+
* (author `conductor`; durable) — broadly visible ("answered
|
|
995
|
+
* clarifications" are §5-sanctioned; the M5 linkage retires it once
|
|
996
|
+
* answered).
|
|
997
|
+
* - conductor reply `turn` (TRANSIENT — Finding-2 buffer) —
|
|
998
|
+
* planner/brainstorm-visible.
|
|
999
|
+
*
|
|
1000
|
+
* Stage-2 (Codex MEDIUM-2 / agy HIGH-1) — an AWAITABLE per-turn barrier:
|
|
1001
|
+
* every append this turn REGISTERS is collected into `pending` and the
|
|
1002
|
+
* function resolves only once they all settle. `emitOrchestrationTurnMirror`
|
|
1003
|
+
* awaits it, so — since the mirror runs inside `serializeShellSubmissions` —
|
|
1004
|
+
* Turn N's appends are durably registered BEFORE Turn N+1's turn begins (no
|
|
1005
|
+
* cross-turn [T1-human, T2-human, T1-panel] interleave). Registration is still
|
|
1006
|
+
* synchronous (the M5 registry + mutex chain order are unchanged: the only
|
|
1007
|
+
* `await` is the final `Promise.all` after every append is registered). Every
|
|
1008
|
+
* pushed promise is individually `.catch()`-guarded, so the barrier never
|
|
1009
|
+
* rejects — authoring must never fail the turn. Ends with the §6 O(1) mid-task
|
|
1010
|
+
* safety-valve check (fire-and-forget; NOT part of the barrier). Exported for
|
|
1011
|
+
* direct testing.
|
|
1012
|
+
*/
|
|
1013
|
+
export declare function authorTurnContextItems(deps: {
|
|
1014
|
+
store: OrchestrationStore;
|
|
1015
|
+
sessionId: string;
|
|
1016
|
+
delta: ConversationEntry[];
|
|
1017
|
+
/**
|
|
1018
|
+
* [A1g] Round-4 — did THIS invocation's router commit to a brainstorm-panel
|
|
1019
|
+
* turn (the `BrainstormTurnOwnership` token it stamped)? Only an owning turn
|
|
1020
|
+
* drains its buffered replies + suppresses step-4b. Absent/false ⇒ not a panel
|
|
1021
|
+
* turn (a plain conversational turn, a bypassing slash command, or an untagged
|
|
1022
|
+
* clarification answer that did not itself route a panel).
|
|
1023
|
+
*/
|
|
1024
|
+
panelOwnedThisTurn?: boolean;
|
|
1025
|
+
turnOwnership?: BrainstormTurnOwnership;
|
|
1026
|
+
}): Promise<void>;
|
|
772
1027
|
export declare function emitOrchestrationTurnMirror(deps: {
|
|
773
1028
|
store: OrchestrationStore;
|
|
774
1029
|
sessionId: string;
|
|
@@ -784,6 +1039,23 @@ export declare function emitOrchestrationTurnMirror(deps: {
|
|
|
784
1039
|
* the planner's reply reaches mobile. Absent/false ⇒ a keyboard turn (mirror both).
|
|
785
1040
|
*/
|
|
786
1041
|
skipUserPromptMirror?: boolean;
|
|
1042
|
+
/**
|
|
1043
|
+
* [A1g] Round-4 — the per-turn brainstorm-panel ownership token minted for THIS
|
|
1044
|
+
* submission (see `BrainstormTurnOwnership`). Threaded to `authorTurnContextItems`
|
|
1045
|
+
* as the drain authority. Absent for callers/tests that never route a panel.
|
|
1046
|
+
*/
|
|
1047
|
+
turnOwnership?: BrainstormTurnOwnership;
|
|
1048
|
+
/**
|
|
1049
|
+
* [A1g] Round-5 (Codex round-4 MEDIUM) — the conversation entries THIS
|
|
1050
|
+
* submission produced (see `turnAuthoringContext`). When present, the mirror
|
|
1051
|
+
* authors from these INVOCATION-OWNED entries instead of a global
|
|
1052
|
+
* `conversation.slice(convLenBefore)` window — so a concurrent slash bypass's
|
|
1053
|
+
* advisory (or this turn's advisory bleeding into a concurrent bypass) is
|
|
1054
|
+
* never mis-authored to the wrong turn. Absent ⇒ fall back to the
|
|
1055
|
+
* `convLenBefore` slice (unchanged behavior for callers/tests that don't
|
|
1056
|
+
* thread a sink).
|
|
1057
|
+
*/
|
|
1058
|
+
ownEntries?: ConversationEntry[];
|
|
787
1059
|
}): Promise<void>;
|
|
788
1060
|
/**
|
|
789
1061
|
* CP-4 §4.2 (Codex r1 M1 — the double-walk unify) — the SINGLE structural-
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export interface MentionSuggestion {
|
|
2
|
+
name: string;
|
|
3
|
+
blurb: string;
|
|
4
|
+
}
|
|
5
|
+
export declare function buildMentionSuggestions(availableAgents?: readonly string[]): MentionSuggestion[];
|
|
6
|
+
export declare function isMentionInProgress(value: string, cursor?: number): boolean;
|
|
7
|
+
export declare function filterMentionSuggestions(value: string, suggestions: readonly MentionSuggestion[], cursor?: number): MentionSuggestion[];
|
|
8
|
+
export declare function replaceMentionAtCursor(value: string, cursor: number, replacement: string): {
|
|
9
|
+
value: string;
|
|
10
|
+
cursor: number;
|
|
11
|
+
};
|
|
@@ -1,20 +1,4 @@
|
|
|
1
1
|
import { Mode, Tier } from './types';
|
|
2
|
-
/**
|
|
3
|
-
* Thrown when a Free-tier user explicitly requests `--mode orchestration`.
|
|
4
|
-
* Per §2 + §16 LOCK #1: Orchestration Mode is Pro/Max-gated; Free-tier
|
|
5
|
-
* users hit this error with the upgrade URL.
|
|
6
|
-
*/
|
|
7
|
-
export declare class TierError extends Error {
|
|
8
|
-
constructor(message: string);
|
|
9
|
-
}
|
|
10
|
-
/**
|
|
11
|
-
* Parsed arguments the entrypoint hands to `pickMode`. Either flag is
|
|
12
|
-
* optional; a value of `undefined` means "not specified".
|
|
13
|
-
*/
|
|
14
|
-
export interface ParsedModeArgs {
|
|
15
|
-
/** `--mode companion` | `--mode orchestration` | undefined */
|
|
16
|
-
mode?: Mode;
|
|
17
|
-
}
|
|
18
2
|
/**
|
|
19
3
|
* Test seam — lets the unit tests inject a deterministic prompt
|
|
20
4
|
* callback instead of opening a real TTY.
|
|
@@ -28,15 +12,13 @@ export interface ModeSelectionDeps {
|
|
|
28
12
|
* read or written here.
|
|
29
13
|
*
|
|
30
14
|
* Rules:
|
|
31
|
-
* 1. Free-tier
|
|
32
|
-
* 2.
|
|
33
|
-
* 3. Free-tier (no flag) → 'companion'.
|
|
34
|
-
* 4. Pro/Max (no flag) → always prompt the user (sticky preference is
|
|
15
|
+
* 1. Free-tier → 'companion'.
|
|
16
|
+
* 2. Pro/Max → always prompt the user (sticky preference is
|
|
35
17
|
* never consulted; the answer is not persisted).
|
|
36
18
|
*/
|
|
37
|
-
export declare function pickMode(
|
|
19
|
+
export declare function pickMode(tier: Tier, deps?: ModeSelectionDeps): Promise<Mode>;
|
|
38
20
|
/**
|
|
39
21
|
* Default deps wiring — production callers can omit `deps` from
|
|
40
|
-
* `pickMode()` and get this. Tests override via the optional
|
|
22
|
+
* `pickMode()` and get this. Tests override via the optional 2nd arg.
|
|
41
23
|
*/
|
|
42
24
|
export declare function defaultDeps(): ModeSelectionDeps;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import type { ShellEventEmit, ShellEventEmitResult } from './emit-shell-event';
|
|
2
|
+
/** The run-scoped shell emitter (`createShellEventEmitter(...)`). */
|
|
3
|
+
export type ShellEmitter = (args: ShellEventEmit) => Promise<ShellEventEmitResult>;
|
|
4
|
+
/** The run-scoped `openPrompts` TTL co-refresh transport (§3.1). */
|
|
5
|
+
export type OpenPromptTtlRefresher = (promptIds: string[]) => Promise<string[]>;
|
|
6
|
+
/** Everything the ledger needs to (re-)emit an offer raise. */
|
|
7
|
+
export interface PlannerOfferRaiseContext {
|
|
8
|
+
sessionId: string;
|
|
9
|
+
/** The offer question — the INTERACTIVE_PROMPT content (re-raised verbatim). */
|
|
10
|
+
content: string;
|
|
11
|
+
/** The offer payload — the INTERACTIVE_PROMPT metadata (re-raised verbatim). */
|
|
12
|
+
metadata: Record<string, unknown>;
|
|
13
|
+
agentType?: string;
|
|
14
|
+
title?: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* The core CORE_OFFER producer ledger + durable-ledger refresh loop. A single
|
|
18
|
+
* instance lives per process (one orchestration shell per process); `beginRun`
|
|
19
|
+
* re-binds the transports + resets state for a fresh run.
|
|
20
|
+
*/
|
|
21
|
+
export declare class PlannerOfferE1Ledger {
|
|
22
|
+
/** Open offers, keyed by the offer's stable `conversationEntryId` (§6a-4). */
|
|
23
|
+
private readonly raises;
|
|
24
|
+
/** promptIds whose raise emit is un-acked → retry-until-ack (mirrors the plugins'
|
|
25
|
+
* `e1NeedsReRaise`). */
|
|
26
|
+
private readonly needsReRaise;
|
|
27
|
+
/** promptIds whose resolution emit is un-acked → retry-until-ack (F-C4). */
|
|
28
|
+
private readonly pendingResolutions;
|
|
29
|
+
private timer;
|
|
30
|
+
private emit;
|
|
31
|
+
private refreshTtl;
|
|
32
|
+
private readonly refreshMs;
|
|
33
|
+
private draining;
|
|
34
|
+
constructor(opts?: {
|
|
35
|
+
refreshMs?: number;
|
|
36
|
+
});
|
|
37
|
+
/**
|
|
38
|
+
* Install the run-scoped TTL-refresh transport and RESET all per-run state. Call
|
|
39
|
+
* once at shell start; a re-run (tests) gets a clean ledger + no stale timer.
|
|
40
|
+
*/
|
|
41
|
+
beginRun(refreshTtl: OpenPromptTtlRefresher): void;
|
|
42
|
+
/**
|
|
43
|
+
* F-C1 — raise (or re-present) a planner offer and INSPECT the emit result. On a
|
|
44
|
+
* transient failure (`{emitted:false}` or a throw) PARK the promptId for
|
|
45
|
+
* retry-until-ack. First presentation mints a fresh secret + committed promptId;
|
|
46
|
+
* a re-present across turns reuses it (stable id → the backend re-raises on the
|
|
47
|
+
* `ownerToken=:token` branch, no duplicate row). Never throws.
|
|
48
|
+
*/
|
|
49
|
+
raiseOffer(emit: ShellEmitter, conversationEntryId: string, ctx: PlannerOfferRaiseContext): Promise<void>;
|
|
50
|
+
/**
|
|
51
|
+
* F-C4 — resolve an offer: emit the SIGNED resolution NOTIFICATION so its
|
|
52
|
+
* `openPrompts` row exact-clears, retried-until-ack. The ledger identity is moved
|
|
53
|
+
* OUT of the open-offer set (stops refresh/re-raise) INTO the pending-resolution
|
|
54
|
+
* set and is NOT dropped until the clear is backend-acknowledged (or is proven
|
|
55
|
+
* un-attestable → over-nag to TTL). A no-op if the offer never raised a row (a
|
|
56
|
+
* pre-E1 in-flight offer). Never throws.
|
|
57
|
+
*/
|
|
58
|
+
resolveOffer(emit: ShellEmitter, conversationEntryId: string, sessionId: string): Promise<void>;
|
|
59
|
+
/** Stop the refresh timer (shell teardown). Idempotent. */
|
|
60
|
+
stopTimer(): void;
|
|
61
|
+
/** Is there a LIVE open-offer ledger entry for this entryId? (content-key floor) */
|
|
62
|
+
hasOpenOffer(conversationEntryId: string): boolean;
|
|
63
|
+
/** The committed promptId for an open offer (undefined once resolved/absent). */
|
|
64
|
+
promptIdFor(conversationEntryId: string): string | undefined;
|
|
65
|
+
isParkedForReRaise(promptId: string): boolean;
|
|
66
|
+
hasPendingResolution(promptId: string): boolean;
|
|
67
|
+
/** Run ONE refresh tick synchronously (the interval calls this; exposed for tests). */
|
|
68
|
+
runTick(): Promise<void>;
|
|
69
|
+
private getOrCreateEntry;
|
|
70
|
+
private buildRaiseEmit;
|
|
71
|
+
/**
|
|
72
|
+
* Emit ONE offer raise + park on failure (F-C1). ACK (`{emitted:true}`) clears any
|
|
73
|
+
* retry flag; `{emitted:false}` or a throw parks the promptId so a later tick
|
|
74
|
+
* re-emits until the backend writes the row.
|
|
75
|
+
*/
|
|
76
|
+
private emitRaise;
|
|
77
|
+
/**
|
|
78
|
+
* Emit ONE resolution + retry-until-ack (F-C4). ACK (`{emitted:true}`) drops the
|
|
79
|
+
* identity (the row exact-cleared, or the conditional Delete no-op'd for an
|
|
80
|
+
* already-gone row — both acknowledged). A transient `{emitted:false}` keeps the
|
|
81
|
+
* identity for the next tick; a terminal/un-attestable reason (or the retry cap)
|
|
82
|
+
* gives up → the row over-nags to its own TTL.
|
|
83
|
+
*/
|
|
84
|
+
private emitResolution;
|
|
85
|
+
/** Retry every parked raise whose ledger entry is still open (F-C1 drain). */
|
|
86
|
+
private drainReRaises;
|
|
87
|
+
/** Retry every un-acked resolution; give up past the attempt cap (F-C4 drain). */
|
|
88
|
+
private drainResolutions;
|
|
89
|
+
/**
|
|
90
|
+
* §3.1 — co-refresh the OPEN offers' `openPrompts` row TTLs; FULL-re-raise any
|
|
91
|
+
* promptId the backend reports as already aged-out (return-driven re-raise, §6a-4).
|
|
92
|
+
*/
|
|
93
|
+
private refreshOpenTtls;
|
|
94
|
+
private findOpenEntryByPromptId;
|
|
95
|
+
private ensureTimer;
|
|
96
|
+
private maybeStopTimer;
|
|
97
|
+
}
|