@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
|
@@ -13,6 +13,29 @@ export type OllamaRuntimeConfigResult = {
|
|
|
13
13
|
ok: false;
|
|
14
14
|
reason: string;
|
|
15
15
|
};
|
|
16
|
+
/**
|
|
17
|
+
* Dogfood #618 — keep the model RESIDENT between shell turns. Ollama's default
|
|
18
|
+
* keep_alive is 5 minutes: a user who reads a brainstorm for 6 minutes before
|
|
19
|
+
* replying pays a full model reload on the next turn, and on a busy machine
|
|
20
|
+
* that reload can blow the whole request timeout. Sent on EVERY generate (each
|
|
21
|
+
* turn re-ups the window) and on the shell-start pre-warm.
|
|
22
|
+
*/
|
|
23
|
+
export declare const OLLAMA_KEEP_ALIVE = "30m";
|
|
24
|
+
/**
|
|
25
|
+
* Dogfood #618 — floor for ADVISORY generations (brainstorm/familiarize
|
|
26
|
+
* fallback, up to 700–1400 output tokens on a 12B + long conversation-context
|
|
27
|
+
* prompts). Measured warm long-context brainstorm ≈ 6s on an idle machine, but
|
|
28
|
+
* a cold reload + busy machine blew the shared 60s cap in real dogfood. The
|
|
29
|
+
* fast-fail 60s default stays for CLASSIFY (≤256 tokens, turn-blocking); an
|
|
30
|
+
* explicit higher CODEVIBE_LOCAL_MODEL_TIMEOUT_MS still wins over this floor.
|
|
31
|
+
*/
|
|
32
|
+
export declare const ADVISORY_TIMEOUT_FLOOR_MS = 180000;
|
|
33
|
+
/**
|
|
34
|
+
* Advisory requests use the LARGER of the configured timeout and the advisory
|
|
35
|
+
* floor, still clamped to the global max — so the env var can raise but never
|
|
36
|
+
* silently shrink an advisory below its floor.
|
|
37
|
+
*/
|
|
38
|
+
export declare function advisoryTimeoutMs(configTimeoutMs: number): number;
|
|
16
39
|
/**
|
|
17
40
|
* The `/api/pull` STALL window. A real multi-GB model pull runs for many minutes, so the
|
|
18
41
|
* pull must NOT use the single-shot inference timeout ({@link requestOllamaJson}). Instead we
|
|
@@ -60,5 +83,22 @@ export declare class OllamaGemmaPlannerRunner implements LocalGemmaPlannerRunner
|
|
|
60
83
|
constructor(config: OllamaRuntimeConfig);
|
|
61
84
|
classify(promptText: string): Promise<string>;
|
|
62
85
|
generateAdvisory(promptText: string, options?: LocalGemmaAdvisoryOptions): Promise<string>;
|
|
86
|
+
/**
|
|
87
|
+
* Dogfood #618 — fire-and-forget model pre-warm. Sends a LOAD-ONLY generate
|
|
88
|
+
* (empty prompt: Ollama loads the model into memory and returns immediately,
|
|
89
|
+
* response text is empty by design — so this does NOT go through
|
|
90
|
+
* `requestOllamaGenerate`, which rejects empty responses) with the standard
|
|
91
|
+
* keep_alive. NEVER throws: resolves `true` when the model is resident,
|
|
92
|
+
* `false` on any error — pre-warm failure must not affect shell startup.
|
|
93
|
+
*/
|
|
94
|
+
warm(): Promise<boolean>;
|
|
95
|
+
/**
|
|
96
|
+
* #618 Stage-2 (agy MEDIUM) — release the model on shell exit. Without this,
|
|
97
|
+
* quitting the shell leaves the 12B (7.4GB) resident for up to the full
|
|
98
|
+
* keep_alive window, starving other host work. `keep_alive: 0` unloads
|
|
99
|
+
* immediately; the next shell start's pre-warm covers the reload cost.
|
|
100
|
+
* Fire-and-forget shape like warm(): unref'd, short cap, never throws.
|
|
101
|
+
*/
|
|
102
|
+
unload(): Promise<boolean>;
|
|
63
103
|
probe(): Promise<PlannerProbeResult>;
|
|
64
104
|
}
|
package/node_modules/@quantiya/codevibe-core/dist/orchestration/__tests__/detect-agents.test.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,6 +2,7 @@ import { Logger } from '../logger';
|
|
|
2
2
|
import { AppSyncClient } from '../appsync';
|
|
3
3
|
import { CapabilityRegistry } from '../adapter/capabilities';
|
|
4
4
|
export type DetectableAgent = 'CLAUDE' | 'GEMINI' | 'CODEX' | 'ANTIGRAVITY';
|
|
5
|
+
declare function launcherCompatiblePath(env: NodeJS.ProcessEnv, commonPaths?: string[]): string;
|
|
5
6
|
/**
|
|
6
7
|
* Returns the subset of agents present on PATH. Uses `command -v`
|
|
7
8
|
* (POSIX-standard) rather than `which` for portability across macOS
|
|
@@ -12,10 +13,15 @@ export type DetectableAgent = 'CLAUDE' | 'GEMINI' | 'CODEX' | 'ANTIGRAVITY';
|
|
|
12
13
|
* installed agents CAN change between plugin launches (user installs
|
|
13
14
|
* a new agent) and the caller decides how often to re-probe.
|
|
14
15
|
*/
|
|
15
|
-
export declare function detectInstalledAgents(): DetectableAgent[];
|
|
16
|
+
export declare function detectInstalledAgents(env?: NodeJS.ProcessEnv): DetectableAgent[];
|
|
17
|
+
declare function isAgentInstalled(agent: DetectableAgent, env: NodeJS.ProcessEnv, commonPaths?: string[]): boolean;
|
|
18
|
+
export declare const __testing: {
|
|
19
|
+
isAgentInstalled: typeof isAgentInstalled;
|
|
20
|
+
launcherCompatiblePath: typeof launcherCompatiblePath;
|
|
21
|
+
};
|
|
16
22
|
/**
|
|
17
23
|
* Detect-and-push convenience for plugin daemon startup. All three
|
|
18
|
-
* plugins (Claude,
|
|
24
|
+
* plugins (Claude, Codex, Antigravity) call this once at start(). Runs
|
|
19
25
|
* the local PATH probe, then pushes the set to the backend via
|
|
20
26
|
* updateAvailableAgents. Idempotent — the backend dedupes and stores.
|
|
21
27
|
* Non-fatal on the network failure path (caller should `.catch()`
|
|
@@ -25,7 +31,7 @@ export declare function detectInstalledAgents(): DetectableAgent[];
|
|
|
25
31
|
* CP-1.f LOCK RP-3 — `replace` semantics. `User.availableAgents` is a
|
|
26
32
|
* cross-device UNION by default (`replace=false`), which never removes a
|
|
27
33
|
* stale agent (a `GEMINI` from a prior device/install would linger and
|
|
28
|
-
* get composed into the reviewer panel →
|
|
34
|
+
* get composed into the reviewer panel → unsupported agent spawn). The
|
|
29
35
|
* orchestration shell passes `replace=true` so the stored set is EXACTLY
|
|
30
36
|
* the current orchestration host's installed agents, AND — also per
|
|
31
37
|
* RP-3 — always writes even on zero detection (no skip-on-empty) so a
|
|
@@ -41,30 +47,4 @@ export declare function detectInstalledAgents(): DetectableAgent[];
|
|
|
41
47
|
* Default false (1.x companion union path).
|
|
42
48
|
*/
|
|
43
49
|
export declare function pushDetectedAgents(client: AppSyncClient, log: Pick<Logger, 'info' | 'warn'>, capabilityRegistry?: CapabilityRegistry, detectFn?: () => DetectableAgent[], replace?: boolean): Promise<void>;
|
|
44
|
-
|
|
45
|
-
* Quorum 2.0 (2f.0.a.6) per-session orchestration CLI override applier.
|
|
46
|
-
* All three plugin wrappers (`codevibe-claude`, `codevibe-gemini`,
|
|
47
|
-
* `codevibe-codex`) export `CODEVIBE_ORCHESTRATION_OVERRIDE=true|false`
|
|
48
|
-
* to the tmux env when the user passes `--orchestration` /
|
|
49
|
-
* `--no-orchestration`. The daemon inherits this via the hook env
|
|
50
|
-
* chain and calls THIS function after every session-creation site
|
|
51
|
-
* to pin the per-session decision — wins outright over the server's
|
|
52
|
-
* User.orchestrationEnabledDefault auto-populate.
|
|
53
|
-
*
|
|
54
|
-
* Called from each plugin's daemon at every session-creation call
|
|
55
|
-
* site. Claude has one (handleSessionStart covers new + /resume
|
|
56
|
-
* because Claude Code fires SessionStart on /resume). Gemini has
|
|
57
|
-
* two (handleSessionStart + switchToResumedSession — /resume doesn't
|
|
58
|
-
* fire SessionStart in Gemini). Codex has two (createLaunchSession
|
|
59
|
-
* + handleSessionStarted — launch session gets replaced by runtime
|
|
60
|
-
* session_meta).
|
|
61
|
-
*
|
|
62
|
-
* Non-fatal on error — a failed override doesn't block session setup;
|
|
63
|
-
* the server's auto-populate decision stands and the user can flip
|
|
64
|
-
* the session via mobile toggle after the fact.
|
|
65
|
-
*
|
|
66
|
-
* @param client AppSyncClient authenticated for the session's owner
|
|
67
|
-
* @param sessionId Backend session ID (post-resumeOrCreateSession)
|
|
68
|
-
* @param log Logger
|
|
69
|
-
*/
|
|
70
|
-
export declare function applyPerSessionOrchestrationOverride(client: AppSyncClient, sessionId: string, log: Pick<Logger, 'info' | 'warn'>): Promise<void>;
|
|
50
|
+
export {};
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
export { detectInstalledAgents, pushDetectedAgents,
|
|
2
|
-
export { runOrchestrationCli } from './orchestration-cli';
|
|
1
|
+
export { detectInstalledAgents, pushDetectedAgents, type DetectableAgent, } from './detect-agents';
|
|
3
2
|
export { V1_ORCHESTRATION_PROMPT_KIND, V1_ORCHESTRATION_OPTIONS, mapOptionNumberToUserDecisionKind, mapOptionToUserDecisionKind, type V1OrchestrationOption, type V1UserDecisionKind, } from './v1-options';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import { type AnchoredCommittedFile } from '../local-executor/anchored-fs';
|
|
2
|
+
import { type ProcessIdentity } from '../local-executor/process-identity';
|
|
3
|
+
import { type ProcessCleanupOwner } from '../local-executor/process-tree';
|
|
4
|
+
import { type WorkspaceRootAuthority } from '../local-executor/workspace-authority';
|
|
5
|
+
export declare function advisoryAttachmentJournalRoot(home?: string): string;
|
|
6
|
+
export interface BatchRecordV1 {
|
|
7
|
+
version: 1;
|
|
8
|
+
kind: 'batch';
|
|
9
|
+
batchId: string;
|
|
10
|
+
sessionId: string;
|
|
11
|
+
workspaceKey: string;
|
|
12
|
+
owner: ProcessIdentity;
|
|
13
|
+
workspaceRoot: WorkspaceRootAuthority;
|
|
14
|
+
directory: WorkspaceRootAuthority;
|
|
15
|
+
createdAtMs: number;
|
|
16
|
+
}
|
|
17
|
+
interface AttachmentContentAuthority {
|
|
18
|
+
sha256: string;
|
|
19
|
+
size: number;
|
|
20
|
+
mode: number;
|
|
21
|
+
}
|
|
22
|
+
export interface AttachmentRecordV1 {
|
|
23
|
+
version: 1;
|
|
24
|
+
kind: 'attachment';
|
|
25
|
+
recordId: string;
|
|
26
|
+
batchId: string;
|
|
27
|
+
sessionId: string;
|
|
28
|
+
owner: ProcessIdentity;
|
|
29
|
+
workspaceRoot: WorkspaceRootAuthority;
|
|
30
|
+
directory: WorkspaceRootAuthority;
|
|
31
|
+
targetName: string;
|
|
32
|
+
content: AttachmentContentAuthority;
|
|
33
|
+
phase: 'pending' | 'committed';
|
|
34
|
+
file: AnchoredCommittedFile | null;
|
|
35
|
+
createdAtMs: number;
|
|
36
|
+
}
|
|
37
|
+
export interface AdvisoryProcessRecordV1 {
|
|
38
|
+
version: 1;
|
|
39
|
+
kind: 'process';
|
|
40
|
+
recordId: string;
|
|
41
|
+
batchId: string;
|
|
42
|
+
sessionId: string;
|
|
43
|
+
owner: ProcessIdentity;
|
|
44
|
+
workspaceRoot: WorkspaceRootAuthority;
|
|
45
|
+
processOwner: ProcessCleanupOwner;
|
|
46
|
+
createdAtMs: number;
|
|
47
|
+
}
|
|
48
|
+
export interface AdvisoryAttachmentBatchAuthority {
|
|
49
|
+
readonly value: BatchRecordV1;
|
|
50
|
+
readonly recordPath: string;
|
|
51
|
+
readonly recordIdentity: AnchoredCommittedFile;
|
|
52
|
+
}
|
|
53
|
+
export interface AdvisoryAttachmentPublicationAuthority {
|
|
54
|
+
readonly value: AttachmentRecordV1;
|
|
55
|
+
readonly recordPath: string;
|
|
56
|
+
readonly recordIdentity: AnchoredCommittedFile;
|
|
57
|
+
}
|
|
58
|
+
export interface AdvisoryProcessAuthority {
|
|
59
|
+
readonly value: AdvisoryProcessRecordV1;
|
|
60
|
+
readonly recordPath: string;
|
|
61
|
+
readonly recordIdentity: AnchoredCommittedFile;
|
|
62
|
+
}
|
|
63
|
+
export interface AdvisoryAttachmentRecoveryResult {
|
|
64
|
+
recoveredAttachments: number;
|
|
65
|
+
retiredBatches: number;
|
|
66
|
+
retainedLive: number;
|
|
67
|
+
}
|
|
68
|
+
export declare class AdvisoryAttachmentWorkspaceBlockedError extends Error {
|
|
69
|
+
constructor(message?: string);
|
|
70
|
+
}
|
|
71
|
+
export declare class AdvisoryAttachmentJournal {
|
|
72
|
+
private readonly sessionId;
|
|
73
|
+
private readonly rootPath;
|
|
74
|
+
private readonly anchorPath;
|
|
75
|
+
private readonly currentOwner;
|
|
76
|
+
private readonly ownerIsAlive;
|
|
77
|
+
private readonly retryProcessOwner;
|
|
78
|
+
private readonly mintId;
|
|
79
|
+
private readonly now;
|
|
80
|
+
private readonly retirementSettleMs;
|
|
81
|
+
private rootAuthority;
|
|
82
|
+
private readonly activeBatchIds;
|
|
83
|
+
constructor(opts: {
|
|
84
|
+
sessionId: string;
|
|
85
|
+
/** @internal isolated private root for deterministic tests. */
|
|
86
|
+
rootDir?: string;
|
|
87
|
+
/** @internal existing ancestor for the isolated private root. */
|
|
88
|
+
anchorPath?: string;
|
|
89
|
+
/** @internal deterministic OS-incarnation seam for recovery tests. */
|
|
90
|
+
currentProcessIdentityFn?: () => Promise<ProcessIdentity>;
|
|
91
|
+
/** @internal deterministic liveness seam for recovery tests. */
|
|
92
|
+
isProcessIdentityAliveFn?: (identity: ProcessIdentity) => Promise<boolean>;
|
|
93
|
+
/** @internal deterministic exact process-group recovery seam. */
|
|
94
|
+
retryProcessCleanupOwnerFn?: (owner: ProcessCleanupOwner) => Promise<void>;
|
|
95
|
+
/** @internal deterministic UUID seam for recovery/collision tests. */
|
|
96
|
+
newId?: () => string;
|
|
97
|
+
/** @internal deterministic timestamp seam for canonical-record tests. */
|
|
98
|
+
now?: () => number;
|
|
99
|
+
/** @internal shorten the transient helper-retirement observation window. */
|
|
100
|
+
retirementSettleMs?: number;
|
|
101
|
+
});
|
|
102
|
+
private openRoot;
|
|
103
|
+
private readRecord;
|
|
104
|
+
private readRetirementRecord;
|
|
105
|
+
private helperArtifactTarget;
|
|
106
|
+
private listRecords;
|
|
107
|
+
private writeNewRecord;
|
|
108
|
+
private replaceRecord;
|
|
109
|
+
private removeRecord;
|
|
110
|
+
private assertBatchToken;
|
|
111
|
+
private assertPublicationToken;
|
|
112
|
+
private assertProcessToken;
|
|
113
|
+
private recoverProcessRecord;
|
|
114
|
+
/**
|
|
115
|
+
* `anchoredRemoveFile` quarantines an exact file under a fresh private
|
|
116
|
+
* `.codevibe-retire-*` name before unlink. If the helper dies in that narrow
|
|
117
|
+
* interval, recover the tombstone by immutable inode/content authority rather
|
|
118
|
+
* than by a pathname capability that the helper deliberately never exposes.
|
|
119
|
+
*/
|
|
120
|
+
private findRetiredImage;
|
|
121
|
+
private recoverAttachmentRecord;
|
|
122
|
+
recoverDeadOwners(): Promise<AdvisoryAttachmentRecoveryResult>;
|
|
123
|
+
assertWorkspaceSafe(workingDir: string): Promise<void>;
|
|
124
|
+
assertBatchOwnsWorkspace(batch: AdvisoryAttachmentBatchAuthority, workingDir: string): Promise<void>;
|
|
125
|
+
beginBatch(args: {
|
|
126
|
+
workspaceRoot: WorkspaceRootAuthority;
|
|
127
|
+
directory: WorkspaceRootAuthority;
|
|
128
|
+
}): Promise<AdvisoryAttachmentBatchAuthority>;
|
|
129
|
+
/**
|
|
130
|
+
* Bind one exact advisory process group to the image batch before the
|
|
131
|
+
* untrusted target receives its launch ACK. A separate record per panel cell
|
|
132
|
+
* avoids shared-record CAS races when several advisors start concurrently.
|
|
133
|
+
*/
|
|
134
|
+
beginProcess(batch: AdvisoryAttachmentBatchAuthority, processOwner: ProcessCleanupOwner): Promise<AdvisoryProcessAuthority>;
|
|
135
|
+
/**
|
|
136
|
+
* Retire a process binding only after exact process-group absence is proven.
|
|
137
|
+
* The spawn layer already performs this proof before its retirement hook;
|
|
138
|
+
* repeating it here makes the journal API independently fail closed.
|
|
139
|
+
*/
|
|
140
|
+
retireProcess(authority: AdvisoryProcessAuthority, processOwner: ProcessCleanupOwner): Promise<void>;
|
|
141
|
+
beginPublication(args: {
|
|
142
|
+
batch: AdvisoryAttachmentBatchAuthority;
|
|
143
|
+
extension: string;
|
|
144
|
+
bytes: Buffer;
|
|
145
|
+
}): Promise<AdvisoryAttachmentPublicationAuthority>;
|
|
146
|
+
commitPublication(authority: AdvisoryAttachmentPublicationAuthority, file: AnchoredCommittedFile): Promise<AdvisoryAttachmentPublicationAuthority>;
|
|
147
|
+
abortUnpublished(authority: AdvisoryAttachmentPublicationAuthority): Promise<void>;
|
|
148
|
+
cleanupPublication(authority: AdvisoryAttachmentPublicationAuthority): Promise<void>;
|
|
149
|
+
/**
|
|
150
|
+
* Resolve an ambiguous image/journal commit failure from the immutable
|
|
151
|
+
* pending authority. The record identity may legitimately have advanced to
|
|
152
|
+
* `committed` before the caller lost the acknowledgement, so this verifies
|
|
153
|
+
* the immutable batch/target/content tuple rather than requiring the stale
|
|
154
|
+
* record inode.
|
|
155
|
+
*/
|
|
156
|
+
recoverPublication(authority: AdvisoryAttachmentPublicationAuthority): Promise<void>;
|
|
157
|
+
finishBatch(batch: AdvisoryAttachmentBatchAuthority): Promise<void>;
|
|
158
|
+
/**
|
|
159
|
+
* Final normal-exit audit. It retries only this journal instance's batches
|
|
160
|
+
* (or definitely-dead predecessors), then refuses successful retirement while
|
|
161
|
+
* any record for the session remains.
|
|
162
|
+
*/
|
|
163
|
+
disposeSession(): Promise<void>;
|
|
164
|
+
}
|
|
165
|
+
export {};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import type { ImageAttachment } from './types';
|
|
2
|
+
import { type AnchoredCommittedFile } from '../local-executor/anchored-fs';
|
|
3
|
+
import { type WorkspaceRootAuthority } from '../local-executor/workspace-authority';
|
|
4
|
+
import { AdvisoryAttachmentJournal, type AdvisoryAttachmentBatchAuthority, type AdvisoryAttachmentPublicationAuthority } from './advisory-attachment-journal';
|
|
2
5
|
/** Per-file on-disk cap (§10.5). */
|
|
3
6
|
export declare const MAX_IMAGE_BYTES: number;
|
|
4
7
|
/** Max attachments on the FINAL accumulated+deduped task set (§5). */
|
|
@@ -66,27 +69,69 @@ export interface CopiedAttachment {
|
|
|
66
69
|
relPath: string;
|
|
67
70
|
mime: string;
|
|
68
71
|
}
|
|
72
|
+
/**
|
|
73
|
+
* Exact filesystem authority retained from advisory staging through cleanup.
|
|
74
|
+
* Paths alone are never deletion authority.
|
|
75
|
+
*/
|
|
76
|
+
export interface AdvisoryAttachmentCleanupAuthority {
|
|
77
|
+
/** Private durable owner; the shared exact ignore guard is persistent. */
|
|
78
|
+
journal: AdvisoryAttachmentJournal;
|
|
79
|
+
batch: AdvisoryAttachmentBatchAuthority;
|
|
80
|
+
/** Only exact turn-owned image publications. */
|
|
81
|
+
files: Array<{
|
|
82
|
+
identity: AnchoredCommittedFile;
|
|
83
|
+
publication: AdvisoryAttachmentPublicationAuthority;
|
|
84
|
+
}>;
|
|
85
|
+
}
|
|
69
86
|
export interface PreparedAttachments {
|
|
70
87
|
copiedAttachments: CopiedAttachment[];
|
|
71
88
|
failedAttachments: ImageAttachment[];
|
|
72
89
|
/** The brief with FAILED-copy refs rewritten to a neutral marker (no dangling ref). */
|
|
73
90
|
roundBrief: string;
|
|
91
|
+
/** Present only for real-worktree advisory staging. */
|
|
92
|
+
advisoryCleanupAuthority: AdvisoryAttachmentCleanupAuthority | null;
|
|
74
93
|
}
|
|
94
|
+
/**
|
|
95
|
+
* Stage read-only brainstorm attachments in the user's real worktree.
|
|
96
|
+
*
|
|
97
|
+
* This path deliberately remains separate from implementor snapshot staging:
|
|
98
|
+
* user-owned conflicting entries are never removed, and the caller receives
|
|
99
|
+
* exact creation + inode identity so its per-turn cleanup cannot traverse a
|
|
100
|
+
* replacement symlink.
|
|
101
|
+
*/
|
|
102
|
+
export declare function prepareAttachmentsForAdvisoryWorktree(roundBrief: string, attachments: ImageAttachment[], workdir: string, journal: AdvisoryAttachmentJournal, opts?: {
|
|
103
|
+
/** @internal deterministic root-replacement seam. */
|
|
104
|
+
onRootCaptured?: (authority: WorkspaceRootAuthority) => Promise<void> | void;
|
|
105
|
+
/** @internal deterministic directory-replacement seam. */
|
|
106
|
+
onDirEnsured?: (authority: WorkspaceRootAuthority) => Promise<void> | void;
|
|
107
|
+
/** @internal deterministic pre-publication swap seam. */
|
|
108
|
+
beforeFileCommit?: (attachment: ImageAttachment, destination: string) => Promise<void> | void;
|
|
109
|
+
}): Promise<PreparedAttachments>;
|
|
110
|
+
/**
|
|
111
|
+
* Retire only files committed by one advisory staging call. Exact file,
|
|
112
|
+
* directory, and root identities are re-authenticated by anchored helpers;
|
|
113
|
+
* replacement entries are retained untouched.
|
|
114
|
+
*/
|
|
115
|
+
export declare function cleanupPreparedAdvisoryAttachments(prepared: PreparedAttachments, opts?: {
|
|
116
|
+
/** @internal deterministic exact-unlink race seam. */
|
|
117
|
+
beforeFileRemove?: (file: AnchoredCommittedFile, quarantinePath: string) => Promise<void> | void;
|
|
118
|
+
}): Promise<void>;
|
|
75
119
|
/**
|
|
76
120
|
* Per-round copy + failure-rewrite in ONE step (§7.3, rev-7). For each attachment,
|
|
77
|
-
*
|
|
78
|
-
*
|
|
79
|
-
*
|
|
80
|
-
*
|
|
81
|
-
*
|
|
82
|
-
* the execute-first payload. Never throws / never hard-blocks.
|
|
121
|
+
* validate the captured snapshot authority, create its attachments directory
|
|
122
|
+
* through the anchored helper, and publish each bounded/re-sniffed image with
|
|
123
|
+
* an anchored atomic write. A failed copy rewrites that attachment's neutral
|
|
124
|
+
* reference to `[attached image skipped]`; this function never hard-blocks the
|
|
125
|
+
* task on attachment failure.
|
|
83
126
|
*/
|
|
84
|
-
export declare function prepareAttachmentsForSpawn(roundBrief: string, attachments: ImageAttachment[],
|
|
127
|
+
export declare function prepareAttachmentsForSpawn(roundBrief: string, attachments: ImageAttachment[], shadowRootAuthority: WorkspaceRootAuthority): Promise<PreparedAttachments>;
|
|
85
128
|
/**
|
|
86
129
|
* Per-agent rendering of the copied-attachment refs, appended to the brief at spawn
|
|
87
130
|
* (§7.2). The stored/canonical brief is agent-NEUTRAL (`.codevibe-attachments/<id>.<ext>`);
|
|
88
131
|
* this adds the agent-specific pointer: Claude/Codex → an `Attached images:` list of
|
|
89
|
-
* relative paths (read via their Read tool);
|
|
132
|
+
* relative paths (read via their Read tool); Antigravity → an absolute-path list (its
|
|
133
|
+
* Read tool resolves against agy's own scratch project, not the shadow cwd). (Gemini was
|
|
134
|
+
* SUNSET in 2026-07 and is never dispatched — its `@./…` rendering branch was removed.)
|
|
90
135
|
*/
|
|
91
136
|
export declare function renderAttachmentsForAgent(agent: string, copied: CopiedAttachment[], workdir?: string): string;
|
|
92
137
|
/**
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export type ShutdownDeadlineClass = 'normal' | 'signal';
|
|
2
|
+
export interface BoundedSharedShutdownOperation {
|
|
3
|
+
wait: (deadlineClass?: ShutdownDeadlineClass) => Promise<void>;
|
|
4
|
+
}
|
|
5
|
+
export interface BoundedSharedShutdownOperationOptions {
|
|
6
|
+
start: () => Promise<void>;
|
|
7
|
+
normalTimeoutMs: number;
|
|
8
|
+
signalTimeoutMs: number;
|
|
9
|
+
onTimeout?: (deadlineClass: ShutdownDeadlineClass, timeoutMs: number) => void;
|
|
10
|
+
/**
|
|
11
|
+
* Optionally turn a deadline into a caller-visible failure. Normal shutdown
|
|
12
|
+
* uses this to refuse a successful exit while cleanup authority is still
|
|
13
|
+
* unresolved; signal shutdown intentionally remains best-effort and bounded.
|
|
14
|
+
*/
|
|
15
|
+
timeoutError?: (deadlineClass: ShutdownDeadlineClass, timeoutMs: number) => Error | undefined;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Starts one shutdown operation and gives normal and signal callers one shared
|
|
19
|
+
* absolute timeout each. Repeated callers never restart either the operation or
|
|
20
|
+
* their deadline, so nested teardown paths cannot multiply the exit latency.
|
|
21
|
+
*/
|
|
22
|
+
export declare function createBoundedSharedShutdownOperation(options: BoundedSharedShutdownOperationOptions): BoundedSharedShutdownOperation;
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
import type { Tier } from './types';
|
|
2
|
+
import type { CommandIntentTarget } from './command-intent';
|
|
3
|
+
/**
|
|
4
|
+
* The frontier panel's active-set members. This is the intersection of the
|
|
5
|
+
* `@`-mention vocabulary (`command-intent.ts` — Gemini is excluded from direct
|
|
6
|
+
* mentions) with the review quorum's ACTIVE_AGENT_KINDS (`detectInstalledAgents`
|
|
7
|
+
* probes exactly these three; Gemini is legacy-readable but not new-routable).
|
|
8
|
+
*/
|
|
9
|
+
export type BrainstormPanelActiveAgent = 'CLAUDE' | 'CODEX' | 'ANTIGRAVITY';
|
|
10
|
+
/**
|
|
11
|
+
* OQ-BRAINSTORM-COST resolution: the frontier brainstorm panel is **Max-only**
|
|
12
|
+
* ("Max-only panel?"). Firing frontier agents per turn is expensive; the default
|
|
13
|
+
* interactive brainstorm remains the local 12B (`routeBrainstorm`), available to
|
|
14
|
+
* Pro/Max. The panel (both `@all` broadcast AND a directed `@agent` frontier
|
|
15
|
+
* routing) is gated here.
|
|
16
|
+
*/
|
|
17
|
+
export declare const BRAINSTORM_PANEL_MIN_TIER: Tier;
|
|
18
|
+
/**
|
|
19
|
+
* The resolved panel active set, mirroring the review quorum's
|
|
20
|
+
* "installed ∧ non-quota-walled ∧ tier-permitted" intersection
|
|
21
|
+
* (quorum-loop `getDetectedAgents()` + `pickAutoContinuationTarget`).
|
|
22
|
+
*/
|
|
23
|
+
export type BrainstormPanelResolution = {
|
|
24
|
+
kind: 'ready';
|
|
25
|
+
activeAgents: BrainstormPanelActiveAgent[];
|
|
26
|
+
} | {
|
|
27
|
+
kind: 'tier_gated';
|
|
28
|
+
} | {
|
|
29
|
+
kind: 'no_agents';
|
|
30
|
+
} | {
|
|
31
|
+
kind: 'all_quota_walled';
|
|
32
|
+
walled: BrainstormPanelActiveAgent[];
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Resolve which frontier agents fire for this brainstorm turn.
|
|
36
|
+
*
|
|
37
|
+
* Order of gates (each fails to a distinct, user-legible reason):
|
|
38
|
+
* 1. **Tier** — below Max → `tier_gated` (no agent is spawned).
|
|
39
|
+
* 2. **Target ∩ installed** — an `@all` broadcast targets every installed
|
|
40
|
+
* panel agent; a directed `@claude`/`@codex`/`@agy` targets exactly that one
|
|
41
|
+
* IF installed. Empty → `no_agents`.
|
|
42
|
+
* 3. **Minus quota-walled** — subtract the session's quota-exhausted set (the
|
|
43
|
+
* way `pickAutoContinuationTarget` subtracts `quotaFailedAgentsByTask`). If
|
|
44
|
+
* every candidate is walled → `all_quota_walled` (nothing fires).
|
|
45
|
+
*
|
|
46
|
+
* Pure: the caller supplies the already-detected installed set and the walled
|
|
47
|
+
* set (both live in index.ts's session-scoped state).
|
|
48
|
+
*/
|
|
49
|
+
export declare function resolveBrainstormPanel(input: {
|
|
50
|
+
tier: Tier;
|
|
51
|
+
target: CommandIntentTarget;
|
|
52
|
+
/**
|
|
53
|
+
* [#637] ALL mention targets of a multi-mention turn (ordered, de-duplicated —
|
|
54
|
+
* `extractAllAgentMentionIntents`). When present it supersedes `target` for
|
|
55
|
+
* the active-set computation: the candidates are the mentioned agents ∩
|
|
56
|
+
* installed IN MENTION ORDER, and any `'ALL'` member means the whole installed
|
|
57
|
+
* set (existing `@all` semantics win). `target` stays the FIRST mention — the
|
|
58
|
+
* frozen `CommandIntentEnvelope`'s. Absent/single-element → prior behavior.
|
|
59
|
+
*/
|
|
60
|
+
targets?: readonly CommandIntentTarget[];
|
|
61
|
+
detectedAgents: readonly BrainstormPanelActiveAgent[];
|
|
62
|
+
quotaWalled: ReadonlySet<BrainstormPanelActiveAgent>;
|
|
63
|
+
}): BrainstormPanelResolution;
|
|
64
|
+
/**
|
|
65
|
+
* The ContextItem `author.agent_id` for a panel agent — the lowercase mention id
|
|
66
|
+
* (§4 example: `'claude' | 'codex' | 'gemini' | 'agy'`). The rehydration render
|
|
67
|
+
* shows this verbatim as the attribution label ("claude: …", "agy: …"), so a
|
|
68
|
+
* later `@claude "critique the above"` sees WHO said what.
|
|
69
|
+
*/
|
|
70
|
+
export declare function agentIdForAuthor(agent: BrainstormPanelActiveAgent): 'claude' | 'codex' | 'agy';
|
|
71
|
+
/**
|
|
72
|
+
* §8.2 — surface the active-set count/identities UP FRONT so the fan-out cost is
|
|
73
|
+
* visible before it fires (the design's "→ Opus 4.8 · GPT-5.5 · Gemini 5.5").
|
|
74
|
+
* The display names come from the caller (index.ts `agentDisplayName`) so the
|
|
75
|
+
* mapping stays single-sourced.
|
|
76
|
+
*/
|
|
77
|
+
export declare function renderBrainstormPanelHeader(activeAgents: readonly BrainstormPanelActiveAgent[], displayName: (agent: BrainstormPanelActiveAgent) => string): string;
|
|
78
|
+
/**
|
|
79
|
+
* Below Max: the frontier panel is fenced, but the local model still
|
|
80
|
+
* brainstorms. No frontier agent was called and no code was changed.
|
|
81
|
+
*/
|
|
82
|
+
export declare function brainstormTierGateMessage(target: CommandIntentTarget): string;
|
|
83
|
+
/**
|
|
84
|
+
* Every candidate for this mention is currently quota-walled for the session.
|
|
85
|
+
*/
|
|
86
|
+
export declare function brainstormAllQuotaWalledMessage(walled: readonly BrainstormPanelActiveAgent[], displayName: (agent: BrainstormPanelActiveAgent) => string): string;
|
|
87
|
+
/**
|
|
88
|
+
* [A1g] Stage-2 (Codex round-2 HIGH) — the CLOSED-LABEL notice for a single
|
|
89
|
+
* brainstorm-panel cell that FAILED (a spawn/exec error, a quota wall, OR the
|
|
90
|
+
* absolute-ceiling timeout — #635). This is the ONLY per-agent failure text that
|
|
91
|
+
* enters the panel section, which the turn-mirror mirrors to mobile as
|
|
92
|
+
* ASSISTANT_RESPONSE. The substantive diagnostic (the sanitized advisory fallback
|
|
93
|
+
* / raw error) MUST NOT ride this section — it stays desktop-local via
|
|
94
|
+
* `logger.warn` (the WIRE is what the ZK invariant governs, NOT the local log
|
|
95
|
+
* file, which never leaves the machine). The invariant is stricter than
|
|
96
|
+
* ZK-on-wire (the mirror is E2E-encrypted regardless): only a BOUNDED enum label
|
|
97
|
+
* is surfaced on the wire, never the agent's diagnostic. Three labels only —
|
|
98
|
+
* quota-wall vs timeout vs generic failure — so no free-form detail can leak
|
|
99
|
+
* through. [#635] the `'quota_walled'`/`'failed'` strings are preserved VERBATIM
|
|
100
|
+
* from the prior 2-label version; only `'timed_out'` is new.
|
|
101
|
+
*/
|
|
102
|
+
export type BrainstormPanelFailureReason = 'quota_walled' | 'timed_out' | 'failed';
|
|
103
|
+
export declare function brainstormPanelFailureNotice(reason: BrainstormPanelFailureReason): string;
|
|
104
|
+
/**
|
|
105
|
+
* Compose the panel brief fed to each frontier agent: the typed-store
|
|
106
|
+
* "idea-so-far + open-questions" projection (rendered by
|
|
107
|
+
* `renderRehydratedSessionContext(role:'brainstorm')`, so it carries prior
|
|
108
|
+
* attributed panel turns) as a labeled PREFIX, then the current request. The
|
|
109
|
+
* projection is PRIOR context only — the current turn is authored into the store
|
|
110
|
+
* AFTER this turn completes (the mirror chokepoint), so there is no overlap.
|
|
111
|
+
*
|
|
112
|
+
* Empty `priorContext` (fresh session / unverifiable chain — fail-closed to
|
|
113
|
+
* NOTHING) degrades to just the request, exactly as today.
|
|
114
|
+
*/
|
|
115
|
+
export declare function composeBrainstormPanelBrief(input: {
|
|
116
|
+
priorContext: string;
|
|
117
|
+
requestBrief: string;
|
|
118
|
+
}): string;
|