@quantiya/codevibe-core 1.0.23 → 2.0.1

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.
Files changed (195) hide show
  1. package/dist/__tests__/cp-5-baseline-invariants.test.d.ts +1 -0
  2. package/dist/adapter/__tests__/capabilities.test.d.ts +1 -0
  3. package/dist/adapter/__tests__/contract-conformance.test.d.ts +1 -0
  4. package/dist/adapter/__tests__/packets.test.d.ts +1 -0
  5. package/dist/adapter/__tests__/progress.test.d.ts +1 -0
  6. package/dist/adapter/__tests__/registry.test.d.ts +1 -0
  7. package/dist/adapter/__tests__/smoke/claude.smoke.test.d.ts +1 -0
  8. package/dist/adapter/__tests__/smoke/codex.smoke.test.d.ts +1 -0
  9. package/dist/adapter/__tests__/smoke/gemini.smoke.test.d.ts +1 -0
  10. package/dist/adapter/capabilities.d.ts +68 -0
  11. package/dist/adapter/index.d.ts +7 -0
  12. package/dist/adapter/packets.d.ts +129 -0
  13. package/dist/adapter/progress.d.ts +93 -0
  14. package/dist/adapter/registry.d.ts +24 -0
  15. package/dist/adapter/types.d.ts +22 -0
  16. package/dist/appsync/__tests__/appsync-client-apply-user-decision.test.d.ts +1 -0
  17. package/dist/appsync/__tests__/appsync-client-classb.test.d.ts +1 -0
  18. package/dist/appsync/__tests__/appsync-client-planner.test.d.ts +1 -0
  19. package/dist/appsync/__tests__/appsync-client.test.d.ts +1 -0
  20. package/dist/appsync/appsync-client.d.ts +278 -1
  21. package/dist/appsync/index.d.ts +1 -1
  22. package/dist/appsync/queries.d.ts +8 -0
  23. package/dist/audit-keys/__tests__/audit-keys-parity.test.d.ts +1 -0
  24. package/dist/audit-keys/index.d.ts +41 -0
  25. package/dist/auth/__tests__/auth-telemetry.test.d.ts +1 -0
  26. package/dist/auth/auth-telemetry.d.ts +29 -8
  27. package/dist/companion-mode/__tests__/persist-preference.test.d.ts +1 -0
  28. package/dist/companion-mode/__tests__/resolve-agent.test.d.ts +1 -0
  29. package/dist/companion-mode/agent-picker.d.ts +9 -0
  30. package/dist/companion-mode/index.d.ts +55 -0
  31. package/dist/companion-mode/persist-preference.d.ts +24 -0
  32. package/dist/companion-mode/resolve-agent.d.ts +41 -0
  33. package/dist/index.d.ts +13 -1
  34. package/dist/index.js +253 -33
  35. package/dist/local-executor/__tests__/authority-symlink-fixture.d.ts +15 -0
  36. package/dist/local-executor/__tests__/authority.test.d.ts +1 -0
  37. package/dist/local-executor/__tests__/class-a-emit.test.d.ts +1 -0
  38. package/dist/local-executor/__tests__/class-b-consumer.integration.test.d.ts +1 -0
  39. package/dist/local-executor/__tests__/class-b-consumer.test.d.ts +1 -0
  40. package/dist/local-executor/__tests__/hook-bridge.test.d.ts +1 -0
  41. package/dist/local-executor/__tests__/local-executor.integration.test.d.ts +1 -0
  42. package/dist/local-executor/__tests__/spawn.test.d.ts +1 -0
  43. package/dist/local-executor/__tests__/verification-runner.test.d.ts +1 -0
  44. package/dist/local-executor/authority.d.ts +29 -0
  45. package/dist/local-executor/class-a-emit.d.ts +138 -0
  46. package/dist/local-executor/class-b-consumer.d.ts +121 -0
  47. package/dist/local-executor/hook-bridge.d.ts +36 -0
  48. package/dist/local-executor/index.d.ts +8 -0
  49. package/dist/local-executor/local-executor-impl.d.ts +83 -0
  50. package/dist/local-executor/spawn.d.ts +6 -0
  51. package/dist/local-executor/types.d.ts +183 -0
  52. package/dist/local-executor/verification-gates/build.d.ts +6 -0
  53. package/dist/local-executor/verification-gates/deploy-preflight.d.ts +6 -0
  54. package/dist/local-executor/verification-gates/diff-sanity.d.ts +6 -0
  55. package/dist/local-executor/verification-gates/hostile-grep.d.ts +6 -0
  56. package/dist/local-executor/verification-gates/lint.d.ts +6 -0
  57. package/dist/local-executor/verification-gates/shell-runner.d.ts +40 -0
  58. package/dist/local-executor/verification-gates/source-traceability.d.ts +6 -0
  59. package/dist/local-executor/verification-gates/tests.d.ts +6 -0
  60. package/dist/local-executor/verification-gates/typecheck.d.ts +6 -0
  61. package/dist/local-executor/verification-runner.d.ts +28 -0
  62. package/dist/orchestration/__tests__/setup-bootstrap.test.d.ts +1 -0
  63. package/dist/orchestration/__tests__/setup-failure-recourse.test.d.ts +1 -0
  64. package/dist/orchestration/__tests__/setup-save.test.d.ts +1 -0
  65. package/dist/orchestration/__tests__/setup-seat-picker.test.d.ts +1 -0
  66. package/dist/orchestration/__tests__/setup-telemetry.test.d.ts +1 -0
  67. package/dist/orchestration/__tests__/setup-test-agents.test.d.ts +1 -0
  68. package/dist/orchestration/__tests__/setup-types.test.d.ts +1 -0
  69. package/dist/orchestration/__tests__/setup-wizard.test.d.ts +1 -0
  70. package/dist/orchestration/__tests__/v1-options.test.d.ts +1 -0
  71. package/dist/orchestration/detect-agents.d.ts +57 -0
  72. package/dist/orchestration/index.d.ts +3 -0
  73. package/dist/orchestration/orchestration-cli.d.ts +12 -0
  74. package/dist/orchestration/setup-bootstrap.d.ts +146 -0
  75. package/dist/orchestration/setup-failure-recourse.d.ts +23 -0
  76. package/dist/orchestration/setup-save.d.ts +47 -0
  77. package/dist/orchestration/setup-seat-picker.d.ts +72 -0
  78. package/dist/orchestration/setup-telemetry.d.ts +54 -0
  79. package/dist/orchestration/setup-test-agents.d.ts +108 -0
  80. package/dist/orchestration/setup-types.d.ts +140 -0
  81. package/dist/orchestration/setup-wizard.d.ts +57 -0
  82. package/dist/orchestration/v1-options.d.ts +97 -0
  83. package/dist/orchestration-shell/__tests__/cli-authority-bridge.test.d.ts +1 -0
  84. package/dist/orchestration-shell/__tests__/cli-planner-stack.test.d.ts +1 -0
  85. package/dist/orchestration-shell/__tests__/cli-singleton-enforcement.test.d.ts +1 -0
  86. package/dist/orchestration-shell/__tests__/cli-stub-session-adapter.test.d.ts +1 -0
  87. package/dist/orchestration-shell/__tests__/components.test.d.ts +1 -0
  88. package/dist/orchestration-shell/__tests__/emit-shell-event.test.d.ts +1 -0
  89. package/dist/orchestration-shell/__tests__/gate-prompts.test.d.ts +1 -0
  90. package/dist/orchestration-shell/__tests__/hostile-grep.test.d.ts +1 -0
  91. package/dist/orchestration-shell/__tests__/mode-selection.test.d.ts +1 -0
  92. package/dist/orchestration-shell/__tests__/process-markers.test.d.ts +1 -0
  93. package/dist/orchestration-shell/__tests__/reducer.test.d.ts +1 -0
  94. package/dist/orchestration-shell/__tests__/runOrchestrationShell-classify-dispatch.test.d.ts +1 -0
  95. package/dist/orchestration-shell/__tests__/runOrchestrationShell-planner-wiring.test.d.ts +1 -0
  96. package/dist/orchestration-shell/__tests__/runOrchestrationShell-signal.test.d.ts +1 -0
  97. package/dist/orchestration-shell/__tests__/runOrchestrationShell.test.d.ts +1 -0
  98. package/dist/orchestration-shell/__tests__/slash-router.test.d.ts +1 -0
  99. package/dist/orchestration-shell/__tests__/sticky-preference.test.d.ts +1 -0
  100. package/dist/orchestration-shell/cli.d.ts +96 -0
  101. package/dist/orchestration-shell/cli.js +8309 -0
  102. package/dist/orchestration-shell/cohort-flag.d.ts +16 -0
  103. package/dist/orchestration-shell/components/CodeVibeLogo.d.ts +2 -0
  104. package/dist/orchestration-shell/components/ConversationPane.d.ts +7 -0
  105. package/dist/orchestration-shell/components/GatePromptEntry.d.ts +9 -0
  106. package/dist/orchestration-shell/components/InputBar.d.ts +41 -0
  107. package/dist/orchestration-shell/components/OrchestrationApp.d.ts +63 -0
  108. package/dist/orchestration-shell/components/StatusBar.d.ts +7 -0
  109. package/dist/orchestration-shell/components/nodes/AdvisoryEntry.d.ts +8 -0
  110. package/dist/orchestration-shell/components/nodes/GateStatusNode.d.ts +8 -0
  111. package/dist/orchestration-shell/components/nodes/PlannerDecisionEntry.d.ts +8 -0
  112. package/dist/orchestration-shell/components/nodes/ReviewerQuorumStatusNode.d.ts +8 -0
  113. package/dist/orchestration-shell/components/nodes/SlashOutputEntry.d.ts +8 -0
  114. package/dist/orchestration-shell/components/nodes/SubagentEventEntry.d.ts +8 -0
  115. package/dist/orchestration-shell/components/nodes/UserMessageEntry.d.ts +8 -0
  116. package/dist/orchestration-shell/emit-shell-event.d.ts +64 -0
  117. package/dist/orchestration-shell/gate-prompts.d.ts +123 -0
  118. package/dist/orchestration-shell/index.d.ts +100 -0
  119. package/dist/orchestration-shell/ink-runtime.d.ts +64 -0
  120. package/dist/orchestration-shell/mode-selection.d.ts +46 -0
  121. package/dist/orchestration-shell/non-tty-fallback.d.ts +46 -0
  122. package/dist/orchestration-shell/process-markers.d.ts +12 -0
  123. package/dist/orchestration-shell/reducer.d.ts +8 -0
  124. package/dist/orchestration-shell/slash-router.d.ts +45 -0
  125. package/dist/orchestration-shell/sticky-preference.d.ts +24 -0
  126. package/dist/orchestration-shell/store.d.ts +17 -0
  127. package/dist/orchestration-shell/types.d.ts +417 -0
  128. package/dist/planner/__tests__/cache-clarification-bypass.test.d.ts +1 -0
  129. package/dist/planner/__tests__/cache.test.d.ts +1 -0
  130. package/dist/planner/__tests__/client.test.d.ts +1 -0
  131. package/dist/planner/__tests__/health-machine-transitions.test.d.ts +1 -0
  132. package/dist/planner/__tests__/types-zod.test.d.ts +1 -0
  133. package/dist/planner/adapter.d.ts +16 -0
  134. package/dist/planner/cache.d.ts +35 -0
  135. package/dist/planner/client.d.ts +103 -0
  136. package/dist/planner/health-state.d.ts +24 -0
  137. package/dist/planner/index.d.ts +5 -0
  138. package/dist/planner/types.d.ts +113 -0
  139. package/dist/reviewer/__tests__/integration.test.d.ts +1 -0
  140. package/dist/reviewer/__tests__/mocks.test.d.ts +1 -0
  141. package/dist/reviewer/__tests__/output-parser.test.d.ts +1 -0
  142. package/dist/reviewer/__tests__/registry.test.d.ts +1 -0
  143. package/dist/reviewer/__tests__/subprocess.test.d.ts +1 -0
  144. package/dist/reviewer/index.d.ts +15 -0
  145. package/dist/reviewer/mocks.d.ts +80 -0
  146. package/dist/reviewer/output-parser.d.ts +95 -0
  147. package/dist/reviewer/provider.d.ts +153 -0
  148. package/dist/reviewer/providers/__tests__/claude-live-smoke.test.d.ts +1 -0
  149. package/dist/reviewer/providers/__tests__/claude.test.d.ts +1 -0
  150. package/dist/reviewer/providers/__tests__/codex-live-smoke.test.d.ts +1 -0
  151. package/dist/reviewer/providers/__tests__/codex.test.d.ts +1 -0
  152. package/dist/reviewer/providers/__tests__/gemini-live-smoke.test.d.ts +1 -0
  153. package/dist/reviewer/providers/__tests__/gemini.test.d.ts +1 -0
  154. package/dist/reviewer/providers/claude.d.ts +59 -0
  155. package/dist/reviewer/providers/codex.d.ts +67 -0
  156. package/dist/reviewer/providers/common.d.ts +25 -0
  157. package/dist/reviewer/providers/gemini.d.ts +108 -0
  158. package/dist/reviewer/registry.d.ts +87 -0
  159. package/dist/reviewer/subprocess.d.ts +117 -0
  160. package/dist/reviewer/types.d.ts +101 -0
  161. package/dist/session/__tests__/session-resume-service-keys.test.d.ts +1 -0
  162. package/dist/session/session-resume.d.ts +24 -0
  163. package/dist/structural-summary/__tests__/__fixtures__/fixture-helpers.d.ts +11 -0
  164. package/dist/structural-summary/__tests__/assembler.test.d.ts +1 -0
  165. package/dist/structural-summary/__tests__/generator.test.d.ts +1 -0
  166. package/dist/structural-summary/__tests__/language-detect.test.d.ts +1 -0
  167. package/dist/structural-summary/__tests__/manifest-parsers/cargo.test.d.ts +1 -0
  168. package/dist/structural-summary/__tests__/manifest-parsers/gomod.test.d.ts +1 -0
  169. package/dist/structural-summary/__tests__/manifest-parsers/gradle.test.d.ts +1 -0
  170. package/dist/structural-summary/__tests__/manifest-parsers/index.test.d.ts +1 -0
  171. package/dist/structural-summary/__tests__/manifest-parsers/npm.test.d.ts +1 -0
  172. package/dist/structural-summary/__tests__/manifest-parsers/podfile.test.d.ts +1 -0
  173. package/dist/structural-summary/__tests__/manifest-parsers/pyproject.test.d.ts +1 -0
  174. package/dist/structural-summary/__tests__/opt-in-store.test.d.ts +1 -0
  175. package/dist/structural-summary/__tests__/privacy-filter.test.d.ts +1 -0
  176. package/dist/structural-summary/__tests__/safe-file-read.test.d.ts +1 -0
  177. package/dist/structural-summary/__tests__/user-ignore-matcher.test.d.ts +1 -0
  178. package/dist/structural-summary/__tests__/walker.test.d.ts +1 -0
  179. package/dist/structural-summary/generator.d.ts +8 -0
  180. package/dist/structural-summary/index.d.ts +7 -0
  181. package/dist/structural-summary/manifest-parsers/cargo.d.ts +3 -0
  182. package/dist/structural-summary/manifest-parsers/index.d.ts +7 -0
  183. package/dist/structural-summary/manifest-parsers/npm.d.ts +3 -0
  184. package/dist/structural-summary/manifest-parsers/other.d.ts +17 -0
  185. package/dist/structural-summary/opt-in-store.d.ts +24 -0
  186. package/dist/structural-summary/privacy-filter.d.ts +110 -0
  187. package/dist/structural-summary/safe-file-read.d.ts +11 -0
  188. package/dist/structural-summary/types.d.ts +215 -0
  189. package/dist/structural-summary/user-ignore-matcher.d.ts +9 -0
  190. package/dist/structural-summary/walker.d.ts +20 -0
  191. package/dist/types/events.d.ts +17 -2
  192. package/dist/types/index.d.ts +1 -0
  193. package/dist/types/reviewer.d.ts +67 -0
  194. package/dist/types/session.d.ts +16 -0
  195. package/package.json +22 -5

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.