@bastani/atomic 0.9.11-alpha.8 → 0.9.11

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 (1738) hide show
  1. package/CHANGELOG.md +209 -1
  2. package/README.md +1 -1
  3. package/dist/builtin/intercom/CHANGELOG.md +6 -0
  4. package/dist/builtin/intercom/package.json +3 -3
  5. package/dist/builtin/intercom/subagent-relay.ts +8 -5
  6. package/dist/builtin/mcp/CHANGELOG.md +16 -0
  7. package/dist/builtin/mcp/commands.ts +7 -3
  8. package/dist/builtin/mcp/package.json +6 -6
  9. package/dist/builtin/subagents/CHANGELOG.md +29 -0
  10. package/dist/builtin/subagents/agents/code-simplifier.md +2 -2
  11. package/dist/builtin/subagents/agents/codebase-analyzer.md +2 -2
  12. package/dist/builtin/subagents/agents/codebase-locator.md +2 -2
  13. package/dist/builtin/subagents/agents/codebase-online-researcher.md +2 -2
  14. package/dist/builtin/subagents/agents/codebase-pattern-finder.md +2 -2
  15. package/dist/builtin/subagents/agents/codebase-research-analyzer.md +2 -2
  16. package/dist/builtin/subagents/agents/codebase-research-locator.md +2 -2
  17. package/dist/builtin/subagents/agents/worker.md +2 -2
  18. package/dist/builtin/subagents/package.json +5 -5
  19. package/dist/builtin/subagents/src/agents/agent-discovery.ts +26 -15
  20. package/dist/builtin/subagents/src/agents/agent-loaders.ts +48 -34
  21. package/dist/builtin/subagents/src/agents/agent-management-helpers.ts +80 -31
  22. package/dist/builtin/subagents/src/agents/agent-management.ts +194 -55
  23. package/dist/builtin/subagents/src/agents/agent-overrides.ts +85 -32
  24. package/dist/builtin/subagents/src/agents/agent-paths.ts +4 -1
  25. package/dist/builtin/subagents/src/agents/agent-selection.ts +1 -1
  26. package/dist/builtin/subagents/src/agents/agent-serializer.ts +1 -4
  27. package/dist/builtin/subagents/src/agents/agents.ts +9 -9
  28. package/dist/builtin/subagents/src/agents/chain-serializer.ts +9 -5
  29. package/dist/builtin/subagents/src/agents/identity.ts +12 -3
  30. package/dist/builtin/subagents/src/agents/skills-paths.ts +64 -24
  31. package/dist/builtin/subagents/src/agents/skills.ts +29 -26
  32. package/dist/builtin/subagents/src/extension/doctor.ts +31 -20
  33. package/dist/builtin/subagents/src/extension/fanout-child.ts +27 -12
  34. package/dist/builtin/subagents/src/extension/index.ts +119 -43
  35. package/dist/builtin/subagents/src/extension/notification-content.ts +14 -9
  36. package/dist/builtin/subagents/src/extension/prompt-guidance.ts +0 -1
  37. package/dist/builtin/subagents/src/extension/schemas.ts +304 -177
  38. package/dist/builtin/subagents/src/extension/startup-maintenance.ts +137 -73
  39. package/dist/builtin/subagents/src/intercom/intercom-bridge.ts +49 -21
  40. package/dist/builtin/subagents/src/intercom/result-intercom.ts +76 -38
  41. package/dist/builtin/subagents/src/runs/background/async-event-journal.ts +12 -6
  42. package/dist/builtin/subagents/src/runs/background/async-execution-chain.ts +164 -57
  43. package/dist/builtin/subagents/src/runs/background/async-execution-common.ts +15 -18
  44. package/dist/builtin/subagents/src/runs/background/async-execution-single.ts +66 -27
  45. package/dist/builtin/subagents/src/runs/background/async-execution-types.ts +4 -14
  46. package/dist/builtin/subagents/src/runs/background/async-execution.ts +1 -1
  47. package/dist/builtin/subagents/src/runs/background/async-job-tracker.ts +86 -32
  48. package/dist/builtin/subagents/src/runs/background/async-resume.ts +93 -36
  49. package/dist/builtin/subagents/src/runs/background/async-status.ts +82 -27
  50. package/dist/builtin/subagents/src/runs/background/completion-claims.ts +12 -5
  51. package/dist/builtin/subagents/src/runs/background/completion-dedupe.ts +3 -1
  52. package/dist/builtin/subagents/src/runs/background/completion-notification.ts +3 -1
  53. package/dist/builtin/subagents/src/runs/background/notify.ts +56 -22
  54. package/dist/builtin/subagents/src/runs/background/parallel-groups.ts +28 -14
  55. package/dist/builtin/subagents/src/runs/background/result-delivery-processor.ts +147 -79
  56. package/dist/builtin/subagents/src/runs/background/result-file-claims.ts +20 -5
  57. package/dist/builtin/subagents/src/runs/background/result-quarantine.ts +7 -2
  58. package/dist/builtin/subagents/src/runs/background/result-status.ts +11 -5
  59. package/dist/builtin/subagents/src/runs/background/result-watcher-data.ts +18 -5
  60. package/dist/builtin/subagents/src/runs/background/result-watcher.ts +104 -35
  61. package/dist/builtin/subagents/src/runs/background/run-id-resolver.ts +28 -7
  62. package/dist/builtin/subagents/src/runs/background/run-status.ts +120 -32
  63. package/dist/builtin/subagents/src/runs/background/stale-run-reconciler.ts +98 -39
  64. package/dist/builtin/subagents/src/runs/background/subagent-runner-dynamic.ts +185 -37
  65. package/dist/builtin/subagents/src/runs/background/subagent-runner-finalize.ts +23 -9
  66. package/dist/builtin/subagents/src/runs/background/subagent-runner-output.ts +6 -2
  67. package/dist/builtin/subagents/src/runs/background/subagent-runner-parallel-helpers.ts +34 -18
  68. package/dist/builtin/subagents/src/runs/background/subagent-runner-parallel.ts +175 -26
  69. package/dist/builtin/subagents/src/runs/background/subagent-runner-sequential.ts +68 -23
  70. package/dist/builtin/subagents/src/runs/background/subagent-runner-state.ts +200 -49
  71. package/dist/builtin/subagents/src/runs/background/subagent-runner-step.ts +81 -49
  72. package/dist/builtin/subagents/src/runs/background/subagent-runner-streaming.ts +33 -11
  73. package/dist/builtin/subagents/src/runs/background/subagent-runner-types.ts +16 -6
  74. package/dist/builtin/subagents/src/runs/background/subagent-runner-utils.ts +2 -3
  75. package/dist/builtin/subagents/src/runs/background/subagent-runner.ts +11 -8
  76. package/dist/builtin/subagents/src/runs/foreground/chain-execution-details.ts +5 -2
  77. package/dist/builtin/subagents/src/runs/foreground/chain-execution-dynamic-step.ts +113 -31
  78. package/dist/builtin/subagents/src/runs/foreground/chain-execution-parallel-runner.ts +64 -55
  79. package/dist/builtin/subagents/src/runs/foreground/chain-execution-parallel-step.ts +103 -37
  80. package/dist/builtin/subagents/src/runs/foreground/chain-execution-sequential-step.ts +97 -62
  81. package/dist/builtin/subagents/src/runs/foreground/chain-execution-types.ts +22 -10
  82. package/dist/builtin/subagents/src/runs/foreground/chain-execution.ts +9 -6
  83. package/dist/builtin/subagents/src/runs/foreground/detached-cleanup-barrier.ts +22 -22
  84. package/dist/builtin/subagents/src/runs/foreground/execution-attempt-control.ts +45 -40
  85. package/dist/builtin/subagents/src/runs/foreground/execution-attempt-finalize.ts +6 -5
  86. package/dist/builtin/subagents/src/runs/foreground/execution-attempt.ts +118 -43
  87. package/dist/builtin/subagents/src/runs/foreground/execution-detach-reservations.ts +17 -7
  88. package/dist/builtin/subagents/src/runs/foreground/execution-detach-route.ts +5 -3
  89. package/dist/builtin/subagents/src/runs/foreground/execution-intercom-detach.ts +39 -35
  90. package/dist/builtin/subagents/src/runs/foreground/execution-run-sync.ts +81 -42
  91. package/dist/builtin/subagents/src/runs/foreground/execution-structured-retries.ts +27 -21
  92. package/dist/builtin/subagents/src/runs/foreground/execution-updates.ts +2 -5
  93. package/dist/builtin/subagents/src/runs/foreground/execution-utils.ts +9 -4
  94. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-async.ts +64 -27
  95. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-chain.ts +31 -18
  96. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-context.ts +95 -62
  97. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-input.ts +30 -9
  98. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-parallel-task.ts +106 -96
  99. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-parallel.ts +68 -37
  100. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-resume.ts +260 -84
  101. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-runtime.ts +6 -1
  102. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-single.ts +63 -40
  103. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-status.ts +110 -59
  104. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-types.ts +20 -3
  105. package/dist/builtin/subagents/src/runs/foreground/subagent-executor-worktree.ts +8 -6
  106. package/dist/builtin/subagents/src/runs/foreground/subagent-executor.ts +65 -47
  107. package/dist/builtin/subagents/src/runs/shared/chain-outputs.ts +37 -12
  108. package/dist/builtin/subagents/src/runs/shared/dynamic-fanout.ts +120 -34
  109. package/dist/builtin/subagents/src/runs/shared/final-drain.ts +12 -7
  110. package/dist/builtin/subagents/src/runs/shared/intercom-group.ts +3 -2
  111. package/dist/builtin/subagents/src/runs/shared/long-running-guard.ts +8 -3
  112. package/dist/builtin/subagents/src/runs/shared/mcp-direct-tool-allowlist.ts +42 -19
  113. package/dist/builtin/subagents/src/runs/shared/model-candidate-filter.ts +8 -4
  114. package/dist/builtin/subagents/src/runs/shared/model-fallback.ts +103 -38
  115. package/dist/builtin/subagents/src/runs/shared/nested-events-control.ts +30 -20
  116. package/dist/builtin/subagents/src/runs/shared/nested-events-core.ts +45 -20
  117. package/dist/builtin/subagents/src/runs/shared/nested-events-projection.ts +57 -23
  118. package/dist/builtin/subagents/src/runs/shared/nested-events-registry.ts +77 -29
  119. package/dist/builtin/subagents/src/runs/shared/nested-events-sanitize.ts +99 -42
  120. package/dist/builtin/subagents/src/runs/shared/nested-events.ts +32 -26
  121. package/dist/builtin/subagents/src/runs/shared/nested-path.ts +22 -17
  122. package/dist/builtin/subagents/src/runs/shared/nested-render.ts +31 -10
  123. package/dist/builtin/subagents/src/runs/shared/parallel-utils.ts +9 -8
  124. package/dist/builtin/subagents/src/runs/shared/pi-args.ts +54 -30
  125. package/dist/builtin/subagents/src/runs/shared/pi-spawn.ts +17 -13
  126. package/dist/builtin/subagents/src/runs/shared/run-history.ts +13 -6
  127. package/dist/builtin/subagents/src/runs/shared/single-output.ts +11 -6
  128. package/dist/builtin/subagents/src/runs/shared/spawn-env.ts +21 -0
  129. package/dist/builtin/subagents/src/runs/shared/structured-output.ts +33 -19
  130. package/dist/builtin/subagents/src/runs/shared/subagent-control.ts +59 -48
  131. package/dist/builtin/subagents/src/runs/shared/subagent-prompt-runtime.ts +18 -11
  132. package/dist/builtin/subagents/src/runs/shared/workflow-graph.ts +41 -11
  133. package/dist/builtin/subagents/src/runs/shared/worktree-post-create.ts +46 -10
  134. package/dist/builtin/subagents/src/runs/shared/worktree-root.ts +21 -5
  135. package/dist/builtin/subagents/src/runs/shared/worktree.ts +89 -34
  136. package/dist/builtin/subagents/src/shared/artifacts.ts +137 -7
  137. package/dist/builtin/subagents/src/shared/event-jsonl-writer.ts +49 -13
  138. package/dist/builtin/subagents/src/shared/fast-mode.ts +13 -6
  139. package/dist/builtin/subagents/src/shared/fork-context.ts +7 -4
  140. package/dist/builtin/subagents/src/shared/formatters.ts +14 -9
  141. package/dist/builtin/subagents/src/shared/jsonl-writer.ts +2 -1
  142. package/dist/builtin/subagents/src/shared/model-info.ts +10 -3
  143. package/dist/builtin/subagents/src/shared/post-exit-stdio-guard.ts +7 -6
  144. package/dist/builtin/subagents/src/shared/session-tokens.ts +2 -1
  145. package/dist/builtin/subagents/src/shared/settings.ts +39 -43
  146. package/dist/builtin/subagents/src/shared/status-format.ts +10 -2
  147. package/dist/builtin/subagents/src/shared/types-async.ts +22 -19
  148. package/dist/builtin/subagents/src/shared/types-config.ts +1 -1
  149. package/dist/builtin/subagents/src/shared/types-depth.ts +23 -11
  150. package/dist/builtin/subagents/src/shared/types-results.ts +49 -6
  151. package/dist/builtin/subagents/src/shared/types-runtime.ts +16 -17
  152. package/dist/builtin/subagents/src/shared/types.ts +2 -2
  153. package/dist/builtin/subagents/src/shared/utils.ts +34 -20
  154. package/dist/builtin/subagents/src/slash/prompt-template-bridge.ts +44 -47
  155. package/dist/builtin/subagents/src/slash/saved-chain-mapping.ts +5 -7
  156. package/dist/builtin/subagents/src/slash/slash-bridge.ts +3 -3
  157. package/dist/builtin/subagents/src/slash/slash-commands.ts +78 -52
  158. package/dist/builtin/subagents/src/slash/slash-live-state.ts +59 -32
  159. package/dist/builtin/subagents/src/tui/render-chain-graph.ts +120 -32
  160. package/dist/builtin/subagents/src/tui/render-event-formatting.ts +85 -22
  161. package/dist/builtin/subagents/src/tui/render-helpers.ts +16 -6
  162. package/dist/builtin/subagents/src/tui/render-layout.ts +8 -3
  163. package/dist/builtin/subagents/src/tui/render-result-compact.ts +125 -43
  164. package/dist/builtin/subagents/src/tui/render-result.ts +128 -85
  165. package/dist/builtin/subagents/src/tui/render-stable-output.ts +17 -13
  166. package/dist/builtin/subagents/src/tui/render-status-progress.ts +52 -20
  167. package/dist/builtin/subagents/src/tui/render-widget-graph.ts +130 -28
  168. package/dist/builtin/subagents/src/tui/render-widget.ts +54 -27
  169. package/dist/builtin/subagents/src/tui/render.ts +10 -3
  170. package/dist/builtin/web-access/CHANGELOG.md +20 -0
  171. package/dist/builtin/web-access/content-tools.ts +1 -0
  172. package/dist/builtin/web-access/flat-string.ts +37 -0
  173. package/dist/builtin/web-access/github-api.ts +2 -1
  174. package/dist/builtin/web-access/github-extract.ts +3 -2
  175. package/dist/builtin/web-access/package.json +3 -3
  176. package/dist/builtin/workflows/CHANGELOG.md +87 -0
  177. package/dist/builtin/workflows/README.md +6 -0
  178. package/dist/builtin/workflows/builtin/goal-ledger.ts +6 -4
  179. package/dist/builtin/workflows/builtin/goal-runner.ts +2 -1
  180. package/dist/builtin/workflows/builtin/goal.ts +1 -1
  181. package/dist/builtin/workflows/builtin/open-claude-design-phases.ts +104 -40
  182. package/dist/builtin/workflows/builtin/open-claude-design-runner.ts +57 -26
  183. package/dist/builtin/workflows/builtin/open-claude-design-setup.ts +125 -12
  184. package/dist/builtin/workflows/builtin/ralph-core.ts +8 -9
  185. package/dist/builtin/workflows/builtin/ralph-forked-prompts.ts +2 -4
  186. package/dist/builtin/workflows/builtin/ralph-models.ts +4 -4
  187. package/dist/builtin/workflows/builtin/ralph-runner.ts +5 -8
  188. package/dist/builtin/workflows/builtin/ralph.ts +2 -1
  189. package/dist/builtin/workflows/package.json +3 -3
  190. package/dist/builtin/workflows/skills/impeccable/scripts/live-accept.mjs +4 -1
  191. package/dist/builtin/workflows/skills/impeccable/scripts/live-browser-dom.js +5 -1
  192. package/dist/builtin/workflows/skills/impeccable/scripts/live-browser-session.js +7 -1
  193. package/dist/builtin/workflows/skills/impeccable/scripts/live-manual-edit-evidence.mjs +5 -2
  194. package/dist/builtin/workflows/skills/impeccable/scripts/live-server.mjs +7 -1
  195. package/dist/builtin/workflows/src/authoring/typebox-defaults.d.ts +5 -5
  196. package/dist/builtin/workflows/src/authoring/typebox-defaults.ts +160 -197
  197. package/dist/builtin/workflows/src/authoring/workflow.ts +137 -133
  198. package/dist/builtin/workflows/src/authoring.d.ts +3 -3
  199. package/dist/builtin/workflows/src/durable/backend.ts +507 -439
  200. package/dist/builtin/workflows/src/durable/boundary-lifecycle.ts +142 -118
  201. package/dist/builtin/workflows/src/durable/boundary-topology.ts +410 -355
  202. package/dist/builtin/workflows/src/durable/child-invocation.ts +6 -6
  203. package/dist/builtin/workflows/src/durable/child-primitive.ts +109 -101
  204. package/dist/builtin/workflows/src/durable/completed-catalog-stage-groups.ts +234 -194
  205. package/dist/builtin/workflows/src/durable/completed-catalog.ts +385 -372
  206. package/dist/builtin/workflows/src/durable/completed-inspection.ts +117 -116
  207. package/dist/builtin/workflows/src/durable/completed-subtree.ts +24 -20
  208. package/dist/builtin/workflows/src/durable/dbos-backend.ts +484 -418
  209. package/dist/builtin/workflows/src/durable/dbos-embedded-postgres-root.ts +86 -87
  210. package/dist/builtin/workflows/src/durable/dbos-embedded-postgres.ts +171 -149
  211. package/dist/builtin/workflows/src/durable/dbos-envelope.ts +400 -324
  212. package/dist/builtin/workflows/src/durable/dbos-lifecycle.ts +117 -121
  213. package/dist/builtin/workflows/src/durable/dbos-local-postgres.ts +75 -68
  214. package/dist/builtin/workflows/src/durable/dbos-metadata.ts +138 -119
  215. package/dist/builtin/workflows/src/durable/dbos-prompt-reservations.ts +316 -259
  216. package/dist/builtin/workflows/src/durable/dbos-sdk-handle.ts +138 -117
  217. package/dist/builtin/workflows/src/durable/dbos-status-transition.ts +48 -43
  218. package/dist/builtin/workflows/src/durable/dbos-tombstone.ts +14 -14
  219. package/dist/builtin/workflows/src/durable/durable-hash.ts +9 -11
  220. package/dist/builtin/workflows/src/durable/factory.ts +45 -46
  221. package/dist/builtin/workflows/src/durable/format-version.ts +1 -1
  222. package/dist/builtin/workflows/src/durable/index.ts +69 -70
  223. package/dist/builtin/workflows/src/durable/local-command.ts +47 -43
  224. package/dist/builtin/workflows/src/durable/prompt-reservation-state.ts +156 -149
  225. package/dist/builtin/workflows/src/durable/prompt-reservations.ts +16 -16
  226. package/dist/builtin/workflows/src/durable/resume-catalog.ts +11 -11
  227. package/dist/builtin/workflows/src/durable/resume-eligibility.ts +69 -25
  228. package/dist/builtin/workflows/src/durable/resume-runtime.ts +262 -228
  229. package/dist/builtin/workflows/src/durable/retention-policy.ts +31 -30
  230. package/dist/builtin/workflows/src/durable/run-timing.ts +42 -41
  231. package/dist/builtin/workflows/src/durable/scoped-backend.ts +249 -228
  232. package/dist/builtin/workflows/src/durable/stage-primitive.ts +456 -398
  233. package/dist/builtin/workflows/src/durable/stage-topology-validation.ts +199 -186
  234. package/dist/builtin/workflows/src/durable/stage-topology.ts +40 -40
  235. package/dist/builtin/workflows/src/durable/tool-failure-checkpoint.ts +37 -37
  236. package/dist/builtin/workflows/src/durable/tool-outcome.ts +95 -85
  237. package/dist/builtin/workflows/src/durable/tool-primitive.ts +614 -410
  238. package/dist/builtin/workflows/src/durable/types.ts +219 -216
  239. package/dist/builtin/workflows/src/durable/ui-primitive.ts +241 -208
  240. package/dist/builtin/workflows/src/durable/workflow-child-result.ts +40 -37
  241. package/dist/builtin/workflows/src/durable/workflow-status-transition.ts +16 -15
  242. package/dist/builtin/workflows/src/engine/graph-inference.ts +76 -76
  243. package/dist/builtin/workflows/src/engine/options.ts +35 -36
  244. package/dist/builtin/workflows/src/engine/primitives/chain.ts +27 -22
  245. package/dist/builtin/workflows/src/engine/primitives/exit.ts +1 -1
  246. package/dist/builtin/workflows/src/engine/primitives/parallel.ts +64 -52
  247. package/dist/builtin/workflows/src/engine/primitives/task.ts +110 -95
  248. package/dist/builtin/workflows/src/engine/primitives/ui.ts +46 -50
  249. package/dist/builtin/workflows/src/engine/primitives/workflow.ts +194 -160
  250. package/dist/builtin/workflows/src/engine/replay.ts +6 -6
  251. package/dist/builtin/workflows/src/engine/run-durable-admission.ts +30 -30
  252. package/dist/builtin/workflows/src/engine/run-durable-finalize.ts +64 -47
  253. package/dist/builtin/workflows/src/engine/run-durable-stage-session.ts +29 -23
  254. package/dist/builtin/workflows/src/engine/run-durable-topology.ts +246 -219
  255. package/dist/builtin/workflows/src/engine/run-returned-status.ts +60 -57
  256. package/dist/builtin/workflows/src/engine/run-terminal-event.ts +25 -23
  257. package/dist/builtin/workflows/src/engine/run-terminal-failure.ts +45 -42
  258. package/dist/builtin/workflows/src/engine/run-tool-admission-boundary.ts +99 -0
  259. package/dist/builtin/workflows/src/engine/run-tool-control-registry.ts +179 -0
  260. package/dist/builtin/workflows/src/engine/run-tool-execution-tracker.ts +144 -132
  261. package/dist/builtin/workflows/src/engine/run-tool-node-lifecycle.ts +134 -69
  262. package/dist/builtin/workflows/src/engine/run.ts +679 -473
  263. package/dist/builtin/workflows/src/engine/runtime.ts +160 -153
  264. package/dist/builtin/workflows/src/engine/workflow-activity.ts +7 -3
  265. package/dist/builtin/workflows/src/engine/workflow-tool-abort.ts +92 -0
  266. package/dist/builtin/workflows/src/extension/atomic-stage-session.ts +123 -120
  267. package/dist/builtin/workflows/src/extension/background-ui-adapter.ts +108 -112
  268. package/dist/builtin/workflows/src/extension/companions.ts +116 -116
  269. package/dist/builtin/workflows/src/extension/completed-stage-intercom-ask.ts +123 -111
  270. package/dist/builtin/workflows/src/extension/config-file-loader.ts +153 -148
  271. package/dist/builtin/workflows/src/extension/config-loader.ts +264 -283
  272. package/dist/builtin/workflows/src/extension/discovery-loaders.ts +81 -84
  273. package/dist/builtin/workflows/src/extension/discovery.ts +267 -272
  274. package/dist/builtin/workflows/src/extension/dispatcher.ts +214 -217
  275. package/dist/builtin/workflows/src/extension/extension-factory.ts +102 -108
  276. package/dist/builtin/workflows/src/extension/extension-lifecycle.ts +118 -116
  277. package/dist/builtin/workflows/src/extension/extension-runtime-state.ts +417 -396
  278. package/dist/builtin/workflows/src/extension/hil-answer-notifications.ts +273 -261
  279. package/dist/builtin/workflows/src/extension/index.bundle.mjs +34971 -32989
  280. package/dist/builtin/workflows/src/extension/index.ts +37 -37
  281. package/dist/builtin/workflows/src/extension/lifecycle-notification-delivery.ts +64 -64
  282. package/dist/builtin/workflows/src/extension/lifecycle-notifications.ts +387 -378
  283. package/dist/builtin/workflows/src/extension/mcp.ts +35 -35
  284. package/dist/builtin/workflows/src/extension/postmortem-deps.ts +32 -35
  285. package/dist/builtin/workflows/src/extension/public-types.ts +160 -182
  286. package/dist/builtin/workflows/src/extension/render-call.ts +85 -88
  287. package/dist/builtin/workflows/src/extension/render-component.ts +9 -11
  288. package/dist/builtin/workflows/src/extension/render-result.ts +440 -386
  289. package/dist/builtin/workflows/src/extension/renderers.ts +35 -35
  290. package/dist/builtin/workflows/src/extension/runtime-active-block-claim.ts +37 -37
  291. package/dist/builtin/workflows/src/extension/runtime-durable-resume.ts +142 -143
  292. package/dist/builtin/workflows/src/extension/runtime.ts +346 -264
  293. package/dist/builtin/workflows/src/extension/status-writer.ts +95 -95
  294. package/dist/builtin/workflows/src/extension/ui-surface.ts +224 -222
  295. package/dist/builtin/workflows/src/extension/wiring.ts +307 -283
  296. package/dist/builtin/workflows/src/extension/workflow-command-completions.ts +109 -108
  297. package/dist/builtin/workflows/src/extension/workflow-command-registration.ts +253 -227
  298. package/dist/builtin/workflows/src/extension/workflow-command-surfaces.ts +84 -84
  299. package/dist/builtin/workflows/src/extension/workflow-command-utils.ts +126 -132
  300. package/dist/builtin/workflows/src/extension/workflow-durable-resume-command.ts +213 -208
  301. package/dist/builtin/workflows/src/extension/workflow-model-catalog.ts +19 -21
  302. package/dist/builtin/workflows/src/extension/workflow-module-loader.ts +104 -104
  303. package/dist/builtin/workflows/src/extension/workflow-policy.ts +7 -9
  304. package/dist/builtin/workflows/src/extension/workflow-ports.ts +30 -34
  305. package/dist/builtin/workflows/src/extension/workflow-prompts.ts +13 -13
  306. package/dist/builtin/workflows/src/extension/workflow-reload-coordinator.ts +46 -46
  307. package/dist/builtin/workflows/src/extension/workflow-reload-report.ts +28 -25
  308. package/dist/builtin/workflows/src/extension/workflow-resume-picker-rows.ts +61 -46
  309. package/dist/builtin/workflows/src/extension/workflow-resume-shadow.ts +29 -31
  310. package/dist/builtin/workflows/src/extension/workflow-run-control-command.ts +531 -453
  311. package/dist/builtin/workflows/src/extension/workflow-schema.ts +149 -92
  312. package/dist/builtin/workflows/src/extension/workflow-stage-results.ts +182 -194
  313. package/dist/builtin/workflows/src/extension/workflow-status-summary.ts +147 -157
  314. package/dist/builtin/workflows/src/extension/workflow-targets.ts +155 -128
  315. package/dist/builtin/workflows/src/extension/workflow-tool-content.ts +204 -224
  316. package/dist/builtin/workflows/src/extension/workflow-tool-control.ts +485 -372
  317. package/dist/builtin/workflows/src/extension/workflow-tool-inspection.ts +124 -150
  318. package/dist/builtin/workflows/src/extension/workflow-tool-registration.ts +43 -46
  319. package/dist/builtin/workflows/src/extension/workflow-tool-send.ts +333 -292
  320. package/dist/builtin/workflows/src/extension/workflow-tool.ts +113 -129
  321. package/dist/builtin/workflows/src/intercom/intercom-bridge.ts +17 -20
  322. package/dist/builtin/workflows/src/intercom/intercom-routing.ts +62 -62
  323. package/dist/builtin/workflows/src/intercom/result-intercom.ts +123 -123
  324. package/dist/builtin/workflows/src/runs/background/cancellation-registry.ts +72 -59
  325. package/dist/builtin/workflows/src/runs/background/durable-resume-transition.ts +45 -45
  326. package/dist/builtin/workflows/src/runs/background/job-tracker.ts +69 -34
  327. package/dist/builtin/workflows/src/runs/background/quit-tool-node.ts +71 -0
  328. package/dist/builtin/workflows/src/runs/background/quit.ts +360 -138
  329. package/dist/builtin/workflows/src/runs/background/resume-acknowledgements.ts +70 -69
  330. package/dist/builtin/workflows/src/runs/background/run-inspect.ts +90 -85
  331. package/dist/builtin/workflows/src/runs/background/runner.ts +122 -121
  332. package/dist/builtin/workflows/src/runs/background/startup-admission.ts +56 -60
  333. package/dist/builtin/workflows/src/runs/background/status.ts +325 -294
  334. package/dist/builtin/workflows/src/runs/background/workflow-lifecycle-aggregate.ts +24 -17
  335. package/dist/builtin/workflows/src/runs/foreground/executor-abort.ts +311 -309
  336. package/dist/builtin/workflows/src/runs/foreground/executor-child-boundary.ts +228 -201
  337. package/dist/builtin/workflows/src/runs/foreground/executor-child-helpers.ts +56 -51
  338. package/dist/builtin/workflows/src/runs/foreground/executor-continuation.ts +168 -152
  339. package/dist/builtin/workflows/src/runs/foreground/executor-direct-helpers.ts +258 -220
  340. package/dist/builtin/workflows/src/runs/foreground/executor-exit-manager.ts +178 -173
  341. package/dist/builtin/workflows/src/runs/foreground/executor-hil.ts +273 -269
  342. package/dist/builtin/workflows/src/runs/foreground/executor-inputs.ts +59 -56
  343. package/dist/builtin/workflows/src/runs/foreground/executor-lifecycle.ts +372 -361
  344. package/dist/builtin/workflows/src/runs/foreground/executor-outputs.ts +123 -127
  345. package/dist/builtin/workflows/src/runs/foreground/executor-prompt-nodes.ts +355 -339
  346. package/dist/builtin/workflows/src/runs/foreground/executor-queued-user-message.ts +47 -47
  347. package/dist/builtin/workflows/src/runs/foreground/executor-run-finalizers.ts +125 -104
  348. package/dist/builtin/workflows/src/runs/foreground/executor-scheduler.ts +191 -189
  349. package/dist/builtin/workflows/src/runs/foreground/executor-stage-call.ts +309 -250
  350. package/dist/builtin/workflows/src/runs/foreground/executor-stage-context.ts +141 -127
  351. package/dist/builtin/workflows/src/runs/foreground/executor-stage-control.ts +218 -213
  352. package/dist/builtin/workflows/src/runs/foreground/executor-stage-factory.ts +410 -364
  353. package/dist/builtin/workflows/src/runs/foreground/executor-stage-replay.ts +143 -127
  354. package/dist/builtin/workflows/src/runs/foreground/executor-stage-types.ts +49 -49
  355. package/dist/builtin/workflows/src/runs/foreground/executor-task-context.ts +1 -1
  356. package/dist/builtin/workflows/src/runs/foreground/executor-task-prompts.ts +153 -153
  357. package/dist/builtin/workflows/src/runs/foreground/executor-types.ts +155 -117
  358. package/dist/builtin/workflows/src/runs/foreground/executor.ts +10 -10
  359. package/dist/builtin/workflows/src/runs/foreground/postmortem-stage-chat.ts +168 -141
  360. package/dist/builtin/workflows/src/runs/foreground/stage-control-registry.ts +356 -379
  361. package/dist/builtin/workflows/src/runs/foreground/stage-delivery-activity.ts +53 -53
  362. package/dist/builtin/workflows/src/runs/foreground/stage-queued-user-messages.ts +95 -0
  363. package/dist/builtin/workflows/src/runs/foreground/stage-runner-candidate.ts +8 -8
  364. package/dist/builtin/workflows/src/runs/foreground/stage-runner-context.ts +276 -230
  365. package/dist/builtin/workflows/src/runs/foreground/stage-runner-controller.ts +636 -493
  366. package/dist/builtin/workflows/src/runs/foreground/stage-runner-message-admission.ts +182 -181
  367. package/dist/builtin/workflows/src/runs/foreground/stage-runner-messages.ts +80 -80
  368. package/dist/builtin/workflows/src/runs/foreground/stage-runner-options.ts +78 -78
  369. package/dist/builtin/workflows/src/runs/foreground/stage-runner-output.ts +235 -106
  370. package/dist/builtin/workflows/src/runs/foreground/stage-runner-pause.ts +178 -173
  371. package/dist/builtin/workflows/src/runs/foreground/stage-runner-replacement.ts +31 -32
  372. package/dist/builtin/workflows/src/runs/foreground/stage-runner-send-user-message.ts +114 -105
  373. package/dist/builtin/workflows/src/runs/foreground/stage-runner-session-options.ts +29 -29
  374. package/dist/builtin/workflows/src/runs/foreground/stage-runner-session.ts +44 -52
  375. package/dist/builtin/workflows/src/runs/foreground/stage-runner-structured-output.ts +63 -58
  376. package/dist/builtin/workflows/src/runs/foreground/stage-runner-types.ts +157 -148
  377. package/dist/builtin/workflows/src/runs/foreground/stage-runner-unresolved-overflow.ts +27 -23
  378. package/dist/builtin/workflows/src/runs/foreground/stage-runner.ts +10 -10
  379. package/dist/builtin/workflows/src/runs/foreground/stage-tool-execution-buffer.ts +33 -31
  380. package/dist/builtin/workflows/src/runs/shared/concurrency.ts +53 -53
  381. package/dist/builtin/workflows/src/runs/shared/graph-inference.ts +1 -1
  382. package/dist/builtin/workflows/src/runs/shared/model-fallback-candidates.ts +257 -245
  383. package/dist/builtin/workflows/src/runs/shared/model-fallback-failures.ts +378 -363
  384. package/dist/builtin/workflows/src/runs/shared/prompt-callsite.ts +55 -55
  385. package/dist/builtin/workflows/src/runs/shared/validate-inputs.ts +75 -84
  386. package/dist/builtin/workflows/src/runs/shared/worktree-cache-lifecycle.ts +1 -3
  387. package/dist/builtin/workflows/src/runs/shared/worktree-cwd.ts +96 -83
  388. package/dist/builtin/workflows/src/runs/shared/worktree-diff.ts +9 -2
  389. package/dist/builtin/workflows/src/runs/shared/worktree-git-runner.ts +21 -6
  390. package/dist/builtin/workflows/src/runs/shared/worktree-git.ts +60 -30
  391. package/dist/builtin/workflows/src/runs/shared/worktree-post-create.ts +12 -5
  392. package/dist/builtin/workflows/src/runs/shared/worktree-setup.ts +51 -30
  393. package/dist/builtin/workflows/src/runs/shared/worktree.ts +4 -4
  394. package/dist/builtin/workflows/src/sdk-surface.ts +38 -19
  395. package/dist/builtin/workflows/src/shared/authoring-contract-stage.d.ts +11 -5
  396. package/dist/builtin/workflows/src/shared/authoring-contract-stage.ts +299 -275
  397. package/dist/builtin/workflows/src/shared/authoring-contract-ui.d.ts +23 -7
  398. package/dist/builtin/workflows/src/shared/authoring-contract-ui.ts +292 -264
  399. package/dist/builtin/workflows/src/shared/expanded-workflow-graph.ts +379 -221
  400. package/dist/builtin/workflows/src/shared/flat-string.ts +33 -0
  401. package/dist/builtin/workflows/src/shared/graph-store-snapshot.ts +144 -0
  402. package/dist/builtin/workflows/src/shared/intercom-group.ts +22 -22
  403. package/dist/builtin/workflows/src/shared/persistence-compaction-policy.ts +30 -30
  404. package/dist/builtin/workflows/src/shared/persistence-restore-helpers.ts +432 -406
  405. package/dist/builtin/workflows/src/shared/persistence-restore.ts +187 -181
  406. package/dist/builtin/workflows/src/shared/persistence-session-entries.ts +211 -213
  407. package/dist/builtin/workflows/src/shared/prompt-callsite-context.ts +3 -3
  408. package/dist/builtin/workflows/src/shared/render-inputs-schema.ts +84 -91
  409. package/dist/builtin/workflows/src/shared/resume-continuation.ts +1 -1
  410. package/dist/builtin/workflows/src/shared/returned-run-status.ts +91 -77
  411. package/dist/builtin/workflows/src/shared/run-id.ts +36 -0
  412. package/dist/builtin/workflows/src/shared/run-visibility.ts +2 -2
  413. package/dist/builtin/workflows/src/shared/schema-introspection.ts +50 -60
  414. package/dist/builtin/workflows/src/shared/serializable.ts +72 -86
  415. package/dist/builtin/workflows/src/shared/session-transcript.ts +44 -39
  416. package/dist/builtin/workflows/src/shared/stage-prompt.ts +183 -202
  417. package/dist/builtin/workflows/src/shared/stage-ui-broker.ts +270 -274
  418. package/dist/builtin/workflows/src/shared/store-factory.ts +8 -8
  419. package/dist/builtin/workflows/src/shared/store-internal.ts +197 -172
  420. package/dist/builtin/workflows/src/shared/store-observation.ts +10 -0
  421. package/dist/builtin/workflows/src/shared/store-prompt-methods.ts +196 -200
  422. package/dist/builtin/workflows/src/shared/store-public-types.ts +216 -204
  423. package/dist/builtin/workflows/src/shared/store-run-methods.ts +252 -231
  424. package/dist/builtin/workflows/src/shared/store-stage-methods.ts +284 -285
  425. package/dist/builtin/workflows/src/shared/store-tool-node-methods.ts +43 -36
  426. package/dist/builtin/workflows/src/shared/store-types.ts +267 -263
  427. package/dist/builtin/workflows/src/shared/store.ts +7 -7
  428. package/dist/builtin/workflows/src/shared/timing.ts +36 -34
  429. package/dist/builtin/workflows/src/shared/types.ts +258 -213
  430. package/dist/builtin/workflows/src/shared/workflow-artifacts.ts +261 -0
  431. package/dist/builtin/workflows/src/shared/workflow-authoring-types.d.ts +10 -4
  432. package/dist/builtin/workflows/src/shared/workflow-authoring-types.ts +81 -59
  433. package/dist/builtin/workflows/src/shared/workflow-failures-classifier.ts +247 -227
  434. package/dist/builtin/workflows/src/shared/workflow-failures-contract.ts +45 -46
  435. package/dist/builtin/workflows/src/shared/workflow-failures-decisions.ts +330 -351
  436. package/dist/builtin/workflows/src/shared/workflow-failures-signals.ts +192 -195
  437. package/dist/builtin/workflows/src/shared/workflow-failures.ts +10 -10
  438. package/dist/builtin/workflows/src/shared/workflow-run-ownership.ts +32 -36
  439. package/dist/builtin/workflows/src/tui/chat-surface-message.ts +157 -184
  440. package/dist/builtin/workflows/src/tui/chat-surface.ts +332 -355
  441. package/dist/builtin/workflows/src/tui/color-utils.ts +21 -30
  442. package/dist/builtin/workflows/src/tui/connectors.ts +57 -61
  443. package/dist/builtin/workflows/src/tui/dispatch-confirm.ts +192 -200
  444. package/dist/builtin/workflows/src/tui/edge.ts +10 -9
  445. package/dist/builtin/workflows/src/tui/graph-canvas.ts +148 -134
  446. package/dist/builtin/workflows/src/tui/graph-theme.ts +139 -148
  447. package/dist/builtin/workflows/src/tui/graph-view-constants.ts +9 -6
  448. package/dist/builtin/workflows/src/tui/graph-view-graph-render.ts +147 -183
  449. package/dist/builtin/workflows/src/tui/graph-view-input.ts +295 -323
  450. package/dist/builtin/workflows/src/tui/graph-view-render-helpers.ts +291 -327
  451. package/dist/builtin/workflows/src/tui/graph-view-render.ts +160 -193
  452. package/dist/builtin/workflows/src/tui/graph-view-state.ts +487 -326
  453. package/dist/builtin/workflows/src/tui/graph-view-types.ts +65 -59
  454. package/dist/builtin/workflows/src/tui/header.ts +140 -156
  455. package/dist/builtin/workflows/src/tui/host-input-form.ts +47 -45
  456. package/dist/builtin/workflows/src/tui/inline-form-card.ts +277 -266
  457. package/dist/builtin/workflows/src/tui/inline-form-editor-text.ts +61 -62
  458. package/dist/builtin/workflows/src/tui/inline-form-editor.ts +407 -412
  459. package/dist/builtin/workflows/src/tui/inline-form-overlay.ts +203 -214
  460. package/dist/builtin/workflows/src/tui/inline-form-store.ts +24 -24
  461. package/dist/builtin/workflows/src/tui/inputs-overlay.ts +116 -129
  462. package/dist/builtin/workflows/src/tui/inputs-picker-editing.ts +111 -115
  463. package/dist/builtin/workflows/src/tui/inputs-picker-input.ts +255 -269
  464. package/dist/builtin/workflows/src/tui/inputs-picker-render.ts +248 -236
  465. package/dist/builtin/workflows/src/tui/inputs-picker-types.ts +111 -140
  466. package/dist/builtin/workflows/src/tui/inputs-picker.ts +12 -12
  467. package/dist/builtin/workflows/src/tui/keybindings-adapter.ts +49 -57
  468. package/dist/builtin/workflows/src/tui/layout.ts +130 -133
  469. package/dist/builtin/workflows/src/tui/mouse-input.ts +45 -47
  470. package/dist/builtin/workflows/src/tui/node-card.ts +247 -224
  471. package/dist/builtin/workflows/src/tui/overlay-adapter.ts +383 -394
  472. package/dist/builtin/workflows/src/tui/overlay-terminal-modes.ts +20 -19
  473. package/dist/builtin/workflows/src/tui/prompt-card-input.ts +183 -194
  474. package/dist/builtin/workflows/src/tui/prompt-card-render.ts +529 -318
  475. package/dist/builtin/workflows/src/tui/prompt-card-select.ts +76 -98
  476. package/dist/builtin/workflows/src/tui/prompt-card-state.ts +40 -40
  477. package/dist/builtin/workflows/src/tui/prompt-card-text.ts +76 -83
  478. package/dist/builtin/workflows/src/tui/prompt-card.ts +3 -3
  479. package/dist/builtin/workflows/src/tui/renderers.ts +6 -7
  480. package/dist/builtin/workflows/src/tui/run-detail.ts +307 -282
  481. package/dist/builtin/workflows/src/tui/run-identity-rows.ts +97 -0
  482. package/dist/builtin/workflows/src/tui/session-list.ts +19 -22
  483. package/dist/builtin/workflows/src/tui/session-overlays.ts +103 -87
  484. package/dist/builtin/workflows/src/tui/session-picker.ts +318 -282
  485. package/dist/builtin/workflows/src/tui/stage-chat-composer-drafts.ts +11 -11
  486. package/dist/builtin/workflows/src/tui/stage-chat-layout.ts +55 -62
  487. package/dist/builtin/workflows/src/tui/stage-chat-view-archive-history.ts +384 -263
  488. package/dist/builtin/workflows/src/tui/stage-chat-view-custom-ui.ts +91 -102
  489. package/dist/builtin/workflows/src/tui/stage-chat-view-delivery-activity.ts +51 -59
  490. package/dist/builtin/workflows/src/tui/stage-chat-view-footer-status.ts +189 -209
  491. package/dist/builtin/workflows/src/tui/stage-chat-view-input.ts +178 -208
  492. package/dist/builtin/workflows/src/tui/stage-chat-view-live-events.ts +32 -44
  493. package/dist/builtin/workflows/src/tui/stage-chat-view-pending-tools.ts +2 -4
  494. package/dist/builtin/workflows/src/tui/stage-chat-view-render-helpers.ts +82 -97
  495. package/dist/builtin/workflows/src/tui/stage-chat-view-render-settings.ts +33 -31
  496. package/dist/builtin/workflows/src/tui/stage-chat-view-state.ts +468 -400
  497. package/dist/builtin/workflows/src/tui/stage-chat-view-status.ts +24 -25
  498. package/dist/builtin/workflows/src/tui/stage-chat-view-transcript.ts +181 -197
  499. package/dist/builtin/workflows/src/tui/stage-chat-view-types.ts +128 -135
  500. package/dist/builtin/workflows/src/tui/stage-chat-view.ts +211 -211
  501. package/dist/builtin/workflows/src/tui/status-helpers.ts +65 -69
  502. package/dist/builtin/workflows/src/tui/status-list.ts +349 -305
  503. package/dist/builtin/workflows/src/tui/store-widget-installer.ts +214 -214
  504. package/dist/builtin/workflows/src/tui/submit-pane.ts +114 -130
  505. package/dist/builtin/workflows/src/tui/switcher.ts +116 -134
  506. package/dist/builtin/workflows/src/tui/text-helpers.ts +136 -145
  507. package/dist/builtin/workflows/src/tui/widget.ts +284 -295
  508. package/dist/builtin/workflows/src/tui/workflow-attach-pane-handle.ts +12 -17
  509. package/dist/builtin/workflows/src/tui/workflow-attach-pane-types.ts +81 -82
  510. package/dist/builtin/workflows/src/tui/workflow-attach-pane.ts +472 -445
  511. package/dist/builtin/workflows/src/tui/workflow-list.ts +130 -145
  512. package/dist/builtin/workflows/src/tui/workflow-notice-card.ts +127 -144
  513. package/dist/builtin/workflows/src/tui/workflow-resume-selector.ts +231 -217
  514. package/dist/builtin/workflows/src/workflows/identity.ts +11 -11
  515. package/dist/builtin/workflows/src/workflows/registry.ts +66 -68
  516. package/dist/bun/cli.js.map +1 -1
  517. package/dist/bun/internal-intercom-broker.d.ts.map +1 -1
  518. package/dist/bun/internal-intercom-broker.js +1 -1
  519. package/dist/bun/internal-intercom-broker.js.map +1 -1
  520. package/dist/bun/register-bedrock.js +1 -1
  521. package/dist/bun/register-bedrock.js.map +1 -1
  522. package/dist/cli/args.d.ts.map +1 -1
  523. package/dist/cli/args.js +8 -1
  524. package/dist/cli/args.js.map +1 -1
  525. package/dist/cli/credential-print.d.ts +170 -0
  526. package/dist/cli/credential-print.d.ts.map +1 -0
  527. package/dist/cli/credential-print.js +513 -0
  528. package/dist/cli/credential-print.js.map +1 -0
  529. package/dist/cli/project-trust.d.ts +1 -1
  530. package/dist/cli/project-trust.d.ts.map +1 -1
  531. package/dist/cli/project-trust.js.map +1 -1
  532. package/dist/cli/startup-ui.d.ts.map +1 -1
  533. package/dist/cli/startup-ui.js +13 -6
  534. package/dist/cli/startup-ui.js.map +1 -1
  535. package/dist/config-self-update.d.ts.map +1 -1
  536. package/dist/config-self-update.js +5 -2
  537. package/dist/config-self-update.js.map +1 -1
  538. package/dist/config.d.ts.map +1 -1
  539. package/dist/config.js +1 -3
  540. package/dist/config.js.map +1 -1
  541. package/dist/core/agent-session-accessors.d.ts.map +1 -1
  542. package/dist/core/agent-session-accessors.js +130 -25
  543. package/dist/core/agent-session-accessors.js.map +1 -1
  544. package/dist/core/agent-session-auto-compaction.d.ts.map +1 -1
  545. package/dist/core/agent-session-auto-compaction.js +9 -2
  546. package/dist/core/agent-session-auto-compaction.js.map +1 -1
  547. package/dist/core/agent-session-bash.d.ts +1 -1
  548. package/dist/core/agent-session-bash.d.ts.map +1 -1
  549. package/dist/core/agent-session-bash.js +3 -1
  550. package/dist/core/agent-session-bash.js.map +1 -1
  551. package/dist/core/agent-session-compaction.d.ts.map +1 -1
  552. package/dist/core/agent-session-compaction.js +48 -8
  553. package/dist/core/agent-session-compaction.js.map +1 -1
  554. package/dist/core/agent-session-custom-message-commit.d.ts +1 -1
  555. package/dist/core/agent-session-custom-message-commit.d.ts.map +1 -1
  556. package/dist/core/agent-session-custom-message-commit.js +13 -9
  557. package/dist/core/agent-session-custom-message-commit.js.map +1 -1
  558. package/dist/core/agent-session-delivery-forwarding.d.ts +1 -1
  559. package/dist/core/agent-session-delivery-forwarding.d.ts.map +1 -1
  560. package/dist/core/agent-session-delivery-forwarding.js.map +1 -1
  561. package/dist/core/agent-session-events.d.ts.map +1 -1
  562. package/dist/core/agent-session-events.js +17 -9
  563. package/dist/core/agent-session-events.js.map +1 -1
  564. package/dist/core/agent-session-export.d.ts +1 -1
  565. package/dist/core/agent-session-export.d.ts.map +1 -1
  566. package/dist/core/agent-session-export.js.map +1 -1
  567. package/dist/core/agent-session-extension-bindings.d.ts.map +1 -1
  568. package/dist/core/agent-session-extension-bindings.js +12 -5
  569. package/dist/core/agent-session-extension-bindings.js.map +1 -1
  570. package/dist/core/agent-session-message-queue.d.ts +6 -10
  571. package/dist/core/agent-session-message-queue.d.ts.map +1 -1
  572. package/dist/core/agent-session-message-queue.js +47 -24
  573. package/dist/core/agent-session-message-queue.js.map +1 -1
  574. package/dist/core/agent-session-methods.d.ts +8 -7
  575. package/dist/core/agent-session-methods.d.ts.map +1 -1
  576. package/dist/core/agent-session-methods.js.map +1 -1
  577. package/dist/core/agent-session-models.d.ts.map +1 -1
  578. package/dist/core/agent-session-models.js +1 -1
  579. package/dist/core/agent-session-models.js.map +1 -1
  580. package/dist/core/agent-session-persistent-custom-messages.d.ts +1 -1
  581. package/dist/core/agent-session-persistent-custom-messages.d.ts.map +1 -1
  582. package/dist/core/agent-session-persistent-custom-messages.js +12 -7
  583. package/dist/core/agent-session-persistent-custom-messages.js.map +1 -1
  584. package/dist/core/agent-session-post-tool-compaction.d.ts +1 -1
  585. package/dist/core/agent-session-post-tool-compaction.d.ts.map +1 -1
  586. package/dist/core/agent-session-post-tool-compaction.js +11 -2
  587. package/dist/core/agent-session-post-tool-compaction.js.map +1 -1
  588. package/dist/core/agent-session-prompt.d.ts.map +1 -1
  589. package/dist/core/agent-session-prompt.js +5 -5
  590. package/dist/core/agent-session-prompt.js.map +1 -1
  591. package/dist/core/agent-session-queue-pause.d.ts.map +1 -1
  592. package/dist/core/agent-session-queue-pause.js +8 -7
  593. package/dist/core/agent-session-queue-pause.js.map +1 -1
  594. package/dist/core/agent-session-retry.d.ts.map +1 -1
  595. package/dist/core/agent-session-retry.js +30 -7
  596. package/dist/core/agent-session-retry.js.map +1 -1
  597. package/dist/core/agent-session-runtime-auth.d.ts.map +1 -1
  598. package/dist/core/agent-session-runtime-auth.js +3 -1
  599. package/dist/core/agent-session-runtime-auth.js.map +1 -1
  600. package/dist/core/agent-session-runtime.d.ts +14 -3
  601. package/dist/core/agent-session-runtime.d.ts.map +1 -1
  602. package/dist/core/agent-session-runtime.js +22 -4
  603. package/dist/core/agent-session-runtime.js.map +1 -1
  604. package/dist/core/agent-session-services.d.ts.map +1 -1
  605. package/dist/core/agent-session-services.js +4 -2
  606. package/dist/core/agent-session-services.js.map +1 -1
  607. package/dist/core/agent-session-state.d.ts +1 -1
  608. package/dist/core/agent-session-state.d.ts.map +1 -1
  609. package/dist/core/agent-session-state.js.map +1 -1
  610. package/dist/core/agent-session-tool-hooks.d.ts.map +1 -1
  611. package/dist/core/agent-session-tool-hooks.js +2 -6
  612. package/dist/core/agent-session-tool-hooks.js.map +1 -1
  613. package/dist/core/agent-session-tool-registry.d.ts.map +1 -1
  614. package/dist/core/agent-session-tool-registry.js +4 -3
  615. package/dist/core/agent-session-tool-registry.js.map +1 -1
  616. package/dist/core/agent-session-transfer.d.ts.map +1 -1
  617. package/dist/core/agent-session-transfer.js +6 -10
  618. package/dist/core/agent-session-transfer.js.map +1 -1
  619. package/dist/core/agent-session-tree.d.ts +1 -1
  620. package/dist/core/agent-session-tree.d.ts.map +1 -1
  621. package/dist/core/agent-session-tree.js +9 -0
  622. package/dist/core/agent-session-tree.js.map +1 -1
  623. package/dist/core/agent-session-types.d.ts +5 -1
  624. package/dist/core/agent-session-types.d.ts.map +1 -1
  625. package/dist/core/agent-session-types.js +4 -1
  626. package/dist/core/agent-session-types.js.map +1 -1
  627. package/dist/core/agent-session.d.ts +15 -10
  628. package/dist/core/agent-session.d.ts.map +1 -1
  629. package/dist/core/agent-session.js +9 -9
  630. package/dist/core/agent-session.js.map +1 -1
  631. package/dist/core/anthropic-thinking-guard.d.ts.map +1 -1
  632. package/dist/core/anthropic-thinking-guard.js +4 -2
  633. package/dist/core/anthropic-thinking-guard.js.map +1 -1
  634. package/dist/core/async/format.d.ts +1 -1
  635. package/dist/core/async/format.d.ts.map +1 -1
  636. package/dist/core/async/format.js +3 -1
  637. package/dist/core/async/format.js.map +1 -1
  638. package/dist/core/async/job-manager.d.ts.map +1 -1
  639. package/dist/core/async/job-manager.js +20 -5
  640. package/dist/core/async/job-manager.js.map +1 -1
  641. package/dist/core/async/session-manager.d.ts.map +1 -1
  642. package/dist/core/async/session-manager.js.map +1 -1
  643. package/dist/core/atomic-guide-command.d.ts.map +1 -1
  644. package/dist/core/atomic-guide-command.js +1 -2
  645. package/dist/core/atomic-guide-command.js.map +1 -1
  646. package/dist/core/auth-guidance.d.ts.map +1 -1
  647. package/dist/core/auth-guidance.js.map +1 -1
  648. package/dist/core/auth-storage-backends.d.ts.map +1 -1
  649. package/dist/core/auth-storage-backends.js +12 -1
  650. package/dist/core/auth-storage-backends.js.map +1 -1
  651. package/dist/core/auth-storage.d.ts +1 -1
  652. package/dist/core/auth-storage.d.ts.map +1 -1
  653. package/dist/core/auth-storage.js +4 -8
  654. package/dist/core/auth-storage.js.map +1 -1
  655. package/dist/core/bounded-model-refresh.d.ts +14 -0
  656. package/dist/core/bounded-model-refresh.d.ts.map +1 -0
  657. package/dist/core/bounded-model-refresh.js +38 -0
  658. package/dist/core/bounded-model-refresh.js.map +1 -0
  659. package/dist/core/builtin-packages.d.ts.map +1 -1
  660. package/dist/core/builtin-packages.js +1 -4
  661. package/dist/core/builtin-packages.js.map +1 -1
  662. package/dist/core/cache-stats.d.ts.map +1 -1
  663. package/dist/core/cache-stats.js +8 -6
  664. package/dist/core/cache-stats.js.map +1 -1
  665. package/dist/core/callback-activity.d.ts.map +1 -1
  666. package/dist/core/callback-activity.js.map +1 -1
  667. package/dist/core/codex-errors.d.ts.map +1 -1
  668. package/dist/core/codex-errors.js +1 -1
  669. package/dist/core/codex-errors.js.map +1 -1
  670. package/dist/core/codex-fast-mode.d.ts.map +1 -1
  671. package/dist/core/codex-fast-mode.js.map +1 -1
  672. package/dist/core/compaction/branch-summarization.d.ts.map +1 -1
  673. package/dist/core/compaction/branch-summarization.js +1 -1
  674. package/dist/core/compaction/branch-summarization.js.map +1 -1
  675. package/dist/core/compaction/compaction-boundary.d.ts.map +1 -1
  676. package/dist/core/compaction/compaction-boundary.js +10 -6
  677. package/dist/core/compaction/compaction-boundary.js.map +1 -1
  678. package/dist/core/compaction/compaction-runner.d.ts +1 -1
  679. package/dist/core/compaction/compaction-runner.d.ts.map +1 -1
  680. package/dist/core/compaction/compaction-runner.js +2 -4
  681. package/dist/core/compaction/compaction-runner.js.map +1 -1
  682. package/dist/core/compaction/compaction.d.ts.map +1 -1
  683. package/dist/core/compaction/compaction.js +5 -1
  684. package/dist/core/compaction/compaction.js.map +1 -1
  685. package/dist/core/compaction/deleted-ranges.d.ts.map +1 -1
  686. package/dist/core/compaction/deleted-ranges.js.map +1 -1
  687. package/dist/core/compaction/fallback-planner.d.ts.map +1 -1
  688. package/dist/core/compaction/fallback-planner.js.map +1 -1
  689. package/dist/core/compaction/index.d.ts +6 -6
  690. package/dist/core/compaction/index.d.ts.map +1 -1
  691. package/dist/core/compaction/index.js +6 -6
  692. package/dist/core/compaction/index.js.map +1 -1
  693. package/dist/core/compaction/planner-outcome.d.ts.map +1 -1
  694. package/dist/core/compaction/planner-outcome.js.map +1 -1
  695. package/dist/core/compaction/range-planner-diagnostics.d.ts.map +1 -1
  696. package/dist/core/compaction/range-planner-diagnostics.js +4 -2
  697. package/dist/core/compaction/range-planner-diagnostics.js.map +1 -1
  698. package/dist/core/compaction/range-planner.d.ts.map +1 -1
  699. package/dist/core/compaction/range-planner.js +4 -1
  700. package/dist/core/compaction/range-planner.js.map +1 -1
  701. package/dist/core/compaction/transcript-serialization.d.ts.map +1 -1
  702. package/dist/core/compaction/transcript-serialization.js.map +1 -1
  703. package/dist/core/context-tool-pairing.d.ts +4 -4
  704. package/dist/core/context-tool-pairing.js +7 -7
  705. package/dist/core/context-tool-pairing.js.map +1 -1
  706. package/dist/core/copilot-env-routing.d.ts.map +1 -1
  707. package/dist/core/copilot-env-routing.js.map +1 -1
  708. package/dist/core/exec.d.ts.map +1 -1
  709. package/dist/core/exec.js +5 -0
  710. package/dist/core/exec.js.map +1 -1
  711. package/dist/core/experimental.d.ts.map +1 -1
  712. package/dist/core/experimental.js +2 -1
  713. package/dist/core/experimental.js.map +1 -1
  714. package/dist/core/extensions/api-types.d.ts +2 -2
  715. package/dist/core/extensions/api-types.d.ts.map +1 -1
  716. package/dist/core/extensions/api-types.js.map +1 -1
  717. package/dist/core/extensions/context-types.d.ts +7 -1
  718. package/dist/core/extensions/context-types.d.ts.map +1 -1
  719. package/dist/core/extensions/context-types.js.map +1 -1
  720. package/dist/core/extensions/index.d.ts +7 -7
  721. package/dist/core/extensions/index.d.ts.map +1 -1
  722. package/dist/core/extensions/index.js +2 -2
  723. package/dist/core/extensions/index.js.map +1 -1
  724. package/dist/core/extensions/loader-api.d.ts +1 -1
  725. package/dist/core/extensions/loader-api.d.ts.map +1 -1
  726. package/dist/core/extensions/loader-api.js +4 -2
  727. package/dist/core/extensions/loader-api.js.map +1 -1
  728. package/dist/core/extensions/loader-core.d.ts.map +1 -1
  729. package/dist/core/extensions/loader-core.js +2 -2
  730. package/dist/core/extensions/loader-core.js.map +1 -1
  731. package/dist/core/extensions/loader-discovery.d.ts.map +1 -1
  732. package/dist/core/extensions/loader-discovery.js.map +1 -1
  733. package/dist/core/extensions/loader-resources.d.ts.map +1 -1
  734. package/dist/core/extensions/loader-resources.js.map +1 -1
  735. package/dist/core/extensions/loader-runtime.d.ts.map +1 -1
  736. package/dist/core/extensions/loader-runtime.js +23 -11
  737. package/dist/core/extensions/loader-runtime.js.map +1 -1
  738. package/dist/core/extensions/loader-virtual-modules.d.ts +17 -0
  739. package/dist/core/extensions/loader-virtual-modules.d.ts.map +1 -1
  740. package/dist/core/extensions/loader-virtual-modules.js +281 -20
  741. package/dist/core/extensions/loader-virtual-modules.js.map +1 -1
  742. package/dist/core/extensions/loader.d.ts.map +1 -1
  743. package/dist/core/extensions/loader.js.map +1 -1
  744. package/dist/core/extensions/provider-types.d.ts +2 -2
  745. package/dist/core/extensions/provider-types.d.ts.map +1 -1
  746. package/dist/core/extensions/provider-types.js.map +1 -1
  747. package/dist/core/extensions/reactive-widget.d.ts.map +1 -1
  748. package/dist/core/extensions/reactive-widget.js.map +1 -1
  749. package/dist/core/extensions/runner-context.d.ts +27 -1
  750. package/dist/core/extensions/runner-context.d.ts.map +1 -1
  751. package/dist/core/extensions/runner-context.js +52 -0
  752. package/dist/core/extensions/runner-context.js.map +1 -1
  753. package/dist/core/extensions/runner-events.d.ts.map +1 -1
  754. package/dist/core/extensions/runner-events.js.map +1 -1
  755. package/dist/core/extensions/runner.d.ts +1 -0
  756. package/dist/core/extensions/runner.d.ts.map +1 -1
  757. package/dist/core/extensions/runner.js +18 -6
  758. package/dist/core/extensions/runner.js.map +1 -1
  759. package/dist/core/extensions/runtime-types.d.ts +3 -1
  760. package/dist/core/extensions/runtime-types.d.ts.map +1 -1
  761. package/dist/core/extensions/runtime-types.js.map +1 -1
  762. package/dist/core/extensions/session-events.d.ts.map +1 -1
  763. package/dist/core/extensions/session-events.js.map +1 -1
  764. package/dist/core/extensions/tool-types.d.ts.map +1 -1
  765. package/dist/core/extensions/tool-types.js.map +1 -1
  766. package/dist/core/extensions/types.d.ts +15 -2
  767. package/dist/core/extensions/types.d.ts.map +1 -1
  768. package/dist/core/extensions/types.js +1 -1
  769. package/dist/core/extensions/types.js.map +1 -1
  770. package/dist/core/extensions/ui-types.d.ts +16 -2
  771. package/dist/core/extensions/ui-types.d.ts.map +1 -1
  772. package/dist/core/extensions/ui-types.js.map +1 -1
  773. package/dist/core/fallback-models.d.ts.map +1 -1
  774. package/dist/core/fallback-models.js +11 -2
  775. package/dist/core/fallback-models.js.map +1 -1
  776. package/dist/core/flattened-tool-arguments.d.ts.map +1 -1
  777. package/dist/core/flattened-tool-arguments.js.map +1 -1
  778. package/dist/core/footer-data-provider.d.ts +10 -0
  779. package/dist/core/footer-data-provider.d.ts.map +1 -1
  780. package/dist/core/footer-data-provider.js +5 -3
  781. package/dist/core/footer-data-provider.js.map +1 -1
  782. package/dist/core/http-dispatcher.d.ts.map +1 -1
  783. package/dist/core/http-dispatcher.js +26 -1
  784. package/dist/core/http-dispatcher.js.map +1 -1
  785. package/dist/core/keybindings.d.ts +1 -1
  786. package/dist/core/keybindings.d.ts.map +1 -1
  787. package/dist/core/keybindings.js.map +1 -1
  788. package/dist/core/messages.d.ts +18 -6
  789. package/dist/core/messages.d.ts.map +1 -1
  790. package/dist/core/messages.js +46 -18
  791. package/dist/core/messages.js.map +1 -1
  792. package/dist/core/model-capabilities.d.ts.map +1 -1
  793. package/dist/core/model-capabilities.js +1 -2
  794. package/dist/core/model-capabilities.js.map +1 -1
  795. package/dist/core/model-refresh-timeout.d.ts +9 -0
  796. package/dist/core/model-refresh-timeout.d.ts.map +1 -0
  797. package/dist/core/model-refresh-timeout.js +9 -0
  798. package/dist/core/model-refresh-timeout.js.map +1 -0
  799. package/dist/core/model-resolver-cli.d.ts.map +1 -1
  800. package/dist/core/model-resolver-cli.js.map +1 -1
  801. package/dist/core/model-resolver-defaults.js.map +1 -1
  802. package/dist/core/model-resolver-initial.d.ts +1 -1
  803. package/dist/core/model-resolver-initial.d.ts.map +1 -1
  804. package/dist/core/model-resolver-initial.js +1 -1
  805. package/dist/core/model-resolver-initial.js.map +1 -1
  806. package/dist/core/model-resolver-patterns.d.ts.map +1 -1
  807. package/dist/core/model-resolver-patterns.js.map +1 -1
  808. package/dist/core/model-resolver-scope.d.ts +1 -1
  809. package/dist/core/model-resolver-scope.d.ts.map +1 -1
  810. package/dist/core/model-resolver-scope.js +12 -2
  811. package/dist/core/model-resolver-scope.js.map +1 -1
  812. package/dist/core/model-resolver-types.d.ts.map +1 -1
  813. package/dist/core/model-resolver-types.js.map +1 -1
  814. package/dist/core/model-resolver.d.ts +3 -3
  815. package/dist/core/model-resolver.d.ts.map +1 -1
  816. package/dist/core/model-resolver.js +1 -1
  817. package/dist/core/model-resolver.js.map +1 -1
  818. package/dist/core/model-runtime-auth.d.ts.map +1 -1
  819. package/dist/core/model-runtime-auth.js +5 -2
  820. package/dist/core/model-runtime-auth.js.map +1 -1
  821. package/dist/core/model-runtime-restoration.d.ts.map +1 -1
  822. package/dist/core/model-runtime-restoration.js +2 -2
  823. package/dist/core/model-runtime-restoration.js.map +1 -1
  824. package/dist/core/model-runtime-snapshot.d.ts +3 -0
  825. package/dist/core/model-runtime-snapshot.d.ts.map +1 -1
  826. package/dist/core/model-runtime-snapshot.js +59 -0
  827. package/dist/core/model-runtime-snapshot.js.map +1 -1
  828. package/dist/core/model-runtime-streaming.d.ts.map +1 -1
  829. package/dist/core/model-runtime-streaming.js.map +1 -1
  830. package/dist/core/model-runtime.d.ts +7 -1
  831. package/dist/core/model-runtime.d.ts.map +1 -1
  832. package/dist/core/model-runtime.js +79 -22
  833. package/dist/core/model-runtime.js.map +1 -1
  834. package/dist/core/oauth-login.d.ts.map +1 -1
  835. package/dist/core/oauth-login.js +7 -2
  836. package/dist/core/oauth-login.js.map +1 -1
  837. package/dist/core/oauth-provider-metadata.d.ts.map +1 -1
  838. package/dist/core/oauth-provider-metadata.js +20 -6
  839. package/dist/core/oauth-provider-metadata.js.map +1 -1
  840. package/dist/core/openai-responses-payload-sanitizer.js.map +1 -1
  841. package/dist/core/output-guard.d.ts +44 -0
  842. package/dist/core/output-guard.d.ts.map +1 -1
  843. package/dist/core/output-guard.js +63 -0
  844. package/dist/core/output-guard.js.map +1 -1
  845. package/dist/core/package-manager-auto-resources.d.ts.map +1 -1
  846. package/dist/core/package-manager-auto-resources.js +6 -1
  847. package/dist/core/package-manager-auto-resources.js.map +1 -1
  848. package/dist/core/package-manager-git.d.ts.map +1 -1
  849. package/dist/core/package-manager-git.js +27 -11
  850. package/dist/core/package-manager-git.js.map +1 -1
  851. package/dist/core/package-manager-npm.d.ts.map +1 -1
  852. package/dist/core/package-manager-npm.js +4 -2
  853. package/dist/core/package-manager-npm.js.map +1 -1
  854. package/dist/core/package-manager-operations.d.ts.map +1 -1
  855. package/dist/core/package-manager-operations.js +2 -2
  856. package/dist/core/package-manager-operations.js.map +1 -1
  857. package/dist/core/package-manager-paths.d.ts.map +1 -1
  858. package/dist/core/package-manager-paths.js.map +1 -1
  859. package/dist/core/package-manager-resolver.d.ts.map +1 -1
  860. package/dist/core/package-manager-resolver.js +19 -16
  861. package/dist/core/package-manager-resolver.js.map +1 -1
  862. package/dist/core/package-manager-resource-collector.d.ts.map +1 -1
  863. package/dist/core/package-manager-resource-collector.js +6 -6
  864. package/dist/core/package-manager-resource-collector.js.map +1 -1
  865. package/dist/core/package-manager-resource-files.d.ts.map +1 -1
  866. package/dist/core/package-manager-resource-files.js +4 -3
  867. package/dist/core/package-manager-resource-files.js.map +1 -1
  868. package/dist/core/package-manager-resource-patterns.d.ts.map +1 -1
  869. package/dist/core/package-manager-resource-patterns.js.map +1 -1
  870. package/dist/core/package-manager-settings.d.ts.map +1 -1
  871. package/dist/core/package-manager-settings.js +3 -2
  872. package/dist/core/package-manager-settings.js.map +1 -1
  873. package/dist/core/package-manager-source.d.ts.map +1 -1
  874. package/dist/core/package-manager-source.js +1 -1
  875. package/dist/core/package-manager-source.js.map +1 -1
  876. package/dist/core/package-manager.d.ts +1 -1
  877. package/dist/core/package-manager.d.ts.map +1 -1
  878. package/dist/core/package-manager.js +2 -3
  879. package/dist/core/package-manager.js.map +1 -1
  880. package/dist/core/prompt-templates-async.d.ts.map +1 -1
  881. package/dist/core/prompt-templates-async.js +15 -7
  882. package/dist/core/prompt-templates-async.js.map +1 -1
  883. package/dist/core/prompt-templates.d.ts.map +1 -1
  884. package/dist/core/prompt-templates.js +1 -3
  885. package/dist/core/prompt-templates.js.map +1 -1
  886. package/dist/core/provider-composer-internal.d.ts +1 -1
  887. package/dist/core/provider-composer-internal.d.ts.map +1 -1
  888. package/dist/core/provider-composer-internal.js.map +1 -1
  889. package/dist/core/provider-composer.d.ts +1 -1
  890. package/dist/core/provider-composer.d.ts.map +1 -1
  891. package/dist/core/provider-composer.js.map +1 -1
  892. package/dist/core/provider-context-usage.d.ts.map +1 -1
  893. package/dist/core/provider-context-usage.js +2 -1
  894. package/dist/core/provider-context-usage.js.map +1 -1
  895. package/dist/core/resource-loader-assets.d.ts.map +1 -1
  896. package/dist/core/resource-loader-assets.js +31 -7
  897. package/dist/core/resource-loader-assets.js.map +1 -1
  898. package/dist/core/resource-loader-context-files.d.ts +6 -0
  899. package/dist/core/resource-loader-context-files.d.ts.map +1 -1
  900. package/dist/core/resource-loader-context-files.js +83 -4
  901. package/dist/core/resource-loader-context-files.js.map +1 -1
  902. package/dist/core/resource-loader-core.d.ts +12 -3
  903. package/dist/core/resource-loader-core.d.ts.map +1 -1
  904. package/dist/core/resource-loader-core.js +36 -19
  905. package/dist/core/resource-loader-core.js.map +1 -1
  906. package/dist/core/resource-loader-discovery.d.ts.map +1 -1
  907. package/dist/core/resource-loader-discovery.js.map +1 -1
  908. package/dist/core/resource-loader-extensions.d.ts.map +1 -1
  909. package/dist/core/resource-loader-extensions.js +33 -21
  910. package/dist/core/resource-loader-extensions.js.map +1 -1
  911. package/dist/core/resource-loader-internals.d.ts +13 -6
  912. package/dist/core/resource-loader-internals.d.ts.map +1 -1
  913. package/dist/core/resource-loader-internals.js.map +1 -1
  914. package/dist/core/resource-loader-package-resources.d.ts.map +1 -1
  915. package/dist/core/resource-loader-package-resources.js +1 -1
  916. package/dist/core/resource-loader-package-resources.js.map +1 -1
  917. package/dist/core/resource-loader-paths.js.map +1 -1
  918. package/dist/core/resource-loader-reload.d.ts.map +1 -1
  919. package/dist/core/resource-loader-reload.js +28 -13
  920. package/dist/core/resource-loader-reload.js.map +1 -1
  921. package/dist/core/resource-loader-source-info.d.ts +1 -1
  922. package/dist/core/resource-loader-source-info.d.ts.map +1 -1
  923. package/dist/core/resource-loader-source-info.js +1 -1
  924. package/dist/core/resource-loader-source-info.js.map +1 -1
  925. package/dist/core/resource-loader-types.d.ts +9 -3
  926. package/dist/core/resource-loader-types.d.ts.map +1 -1
  927. package/dist/core/resource-loader-types.js.map +1 -1
  928. package/dist/core/resource-loader.d.ts +1 -1
  929. package/dist/core/resource-loader.d.ts.map +1 -1
  930. package/dist/core/resource-loader.js +1 -1
  931. package/dist/core/resource-loader.js.map +1 -1
  932. package/dist/core/sdk-exports.d.ts +1 -1
  933. package/dist/core/sdk-exports.d.ts.map +1 -1
  934. package/dist/core/sdk-exports.js +2 -2
  935. package/dist/core/sdk-exports.js.map +1 -1
  936. package/dist/core/sdk-types.d.ts +3 -3
  937. package/dist/core/sdk-types.d.ts.map +1 -1
  938. package/dist/core/sdk-types.js.map +1 -1
  939. package/dist/core/sdk.d.ts +1 -1
  940. package/dist/core/sdk.d.ts.map +1 -1
  941. package/dist/core/sdk.js +17 -23
  942. package/dist/core/sdk.js.map +1 -1
  943. package/dist/core/session-manager-archive.d.ts.map +1 -1
  944. package/dist/core/session-manager-archive.js +5 -2
  945. package/dist/core/session-manager-archive.js.map +1 -1
  946. package/dist/core/session-manager-classification.js +3 -3
  947. package/dist/core/session-manager-classification.js.map +1 -1
  948. package/dist/core/session-manager-core.d.ts +1 -1
  949. package/dist/core/session-manager-core.d.ts.map +1 -1
  950. package/dist/core/session-manager-core.js +5 -5
  951. package/dist/core/session-manager-core.js.map +1 -1
  952. package/dist/core/session-manager-entries.d.ts +2 -2
  953. package/dist/core/session-manager-entries.d.ts.map +1 -1
  954. package/dist/core/session-manager-entries.js +2 -1
  955. package/dist/core/session-manager-entries.js.map +1 -1
  956. package/dist/core/session-manager-history.d.ts.map +1 -1
  957. package/dist/core/session-manager-history.js +14 -6
  958. package/dist/core/session-manager-history.js.map +1 -1
  959. package/dist/core/session-manager-list.d.ts.map +1 -1
  960. package/dist/core/session-manager-list.js +1 -1
  961. package/dist/core/session-manager-list.js.map +1 -1
  962. package/dist/core/session-manager-migrations.js.map +1 -1
  963. package/dist/core/session-manager-storage.d.ts.map +1 -1
  964. package/dist/core/session-manager-storage.js.map +1 -1
  965. package/dist/core/session-manager-types.d.ts +3 -0
  966. package/dist/core/session-manager-types.d.ts.map +1 -1
  967. package/dist/core/session-manager-types.js.map +1 -1
  968. package/dist/core/session-manager.d.ts +4 -4
  969. package/dist/core/session-manager.d.ts.map +1 -1
  970. package/dist/core/session-manager.js +2 -2
  971. package/dist/core/session-manager.js.map +1 -1
  972. package/dist/core/settings-manager-core.d.ts.map +1 -1
  973. package/dist/core/settings-manager-core.js.map +1 -1
  974. package/dist/core/settings-manager-ui-accessors.js +2 -1
  975. package/dist/core/settings-manager-ui-accessors.js.map +1 -1
  976. package/dist/core/settings-storage.d.ts.map +1 -1
  977. package/dist/core/settings-storage.js +3 -3
  978. package/dist/core/settings-storage.js.map +1 -1
  979. package/dist/core/settings-types.d.ts.map +1 -1
  980. package/dist/core/settings-types.js.map +1 -1
  981. package/dist/core/skills-async.d.ts.map +1 -1
  982. package/dist/core/skills-async.js +18 -8
  983. package/dist/core/skills-async.js.map +1 -1
  984. package/dist/core/slash-commands.d.ts.map +1 -1
  985. package/dist/core/slash-commands.js +76 -19
  986. package/dist/core/slash-commands.js.map +1 -1
  987. package/dist/core/system-prompt.d.ts.map +1 -1
  988. package/dist/core/system-prompt.js +5 -19
  989. package/dist/core/system-prompt.js.map +1 -1
  990. package/dist/core/thinking-blocks.d.ts.map +1 -1
  991. package/dist/core/thinking-blocks.js +2 -2
  992. package/dist/core/thinking-blocks.js.map +1 -1
  993. package/dist/core/tools/artifact-protocol.d.ts.map +1 -1
  994. package/dist/core/tools/artifact-protocol.js.map +1 -1
  995. package/dist/core/tools/artifacts.d.ts.map +1 -1
  996. package/dist/core/tools/artifacts.js.map +1 -1
  997. package/dist/core/tools/ask-user-question/ask-user-question.d.ts.map +1 -1
  998. package/dist/core/tools/ask-user-question/ask-user-question.js.map +1 -1
  999. package/dist/core/tools/ask-user-question/state/build-questionnaire.d.ts +1 -1
  1000. package/dist/core/tools/ask-user-question/state/build-questionnaire.d.ts.map +1 -1
  1001. package/dist/core/tools/ask-user-question/state/build-questionnaire.js +1 -1
  1002. package/dist/core/tools/ask-user-question/state/build-questionnaire.js.map +1 -1
  1003. package/dist/core/tools/ask-user-question/state/questionnaire-session.d.ts.map +1 -1
  1004. package/dist/core/tools/ask-user-question/state/questionnaire-session.js +2 -4
  1005. package/dist/core/tools/ask-user-question/state/questionnaire-session.js.map +1 -1
  1006. package/dist/core/tools/ask-user-question/state/state-reducer.d.ts.map +1 -1
  1007. package/dist/core/tools/ask-user-question/state/state-reducer.js.map +1 -1
  1008. package/dist/core/tools/ask-user-question/view/body-residual-spacer.d.ts.map +1 -1
  1009. package/dist/core/tools/ask-user-question/view/body-residual-spacer.js.map +1 -1
  1010. package/dist/core/tools/ask-user-question/view/components/multi-select-view.d.ts.map +1 -1
  1011. package/dist/core/tools/ask-user-question/view/components/multi-select-view.js.map +1 -1
  1012. package/dist/core/tools/ask-user-question/view/components/preview/markdown-content-cache.d.ts +1 -1
  1013. package/dist/core/tools/ask-user-question/view/components/preview/markdown-content-cache.d.ts.map +1 -1
  1014. package/dist/core/tools/ask-user-question/view/components/preview/markdown-content-cache.js.map +1 -1
  1015. package/dist/core/tools/ask-user-question/view/components/preview/preview-block-renderer.d.ts +1 -1
  1016. package/dist/core/tools/ask-user-question/view/components/preview/preview-block-renderer.d.ts.map +1 -1
  1017. package/dist/core/tools/ask-user-question/view/components/preview/preview-block-renderer.js +1 -3
  1018. package/dist/core/tools/ask-user-question/view/components/preview/preview-block-renderer.js.map +1 -1
  1019. package/dist/core/tools/ask-user-question/view/components/submit-picker.d.ts.map +1 -1
  1020. package/dist/core/tools/ask-user-question/view/components/submit-picker.js.map +1 -1
  1021. package/dist/core/tools/ask-user-question/view/components/tab-bar.d.ts.map +1 -1
  1022. package/dist/core/tools/ask-user-question/view/components/tab-bar.js.map +1 -1
  1023. package/dist/core/tools/ask-user-question/view/dialog-builder.d.ts +1 -1
  1024. package/dist/core/tools/ask-user-question/view/dialog-builder.d.ts.map +1 -1
  1025. package/dist/core/tools/ask-user-question/view/dialog-builder.js +1 -1
  1026. package/dist/core/tools/ask-user-question/view/dialog-builder.js.map +1 -1
  1027. package/dist/core/tools/ask-user-question/view/props-adapter.d.ts.map +1 -1
  1028. package/dist/core/tools/ask-user-question/view/props-adapter.js +2 -4
  1029. package/dist/core/tools/ask-user-question/view/props-adapter.js.map +1 -1
  1030. package/dist/core/tools/ask-user-question/view/tab-content-strategy.d.ts +1 -1
  1031. package/dist/core/tools/ask-user-question/view/tab-content-strategy.d.ts.map +1 -1
  1032. package/dist/core/tools/ask-user-question/view/tab-content-strategy.js +2 -9
  1033. package/dist/core/tools/ask-user-question/view/tab-content-strategy.js.map +1 -1
  1034. package/dist/core/tools/bash-async-execution.d.ts.map +1 -1
  1035. package/dist/core/tools/bash-async-execution.js +11 -4
  1036. package/dist/core/tools/bash-async-execution.js.map +1 -1
  1037. package/dist/core/tools/bash-async-jobs.d.ts.map +1 -1
  1038. package/dist/core/tools/bash-async-jobs.js +14 -2
  1039. package/dist/core/tools/bash-async-jobs.js.map +1 -1
  1040. package/dist/core/tools/bash-async-output.d.ts.map +1 -1
  1041. package/dist/core/tools/bash-async-output.js +6 -2
  1042. package/dist/core/tools/bash-async-output.js.map +1 -1
  1043. package/dist/core/tools/bash-interceptor.d.ts.map +1 -1
  1044. package/dist/core/tools/bash-interceptor.js +20 -4
  1045. package/dist/core/tools/bash-interceptor.js.map +1 -1
  1046. package/dist/core/tools/bash-leading-cd.d.ts.map +1 -1
  1047. package/dist/core/tools/bash-leading-cd.js +9 -3
  1048. package/dist/core/tools/bash-leading-cd.js.map +1 -1
  1049. package/dist/core/tools/bash-pty-native.d.ts.map +1 -1
  1050. package/dist/core/tools/bash-pty-native.js.map +1 -1
  1051. package/dist/core/tools/bash-session-environment.d.ts.map +1 -1
  1052. package/dist/core/tools/bash-session-environment.js +24 -12
  1053. package/dist/core/tools/bash-session-environment.js.map +1 -1
  1054. package/dist/core/tools/bash.d.ts.map +1 -1
  1055. package/dist/core/tools/bash.js +123 -27
  1056. package/dist/core/tools/bash.js.map +1 -1
  1057. package/dist/core/tools/block-resolver.d.ts.map +1 -1
  1058. package/dist/core/tools/block-resolver.js.map +1 -1
  1059. package/dist/core/tools/conflict-registry.d.ts.map +1 -1
  1060. package/dist/core/tools/conflict-registry.js.map +1 -1
  1061. package/dist/core/tools/directory-tree.d.ts.map +1 -1
  1062. package/dist/core/tools/directory-tree.js +20 -4
  1063. package/dist/core/tools/directory-tree.js.map +1 -1
  1064. package/dist/core/tools/edit.d.ts.map +1 -1
  1065. package/dist/core/tools/edit.js +37 -13
  1066. package/dist/core/tools/edit.js.map +1 -1
  1067. package/dist/core/tools/fetch-url.d.ts.map +1 -1
  1068. package/dist/core/tools/fetch-url.js +127 -41
  1069. package/dist/core/tools/fetch-url.js.map +1 -1
  1070. package/dist/core/tools/find.d.ts.map +1 -1
  1071. package/dist/core/tools/find.js +176 -46
  1072. package/dist/core/tools/find.js.map +1 -1
  1073. package/dist/core/tools/grep.d.ts.map +1 -1
  1074. package/dist/core/tools/grep.js +43 -10
  1075. package/dist/core/tools/grep.js.map +1 -1
  1076. package/dist/core/tools/hashline-engine/apply.d.ts.map +1 -1
  1077. package/dist/core/tools/hashline-engine/apply.js +6 -6
  1078. package/dist/core/tools/hashline-engine/apply.js.map +1 -1
  1079. package/dist/core/tools/hashline-engine/block.js +1 -1
  1080. package/dist/core/tools/hashline-engine/block.js.map +1 -1
  1081. package/dist/core/tools/hashline-engine/format.d.ts.map +1 -1
  1082. package/dist/core/tools/hashline-engine/format.js +1 -1
  1083. package/dist/core/tools/hashline-engine/format.js.map +1 -1
  1084. package/dist/core/tools/hashline-engine/input.d.ts.map +1 -1
  1085. package/dist/core/tools/hashline-engine/input.js +7 -7
  1086. package/dist/core/tools/hashline-engine/input.js.map +1 -1
  1087. package/dist/core/tools/hashline-engine/parser.js +1 -1
  1088. package/dist/core/tools/hashline-engine/parser.js.map +1 -1
  1089. package/dist/core/tools/hashline-engine/patcher.js +5 -5
  1090. package/dist/core/tools/hashline-engine/patcher.js.map +1 -1
  1091. package/dist/core/tools/hashline-engine/prefixes.js +4 -4
  1092. package/dist/core/tools/hashline-engine/prefixes.js.map +1 -1
  1093. package/dist/core/tools/hashline-engine/recovery.d.ts.map +1 -1
  1094. package/dist/core/tools/hashline-engine/recovery.js +4 -2
  1095. package/dist/core/tools/hashline-engine/recovery.js.map +1 -1
  1096. package/dist/core/tools/hashline-engine/snapshots.js +5 -5
  1097. package/dist/core/tools/hashline-engine/snapshots.js.map +1 -1
  1098. package/dist/core/tools/hashline.d.ts.map +1 -1
  1099. package/dist/core/tools/hashline.js +24 -13
  1100. package/dist/core/tools/hashline.js.map +1 -1
  1101. package/dist/core/tools/index.d.ts +6 -6
  1102. package/dist/core/tools/index.d.ts.map +1 -1
  1103. package/dist/core/tools/index.js +6 -6
  1104. package/dist/core/tools/index.js.map +1 -1
  1105. package/dist/core/tools/ls.d.ts.map +1 -1
  1106. package/dist/core/tools/ls.js +2 -1
  1107. package/dist/core/tools/ls.js.map +1 -1
  1108. package/dist/core/tools/notebook.d.ts.map +1 -1
  1109. package/dist/core/tools/notebook.js +13 -3
  1110. package/dist/core/tools/notebook.js.map +1 -1
  1111. package/dist/core/tools/read-document-extract.d.ts.map +1 -1
  1112. package/dist/core/tools/read-document-extract.js +30 -10
  1113. package/dist/core/tools/read-document-extract.js.map +1 -1
  1114. package/dist/core/tools/read-selectors.d.ts.map +1 -1
  1115. package/dist/core/tools/read-selectors.js +59 -15
  1116. package/dist/core/tools/read-selectors.js.map +1 -1
  1117. package/dist/core/tools/read-url.d.ts.map +1 -1
  1118. package/dist/core/tools/read-url.js +41 -7
  1119. package/dist/core/tools/read-url.js.map +1 -1
  1120. package/dist/core/tools/read.d.ts.map +1 -1
  1121. package/dist/core/tools/read.js +306 -71
  1122. package/dist/core/tools/read.js.map +1 -1
  1123. package/dist/core/tools/resource-selectors.d.ts +4 -0
  1124. package/dist/core/tools/resource-selectors.d.ts.map +1 -1
  1125. package/dist/core/tools/resource-selectors.js +324 -84
  1126. package/dist/core/tools/resource-selectors.js.map +1 -1
  1127. package/dist/core/tools/search-details.d.ts.map +1 -1
  1128. package/dist/core/tools/search-details.js +13 -1
  1129. package/dist/core/tools/search-details.js.map +1 -1
  1130. package/dist/core/tools/search-line-ranges.d.ts.map +1 -1
  1131. package/dist/core/tools/search-line-ranges.js +5 -2
  1132. package/dist/core/tools/search-line-ranges.js.map +1 -1
  1133. package/dist/core/tools/search-native.d.ts.map +1 -1
  1134. package/dist/core/tools/search-native.js.map +1 -1
  1135. package/dist/core/tools/search.d.ts.map +1 -1
  1136. package/dist/core/tools/search.js +244 -90
  1137. package/dist/core/tools/search.js.map +1 -1
  1138. package/dist/core/tools/structured-output.d.ts +1 -1
  1139. package/dist/core/tools/structured-output.d.ts.map +1 -1
  1140. package/dist/core/tools/structured-output.js.map +1 -1
  1141. package/dist/core/tools/todos-execute.d.ts.map +1 -1
  1142. package/dist/core/tools/todos-execute.js +4 -4
  1143. package/dist/core/tools/todos-execute.js.map +1 -1
  1144. package/dist/core/tools/todos-locks.d.ts.map +1 -1
  1145. package/dist/core/tools/todos-locks.js.map +1 -1
  1146. package/dist/core/tools/todos-mutations.js +1 -1
  1147. package/dist/core/tools/todos-mutations.js.map +1 -1
  1148. package/dist/core/tools/todos-paths.js +2 -2
  1149. package/dist/core/tools/todos-paths.js.map +1 -1
  1150. package/dist/core/tools/todos-render.d.ts.map +1 -1
  1151. package/dist/core/tools/todos-render.js +2 -2
  1152. package/dist/core/tools/todos-render.js.map +1 -1
  1153. package/dist/core/tools/todos-storage.d.ts.map +1 -1
  1154. package/dist/core/tools/todos-storage.js +1 -2
  1155. package/dist/core/tools/todos-storage.js.map +1 -1
  1156. package/dist/core/tools/todos-types.d.ts.map +1 -1
  1157. package/dist/core/tools/todos-types.js +1 -11
  1158. package/dist/core/tools/todos-types.js.map +1 -1
  1159. package/dist/core/tools/tool-definition-wrapper.d.ts.map +1 -1
  1160. package/dist/core/tools/tool-definition-wrapper.js +2 -6
  1161. package/dist/core/tools/tool-definition-wrapper.js.map +1 -1
  1162. package/dist/core/tools/url-ip-guards.d.ts.map +1 -1
  1163. package/dist/core/tools/url-ip-guards.js +27 -17
  1164. package/dist/core/tools/url-ip-guards.js.map +1 -1
  1165. package/dist/core/tools/write.d.ts.map +1 -1
  1166. package/dist/core/tools/write.js +88 -29
  1167. package/dist/core/tools/write.js.map +1 -1
  1168. package/dist/core/usage-totals.d.ts.map +1 -1
  1169. package/dist/core/usage-totals.js +5 -2
  1170. package/dist/core/usage-totals.js.map +1 -1
  1171. package/dist/core/workflow-stage-admission.d.ts.map +1 -1
  1172. package/dist/core/workflow-stage-admission.js +8 -2
  1173. package/dist/core/workflow-stage-admission.js.map +1 -1
  1174. package/dist/extensions/llama/provider.js +1 -1
  1175. package/dist/extensions/llama/provider.js.map +1 -1
  1176. package/dist/extensions/llama/ui.d.ts.map +1 -1
  1177. package/dist/extensions/llama/ui.js.map +1 -1
  1178. package/dist/index-extensions.d.ts +2 -2
  1179. package/dist/index-extensions.d.ts.map +1 -1
  1180. package/dist/index-extensions.js +1 -1
  1181. package/dist/index-extensions.js.map +1 -1
  1182. package/dist/index.d.ts +21 -21
  1183. package/dist/index.d.ts.map +1 -1
  1184. package/dist/index.js +23 -23
  1185. package/dist/index.js.map +1 -1
  1186. package/dist/main-app-mode.d.ts +1 -0
  1187. package/dist/main-app-mode.d.ts.map +1 -1
  1188. package/dist/main-app-mode.js +3 -0
  1189. package/dist/main-app-mode.js.map +1 -1
  1190. package/dist/main-deferred-startup.d.ts +1 -1
  1191. package/dist/main-deferred-startup.d.ts.map +1 -1
  1192. package/dist/main-deferred-startup.js +16 -15
  1193. package/dist/main-deferred-startup.js.map +1 -1
  1194. package/dist/main-early-input.js.map +1 -1
  1195. package/dist/main-first-time-setup.d.ts +1 -1
  1196. package/dist/main-first-time-setup.d.ts.map +1 -1
  1197. package/dist/main-first-time-setup.js.map +1 -1
  1198. package/dist/main-session-options.d.ts +1 -1
  1199. package/dist/main-session-options.d.ts.map +1 -1
  1200. package/dist/main-session-options.js.map +1 -1
  1201. package/dist/main-session.d.ts.map +1 -1
  1202. package/dist/main-session.js +4 -4
  1203. package/dist/main-session.js.map +1 -1
  1204. package/dist/main.d.ts +1 -1
  1205. package/dist/main.d.ts.map +1 -1
  1206. package/dist/main.js +149 -39
  1207. package/dist/main.js.map +1 -1
  1208. package/dist/migrations-config-values.d.ts.map +1 -1
  1209. package/dist/migrations-config-values.js +3 -1
  1210. package/dist/migrations-config-values.js.map +1 -1
  1211. package/dist/migrations.d.ts.map +1 -1
  1212. package/dist/migrations.js.map +1 -1
  1213. package/dist/modes/interactive/chat-input-actions.d.ts.map +1 -1
  1214. package/dist/modes/interactive/chat-input-actions.js +3 -6
  1215. package/dist/modes/interactive/chat-input-actions.js.map +1 -1
  1216. package/dist/modes/interactive/components/atomic-banner.d.ts.map +1 -1
  1217. package/dist/modes/interactive/components/atomic-banner.js +7 -5
  1218. package/dist/modes/interactive/components/atomic-banner.js.map +1 -1
  1219. package/dist/modes/interactive/components/atomic-working-status.d.ts.map +1 -1
  1220. package/dist/modes/interactive/components/atomic-working-status.js +26 -13
  1221. package/dist/modes/interactive/components/atomic-working-status.js.map +1 -1
  1222. package/dist/modes/interactive/components/chat-message-renderer.d.ts +1 -1
  1223. package/dist/modes/interactive/components/chat-message-renderer.d.ts.map +1 -1
  1224. package/dist/modes/interactive/components/chat-message-renderer.js +6 -5
  1225. package/dist/modes/interactive/components/chat-message-renderer.js.map +1 -1
  1226. package/dist/modes/interactive/components/chat-session-host-actions.d.ts +10 -4
  1227. package/dist/modes/interactive/components/chat-session-host-actions.d.ts.map +1 -1
  1228. package/dist/modes/interactive/components/chat-session-host-actions.js +27 -22
  1229. package/dist/modes/interactive/components/chat-session-host-actions.js.map +1 -1
  1230. package/dist/modes/interactive/components/chat-session-host-editor.d.ts +7 -5
  1231. package/dist/modes/interactive/components/chat-session-host-editor.d.ts.map +1 -1
  1232. package/dist/modes/interactive/components/chat-session-host-editor.js +11 -6
  1233. package/dist/modes/interactive/components/chat-session-host-editor.js.map +1 -1
  1234. package/dist/modes/interactive/components/chat-session-host-events.d.ts +3 -0
  1235. package/dist/modes/interactive/components/chat-session-host-events.d.ts.map +1 -1
  1236. package/dist/modes/interactive/components/chat-session-host-events.js +12 -10
  1237. package/dist/modes/interactive/components/chat-session-host-events.js.map +1 -1
  1238. package/dist/modes/interactive/components/chat-session-host-rendering.d.ts +1 -1
  1239. package/dist/modes/interactive/components/chat-session-host-rendering.d.ts.map +1 -1
  1240. package/dist/modes/interactive/components/chat-session-host-rendering.js +22 -7
  1241. package/dist/modes/interactive/components/chat-session-host-rendering.js.map +1 -1
  1242. package/dist/modes/interactive/components/chat-session-host-runtime.d.ts +9 -2
  1243. package/dist/modes/interactive/components/chat-session-host-runtime.d.ts.map +1 -1
  1244. package/dist/modes/interactive/components/chat-session-host-runtime.js +15 -13
  1245. package/dist/modes/interactive/components/chat-session-host-runtime.js.map +1 -1
  1246. package/dist/modes/interactive/components/chat-session-host-state.d.ts +2 -2
  1247. package/dist/modes/interactive/components/chat-session-host-state.d.ts.map +1 -1
  1248. package/dist/modes/interactive/components/chat-session-host-state.js.map +1 -1
  1249. package/dist/modes/interactive/components/chat-session-host-terminal-cleanup.d.ts.map +1 -1
  1250. package/dist/modes/interactive/components/chat-session-host-terminal-cleanup.js.map +1 -1
  1251. package/dist/modes/interactive/components/chat-session-host-types.d.ts +9 -2
  1252. package/dist/modes/interactive/components/chat-session-host-types.d.ts.map +1 -1
  1253. package/dist/modes/interactive/components/chat-session-host-types.js.map +1 -1
  1254. package/dist/modes/interactive/components/chat-session-host-utils.d.ts +1 -1
  1255. package/dist/modes/interactive/components/chat-session-host-utils.d.ts.map +1 -1
  1256. package/dist/modes/interactive/components/chat-session-host-utils.js +3 -8
  1257. package/dist/modes/interactive/components/chat-session-host-utils.js.map +1 -1
  1258. package/dist/modes/interactive/components/chat-session-host.d.ts +20 -6
  1259. package/dist/modes/interactive/components/chat-session-host.d.ts.map +1 -1
  1260. package/dist/modes/interactive/components/chat-session-host.js +35 -6
  1261. package/dist/modes/interactive/components/chat-session-host.js.map +1 -1
  1262. package/dist/modes/interactive/components/chat-transcript.d.ts +1 -1
  1263. package/dist/modes/interactive/components/chat-transcript.d.ts.map +1 -1
  1264. package/dist/modes/interactive/components/chat-transcript.js +5 -12
  1265. package/dist/modes/interactive/components/chat-transcript.js.map +1 -1
  1266. package/dist/modes/interactive/components/compaction-boundary-message.d.ts.map +1 -1
  1267. package/dist/modes/interactive/components/compaction-boundary-message.js +18 -7
  1268. package/dist/modes/interactive/components/compaction-boundary-message.js.map +1 -1
  1269. package/dist/modes/interactive/components/config-selector-list.d.ts.map +1 -1
  1270. package/dist/modes/interactive/components/config-selector-list.js +4 -2
  1271. package/dist/modes/interactive/components/config-selector-list.js.map +1 -1
  1272. package/dist/modes/interactive/components/config-selector-project-scope.d.ts.map +1 -1
  1273. package/dist/modes/interactive/components/config-selector-project-scope.js +2 -4
  1274. package/dist/modes/interactive/components/config-selector-project-scope.js.map +1 -1
  1275. package/dist/modes/interactive/components/config-selector.d.ts.map +1 -1
  1276. package/dist/modes/interactive/components/config-selector.js +15 -6
  1277. package/dist/modes/interactive/components/config-selector.js.map +1 -1
  1278. package/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -1
  1279. package/dist/modes/interactive/components/countdown-timer.js.map +1 -1
  1280. package/dist/modes/interactive/components/custom-editor.d.ts +11 -0
  1281. package/dist/modes/interactive/components/custom-editor.d.ts.map +1 -1
  1282. package/dist/modes/interactive/components/custom-editor.js +21 -5
  1283. package/dist/modes/interactive/components/custom-editor.js.map +1 -1
  1284. package/dist/modes/interactive/components/custom-entry.d.ts.map +1 -1
  1285. package/dist/modes/interactive/components/custom-entry.js.map +1 -1
  1286. package/dist/modes/interactive/components/custom-message.d.ts.map +1 -1
  1287. package/dist/modes/interactive/components/custom-message.js +1 -3
  1288. package/dist/modes/interactive/components/custom-message.js.map +1 -1
  1289. package/dist/modes/interactive/components/diff.js +2 -2
  1290. package/dist/modes/interactive/components/diff.js.map +1 -1
  1291. package/dist/modes/interactive/components/extension-editor.d.ts.map +1 -1
  1292. package/dist/modes/interactive/components/extension-editor.js +1 -1
  1293. package/dist/modes/interactive/components/extension-editor.js.map +1 -1
  1294. package/dist/modes/interactive/components/first-time-setup.d.ts.map +1 -1
  1295. package/dist/modes/interactive/components/first-time-setup.js +15 -4
  1296. package/dist/modes/interactive/components/first-time-setup.js.map +1 -1
  1297. package/dist/modes/interactive/components/footer.d.ts.map +1 -1
  1298. package/dist/modes/interactive/components/footer.js +16 -15
  1299. package/dist/modes/interactive/components/footer.js.map +1 -1
  1300. package/dist/modes/interactive/components/host-input-form-mount.d.ts.map +1 -1
  1301. package/dist/modes/interactive/components/host-input-form-mount.js +4 -2
  1302. package/dist/modes/interactive/components/host-input-form-mount.js.map +1 -1
  1303. package/dist/modes/interactive/components/host-input-form.d.ts.map +1 -1
  1304. package/dist/modes/interactive/components/host-input-form.js +55 -21
  1305. package/dist/modes/interactive/components/host-input-form.js.map +1 -1
  1306. package/dist/modes/interactive/components/host-session-picker.d.ts.map +1 -1
  1307. package/dist/modes/interactive/components/host-session-picker.js +8 -3
  1308. package/dist/modes/interactive/components/host-session-picker.js.map +1 -1
  1309. package/dist/modes/interactive/components/index.d.ts +8 -7
  1310. package/dist/modes/interactive/components/index.d.ts.map +1 -1
  1311. package/dist/modes/interactive/components/index.js +4 -4
  1312. package/dist/modes/interactive/components/index.js.map +1 -1
  1313. package/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -1
  1314. package/dist/modes/interactive/components/keybinding-hints.js.map +1 -1
  1315. package/dist/modes/interactive/components/login-dialog.d.ts.map +1 -1
  1316. package/dist/modes/interactive/components/login-dialog.js.map +1 -1
  1317. package/dist/modes/interactive/components/model-selector.d.ts +0 -1
  1318. package/dist/modes/interactive/components/model-selector.d.ts.map +1 -1
  1319. package/dist/modes/interactive/components/model-selector.js +29 -36
  1320. package/dist/modes/interactive/components/model-selector.js.map +1 -1
  1321. package/dist/modes/interactive/components/oauth-selector.d.ts +1 -1
  1322. package/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -1
  1323. package/dist/modes/interactive/components/oauth-selector.js +12 -6
  1324. package/dist/modes/interactive/components/oauth-selector.js.map +1 -1
  1325. package/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -1
  1326. package/dist/modes/interactive/components/scoped-models-selector.js +5 -1
  1327. package/dist/modes/interactive/components/scoped-models-selector.js.map +1 -1
  1328. package/dist/modes/interactive/components/session-selector-list.d.ts +1 -1
  1329. package/dist/modes/interactive/components/session-selector-list.d.ts.map +1 -1
  1330. package/dist/modes/interactive/components/session-selector-list.js.map +1 -1
  1331. package/dist/modes/interactive/components/session-selector.d.ts.map +1 -1
  1332. package/dist/modes/interactive/components/session-selector.js.map +1 -1
  1333. package/dist/modes/interactive/components/settings-selector-handlers.d.ts.map +1 -1
  1334. package/dist/modes/interactive/components/settings-selector-handlers.js.map +1 -1
  1335. package/dist/modes/interactive/components/settings-selector-submenus.d.ts.map +1 -1
  1336. package/dist/modes/interactive/components/settings-selector-submenus.js.map +1 -1
  1337. package/dist/modes/interactive/components/startup-identity.d.ts.map +1 -1
  1338. package/dist/modes/interactive/components/startup-identity.js.map +1 -1
  1339. package/dist/modes/interactive/components/tool-execution.d.ts.map +1 -1
  1340. package/dist/modes/interactive/components/tool-execution.js.map +1 -1
  1341. package/dist/modes/interactive/components/tree-selector-model.js +1 -9
  1342. package/dist/modes/interactive/components/tree-selector-model.js.map +1 -1
  1343. package/dist/modes/interactive/components/tree-selector-viewport.d.ts.map +1 -1
  1344. package/dist/modes/interactive/components/tree-selector-viewport.js.map +1 -1
  1345. package/dist/modes/interactive/components/working-status.d.ts.map +1 -1
  1346. package/dist/modes/interactive/components/working-status.js +1 -1
  1347. package/dist/modes/interactive/components/working-status.js.map +1 -1
  1348. package/dist/modes/interactive/external-editor.d.ts.map +1 -1
  1349. package/dist/modes/interactive/external-editor.js.map +1 -1
  1350. package/dist/modes/interactive/interactive-agent-events.js +20 -13
  1351. package/dist/modes/interactive/interactive-agent-events.js.map +1 -1
  1352. package/dist/modes/interactive/interactive-auth-login.js +6 -6
  1353. package/dist/modes/interactive/interactive-auth-login.js.map +1 -1
  1354. package/dist/modes/interactive/interactive-auth-routing.d.ts.map +1 -1
  1355. package/dist/modes/interactive/interactive-auth-routing.js +3 -6
  1356. package/dist/modes/interactive/interactive-auth-routing.js.map +1 -1
  1357. package/dist/modes/interactive/interactive-autocomplete.js +4 -10
  1358. package/dist/modes/interactive/interactive-autocomplete.js.map +1 -1
  1359. package/dist/modes/interactive/interactive-bash-compact.d.ts.map +1 -1
  1360. package/dist/modes/interactive/interactive-bash-compact.js +18 -8
  1361. package/dist/modes/interactive/interactive-bash-compact.js.map +1 -1
  1362. package/dist/modes/interactive/interactive-deferred-startup.d.ts.map +1 -1
  1363. package/dist/modes/interactive/interactive-deferred-startup.js +6 -2
  1364. package/dist/modes/interactive/interactive-deferred-startup.js.map +1 -1
  1365. package/dist/modes/interactive/interactive-editor-actions.js +6 -10
  1366. package/dist/modes/interactive/interactive-editor-actions.js.map +1 -1
  1367. package/dist/modes/interactive/interactive-extension-context.js +4 -4
  1368. package/dist/modes/interactive/interactive-extension-context.js.map +1 -1
  1369. package/dist/modes/interactive/interactive-extension-custom-ui.js +15 -8
  1370. package/dist/modes/interactive/interactive-extension-custom-ui.js.map +1 -1
  1371. package/dist/modes/interactive/interactive-extension-dialogs.js +50 -24
  1372. package/dist/modes/interactive/interactive-extension-dialogs.js.map +1 -1
  1373. package/dist/modes/interactive/interactive-extension-runtime.js +9 -6
  1374. package/dist/modes/interactive/interactive-extension-runtime.js.map +1 -1
  1375. package/dist/modes/interactive/interactive-extension-widgets.js +1 -1
  1376. package/dist/modes/interactive/interactive-extension-widgets.js.map +1 -1
  1377. package/dist/modes/interactive/interactive-global-clear.d.ts +45 -1
  1378. package/dist/modes/interactive/interactive-global-clear.d.ts.map +1 -1
  1379. package/dist/modes/interactive/interactive-global-clear.js +60 -4
  1380. package/dist/modes/interactive/interactive-global-clear.js.map +1 -1
  1381. package/dist/modes/interactive/interactive-hotkeys-debug.js +2 -3
  1382. package/dist/modes/interactive/interactive-hotkeys-debug.js.map +1 -1
  1383. package/dist/modes/interactive/interactive-input-handling.d.ts.map +1 -1
  1384. package/dist/modes/interactive/interactive-input-handling.js +56 -21
  1385. package/dist/modes/interactive/interactive-input-handling.js.map +1 -1
  1386. package/dist/modes/interactive/interactive-key-identity.d.ts +22 -0
  1387. package/dist/modes/interactive/interactive-key-identity.d.ts.map +1 -0
  1388. package/dist/modes/interactive/interactive-key-identity.js +29 -0
  1389. package/dist/modes/interactive/interactive-key-identity.js.map +1 -0
  1390. package/dist/modes/interactive/interactive-mode-base.d.ts +7 -6
  1391. package/dist/modes/interactive/interactive-mode-base.d.ts.map +1 -1
  1392. package/dist/modes/interactive/interactive-mode-base.js +12 -12
  1393. package/dist/modes/interactive/interactive-mode-base.js.map +1 -1
  1394. package/dist/modes/interactive/interactive-mode-deps.d.ts +20 -20
  1395. package/dist/modes/interactive/interactive-mode-deps.d.ts.map +1 -1
  1396. package/dist/modes/interactive/interactive-mode-deps.js +16 -16
  1397. package/dist/modes/interactive/interactive-mode-deps.js.map +1 -1
  1398. package/dist/modes/interactive/interactive-mode-helpers.d.ts +1 -1
  1399. package/dist/modes/interactive/interactive-mode-helpers.d.ts.map +1 -1
  1400. package/dist/modes/interactive/interactive-mode-helpers.js +3 -9
  1401. package/dist/modes/interactive/interactive-mode-helpers.js.map +1 -1
  1402. package/dist/modes/interactive/interactive-mode-surface.d.ts +12 -8
  1403. package/dist/modes/interactive/interactive-mode-surface.d.ts.map +1 -1
  1404. package/dist/modes/interactive/interactive-mode-surface.js +1 -0
  1405. package/dist/modes/interactive/interactive-mode-surface.js.map +1 -1
  1406. package/dist/modes/interactive/interactive-mode-types.d.ts +2 -2
  1407. package/dist/modes/interactive/interactive-mode-types.d.ts.map +1 -1
  1408. package/dist/modes/interactive/interactive-mode-types.js.map +1 -1
  1409. package/dist/modes/interactive/interactive-model-catalog-startup.d.ts.map +1 -1
  1410. package/dist/modes/interactive/interactive-model-catalog-startup.js +2 -1
  1411. package/dist/modes/interactive/interactive-model-catalog-startup.js.map +1 -1
  1412. package/dist/modes/interactive/interactive-model-routing.js +10 -7
  1413. package/dist/modes/interactive/interactive-model-routing.js.map +1 -1
  1414. package/dist/modes/interactive/interactive-onboarding.js +7 -7
  1415. package/dist/modes/interactive/interactive-onboarding.js.map +1 -1
  1416. package/dist/modes/interactive/interactive-pause.d.ts +3 -1
  1417. package/dist/modes/interactive/interactive-pause.d.ts.map +1 -1
  1418. package/dist/modes/interactive/interactive-pause.js +5 -1
  1419. package/dist/modes/interactive/interactive-pause.js.map +1 -1
  1420. package/dist/modes/interactive/interactive-process-lifecycle.js +38 -8
  1421. package/dist/modes/interactive/interactive-process-lifecycle.js.map +1 -1
  1422. package/dist/modes/interactive/interactive-prompt-restore.d.ts +58 -0
  1423. package/dist/modes/interactive/interactive-prompt-restore.d.ts.map +1 -0
  1424. package/dist/modes/interactive/interactive-prompt-restore.js +87 -0
  1425. package/dist/modes/interactive/interactive-prompt-restore.js.map +1 -0
  1426. package/dist/modes/interactive/interactive-prompt-turn.js +18 -3
  1427. package/dist/modes/interactive/interactive-prompt-turn.js.map +1 -1
  1428. package/dist/modes/interactive/interactive-queueing.js +6 -10
  1429. package/dist/modes/interactive/interactive-queueing.js.map +1 -1
  1430. package/dist/modes/interactive/interactive-render-chat.js +47 -36
  1431. package/dist/modes/interactive/interactive-render-chat.js.map +1 -1
  1432. package/dist/modes/interactive/interactive-resource-disclosure.js +1 -3
  1433. package/dist/modes/interactive/interactive-resource-disclosure.js.map +1 -1
  1434. package/dist/modes/interactive/interactive-resource-paths.js +6 -19
  1435. package/dist/modes/interactive/interactive-resource-paths.js.map +1 -1
  1436. package/dist/modes/interactive/interactive-resource-rendering.js +15 -16
  1437. package/dist/modes/interactive/interactive-resource-rendering.js.map +1 -1
  1438. package/dist/modes/interactive/interactive-selectors.js +3 -5
  1439. package/dist/modes/interactive/interactive-selectors.js.map +1 -1
  1440. package/dist/modes/interactive/interactive-session-routing.js +16 -4
  1441. package/dist/modes/interactive/interactive-session-routing.js.map +1 -1
  1442. package/dist/modes/interactive/interactive-session-runtime.js +11 -0
  1443. package/dist/modes/interactive/interactive-session-runtime.js.map +1 -1
  1444. package/dist/modes/interactive/interactive-slash-commands.js +11 -6
  1445. package/dist/modes/interactive/interactive-slash-commands.js.map +1 -1
  1446. package/dist/modes/interactive/interactive-startup.d.ts.map +1 -1
  1447. package/dist/modes/interactive/interactive-startup.js +9 -11
  1448. package/dist/modes/interactive/interactive-startup.js.map +1 -1
  1449. package/dist/modes/interactive/interactive-submission.d.ts +24 -0
  1450. package/dist/modes/interactive/interactive-submission.d.ts.map +1 -0
  1451. package/dist/modes/interactive/interactive-submission.js +10 -0
  1452. package/dist/modes/interactive/interactive-submission.js.map +1 -0
  1453. package/dist/modes/interactive/interactive-summarization-retry-events.d.ts +1 -1
  1454. package/dist/modes/interactive/interactive-summarization-retry-events.d.ts.map +1 -1
  1455. package/dist/modes/interactive/interactive-summarization-retry-events.js +4 -2
  1456. package/dist/modes/interactive/interactive-summarization-retry-events.js.map +1 -1
  1457. package/dist/modes/interactive/login-provider-options.d.ts.map +1 -1
  1458. package/dist/modes/interactive/login-provider-options.js +1 -2
  1459. package/dist/modes/interactive/login-provider-options.js.map +1 -1
  1460. package/dist/modes/interactive/theme/global-theme.d.ts +1 -1
  1461. package/dist/modes/interactive/theme/global-theme.d.ts.map +1 -1
  1462. package/dist/modes/interactive/theme/global-theme.js.map +1 -1
  1463. package/dist/modes/interactive/theme/theme-class.d.ts.map +1 -1
  1464. package/dist/modes/interactive/theme/theme-class.js.map +1 -1
  1465. package/dist/modes/interactive/theme/theme-loading.d.ts.map +1 -1
  1466. package/dist/modes/interactive/theme/theme-loading.js +1 -1
  1467. package/dist/modes/interactive/theme/theme-loading.js.map +1 -1
  1468. package/dist/modes/interactive/theme/theme-schema.d.ts.map +1 -1
  1469. package/dist/modes/interactive/theme/theme-schema.js.map +1 -1
  1470. package/dist/modes/interactive/theme/theme.d.ts +2 -2
  1471. package/dist/modes/interactive/theme/theme.d.ts.map +1 -1
  1472. package/dist/modes/interactive/theme/theme.js +2 -2
  1473. package/dist/modes/interactive/theme/theme.js.map +1 -1
  1474. package/dist/modes/interactive/whimsical-messages.d.ts.map +1 -1
  1475. package/dist/modes/interactive/whimsical-messages.js.map +1 -1
  1476. package/dist/modes/interactive-engine/activity-watchdog.d.ts +16 -6
  1477. package/dist/modes/interactive-engine/activity-watchdog.d.ts.map +1 -1
  1478. package/dist/modes/interactive-engine/activity-watchdog.js +12 -6
  1479. package/dist/modes/interactive-engine/activity-watchdog.js.map +1 -1
  1480. package/dist/modes/interactive-engine/create-isolated-runtime.d.ts.map +1 -1
  1481. package/dist/modes/interactive-engine/create-isolated-runtime.js +5 -4
  1482. package/dist/modes/interactive-engine/create-isolated-runtime.js.map +1 -1
  1483. package/dist/modes/interactive-engine/engine-child-liveness.d.ts.map +1 -1
  1484. package/dist/modes/interactive-engine/engine-child-liveness.js +6 -4
  1485. package/dist/modes/interactive-engine/engine-child-liveness.js.map +1 -1
  1486. package/dist/modes/interactive-engine/engine-custom-ui.d.ts +3 -2
  1487. package/dist/modes/interactive-engine/engine-custom-ui.d.ts.map +1 -1
  1488. package/dist/modes/interactive-engine/engine-custom-ui.js +32 -11
  1489. package/dist/modes/interactive-engine/engine-custom-ui.js.map +1 -1
  1490. package/dist/modes/interactive-engine/engine-diagnostic-view.d.ts +16 -0
  1491. package/dist/modes/interactive-engine/engine-diagnostic-view.d.ts.map +1 -0
  1492. package/dist/modes/interactive-engine/engine-diagnostic-view.js +19 -0
  1493. package/dist/modes/interactive-engine/engine-diagnostic-view.js.map +1 -0
  1494. package/dist/modes/interactive-engine/engine-dialog-host.d.ts +33 -0
  1495. package/dist/modes/interactive-engine/engine-dialog-host.d.ts.map +1 -0
  1496. package/dist/modes/interactive-engine/engine-dialog-host.js +129 -0
  1497. package/dist/modes/interactive-engine/engine-dialog-host.js.map +1 -0
  1498. package/dist/modes/interactive-engine/engine-generation.d.ts +29 -0
  1499. package/dist/modes/interactive-engine/engine-generation.d.ts.map +1 -0
  1500. package/dist/modes/interactive-engine/engine-generation.js +11 -0
  1501. package/dist/modes/interactive-engine/engine-generation.js.map +1 -0
  1502. package/dist/modes/interactive-engine/engine-health.d.ts +107 -0
  1503. package/dist/modes/interactive-engine/engine-health.d.ts.map +1 -0
  1504. package/dist/modes/interactive-engine/engine-health.js +250 -0
  1505. package/dist/modes/interactive-engine/engine-health.js.map +1 -0
  1506. package/dist/modes/interactive-engine/engine-input-form.d.ts.map +1 -1
  1507. package/dist/modes/interactive-engine/engine-input-form.js +12 -3
  1508. package/dist/modes/interactive-engine/engine-input-form.js.map +1 -1
  1509. package/dist/modes/interactive-engine/engine-monitor.d.ts.map +1 -1
  1510. package/dist/modes/interactive-engine/engine-monitor.js +7 -2
  1511. package/dist/modes/interactive-engine/engine-monitor.js.map +1 -1
  1512. package/dist/modes/interactive-engine/engine-render-service.d.ts.map +1 -1
  1513. package/dist/modes/interactive-engine/engine-render-service.js +11 -5
  1514. package/dist/modes/interactive-engine/engine-render-service.js.map +1 -1
  1515. package/dist/modes/interactive-engine/engine-session-picker.d.ts.map +1 -1
  1516. package/dist/modes/interactive-engine/engine-session-picker.js +4 -2
  1517. package/dist/modes/interactive-engine/engine-session-picker.js.map +1 -1
  1518. package/dist/modes/interactive-engine/extension-ui-bridge.d.ts +14 -3
  1519. package/dist/modes/interactive-engine/extension-ui-bridge.d.ts.map +1 -1
  1520. package/dist/modes/interactive-engine/extension-ui-bridge.js +32 -45
  1521. package/dist/modes/interactive-engine/extension-ui-bridge.js.map +1 -1
  1522. package/dist/modes/interactive-engine/input-form-host.d.ts +1 -0
  1523. package/dist/modes/interactive-engine/input-form-host.d.ts.map +1 -1
  1524. package/dist/modes/interactive-engine/input-form-host.js +12 -2
  1525. package/dist/modes/interactive-engine/input-form-host.js.map +1 -1
  1526. package/dist/modes/interactive-engine/isolated-auth.d.ts.map +1 -1
  1527. package/dist/modes/interactive-engine/isolated-auth.js +2 -2
  1528. package/dist/modes/interactive-engine/isolated-auth.js.map +1 -1
  1529. package/dist/modes/interactive-engine/isolated-runtime.d.ts +33 -6
  1530. package/dist/modes/interactive-engine/isolated-runtime.d.ts.map +1 -1
  1531. package/dist/modes/interactive-engine/isolated-runtime.js +129 -60
  1532. package/dist/modes/interactive-engine/isolated-runtime.js.map +1 -1
  1533. package/dist/modes/interactive-engine/protocol.d.ts +20 -1
  1534. package/dist/modes/interactive-engine/protocol.d.ts.map +1 -1
  1535. package/dist/modes/interactive-engine/protocol.js +183 -55
  1536. package/dist/modes/interactive-engine/protocol.js.map +1 -1
  1537. package/dist/modes/interactive-engine/remote-component.d.ts +38 -0
  1538. package/dist/modes/interactive-engine/remote-component.d.ts.map +1 -1
  1539. package/dist/modes/interactive-engine/remote-component.js +111 -22
  1540. package/dist/modes/interactive-engine/remote-component.js.map +1 -1
  1541. package/dist/modes/interactive-engine/remote-input-ownership.d.ts +48 -0
  1542. package/dist/modes/interactive-engine/remote-input-ownership.d.ts.map +1 -0
  1543. package/dist/modes/interactive-engine/remote-input-ownership.js +42 -0
  1544. package/dist/modes/interactive-engine/remote-input-ownership.js.map +1 -0
  1545. package/dist/modes/interactive-engine/remote-model-catalog.d.ts.map +1 -1
  1546. package/dist/modes/interactive-engine/remote-model-catalog.js +15 -5
  1547. package/dist/modes/interactive-engine/remote-model-catalog.js.map +1 -1
  1548. package/dist/modes/interactive-engine/remote-queue-pause.d.ts.map +1 -1
  1549. package/dist/modes/interactive-engine/remote-queue-pause.js.map +1 -1
  1550. package/dist/modes/interactive-engine/remote-renderer.d.ts.map +1 -1
  1551. package/dist/modes/interactive-engine/remote-renderer.js +38 -10
  1552. package/dist/modes/interactive-engine/remote-renderer.js.map +1 -1
  1553. package/dist/modes/interactive-engine/session-picker-host.d.ts +1 -0
  1554. package/dist/modes/interactive-engine/session-picker-host.d.ts.map +1 -1
  1555. package/dist/modes/interactive-engine/session-picker-host.js +4 -0
  1556. package/dist/modes/interactive-engine/session-picker-host.js.map +1 -1
  1557. package/dist/modes/print-mode.d.ts.map +1 -1
  1558. package/dist/modes/print-mode.js.map +1 -1
  1559. package/dist/modes/rpc/jsonl.d.ts +7 -0
  1560. package/dist/modes/rpc/jsonl.d.ts.map +1 -1
  1561. package/dist/modes/rpc/jsonl.js +17 -1
  1562. package/dist/modes/rpc/jsonl.js.map +1 -1
  1563. package/dist/modes/rpc/queued-writer.d.ts +14 -0
  1564. package/dist/modes/rpc/queued-writer.d.ts.map +1 -1
  1565. package/dist/modes/rpc/queued-writer.js +33 -9
  1566. package/dist/modes/rpc/queued-writer.js.map +1 -1
  1567. package/dist/modes/rpc/rpc-bash-request-owners.js +1 -1
  1568. package/dist/modes/rpc/rpc-bash-request-owners.js.map +1 -1
  1569. package/dist/modes/rpc/rpc-client-api.d.ts +3 -3
  1570. package/dist/modes/rpc/rpc-client-api.d.ts.map +1 -1
  1571. package/dist/modes/rpc/rpc-client-api.js +63 -22
  1572. package/dist/modes/rpc/rpc-client-api.js.map +1 -1
  1573. package/dist/modes/rpc/rpc-client-process.d.ts +10 -0
  1574. package/dist/modes/rpc/rpc-client-process.d.ts.map +1 -1
  1575. package/dist/modes/rpc/rpc-client-process.js +72 -15
  1576. package/dist/modes/rpc/rpc-client-process.js.map +1 -1
  1577. package/dist/modes/rpc/rpc-client-waits.d.ts +17 -1
  1578. package/dist/modes/rpc/rpc-client-waits.d.ts.map +1 -1
  1579. package/dist/modes/rpc/rpc-client-waits.js +25 -0
  1580. package/dist/modes/rpc/rpc-client-waits.js.map +1 -1
  1581. package/dist/modes/rpc/rpc-client.d.ts +61 -6
  1582. package/dist/modes/rpc/rpc-client.d.ts.map +1 -1
  1583. package/dist/modes/rpc/rpc-client.js +200 -145
  1584. package/dist/modes/rpc/rpc-client.js.map +1 -1
  1585. package/dist/modes/rpc/rpc-command-handler.d.ts +2 -2
  1586. package/dist/modes/rpc/rpc-command-handler.d.ts.map +1 -1
  1587. package/dist/modes/rpc/rpc-command-handler.js +58 -20
  1588. package/dist/modes/rpc/rpc-command-handler.js.map +1 -1
  1589. package/dist/modes/rpc/rpc-command-timeouts.d.ts +30 -0
  1590. package/dist/modes/rpc/rpc-command-timeouts.d.ts.map +1 -0
  1591. package/dist/modes/rpc/rpc-command-timeouts.js +52 -0
  1592. package/dist/modes/rpc/rpc-command-timeouts.js.map +1 -0
  1593. package/dist/modes/rpc/rpc-event-buffer.d.ts.map +1 -1
  1594. package/dist/modes/rpc/rpc-event-buffer.js +3 -1
  1595. package/dist/modes/rpc/rpc-event-buffer.js.map +1 -1
  1596. package/dist/modes/rpc/rpc-extension-ui.d.ts +1 -1
  1597. package/dist/modes/rpc/rpc-extension-ui.d.ts.map +1 -1
  1598. package/dist/modes/rpc/rpc-extension-ui.js +44 -16
  1599. package/dist/modes/rpc/rpc-extension-ui.js.map +1 -1
  1600. package/dist/modes/rpc/rpc-generation-buffer.d.ts +21 -0
  1601. package/dist/modes/rpc/rpc-generation-buffer.d.ts.map +1 -0
  1602. package/dist/modes/rpc/rpc-generation-buffer.js +35 -0
  1603. package/dist/modes/rpc/rpc-generation-buffer.js.map +1 -0
  1604. package/dist/modes/rpc/rpc-input-scheduler.d.ts.map +1 -1
  1605. package/dist/modes/rpc/rpc-input-scheduler.js +14 -7
  1606. package/dist/modes/rpc/rpc-input-scheduler.js.map +1 -1
  1607. package/dist/modes/rpc/rpc-input.d.ts +7 -1
  1608. package/dist/modes/rpc/rpc-input.d.ts.map +1 -1
  1609. package/dist/modes/rpc/rpc-input.js +14 -4
  1610. package/dist/modes/rpc/rpc-input.js.map +1 -1
  1611. package/dist/modes/rpc/rpc-keybindings-reload.d.ts.map +1 -1
  1612. package/dist/modes/rpc/rpc-keybindings-reload.js.map +1 -1
  1613. package/dist/modes/rpc/rpc-mode.d.ts.map +1 -1
  1614. package/dist/modes/rpc/rpc-mode.js +17 -18
  1615. package/dist/modes/rpc/rpc-mode.js.map +1 -1
  1616. package/dist/modes/rpc/rpc-oauth-client.d.ts +1 -2
  1617. package/dist/modes/rpc/rpc-oauth-client.d.ts.map +1 -1
  1618. package/dist/modes/rpc/rpc-oauth-client.js +11 -4
  1619. package/dist/modes/rpc/rpc-oauth-client.js.map +1 -1
  1620. package/dist/modes/rpc/rpc-oauth-interaction.d.ts.map +1 -1
  1621. package/dist/modes/rpc/rpc-oauth-interaction.js.map +1 -1
  1622. package/dist/modes/rpc/rpc-output-buffer.d.ts.map +1 -1
  1623. package/dist/modes/rpc/rpc-output-buffer.js +3 -1
  1624. package/dist/modes/rpc/rpc-output-buffer.js.map +1 -1
  1625. package/dist/modes/rpc/rpc-pending-requests.d.ts +37 -0
  1626. package/dist/modes/rpc/rpc-pending-requests.d.ts.map +1 -0
  1627. package/dist/modes/rpc/rpc-pending-requests.js +57 -0
  1628. package/dist/modes/rpc/rpc-pending-requests.js.map +1 -0
  1629. package/dist/modes/rpc/rpc-provider-auth.d.ts.map +1 -1
  1630. package/dist/modes/rpc/rpc-provider-auth.js +24 -5
  1631. package/dist/modes/rpc/rpc-provider-auth.js.map +1 -1
  1632. package/dist/modes/rpc/rpc-responses.js.map +1 -1
  1633. package/dist/modes/rpc/rpc-session-binding.d.ts +1 -1
  1634. package/dist/modes/rpc/rpc-session-binding.d.ts.map +1 -1
  1635. package/dist/modes/rpc/rpc-session-binding.js +7 -2
  1636. package/dist/modes/rpc/rpc-session-binding.js.map +1 -1
  1637. package/dist/modes/rpc/rpc-terminal-drain.d.ts +52 -0
  1638. package/dist/modes/rpc/rpc-terminal-drain.d.ts.map +1 -0
  1639. package/dist/modes/rpc/rpc-terminal-drain.js +85 -0
  1640. package/dist/modes/rpc/rpc-terminal-drain.js.map +1 -0
  1641. package/dist/modes/rpc/rpc-transport-error.d.ts +49 -0
  1642. package/dist/modes/rpc/rpc-transport-error.d.ts.map +1 -0
  1643. package/dist/modes/rpc/rpc-transport-error.js +78 -0
  1644. package/dist/modes/rpc/rpc-transport-error.js.map +1 -0
  1645. package/dist/modes/rpc/rpc-types.d.ts +12 -9
  1646. package/dist/modes/rpc/rpc-types.d.ts.map +1 -1
  1647. package/dist/modes/rpc/rpc-types.js.map +1 -1
  1648. package/dist/package-manager-cli-parser.js.map +1 -1
  1649. package/dist/package-manager-cli.d.ts.map +1 -1
  1650. package/dist/package-manager-cli.js +22 -11
  1651. package/dist/package-manager-cli.js.map +1 -1
  1652. package/dist/utils/child-process.d.ts.map +1 -1
  1653. package/dist/utils/child-process.js.map +1 -1
  1654. package/dist/utils/clipboard-image.js +1 -1
  1655. package/dist/utils/clipboard-image.js.map +1 -1
  1656. package/dist/utils/clipboard.d.ts.map +1 -1
  1657. package/dist/utils/clipboard.js.map +1 -1
  1658. package/dist/utils/fs-watch.d.ts.map +1 -1
  1659. package/dist/utils/fs-watch.js +1 -3
  1660. package/dist/utils/fs-watch.js.map +1 -1
  1661. package/dist/utils/git.js +1 -1
  1662. package/dist/utils/git.js.map +1 -1
  1663. package/dist/utils/interactive-engine-bootstrap.d.ts +67 -0
  1664. package/dist/utils/interactive-engine-bootstrap.d.ts.map +1 -0
  1665. package/dist/utils/interactive-engine-bootstrap.js +117 -0
  1666. package/dist/utils/interactive-engine-bootstrap.js.map +1 -0
  1667. package/dist/utils/interactive-engine-env.d.ts +41 -0
  1668. package/dist/utils/interactive-engine-env.d.ts.map +1 -0
  1669. package/dist/utils/interactive-engine-env.js +67 -0
  1670. package/dist/utils/interactive-engine-env.js.map +1 -0
  1671. package/dist/utils/markit.d.ts.map +1 -1
  1672. package/dist/utils/markit.js +15 -5
  1673. package/dist/utils/markit.js.map +1 -1
  1674. package/dist/utils/shell.js +2 -2
  1675. package/dist/utils/shell.js.map +1 -1
  1676. package/dist/utils/split-launcher.d.ts.map +1 -1
  1677. package/dist/utils/split-launcher.js +1 -2
  1678. package/dist/utils/split-launcher.js.map +1 -1
  1679. package/dist/utils/tools-manager.d.ts.map +1 -1
  1680. package/dist/utils/tools-manager.js +8 -34
  1681. package/dist/utils/tools-manager.js.map +1 -1
  1682. package/dist/utils/version-check.d.ts.map +1 -1
  1683. package/dist/utils/version-check.js +1 -1
  1684. package/dist/utils/version-check.js.map +1 -1
  1685. package/docs/changelog.mdx +11 -0
  1686. package/docs/custom-provider.md +29 -6
  1687. package/docs/development.md +14 -15
  1688. package/docs/extensions.md +62 -2
  1689. package/docs/index.md +10 -0
  1690. package/docs/keybindings.md +14 -2
  1691. package/docs/models.md +2 -0
  1692. package/docs/providers.md +21 -4
  1693. package/docs/quickstart.md +7 -1
  1694. package/docs/rpc.md +1 -1
  1695. package/docs/security.md +15 -0
  1696. package/docs/session-format.md +4 -0
  1697. package/docs/termux.md +3 -1
  1698. package/docs/usage.md +37 -2
  1699. package/docs/workflows.md +166 -53
  1700. package/examples/extensions/border-status-editor.ts +1 -6
  1701. package/examples/extensions/custom-compaction.ts +7 -2
  1702. package/examples/extensions/custom-footer.ts +1 -1
  1703. package/examples/extensions/custom-provider-anthropic/index.ts +14 -2
  1704. package/examples/extensions/custom-provider-gitlab-duo/index.ts +1 -1
  1705. package/examples/extensions/gondolin/index.ts +1 -1
  1706. package/examples/extensions/handoff.ts +2 -2
  1707. package/examples/extensions/hello.ts +1 -1
  1708. package/examples/extensions/minimal-mode.ts +6 -6
  1709. package/examples/extensions/overlay-qa-focus-components.ts +0 -1
  1710. package/examples/extensions/overlay-qa-streaming-input-components.ts +2 -2
  1711. package/examples/extensions/overlay-qa-tests.ts +16 -14
  1712. package/examples/extensions/overlay-qa-toggle-passive-components.ts +3 -5
  1713. package/examples/extensions/overlay-test.ts +3 -6
  1714. package/examples/extensions/plan-mode/index.ts +1 -1
  1715. package/examples/extensions/preset.ts +1 -1
  1716. package/examples/extensions/qna.ts +1 -1
  1717. package/examples/extensions/structured-output.ts +9 -9
  1718. package/examples/extensions/subagent/display.ts +115 -127
  1719. package/examples/extensions/subagent/index.ts +310 -349
  1720. package/examples/extensions/subagent/render.ts +244 -345
  1721. package/examples/extensions/subagent/runner.ts +223 -230
  1722. package/examples/extensions/subagent/schemas.ts +39 -46
  1723. package/examples/extensions/subagent/types.ts +22 -22
  1724. package/examples/extensions/summarize.ts +2 -2
  1725. package/examples/extensions/tic-tac-toe.ts +4 -4
  1726. package/examples/extensions/todo.ts +1 -1
  1727. package/examples/extensions/tool-override.ts +1 -1
  1728. package/examples/extensions/trigger-compact.ts +4 -1
  1729. package/examples/extensions/working-indicator.ts +2 -1
  1730. package/examples/rpc-extension-ui-components.ts +1 -2
  1731. package/examples/sdk/02-custom-model.ts +1 -1
  1732. package/examples/sdk/03-custom-prompt.ts +1 -6
  1733. package/examples/sdk/06-extensions.ts +1 -6
  1734. package/examples/sdk/07-context-files.ts +1 -6
  1735. package/examples/sdk/12-full-control.ts +1 -1
  1736. package/npm-shrinkwrap.json +336 -307
  1737. package/package.json +12 -12
  1738. package/dist/builtin/workflows/src/tui/toast.ts +0 -106
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-operations.js","sourceRoot":"","sources":["../../src/core/package-manager-operations.ts"],"names":[],"mappings":"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","sourcesContent":["import { existsSync } from \"node:fs\";\nimport { runWithConcurrency } from \"./package-manager-command.ts\";\nimport { GIT_UPDATE_CONCURRENCY, UPDATE_CHECK_CONCURRENCY } from \"./package-manager-constants.ts\";\nimport { getExistingGitInstallPath, gitHasAvailableUpdate, installGit, removeGit, updateGit } from \"./package-manager-git.ts\";\nimport { isOfflineModeEnabled } from \"./package-manager-env.ts\";\nimport {\n\tgetInstalledNpmVersion,\n\tgetManagedNpmInstallPath,\n\tgetLatestNpmVersion,\n\tgetNpmInstallPath,\n\tinstallNpm,\n\tinstallNpmBatch,\n\tnpmHasAvailableUpdate,\n\tuninstallNpm,\n} from \"./package-manager-npm.ts\";\nimport { resolveManagerPath } from \"./package-manager-paths.ts\";\nimport { withProgress } from \"./package-manager-progress.ts\";\nimport {\n\tassertProjectTrustedForScope,\n\tbuildNoMatchingPackageMessage,\n\tdedupePackages,\n\tgetPackageIdentity,\n\tgetPackageSourceString,\n\tparseSource,\n} from \"./package-manager-source.ts\";\nimport type {\n\tConfiguredUpdateSource,\n\tGitUpdateTarget,\n\tInstalledSourceScope,\n\tNpmSource,\n\tNpmUpdateTarget,\n\tPackageManagerContext,\n\tPackageUpdate,\n\tParsedSource,\n\tSourceScope,\n} from \"./package-manager-types.ts\";\n\nexport async function install(\n\tcontext: PackageManagerContext,\n\tsource: string,\n\toptions?: { local?: boolean },\n): Promise<void> {\n\tconst parsed = parseSource(source);\n\tconst scope: SourceScope = options?.local ? \"project\" : \"user\";\n\tassertProjectTrustedForScope(context, scope);\n\tawait withProgress(context, \"install\", source, `Installing ${source}...`, async () => {\n\t\tif (parsed.type === \"npm\") {\n\t\t\tawait installNpm(context, parsed, scope, false);\n\t\t\treturn;\n\t\t}\n\t\tif (parsed.type === \"git\") {\n\t\t\tawait installGit(context, parsed, scope);\n\t\t\treturn;\n\t\t}\n\t\tif (parsed.type === \"local\") {\n\t\t\tconst resolved = resolveManagerPath(context, parsed.path);\n\t\t\tif (!existsSync(resolved)) {\n\t\t\t\tthrow new Error(`Path does not exist: ${resolved}`);\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tthrow new Error(`Unsupported install source: ${source}`);\n\t});\n}\n\nexport async function remove(\n\tcontext: PackageManagerContext,\n\tsource: string,\n\toptions?: { local?: boolean },\n): Promise<void> {\n\tconst parsed = parseSource(source);\n\tconst scope: SourceScope = options?.local ? \"project\" : \"user\";\n\tassertProjectTrustedForScope(context, scope);\n\tawait withProgress(context, \"remove\", source, `Removing ${source}...`, async () => {\n\t\tif (parsed.type === \"npm\") {\n\t\t\tawait uninstallNpm(context, parsed, scope);\n\t\t\treturn;\n\t\t}\n\t\tif (parsed.type === \"git\") {\n\t\t\tawait removeGit(context, parsed, scope);\n\t\t\treturn;\n\t\t}\n\t\tif (parsed.type === \"local\") return;\n\t\tthrow new Error(`Unsupported remove source: ${source}`);\n\t});\n}\n\nexport async function update(context: PackageManagerContext, source?: string): Promise<void> {\n\tconst globalSettings = context.settingsManager.getGlobalSettings();\n\tconst projectSettings = context.settingsManager.getProjectSettings();\n\tconst identity = source ? getPackageIdentity(context, source) : undefined;\n\tlet matched = false;\n\tconst updateSources: ConfiguredUpdateSource[] = [];\n\n\tfor (const pkg of globalSettings.packages ?? []) {\n\t\tconst sourceStr = getPackageSourceString(pkg);\n\t\tif (identity && getPackageIdentity(context, sourceStr, \"user\") !== identity) continue;\n\t\tmatched = true;\n\t\tupdateSources.push({ source: sourceStr, scope: \"user\" });\n\t}\n\tfor (const pkg of projectSettings.packages ?? []) {\n\t\tconst sourceStr = getPackageSourceString(pkg);\n\t\tif (identity && getPackageIdentity(context, sourceStr, \"project\") !== identity) continue;\n\t\tmatched = true;\n\t\tupdateSources.push({ source: sourceStr, scope: \"project\" });\n\t}\n\n\tif (source && !matched) {\n\t\tthrow new Error(\n\t\t\tbuildNoMatchingPackageMessage(context, source, [\n\t\t\t\t...(globalSettings.packages ?? []),\n\t\t\t\t...(projectSettings.packages ?? []),\n\t\t\t]),\n\t\t);\n\t}\n\tawait updateConfiguredSources(context, updateSources);\n}\n\nexport async function installParsedSource(\n\tcontext: PackageManagerContext,\n\tparsed: ParsedSource,\n\tscope: SourceScope,\n): Promise<void> {\n\tif (parsed.type === \"npm\") {\n\t\tawait installNpm(context, parsed, scope, scope === \"temporary\");\n\t\treturn;\n\t}\n\tif (parsed.type === \"git\") {\n\t\tawait installGit(context, parsed, scope);\n\t}\n}\n\nasync function updateConfiguredSources(\n\tcontext: PackageManagerContext,\n\tsources: ConfiguredUpdateSource[],\n): Promise<void> {\n\tif (isOfflineModeEnabled() || sources.length === 0) return;\n\n\tconst npmCandidates: NpmUpdateTarget[] = [];\n\tconst gitCandidates: GitUpdateTarget[] = [];\n\tfor (const entry of sources) {\n\t\tconst parsed = parseSource(entry.source);\n\t\tif (parsed.type === \"npm\") {\n\t\t\tif (!parsed.pinned) npmCandidates.push({ ...entry, parsed });\n\t\t} else if (parsed.type === \"git\") {\n\t\t\tgitCandidates.push({ ...entry, parsed });\n\t\t}\n\t}\n\n\tconst npmCheckTasks = npmCandidates.map((entry) => async () => ({\n\t\tentry,\n\t\tshouldUpdate: await shouldUpdateNpmSource(context, entry.parsed, entry.scope),\n\t}));\n\tconst npmCheckResults = await runWithConcurrency(npmCheckTasks, UPDATE_CHECK_CONCURRENCY);\n\tconst userNpmUpdates: NpmUpdateTarget[] = [];\n\tconst projectNpmUpdates: NpmUpdateTarget[] = [];\n\tfor (const result of npmCheckResults) {\n\t\tif (!result.shouldUpdate) continue;\n\t\tif (result.entry.scope === \"user\") userNpmUpdates.push(result.entry);\n\t\telse projectNpmUpdates.push(result.entry);\n\t}\n\n\tconst tasks: Promise<void>[] = [];\n\tif (userNpmUpdates.length > 0) tasks.push(updateNpmBatch(context, userNpmUpdates, \"user\"));\n\tif (projectNpmUpdates.length > 0) tasks.push(updateNpmBatch(context, projectNpmUpdates, \"project\"));\n\tif (gitCandidates.length > 0) {\n\t\tconst gitTasks = gitCandidates.map(\n\t\t\t(entry) => async () =>\n\t\t\t\twithProgress(context, \"update\", entry.source, `Updating ${entry.source}...`, async () => {\n\t\t\t\t\tif (context.driver) await context.driver.updateGit(entry.parsed, entry.scope);\n\t\t\t\t\telse await updateGit(context, entry.parsed, entry.scope);\n\t\t\t\t}),\n\t\t);\n\t\ttasks.push(runWithConcurrency(gitTasks, GIT_UPDATE_CONCURRENCY).then(() => {}));\n\t}\n\tawait Promise.all(tasks);\n}\n\nasync function shouldUpdateNpmSource(\n\tcontext: PackageManagerContext,\n\tsource: NpmSource,\n\tscope: InstalledSourceScope,\n): Promise<boolean> {\n\tconst installedPath = getManagedNpmInstallPath(context, source, scope);\n\tconst installedVersion = existsSync(installedPath) ? getInstalledNpmVersion(installedPath) : undefined;\n\tif (!installedVersion) return true;\n\ttry {\n\t\tconst targetVersion = await getLatestNpmVersion(context, source.version ? source.spec : source.name, source.range);\n\t\treturn targetVersion !== installedVersion;\n\t} catch {\n\t\treturn true;\n\t}\n}\n\nasync function updateNpmBatch(\n\tcontext: PackageManagerContext,\n\tsources: NpmUpdateTarget[],\n\tscope: InstalledSourceScope,\n): Promise<void> {\n\tif (sources.length === 0) return;\n\tconst sourceLabel = sources.length === 1 ? sources[0].source : `${scope} npm packages`;\n\tconst message = sources.length === 1 ? `Updating ${sources[0].source}...` : `Updating ${scope} npm packages...`;\n\tconst specs = sources.map((entry) => (entry.parsed.version ? entry.parsed.spec : `${entry.parsed.name}@latest`));\n\n\tawait withProgress(context, \"update\", sourceLabel, message, async () => {\n\t\tawait installNpmBatch(context, specs, scope);\n\t});\n}\n\nexport async function checkForAvailableUpdates(context: PackageManagerContext): Promise<PackageUpdate[]> {\n\tif (isOfflineModeEnabled()) return [];\n\n\tconst globalSettings = context.settingsManager.getGlobalSettings();\n\tconst projectSettings = context.settingsManager.getProjectSettings();\n\tconst allPackages = [\n\t\t...(projectSettings.packages ?? []).map((pkg) => ({ pkg, scope: \"project\" as const })),\n\t\t...(globalSettings.packages ?? []).map((pkg) => ({ pkg, scope: \"user\" as const })),\n\t];\n\tconst packageSources = dedupePackages(context, allPackages);\n\tconst checks = packageSources\n\t\t.filter((entry): entry is { pkg: typeof entry.pkg; scope: InstalledSourceScope } => entry.scope !== \"temporary\")\n\t\t.map((entry) => async (): Promise<PackageUpdate | undefined> => {\n\t\t\tconst source = getPackageSourceString(entry.pkg);\n\t\t\tconst parsed = parseSource(source);\n\t\t\tif (parsed.type === \"local\" || parsed.pinned) return undefined;\n\n\t\t\tif (parsed.type === \"npm\") {\n\t\t\t\tconst installedPath = getNpmInstallPath(context, parsed, entry.scope);\n\t\t\t\tif (!existsSync(installedPath)) return undefined;\n\t\t\t\tconst hasUpdate = await npmHasAvailableUpdate(context, parsed, installedPath);\n\t\t\t\tif (!hasUpdate) return undefined;\n\t\t\t\treturn { source, displayName: parsed.name, type: \"npm\", scope: entry.scope };\n\t\t\t}\n\n\t\t\tconst installedPath = getExistingGitInstallPath(context, parsed, entry.scope);\n\t\t\tif (!installedPath) return undefined;\n\t\t\tconst hasUpdate = context.driver\n\t\t\t\t? await context.driver.gitHasAvailableUpdate(installedPath)\n\t\t\t\t: await gitHasAvailableUpdate(context, installedPath);\n\t\t\tif (!hasUpdate) return undefined;\n\t\t\treturn { source, displayName: `${parsed.host}/${parsed.path}`, type: \"git\", scope: entry.scope };\n\t\t});\n\n\tconst results = await runWithConcurrency(checks, UPDATE_CHECK_CONCURRENCY);\n\treturn results.filter((result): result is PackageUpdate => result !== undefined);\n}\n"]}
1
+ {"version":3,"file":"package-manager-operations.js","sourceRoot":"","sources":["../../src/core/package-manager-operations.ts"],"names":[],"mappings":"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","sourcesContent":["import { existsSync } from \"node:fs\";\nimport { runWithConcurrency } from \"./package-manager-command.ts\";\nimport { GIT_UPDATE_CONCURRENCY, UPDATE_CHECK_CONCURRENCY } from \"./package-manager-constants.ts\";\nimport { isOfflineModeEnabled } from \"./package-manager-env.ts\";\nimport {\n\tgetExistingGitInstallPath,\n\tgitHasAvailableUpdate,\n\tinstallGit,\n\tremoveGit,\n\tupdateGit,\n} from \"./package-manager-git.ts\";\nimport {\n\tgetInstalledNpmVersion,\n\tgetLatestNpmVersion,\n\tgetManagedNpmInstallPath,\n\tgetNpmInstallPath,\n\tinstallNpm,\n\tinstallNpmBatch,\n\tnpmHasAvailableUpdate,\n\tuninstallNpm,\n} from \"./package-manager-npm.ts\";\nimport { resolveManagerPath } from \"./package-manager-paths.ts\";\nimport { withProgress } from \"./package-manager-progress.ts\";\nimport {\n\tassertProjectTrustedForScope,\n\tbuildNoMatchingPackageMessage,\n\tdedupePackages,\n\tgetPackageIdentity,\n\tgetPackageSourceString,\n\tparseSource,\n} from \"./package-manager-source.ts\";\nimport type {\n\tConfiguredUpdateSource,\n\tGitUpdateTarget,\n\tInstalledSourceScope,\n\tNpmSource,\n\tNpmUpdateTarget,\n\tPackageManagerContext,\n\tPackageUpdate,\n\tParsedSource,\n\tSourceScope,\n} from \"./package-manager-types.ts\";\n\nexport async function install(\n\tcontext: PackageManagerContext,\n\tsource: string,\n\toptions?: { local?: boolean },\n): Promise<void> {\n\tconst parsed = parseSource(source);\n\tconst scope: SourceScope = options?.local ? \"project\" : \"user\";\n\tassertProjectTrustedForScope(context, scope);\n\tawait withProgress(context, \"install\", source, `Installing ${source}...`, async () => {\n\t\tif (parsed.type === \"npm\") {\n\t\t\tawait installNpm(context, parsed, scope, false);\n\t\t\treturn;\n\t\t}\n\t\tif (parsed.type === \"git\") {\n\t\t\tawait installGit(context, parsed, scope);\n\t\t\treturn;\n\t\t}\n\t\tif (parsed.type === \"local\") {\n\t\t\tconst resolved = resolveManagerPath(context, parsed.path);\n\t\t\tif (!existsSync(resolved)) {\n\t\t\t\tthrow new Error(`Path does not exist: ${resolved}`);\n\t\t\t}\n\t\t\treturn;\n\t\t}\n\t\tthrow new Error(`Unsupported install source: ${source}`);\n\t});\n}\n\nexport async function remove(\n\tcontext: PackageManagerContext,\n\tsource: string,\n\toptions?: { local?: boolean },\n): Promise<void> {\n\tconst parsed = parseSource(source);\n\tconst scope: SourceScope = options?.local ? \"project\" : \"user\";\n\tassertProjectTrustedForScope(context, scope);\n\tawait withProgress(context, \"remove\", source, `Removing ${source}...`, async () => {\n\t\tif (parsed.type === \"npm\") {\n\t\t\tawait uninstallNpm(context, parsed, scope);\n\t\t\treturn;\n\t\t}\n\t\tif (parsed.type === \"git\") {\n\t\t\tawait removeGit(context, parsed, scope);\n\t\t\treturn;\n\t\t}\n\t\tif (parsed.type === \"local\") return;\n\t\tthrow new Error(`Unsupported remove source: ${source}`);\n\t});\n}\n\nexport async function update(context: PackageManagerContext, source?: string): Promise<void> {\n\tconst globalSettings = context.settingsManager.getGlobalSettings();\n\tconst projectSettings = context.settingsManager.getProjectSettings();\n\tconst identity = source ? getPackageIdentity(context, source) : undefined;\n\tlet matched = false;\n\tconst updateSources: ConfiguredUpdateSource[] = [];\n\n\tfor (const pkg of globalSettings.packages ?? []) {\n\t\tconst sourceStr = getPackageSourceString(pkg);\n\t\tif (identity && getPackageIdentity(context, sourceStr, \"user\") !== identity) continue;\n\t\tmatched = true;\n\t\tupdateSources.push({ source: sourceStr, scope: \"user\" });\n\t}\n\tfor (const pkg of projectSettings.packages ?? []) {\n\t\tconst sourceStr = getPackageSourceString(pkg);\n\t\tif (identity && getPackageIdentity(context, sourceStr, \"project\") !== identity) continue;\n\t\tmatched = true;\n\t\tupdateSources.push({ source: sourceStr, scope: \"project\" });\n\t}\n\n\tif (source && !matched) {\n\t\tthrow new Error(\n\t\t\tbuildNoMatchingPackageMessage(context, source, [\n\t\t\t\t...(globalSettings.packages ?? []),\n\t\t\t\t...(projectSettings.packages ?? []),\n\t\t\t]),\n\t\t);\n\t}\n\tawait updateConfiguredSources(context, updateSources);\n}\n\nexport async function installParsedSource(\n\tcontext: PackageManagerContext,\n\tparsed: ParsedSource,\n\tscope: SourceScope,\n): Promise<void> {\n\tif (parsed.type === \"npm\") {\n\t\tawait installNpm(context, parsed, scope, scope === \"temporary\");\n\t\treturn;\n\t}\n\tif (parsed.type === \"git\") {\n\t\tawait installGit(context, parsed, scope);\n\t}\n}\n\nasync function updateConfiguredSources(\n\tcontext: PackageManagerContext,\n\tsources: ConfiguredUpdateSource[],\n): Promise<void> {\n\tif (isOfflineModeEnabled() || sources.length === 0) return;\n\n\tconst npmCandidates: NpmUpdateTarget[] = [];\n\tconst gitCandidates: GitUpdateTarget[] = [];\n\tfor (const entry of sources) {\n\t\tconst parsed = parseSource(entry.source);\n\t\tif (parsed.type === \"npm\") {\n\t\t\tif (!parsed.pinned) npmCandidates.push({ ...entry, parsed });\n\t\t} else if (parsed.type === \"git\") {\n\t\t\tgitCandidates.push({ ...entry, parsed });\n\t\t}\n\t}\n\n\tconst npmCheckTasks = npmCandidates.map((entry) => async () => ({\n\t\tentry,\n\t\tshouldUpdate: await shouldUpdateNpmSource(context, entry.parsed, entry.scope),\n\t}));\n\tconst npmCheckResults = await runWithConcurrency(npmCheckTasks, UPDATE_CHECK_CONCURRENCY);\n\tconst userNpmUpdates: NpmUpdateTarget[] = [];\n\tconst projectNpmUpdates: NpmUpdateTarget[] = [];\n\tfor (const result of npmCheckResults) {\n\t\tif (!result.shouldUpdate) continue;\n\t\tif (result.entry.scope === \"user\") userNpmUpdates.push(result.entry);\n\t\telse projectNpmUpdates.push(result.entry);\n\t}\n\n\tconst tasks: Promise<void>[] = [];\n\tif (userNpmUpdates.length > 0) tasks.push(updateNpmBatch(context, userNpmUpdates, \"user\"));\n\tif (projectNpmUpdates.length > 0) tasks.push(updateNpmBatch(context, projectNpmUpdates, \"project\"));\n\tif (gitCandidates.length > 0) {\n\t\tconst gitTasks = gitCandidates.map(\n\t\t\t(entry) => async () =>\n\t\t\t\twithProgress(context, \"update\", entry.source, `Updating ${entry.source}...`, async () => {\n\t\t\t\t\tif (context.driver) await context.driver.updateGit(entry.parsed, entry.scope);\n\t\t\t\t\telse await updateGit(context, entry.parsed, entry.scope);\n\t\t\t\t}),\n\t\t);\n\t\ttasks.push(runWithConcurrency(gitTasks, GIT_UPDATE_CONCURRENCY).then(() => {}));\n\t}\n\tawait Promise.all(tasks);\n}\n\nasync function shouldUpdateNpmSource(\n\tcontext: PackageManagerContext,\n\tsource: NpmSource,\n\tscope: InstalledSourceScope,\n): Promise<boolean> {\n\tconst installedPath = getManagedNpmInstallPath(context, source, scope);\n\tconst installedVersion = existsSync(installedPath) ? getInstalledNpmVersion(installedPath) : undefined;\n\tif (!installedVersion) return true;\n\ttry {\n\t\tconst targetVersion = await getLatestNpmVersion(\n\t\t\tcontext,\n\t\t\tsource.version ? source.spec : source.name,\n\t\t\tsource.range,\n\t\t);\n\t\treturn targetVersion !== installedVersion;\n\t} catch {\n\t\treturn true;\n\t}\n}\n\nasync function updateNpmBatch(\n\tcontext: PackageManagerContext,\n\tsources: NpmUpdateTarget[],\n\tscope: InstalledSourceScope,\n): Promise<void> {\n\tif (sources.length === 0) return;\n\tconst sourceLabel = sources.length === 1 ? sources[0].source : `${scope} npm packages`;\n\tconst message = sources.length === 1 ? `Updating ${sources[0].source}...` : `Updating ${scope} npm packages...`;\n\tconst specs = sources.map((entry) => (entry.parsed.version ? entry.parsed.spec : `${entry.parsed.name}@latest`));\n\n\tawait withProgress(context, \"update\", sourceLabel, message, async () => {\n\t\tawait installNpmBatch(context, specs, scope);\n\t});\n}\n\nexport async function checkForAvailableUpdates(context: PackageManagerContext): Promise<PackageUpdate[]> {\n\tif (isOfflineModeEnabled()) return [];\n\n\tconst globalSettings = context.settingsManager.getGlobalSettings();\n\tconst projectSettings = context.settingsManager.getProjectSettings();\n\tconst allPackages = [\n\t\t...(projectSettings.packages ?? []).map((pkg) => ({ pkg, scope: \"project\" as const })),\n\t\t...(globalSettings.packages ?? []).map((pkg) => ({ pkg, scope: \"user\" as const })),\n\t];\n\tconst packageSources = dedupePackages(context, allPackages);\n\tconst checks = packageSources\n\t\t.filter((entry): entry is { pkg: typeof entry.pkg; scope: InstalledSourceScope } => entry.scope !== \"temporary\")\n\t\t.map((entry) => async (): Promise<PackageUpdate | undefined> => {\n\t\t\tconst source = getPackageSourceString(entry.pkg);\n\t\t\tconst parsed = parseSource(source);\n\t\t\tif (parsed.type === \"local\" || parsed.pinned) return undefined;\n\n\t\t\tif (parsed.type === \"npm\") {\n\t\t\t\tconst installedPath = getNpmInstallPath(context, parsed, entry.scope);\n\t\t\t\tif (!existsSync(installedPath)) return undefined;\n\t\t\t\tconst hasUpdate = await npmHasAvailableUpdate(context, parsed, installedPath);\n\t\t\t\tif (!hasUpdate) return undefined;\n\t\t\t\treturn { source, displayName: parsed.name, type: \"npm\", scope: entry.scope };\n\t\t\t}\n\n\t\t\tconst installedPath = getExistingGitInstallPath(context, parsed, entry.scope);\n\t\t\tif (!installedPath) return undefined;\n\t\t\tconst hasUpdate = context.driver\n\t\t\t\t? await context.driver.gitHasAvailableUpdate(installedPath)\n\t\t\t\t: await gitHasAvailableUpdate(context, installedPath);\n\t\t\tif (!hasUpdate) return undefined;\n\t\t\treturn { source, displayName: `${parsed.host}/${parsed.path}`, type: \"git\", scope: entry.scope };\n\t\t});\n\n\tconst results = await runWithConcurrency(checks, UPDATE_CHECK_CONCURRENCY);\n\treturn results.filter((result): result is PackageUpdate => result !== undefined);\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-paths.d.ts","sourceRoot":"","sources":["../../src/core/package-manager-paths.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,qBAAqB,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAErF,wBAAgB,UAAU,IAAI,MAAM,CAEnC;AAED,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAMvE;AAED,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,WAAW,GAAG,MAAM,EAAE,CAQhG;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,WAAW,GAAG,MAAM,CAE7F;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAExF;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAE1E;AAED,wBAAgB,iBAAiB,CAChC,OAAO,EAAE,qBAAqB,EAC9B,KAAK,EAAE,WAAW,EAClB,SAAS,EAAE,OAAO,GAChB,MAAM,CAQR;AAED,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,qBAAqB,EAAE,MAAM,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,EAAE,KAAK,EAAE,WAAW,GAAG,MAAM,CAQpI;AAED,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,WAAW,GAAG,MAAM,GAAG,SAAS,CAQxG"}
1
+ {"version":3,"file":"package-manager-paths.d.ts","sourceRoot":"","sources":["../../src/core/package-manager-paths.ts"],"names":[],"mappings":"AAKA,OAAO,KAAK,EAAE,qBAAqB,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAErF,wBAAgB,UAAU,IAAI,MAAM,CAEnC;AAED,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAMvE;AAED,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,WAAW,GAAG,MAAM,EAAE,CAQhG;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,WAAW,GAAG,MAAM,CAE7F;AAED,wBAAgB,kBAAkB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAExF;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,MAAM,CAE1E;AAED,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,OAAO,GAAG,MAAM,CAQhH;AAED,wBAAgB,iBAAiB,CAChC,OAAO,EAAE,qBAAqB,EAC9B,MAAM,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,EACtC,KAAK,EAAE,WAAW,GAChB,MAAM,CAQR;AAED,wBAAgB,iBAAiB,CAAC,OAAO,EAAE,qBAAqB,EAAE,KAAK,EAAE,WAAW,GAAG,MAAM,GAAG,SAAS,CAQxG"}
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-paths.js","sourceRoot":"","sources":["../../src/core/package-manager-paths.ts"],"names":[],"mappings":"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","sourcesContent":["import { createHash } from \"node:crypto\";\nimport { homedir, tmpdir } from \"node:os\";\nimport { join } from \"node:path\";\nimport { APP_NAME, CONFIG_DIR_NAME, getAgentDir, getAgentDirs, getProjectConfigDirs } from \"../config.ts\";\nimport { resolvePath } from \"../utils/paths.ts\";\nimport type { PackageManagerContext, SourceScope } from \"./package-manager-types.ts\";\n\nexport function getHomeDir(): string {\n\treturn process.env.HOME || homedir();\n}\n\nexport function getTemporaryDir(prefix: string, suffix?: string): string {\n\tconst hash = createHash(\"sha256\")\n\t\t.update(`${prefix}-${suffix ?? \"\"}`)\n\t\t.digest(\"hex\")\n\t\t.slice(0, 8);\n\treturn join(tmpdir(), `${APP_NAME}-extensions`, prefix, hash, suffix ?? \"\");\n}\n\nexport function getBaseDirsForScope(context: PackageManagerContext, scope: SourceScope): string[] {\n\tif (scope === \"project\") {\n\t\treturn getProjectConfigDirs(context.cwd);\n\t}\n\tif (scope === \"user\") {\n\t\treturn context.agentDir === getAgentDir() ? getAgentDirs() : [context.agentDir];\n\t}\n\treturn [context.cwd];\n}\n\nexport function getBaseDirForScope(context: PackageManagerContext, scope: SourceScope): string {\n\treturn getBaseDirsForScope(context, scope)[0]!;\n}\n\nexport function resolveManagerPath(context: PackageManagerContext, input: string): string {\n\treturn resolvePath(input, context.cwd, { homeDir: getHomeDir(), trim: true });\n}\n\nexport function resolvePathFromBase(input: string, baseDir: string): string {\n\treturn resolvePath(input, baseDir, { homeDir: getHomeDir(), trim: true });\n}\n\nexport function getNpmInstallRoot(\n\tcontext: PackageManagerContext,\n\tscope: SourceScope,\n\ttemporary: boolean,\n): string {\n\tif (temporary) {\n\t\treturn getTemporaryDir(\"npm\");\n\t}\n\tif (scope === \"project\") {\n\t\treturn join(context.cwd, CONFIG_DIR_NAME, \"npm\");\n\t}\n\treturn join(context.agentDir, \"npm\");\n}\n\nexport function getGitInstallPath(context: PackageManagerContext, source: { host: string; path: string }, scope: SourceScope): string {\n\tif (scope === \"temporary\") {\n\t\treturn getTemporaryDir(`git-${source.host}`, source.path);\n\t}\n\tif (scope === \"project\") {\n\t\treturn join(context.cwd, CONFIG_DIR_NAME, \"git\", source.host, source.path);\n\t}\n\treturn join(context.agentDir, \"git\", source.host, source.path);\n}\n\nexport function getGitInstallRoot(context: PackageManagerContext, scope: SourceScope): string | undefined {\n\tif (scope === \"temporary\") {\n\t\treturn undefined;\n\t}\n\tif (scope === \"project\") {\n\t\treturn join(context.cwd, CONFIG_DIR_NAME, \"git\");\n\t}\n\treturn join(context.agentDir, \"git\");\n}\n"]}
1
+ {"version":3,"file":"package-manager-paths.js","sourceRoot":"","sources":["../../src/core/package-manager-paths.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,aAAa,CAAC;AACzC,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAC1C,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AACjC,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,WAAW,EAAE,YAAY,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAC1G,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAGhD,MAAM,UAAU,UAAU;IACzB,OAAO,OAAO,CAAC,GAAG,CAAC,IAAI,IAAI,OAAO,EAAE,CAAC;AACtC,CAAC;AAED,MAAM,UAAU,eAAe,CAAC,MAAc,EAAE,MAAe;IAC9D,MAAM,IAAI,GAAG,UAAU,CAAC,QAAQ,CAAC;SAC/B,MAAM,CAAC,GAAG,MAAM,IAAI,MAAM,IAAI,EAAE,EAAE,CAAC;SACnC,MAAM,CAAC,KAAK,CAAC;SACb,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACd,OAAO,IAAI,CAAC,MAAM,EAAE,EAAE,GAAG,QAAQ,aAAa,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,IAAI,EAAE,CAAC,CAAC;AAC7E,CAAC;AAED,MAAM,UAAU,mBAAmB,CAAC,OAA8B,EAAE,KAAkB;IACrF,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACzB,OAAO,oBAAoB,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IAC1C,CAAC;IACD,IAAI,KAAK,KAAK,MAAM,EAAE,CAAC;QACtB,OAAO,OAAO,CAAC,QAAQ,KAAK,WAAW,EAAE,CAAC,CAAC,CAAC,YAAY,EAAE,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IACjF,CAAC;IACD,OAAO,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;AACtB,CAAC;AAED,MAAM,UAAU,kBAAkB,CAAC,OAA8B,EAAE,KAAkB;IACpF,OAAO,mBAAmB,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC,CAAC,CAAE,CAAC;AAChD,CAAC;AAED,MAAM,UAAU,kBAAkB,CAAC,OAA8B,EAAE,KAAa;IAC/E,OAAO,WAAW,CAAC,KAAK,EAAE,OAAO,CAAC,GAAG,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;AAC/E,CAAC;AAED,MAAM,UAAU,mBAAmB,CAAC,KAAa,EAAE,OAAe;IACjE,OAAO,WAAW,CAAC,KAAK,EAAE,OAAO,EAAE,EAAE,OAAO,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC;AAC3E,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,OAA8B,EAAE,KAAkB,EAAE,SAAkB;IACvG,IAAI,SAAS,EAAE,CAAC;QACf,OAAO,eAAe,CAAC,KAAK,CAAC,CAAC;IAC/B,CAAC;IACD,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,eAAe,EAAE,KAAK,CAAC,CAAC;IAClD,CAAC;IACD,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;AACtC,CAAC;AAED,MAAM,UAAU,iBAAiB,CAChC,OAA8B,EAC9B,MAAsC,EACtC,KAAkB;IAElB,IAAI,KAAK,KAAK,WAAW,EAAE,CAAC;QAC3B,OAAO,eAAe,CAAC,OAAO,MAAM,CAAC,IAAI,EAAE,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;IAC3D,CAAC;IACD,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,eAAe,EAAE,KAAK,EAAE,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;IAC5E,CAAC;IACD,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,EAAE,MAAM,CAAC,IAAI,EAAE,MAAM,CAAC,IAAI,CAAC,CAAC;AAChE,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,OAA8B,EAAE,KAAkB;IACnF,IAAI,KAAK,KAAK,WAAW,EAAE,CAAC;QAC3B,OAAO,SAAS,CAAC;IAClB,CAAC;IACD,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;QACzB,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,EAAE,eAAe,EAAE,KAAK,CAAC,CAAC;IAClD,CAAC;IACD,OAAO,IAAI,CAAC,OAAO,CAAC,QAAQ,EAAE,KAAK,CAAC,CAAC;AACtC,CAAC","sourcesContent":["import { createHash } from \"node:crypto\";\nimport { homedir, tmpdir } from \"node:os\";\nimport { join } from \"node:path\";\nimport { APP_NAME, CONFIG_DIR_NAME, getAgentDir, getAgentDirs, getProjectConfigDirs } from \"../config.ts\";\nimport { resolvePath } from \"../utils/paths.ts\";\nimport type { PackageManagerContext, SourceScope } from \"./package-manager-types.ts\";\n\nexport function getHomeDir(): string {\n\treturn process.env.HOME || homedir();\n}\n\nexport function getTemporaryDir(prefix: string, suffix?: string): string {\n\tconst hash = createHash(\"sha256\")\n\t\t.update(`${prefix}-${suffix ?? \"\"}`)\n\t\t.digest(\"hex\")\n\t\t.slice(0, 8);\n\treturn join(tmpdir(), `${APP_NAME}-extensions`, prefix, hash, suffix ?? \"\");\n}\n\nexport function getBaseDirsForScope(context: PackageManagerContext, scope: SourceScope): string[] {\n\tif (scope === \"project\") {\n\t\treturn getProjectConfigDirs(context.cwd);\n\t}\n\tif (scope === \"user\") {\n\t\treturn context.agentDir === getAgentDir() ? getAgentDirs() : [context.agentDir];\n\t}\n\treturn [context.cwd];\n}\n\nexport function getBaseDirForScope(context: PackageManagerContext, scope: SourceScope): string {\n\treturn getBaseDirsForScope(context, scope)[0]!;\n}\n\nexport function resolveManagerPath(context: PackageManagerContext, input: string): string {\n\treturn resolvePath(input, context.cwd, { homeDir: getHomeDir(), trim: true });\n}\n\nexport function resolvePathFromBase(input: string, baseDir: string): string {\n\treturn resolvePath(input, baseDir, { homeDir: getHomeDir(), trim: true });\n}\n\nexport function getNpmInstallRoot(context: PackageManagerContext, scope: SourceScope, temporary: boolean): string {\n\tif (temporary) {\n\t\treturn getTemporaryDir(\"npm\");\n\t}\n\tif (scope === \"project\") {\n\t\treturn join(context.cwd, CONFIG_DIR_NAME, \"npm\");\n\t}\n\treturn join(context.agentDir, \"npm\");\n}\n\nexport function getGitInstallPath(\n\tcontext: PackageManagerContext,\n\tsource: { host: string; path: string },\n\tscope: SourceScope,\n): string {\n\tif (scope === \"temporary\") {\n\t\treturn getTemporaryDir(`git-${source.host}`, source.path);\n\t}\n\tif (scope === \"project\") {\n\t\treturn join(context.cwd, CONFIG_DIR_NAME, \"git\", source.host, source.path);\n\t}\n\treturn join(context.agentDir, \"git\", source.host, source.path);\n}\n\nexport function getGitInstallRoot(context: PackageManagerContext, scope: SourceScope): string | undefined {\n\tif (scope === \"temporary\") {\n\t\treturn undefined;\n\t}\n\tif (scope === \"project\") {\n\t\treturn join(context.cwd, CONFIG_DIR_NAME, \"git\");\n\t}\n\treturn join(context.agentDir, \"git\");\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-resolver.d.ts","sourceRoot":"","sources":["../../src/core/package-manager-resolver.ts"],"names":[],"mappings":"AAeA,OAAO,KAAK,EACX,mBAAmB,EAEnB,qBAAqB,EAErB,aAAa,EACb,8BAA8B,EAG9B,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAO3D,wBAAsB,eAAe,CACpC,OAAO,EAAE,qBAAqB,EAC9B,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,mBAAmB,CAAC,GAC1D,OAAO,CAAC,aAAa,CAAC,CAiCxB;AA6BD,wBAAsB,uBAAuB,CAC5C,OAAO,EAAE,qBAAqB,EAC9B,OAAO,EAAE,aAAa,EAAE,EACxB,OAAO,CAAC,EAAE,8BAA8B,GACtC,OAAO,CAAC,aAAa,CAAC,CAQxB"}
1
+ {"version":3,"file":"package-manager-resolver.d.ts","sourceRoot":"","sources":["../../src/core/package-manager-resolver.ts"],"names":[],"mappings":"AAmBA,OAAO,KAAK,EACX,mBAAmB,EAEnB,qBAAqB,EAErB,aAAa,EACb,8BAA8B,EAG9B,MAAM,4BAA4B,CAAC;AACpC,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAW3D,wBAAsB,eAAe,CACpC,OAAO,EAAE,qBAAqB,EAC9B,SAAS,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,mBAAmB,CAAC,GAC1D,OAAO,CAAC,aAAa,CAAC,CAiDxB;AAmCD,wBAAsB,uBAAuB,CAC5C,OAAO,EAAE,qBAAqB,EAC9B,OAAO,EAAE,aAAa,EAAE,EACxB,OAAO,CAAC,EAAE,8BAA8B,GACtC,OAAO,CAAC,aAAa,CAAC,CAQxB"}
@@ -1,18 +1,17 @@
1
1
  import { access, stat } from "node:fs/promises";
2
2
  import { dirname, isAbsolute, join } from "node:path";
3
3
  import { CONFIG_DIR_NAME } from "../config.js";
4
- import { getGitInstallPath } from "./package-manager-paths.js";
5
4
  import { addAutoDiscoveredResources, collectProjectLocalResources } from "./package-manager-auto-resources.js";
6
- import { getExistingGitInstallPath, refreshTemporaryGitSource } from "./package-manager-git.js";
7
5
  import { isOfflineModeEnabled } from "./package-manager-env.js";
6
+ import { getExistingGitInstallPath, refreshTemporaryGitSource } from "./package-manager-git.js";
8
7
  import { getExistingNpmInstallPath, installedNpmMatchesConfiguredVersion } from "./package-manager-npm.js";
9
- import { getBaseDirsForScope, resolvePathFromBase } from "./package-manager-paths.js";
10
- import { createAccumulator, addResource, getTargetMap, toResolvedPaths } from "./package-manager-resource-accumulator.js";
8
+ import { installParsedSource } from "./package-manager-operations.js";
9
+ import { getBaseDirsForScope, getGitInstallPath, resolvePathFromBase } from "./package-manager-paths.js";
10
+ import { addResource, createAccumulator, getTargetMap, toResolvedPaths, } from "./package-manager-resource-accumulator.js";
11
11
  import { collectPackageResources, resolveLocalEntries } from "./package-manager-resource-collector.js";
12
12
  import { resolveExtensionEntries } from "./package-manager-resource-files.js";
13
- import { dedupePackages, getPackageIdentity, getPackageSourceString, parseSource } from "./package-manager-source.js";
14
13
  import { splitPatterns } from "./package-manager-resource-patterns.js";
15
- import { installParsedSource } from "./package-manager-operations.js";
14
+ import { dedupePackages, getPackageIdentity, getPackageSourceString, parseSource } from "./package-manager-source.js";
16
15
  async function exists(path) {
17
16
  try {
18
17
  await access(path);
@@ -43,7 +42,9 @@ export async function resolvePackages(context, onMissing) {
43
42
  const target = getTargetMap(accumulator, resourceType);
44
43
  const globalEntries = (globalSettings[resourceType] ?? []);
45
44
  const projectEntries = (projectSettings[resourceType] ?? []);
46
- const projectOrigin = context.settingsManager.isFieldInherited("project", resourceType) ? "inherited-pi" : "atomic";
45
+ const projectOrigin = context.settingsManager.isFieldInherited("project", resourceType)
46
+ ? "inherited-pi"
47
+ : "atomic";
47
48
  const globalOrigin = context.settingsManager.isFieldInherited("global", resourceType) ? "inherited-pi" : "atomic";
48
49
  await resolveConfiguredLocalEntries(projectEntries, resourceType, target, "project", projectBaseDirs, projectOrigin);
49
50
  await resolveConfiguredLocalEntries(globalEntries, resourceType, target, "user", globalBaseDirs, globalOrigin);
@@ -87,20 +88,23 @@ async function resolvePackageSources(context, sources, accumulator, onMissing, o
87
88
  const resolvedSource = deltaBase?.source ?? sourceStr;
88
89
  const resolvedScope = deltaBase?.scope ?? scope;
89
90
  const parsed = parseSource(resolvedSource);
90
- const configurationOrigin = options?.settingsField && context.settingsManager.isFieldInherited(scope === "project" ? "project" : "global", options.settingsField)
91
+ const configurationOrigin = options?.settingsField &&
92
+ context.settingsManager.isFieldInherited(scope === "project" ? "project" : "global", options.settingsField)
91
93
  ? "inherited-pi"
92
- : options?.settingsField ? "atomic" : undefined;
94
+ : options?.settingsField
95
+ ? "atomic"
96
+ : undefined;
93
97
  const metadata = { source: sourceStr, scope, origin: "package", configurationOrigin };
94
98
  if (parsed.type === "local") {
95
99
  for (const [baseIndex, baseDir] of getBaseDirsForScope(context, resolvedScope).entries()) {
96
- const resolvesFromSettingsBase = options?.settingsField !== undefined
97
- && !isAbsolute(parsed.path)
98
- && !parsed.path.startsWith("~");
100
+ const resolvesFromSettingsBase = options?.settingsField !== undefined && !isAbsolute(parsed.path) && !parsed.path.startsWith("~");
99
101
  const localMetadata = {
100
102
  ...metadata,
101
103
  baseDir,
102
104
  configurationOrigin: resolvesFromSettingsBase
103
- ? baseIndex === 0 || configurationOrigin === "atomic" ? "atomic" : "inherited-pi"
105
+ ? baseIndex === 0 || configurationOrigin === "atomic"
106
+ ? "atomic"
107
+ : "inherited-pi"
104
108
  : configurationOrigin,
105
109
  };
106
110
  await resolveLocalExtensionSource(parsed, accumulator, filter, localMetadata, baseDir, {
@@ -148,7 +152,7 @@ async function resolvePackageSources(context, sources, accumulator, onMissing, o
148
152
  await collectPackageResources(installedPath, accumulator, filter, metadata);
149
153
  continue;
150
154
  }
151
- let installedPath = getExistingGitInstallPath(context, parsed, resolvedScope) ?? getGitInstallPath(context, parsed, resolvedScope);
155
+ const installedPath = getExistingGitInstallPath(context, parsed, resolvedScope) ?? getGitInstallPath(context, parsed, resolvedScope);
152
156
  if (!(await exists(installedPath))) {
153
157
  const installed = await installMissing();
154
158
  if (!installed)
@@ -168,8 +172,7 @@ function findAutoloadDeltaBase(context, pkg, scope, sources) {
168
172
  if (scope !== "project" || typeof pkg !== "object" || pkg.autoload !== false)
169
173
  return undefined;
170
174
  const identity = getPackageIdentity(context, pkg.source, scope);
171
- const userEntry = sources.find((entry) => entry.scope === "user"
172
- && getPackageIdentity(context, getPackageSourceString(entry.pkg), "user") === identity);
175
+ const userEntry = sources.find((entry) => entry.scope === "user" && getPackageIdentity(context, getPackageSourceString(entry.pkg), "user") === identity);
173
176
  return userEntry ? { source: getPackageSourceString(userEntry.pkg), scope: "user" } : undefined;
174
177
  }
175
178
  async function resolveLocalExtensionSource(source, accumulator, filter, metadata, baseDir, options) {
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-resolver.js","sourceRoot":"","sources":["../../src/core/package-manager-resolver.ts"],"names":[],"mappings":"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","sourcesContent":["import { access, stat } from \"node:fs/promises\";\nimport { dirname, isAbsolute, join } from \"node:path\";\nimport { CONFIG_DIR_NAME } from \"../config.ts\";\nimport { getGitInstallPath } from \"./package-manager-paths.ts\";\nimport { addAutoDiscoveredResources, collectProjectLocalResources } from \"./package-manager-auto-resources.ts\";\nimport { getExistingGitInstallPath, refreshTemporaryGitSource } from \"./package-manager-git.ts\";\nimport { isOfflineModeEnabled } from \"./package-manager-env.ts\";\nimport { getExistingNpmInstallPath, installedNpmMatchesConfiguredVersion } from \"./package-manager-npm.ts\";\nimport { getBaseDirsForScope, resolvePathFromBase } from \"./package-manager-paths.ts\";\nimport { createAccumulator, addResource, getTargetMap, toResolvedPaths } from \"./package-manager-resource-accumulator.ts\";\nimport { collectPackageResources, resolveLocalEntries } from \"./package-manager-resource-collector.ts\";\nimport { resolveExtensionEntries } from \"./package-manager-resource-files.ts\";\nimport { dedupePackages, getPackageIdentity, getPackageSourceString, parseSource } from \"./package-manager-source.ts\";\nimport { splitPatterns } from \"./package-manager-resource-patterns.ts\";\nimport { installParsedSource } from \"./package-manager-operations.ts\";\nimport type {\n\tMissingSourceAction,\n\tPackageFilter,\n\tPackageManagerContext,\n\tPathMetadata,\n\tResolvedPaths,\n\tResolveExtensionSourcesOptions,\n\tResourceAccumulator,\n\tSourceScope,\n} from \"./package-manager-types.ts\";\nimport type { PackageSource } from \"./settings-manager.ts\";\n\nasync function exists(path: string): Promise<boolean> {\n\ttry { await access(path); return true; } catch { return false; }\n}\n\n\nexport async function resolvePackages(\n\tcontext: PackageManagerContext,\n\tonMissing?: (source: string) => Promise<MissingSourceAction>,\n): Promise<ResolvedPaths> {\n\tconst accumulator = createAccumulator();\n\tconst globalSettings = context.settingsManager.getGlobalSettings();\n\tconst projectSettings = context.settingsManager.getProjectSettings();\n\tconst allPackages: Array<{ pkg: PackageSource; scope: SourceScope }> = [];\n\n\tfor (const pkg of projectSettings.packages ?? []) {\n\t\tallPackages.push({ pkg, scope: \"project\" });\n\t}\n\tfor (const pkg of globalSettings.packages ?? []) {\n\t\tallPackages.push({ pkg, scope: \"user\" });\n\t}\n\n\tconst packageSources = dedupePackages(context, allPackages);\n\tawait resolvePackageSources(context, packageSources, accumulator, onMissing, { settingsField: \"packages\" });\n\n\tconst globalBaseDir = context.agentDir;\n\tconst projectBaseDir = join(context.cwd, CONFIG_DIR_NAME);\n\tconst globalBaseDirs = getBaseDirsForScope(context, \"user\");\n\tconst projectBaseDirs = getBaseDirsForScope(context, \"project\");\n\n\tfor (const resourceType of [\"extensions\", \"skills\", \"prompts\", \"themes\", \"workflows\"] as const) {\n\t\tconst target = getTargetMap(accumulator, resourceType);\n\t\tconst globalEntries = (globalSettings[resourceType] ?? []) as string[];\n\t\tconst projectEntries = (projectSettings[resourceType] ?? []) as string[];\n\t\tconst projectOrigin = context.settingsManager.isFieldInherited(\"project\", resourceType) ? \"inherited-pi\" : \"atomic\";\n\t\tconst globalOrigin = context.settingsManager.isFieldInherited(\"global\", resourceType) ? \"inherited-pi\" : \"atomic\";\n\t\tawait resolveConfiguredLocalEntries(projectEntries, resourceType, target, \"project\", projectBaseDirs, projectOrigin);\n\t\tawait resolveConfiguredLocalEntries(globalEntries, resourceType, target, \"user\", globalBaseDirs, globalOrigin);\n\t}\n\n\tawait addAutoDiscoveredResources(context, accumulator, globalSettings, projectSettings, globalBaseDir, projectBaseDir);\n\treturn toResolvedPaths(accumulator);\n}\n\nasync function resolveConfiguredLocalEntries(\n\tentries: string[],\n\tresourceType: \"extensions\" | \"skills\" | \"prompts\" | \"themes\" | \"workflows\",\n\ttarget: ReturnType<typeof getTargetMap>,\n\tscope: \"project\" | \"user\",\n\tbaseDirs: string[],\n\tfieldOrigin: \"atomic\" | \"inherited-pi\",\n): Promise<void> {\n\tconst { plain, patterns } = splitPatterns(entries);\n\tconst relativeEntries = plain.filter((entry) => !isAbsolute(entry) && !entry.startsWith(\"~\"));\n\tconst fixedEntries = plain.filter((entry) => isAbsolute(entry) || entry.startsWith(\"~\"));\n\tfor (const [baseIndex, baseDir] of baseDirs.entries()) {\n\t\tconst metadata: PathMetadata = {\n\t\t\tsource: \"local\",\n\t\t\tscope,\n\t\t\torigin: \"top-level\",\n\t\t\tbaseDir,\n\t\t\tconfigurationOrigin: baseIndex === 0 || fieldOrigin === \"atomic\" ? \"atomic\" : \"inherited-pi\",\n\t\t};\n\t\tawait resolveLocalEntries([...relativeEntries, ...patterns], resourceType, target, metadata, baseDir);\n\t\tawait resolveLocalEntries([...fixedEntries, ...patterns], resourceType, target, {\n\t\t\t...metadata,\n\t\t\tconfigurationOrigin: fieldOrigin,\n\t\t}, baseDir);\n\t}\n}\n\nexport async function resolveExtensionSources(\n\tcontext: PackageManagerContext,\n\tsources: PackageSource[],\n\toptions?: ResolveExtensionSourcesOptions,\n): Promise<ResolvedPaths> {\n\tconst accumulator = createAccumulator();\n\tconst scope: SourceScope = options?.temporary ? \"temporary\" : options?.local ? \"project\" : \"user\";\n\tconst packageSources = sources.map((source) => ({ pkg: source, scope }));\n\tawait resolvePackageSources(context, packageSources, accumulator, undefined, {\n\t\tincludeProjectLocalResources: options?.includeProjectLocalResources === true,\n\t});\n\treturn toResolvedPaths(accumulator);\n}\n\nasync function resolvePackageSources(\n\tcontext: PackageManagerContext,\n\tsources: Array<{ pkg: PackageSource; scope: SourceScope }>,\n\taccumulator: ResourceAccumulator,\n\tonMissing?: (source: string) => Promise<MissingSourceAction>,\n\toptions?: { includeProjectLocalResources?: boolean; settingsField?: \"packages\" },\n): Promise<void> {\n\tfor (const { pkg, scope } of sources) {\n\t\tconst sourceStr = getPackageSourceString(pkg);\n\t\tconst filter = typeof pkg === \"object\" ? pkg : undefined;\n\t\tconst deltaBase = findAutoloadDeltaBase(context, pkg, scope, sources);\n\t\tconst resolvedSource = deltaBase?.source ?? sourceStr;\n\t\tconst resolvedScope = deltaBase?.scope ?? scope;\n\t\tconst parsed = parseSource(resolvedSource);\n\t\tconst configurationOrigin = options?.settingsField && context.settingsManager.isFieldInherited(scope === \"project\" ? \"project\" : \"global\", options.settingsField)\n\t\t\t? \"inherited-pi\"\n\t\t\t: options?.settingsField ? \"atomic\" : undefined;\n\t\tconst metadata: PathMetadata = { source: sourceStr, scope, origin: \"package\", configurationOrigin };\n\n\t\tif (parsed.type === \"local\") {\n\t\t\tfor (const [baseIndex, baseDir] of getBaseDirsForScope(context, resolvedScope).entries()) {\n\t\t\t\tconst resolvesFromSettingsBase = options?.settingsField !== undefined\n\t\t\t\t\t&& !isAbsolute(parsed.path)\n\t\t\t\t\t&& !parsed.path.startsWith(\"~\");\n\t\t\t\tconst localMetadata: PathMetadata = {\n\t\t\t\t\t...metadata,\n\t\t\t\t\tbaseDir,\n\t\t\t\t\tconfigurationOrigin: resolvesFromSettingsBase\n\t\t\t\t\t\t? baseIndex === 0 || configurationOrigin === \"atomic\" ? \"atomic\" : \"inherited-pi\"\n\t\t\t\t\t\t: configurationOrigin,\n\t\t\t\t};\n\t\t\t\tawait resolveLocalExtensionSource(parsed, accumulator, filter, localMetadata, baseDir, {\n\t\t\t\t\tincludeProjectLocalResources: options?.includeProjectLocalResources === true,\n\t\t\t\t});\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst installMissing = async (): Promise<boolean> => {\n\t\t\tif (isOfflineModeEnabled()) return false;\n\t\t\tif (!onMissing) {\n\t\t\t\tif (context.driver) await context.driver.installParsedSource(parsed, resolvedScope);\n\t\t\t\telse await installParsedSource(context, parsed, resolvedScope);\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tconst action = await onMissing(sourceStr);\n\t\t\tif (action === \"skip\") return false;\n\t\t\tif (action === \"error\") throw new Error(`Missing source: ${sourceStr}`);\n\t\t\tif (context.driver) await context.driver.installParsedSource(parsed, resolvedScope);\n\t\t\telse await installParsedSource(context, parsed, resolvedScope);\n\t\t\treturn true;\n\t\t};\n\n\t\tif (parsed.type === \"npm\") {\n\t\t\tlet installedPath = getExistingNpmInstallPath(context, parsed, resolvedScope);\n\t\t\tconst needsInstall =\n\t\t\t\t!installedPath || !(await installedNpmMatchesConfiguredVersion(context, parsed, installedPath));\n\t\t\tif (needsInstall) {\n\t\t\t\tconst installed = await installMissing();\n\t\t\t\tif (!installed) continue;\n\t\t\t\tinstalledPath = getExistingNpmInstallPath(context, parsed, resolvedScope);\n\t\t\t\tif (!installedPath || !(await installedNpmMatchesConfiguredVersion(context, parsed, installedPath))) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!installedPath) continue;\n\t\t\tmetadata.baseDir = installedPath;\n\t\t\tawait collectPackageResources(installedPath, accumulator, filter, metadata);\n\t\t\tcontinue;\n\t\t}\n\n\t\tlet installedPath = getExistingGitInstallPath(context, parsed, resolvedScope) ?? getGitInstallPath(context, parsed, resolvedScope);\n\t\tif (!(await exists(installedPath))) {\n\t\t\tconst installed = await installMissing();\n\t\t\tif (!installed) continue;\n\t\t} else if (resolvedScope === \"temporary\" && !parsed.pinned && !isOfflineModeEnabled()) {\n\t\t\tif (context.driver) await context.driver.refreshTemporaryGitSource(parsed, sourceStr);\n\t\t\telse await refreshTemporaryGitSource(context, parsed, sourceStr);\n\t\t}\n\t\tmetadata.baseDir = installedPath;\n\t\tawait collectPackageResources(installedPath, accumulator, filter, metadata);\n\t}\n}\n\nfunction findAutoloadDeltaBase(\n\tcontext: PackageManagerContext,\n\tpkg: PackageSource,\n\tscope: SourceScope,\n\tsources: Array<{ pkg: PackageSource; scope: SourceScope }>,\n): { source: string; scope: SourceScope } | undefined {\n\tif (scope !== \"project\" || typeof pkg !== \"object\" || pkg.autoload !== false) return undefined;\n\tconst identity = getPackageIdentity(context, pkg.source, scope);\n\tconst userEntry = sources.find((entry) => entry.scope === \"user\"\n\t\t&& getPackageIdentity(context, getPackageSourceString(entry.pkg), \"user\") === identity);\n\treturn userEntry ? { source: getPackageSourceString(userEntry.pkg), scope: \"user\" } : undefined;\n}\n\nasync function resolveLocalExtensionSource(\n\tsource: { type: \"local\"; path: string },\n\taccumulator: ResourceAccumulator,\n\tfilter: PackageFilter | undefined,\n\tmetadata: PathMetadata,\n\tbaseDir: string,\n\toptions?: { includeProjectLocalResources?: boolean },\n): Promise<void> {\n\tconst resolved = resolvePathFromBase(source.path, baseDir);\n\tif (!(await exists(resolved))) return;\n\n\ttry {\n\t\tconst stats = await stat(resolved);\n\t\tif (stats.isFile()) {\n\t\t\taddResource(accumulator.extensions, resolved, { ...metadata, baseDir: dirname(resolved) }, true);\n\t\t\treturn;\n\t\t}\n\t\tif (stats.isDirectory()) {\n\t\t\tconst packageMetadata: PathMetadata = { ...metadata, baseDir: resolved };\n\t\t\tconst packageResources = await collectPackageResources(resolved, accumulator, filter, packageMetadata);\n\t\t\tconst projectLocalResources = options?.includeProjectLocalResources\n\t\t\t\t? await collectProjectLocalResources(resolved, accumulator, filter, packageMetadata)\n\t\t\t\t: false;\n\t\t\tconst extensionEntries = await resolveExtensionEntries(resolved);\n\t\t\tconst shouldAddDirectoryFallback =\n\t\t\t\textensionEntries !== null || (options?.includeProjectLocalResources === true && !projectLocalResources);\n\t\t\tif (!packageResources && shouldAddDirectoryFallback) {\n\t\t\t\taddResource(accumulator.extensions, resolved, packageMetadata, true);\n\t\t\t}\n\t\t}\n\t} catch {}\n}\n"]}
1
+ {"version":3,"file":"package-manager-resolver.js","sourceRoot":"","sources":["../../src/core/package-manager-resolver.ts"],"names":[],"mappings":"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","sourcesContent":["import { access, stat } from \"node:fs/promises\";\nimport { dirname, isAbsolute, join } from \"node:path\";\nimport { CONFIG_DIR_NAME } from \"../config.ts\";\nimport { addAutoDiscoveredResources, collectProjectLocalResources } from \"./package-manager-auto-resources.ts\";\nimport { isOfflineModeEnabled } from \"./package-manager-env.ts\";\nimport { getExistingGitInstallPath, refreshTemporaryGitSource } from \"./package-manager-git.ts\";\nimport { getExistingNpmInstallPath, installedNpmMatchesConfiguredVersion } from \"./package-manager-npm.ts\";\nimport { installParsedSource } from \"./package-manager-operations.ts\";\nimport { getBaseDirsForScope, getGitInstallPath, resolvePathFromBase } from \"./package-manager-paths.ts\";\nimport {\n\taddResource,\n\tcreateAccumulator,\n\tgetTargetMap,\n\ttoResolvedPaths,\n} from \"./package-manager-resource-accumulator.ts\";\nimport { collectPackageResources, resolveLocalEntries } from \"./package-manager-resource-collector.ts\";\nimport { resolveExtensionEntries } from \"./package-manager-resource-files.ts\";\nimport { splitPatterns } from \"./package-manager-resource-patterns.ts\";\nimport { dedupePackages, getPackageIdentity, getPackageSourceString, parseSource } from \"./package-manager-source.ts\";\nimport type {\n\tMissingSourceAction,\n\tPackageFilter,\n\tPackageManagerContext,\n\tPathMetadata,\n\tResolvedPaths,\n\tResolveExtensionSourcesOptions,\n\tResourceAccumulator,\n\tSourceScope,\n} from \"./package-manager-types.ts\";\nimport type { PackageSource } from \"./settings-manager.ts\";\n\nasync function exists(path: string): Promise<boolean> {\n\ttry {\n\t\tawait access(path);\n\t\treturn true;\n\t} catch {\n\t\treturn false;\n\t}\n}\n\nexport async function resolvePackages(\n\tcontext: PackageManagerContext,\n\tonMissing?: (source: string) => Promise<MissingSourceAction>,\n): Promise<ResolvedPaths> {\n\tconst accumulator = createAccumulator();\n\tconst globalSettings = context.settingsManager.getGlobalSettings();\n\tconst projectSettings = context.settingsManager.getProjectSettings();\n\tconst allPackages: Array<{ pkg: PackageSource; scope: SourceScope }> = [];\n\n\tfor (const pkg of projectSettings.packages ?? []) {\n\t\tallPackages.push({ pkg, scope: \"project\" });\n\t}\n\tfor (const pkg of globalSettings.packages ?? []) {\n\t\tallPackages.push({ pkg, scope: \"user\" });\n\t}\n\n\tconst packageSources = dedupePackages(context, allPackages);\n\tawait resolvePackageSources(context, packageSources, accumulator, onMissing, { settingsField: \"packages\" });\n\n\tconst globalBaseDir = context.agentDir;\n\tconst projectBaseDir = join(context.cwd, CONFIG_DIR_NAME);\n\tconst globalBaseDirs = getBaseDirsForScope(context, \"user\");\n\tconst projectBaseDirs = getBaseDirsForScope(context, \"project\");\n\n\tfor (const resourceType of [\"extensions\", \"skills\", \"prompts\", \"themes\", \"workflows\"] as const) {\n\t\tconst target = getTargetMap(accumulator, resourceType);\n\t\tconst globalEntries = (globalSettings[resourceType] ?? []) as string[];\n\t\tconst projectEntries = (projectSettings[resourceType] ?? []) as string[];\n\t\tconst projectOrigin = context.settingsManager.isFieldInherited(\"project\", resourceType)\n\t\t\t? \"inherited-pi\"\n\t\t\t: \"atomic\";\n\t\tconst globalOrigin = context.settingsManager.isFieldInherited(\"global\", resourceType) ? \"inherited-pi\" : \"atomic\";\n\t\tawait resolveConfiguredLocalEntries(\n\t\t\tprojectEntries,\n\t\t\tresourceType,\n\t\t\ttarget,\n\t\t\t\"project\",\n\t\t\tprojectBaseDirs,\n\t\t\tprojectOrigin,\n\t\t);\n\t\tawait resolveConfiguredLocalEntries(globalEntries, resourceType, target, \"user\", globalBaseDirs, globalOrigin);\n\t}\n\n\tawait addAutoDiscoveredResources(\n\t\tcontext,\n\t\taccumulator,\n\t\tglobalSettings,\n\t\tprojectSettings,\n\t\tglobalBaseDir,\n\t\tprojectBaseDir,\n\t);\n\treturn toResolvedPaths(accumulator);\n}\n\nasync function resolveConfiguredLocalEntries(\n\tentries: string[],\n\tresourceType: \"extensions\" | \"skills\" | \"prompts\" | \"themes\" | \"workflows\",\n\ttarget: ReturnType<typeof getTargetMap>,\n\tscope: \"project\" | \"user\",\n\tbaseDirs: string[],\n\tfieldOrigin: \"atomic\" | \"inherited-pi\",\n): Promise<void> {\n\tconst { plain, patterns } = splitPatterns(entries);\n\tconst relativeEntries = plain.filter((entry) => !isAbsolute(entry) && !entry.startsWith(\"~\"));\n\tconst fixedEntries = plain.filter((entry) => isAbsolute(entry) || entry.startsWith(\"~\"));\n\tfor (const [baseIndex, baseDir] of baseDirs.entries()) {\n\t\tconst metadata: PathMetadata = {\n\t\t\tsource: \"local\",\n\t\t\tscope,\n\t\t\torigin: \"top-level\",\n\t\t\tbaseDir,\n\t\t\tconfigurationOrigin: baseIndex === 0 || fieldOrigin === \"atomic\" ? \"atomic\" : \"inherited-pi\",\n\t\t};\n\t\tawait resolveLocalEntries([...relativeEntries, ...patterns], resourceType, target, metadata, baseDir);\n\t\tawait resolveLocalEntries(\n\t\t\t[...fixedEntries, ...patterns],\n\t\t\tresourceType,\n\t\t\ttarget,\n\t\t\t{\n\t\t\t\t...metadata,\n\t\t\t\tconfigurationOrigin: fieldOrigin,\n\t\t\t},\n\t\t\tbaseDir,\n\t\t);\n\t}\n}\n\nexport async function resolveExtensionSources(\n\tcontext: PackageManagerContext,\n\tsources: PackageSource[],\n\toptions?: ResolveExtensionSourcesOptions,\n): Promise<ResolvedPaths> {\n\tconst accumulator = createAccumulator();\n\tconst scope: SourceScope = options?.temporary ? \"temporary\" : options?.local ? \"project\" : \"user\";\n\tconst packageSources = sources.map((source) => ({ pkg: source, scope }));\n\tawait resolvePackageSources(context, packageSources, accumulator, undefined, {\n\t\tincludeProjectLocalResources: options?.includeProjectLocalResources === true,\n\t});\n\treturn toResolvedPaths(accumulator);\n}\n\nasync function resolvePackageSources(\n\tcontext: PackageManagerContext,\n\tsources: Array<{ pkg: PackageSource; scope: SourceScope }>,\n\taccumulator: ResourceAccumulator,\n\tonMissing?: (source: string) => Promise<MissingSourceAction>,\n\toptions?: { includeProjectLocalResources?: boolean; settingsField?: \"packages\" },\n): Promise<void> {\n\tfor (const { pkg, scope } of sources) {\n\t\tconst sourceStr = getPackageSourceString(pkg);\n\t\tconst filter = typeof pkg === \"object\" ? pkg : undefined;\n\t\tconst deltaBase = findAutoloadDeltaBase(context, pkg, scope, sources);\n\t\tconst resolvedSource = deltaBase?.source ?? sourceStr;\n\t\tconst resolvedScope = deltaBase?.scope ?? scope;\n\t\tconst parsed = parseSource(resolvedSource);\n\t\tconst configurationOrigin =\n\t\t\toptions?.settingsField &&\n\t\t\tcontext.settingsManager.isFieldInherited(scope === \"project\" ? \"project\" : \"global\", options.settingsField)\n\t\t\t\t? \"inherited-pi\"\n\t\t\t\t: options?.settingsField\n\t\t\t\t\t? \"atomic\"\n\t\t\t\t\t: undefined;\n\t\tconst metadata: PathMetadata = { source: sourceStr, scope, origin: \"package\", configurationOrigin };\n\n\t\tif (parsed.type === \"local\") {\n\t\t\tfor (const [baseIndex, baseDir] of getBaseDirsForScope(context, resolvedScope).entries()) {\n\t\t\t\tconst resolvesFromSettingsBase =\n\t\t\t\t\toptions?.settingsField !== undefined && !isAbsolute(parsed.path) && !parsed.path.startsWith(\"~\");\n\t\t\t\tconst localMetadata: PathMetadata = {\n\t\t\t\t\t...metadata,\n\t\t\t\t\tbaseDir,\n\t\t\t\t\tconfigurationOrigin: resolvesFromSettingsBase\n\t\t\t\t\t\t? baseIndex === 0 || configurationOrigin === \"atomic\"\n\t\t\t\t\t\t\t? \"atomic\"\n\t\t\t\t\t\t\t: \"inherited-pi\"\n\t\t\t\t\t\t: configurationOrigin,\n\t\t\t\t};\n\t\t\t\tawait resolveLocalExtensionSource(parsed, accumulator, filter, localMetadata, baseDir, {\n\t\t\t\t\tincludeProjectLocalResources: options?.includeProjectLocalResources === true,\n\t\t\t\t});\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst installMissing = async (): Promise<boolean> => {\n\t\t\tif (isOfflineModeEnabled()) return false;\n\t\t\tif (!onMissing) {\n\t\t\t\tif (context.driver) await context.driver.installParsedSource(parsed, resolvedScope);\n\t\t\t\telse await installParsedSource(context, parsed, resolvedScope);\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tconst action = await onMissing(sourceStr);\n\t\t\tif (action === \"skip\") return false;\n\t\t\tif (action === \"error\") throw new Error(`Missing source: ${sourceStr}`);\n\t\t\tif (context.driver) await context.driver.installParsedSource(parsed, resolvedScope);\n\t\t\telse await installParsedSource(context, parsed, resolvedScope);\n\t\t\treturn true;\n\t\t};\n\n\t\tif (parsed.type === \"npm\") {\n\t\t\tlet installedPath = getExistingNpmInstallPath(context, parsed, resolvedScope);\n\t\t\tconst needsInstall =\n\t\t\t\t!installedPath || !(await installedNpmMatchesConfiguredVersion(context, parsed, installedPath));\n\t\t\tif (needsInstall) {\n\t\t\t\tconst installed = await installMissing();\n\t\t\t\tif (!installed) continue;\n\t\t\t\tinstalledPath = getExistingNpmInstallPath(context, parsed, resolvedScope);\n\t\t\t\tif (!installedPath || !(await installedNpmMatchesConfiguredVersion(context, parsed, installedPath))) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\tif (!installedPath) continue;\n\t\t\tmetadata.baseDir = installedPath;\n\t\t\tawait collectPackageResources(installedPath, accumulator, filter, metadata);\n\t\t\tcontinue;\n\t\t}\n\n\t\tconst installedPath =\n\t\t\tgetExistingGitInstallPath(context, parsed, resolvedScope) ?? getGitInstallPath(context, parsed, resolvedScope);\n\t\tif (!(await exists(installedPath))) {\n\t\t\tconst installed = await installMissing();\n\t\t\tif (!installed) continue;\n\t\t} else if (resolvedScope === \"temporary\" && !parsed.pinned && !isOfflineModeEnabled()) {\n\t\t\tif (context.driver) await context.driver.refreshTemporaryGitSource(parsed, sourceStr);\n\t\t\telse await refreshTemporaryGitSource(context, parsed, sourceStr);\n\t\t}\n\t\tmetadata.baseDir = installedPath;\n\t\tawait collectPackageResources(installedPath, accumulator, filter, metadata);\n\t}\n}\n\nfunction findAutoloadDeltaBase(\n\tcontext: PackageManagerContext,\n\tpkg: PackageSource,\n\tscope: SourceScope,\n\tsources: Array<{ pkg: PackageSource; scope: SourceScope }>,\n): { source: string; scope: SourceScope } | undefined {\n\tif (scope !== \"project\" || typeof pkg !== \"object\" || pkg.autoload !== false) return undefined;\n\tconst identity = getPackageIdentity(context, pkg.source, scope);\n\tconst userEntry = sources.find(\n\t\t(entry) =>\n\t\t\tentry.scope === \"user\" && getPackageIdentity(context, getPackageSourceString(entry.pkg), \"user\") === identity,\n\t);\n\treturn userEntry ? { source: getPackageSourceString(userEntry.pkg), scope: \"user\" } : undefined;\n}\n\nasync function resolveLocalExtensionSource(\n\tsource: { type: \"local\"; path: string },\n\taccumulator: ResourceAccumulator,\n\tfilter: PackageFilter | undefined,\n\tmetadata: PathMetadata,\n\tbaseDir: string,\n\toptions?: { includeProjectLocalResources?: boolean },\n): Promise<void> {\n\tconst resolved = resolvePathFromBase(source.path, baseDir);\n\tif (!(await exists(resolved))) return;\n\n\ttry {\n\t\tconst stats = await stat(resolved);\n\t\tif (stats.isFile()) {\n\t\t\taddResource(accumulator.extensions, resolved, { ...metadata, baseDir: dirname(resolved) }, true);\n\t\t\treturn;\n\t\t}\n\t\tif (stats.isDirectory()) {\n\t\t\tconst packageMetadata: PathMetadata = { ...metadata, baseDir: resolved };\n\t\t\tconst packageResources = await collectPackageResources(resolved, accumulator, filter, packageMetadata);\n\t\t\tconst projectLocalResources = options?.includeProjectLocalResources\n\t\t\t\t? await collectProjectLocalResources(resolved, accumulator, filter, packageMetadata)\n\t\t\t\t: false;\n\t\t\tconst extensionEntries = await resolveExtensionEntries(resolved);\n\t\t\tconst shouldAddDirectoryFallback =\n\t\t\t\textensionEntries !== null || (options?.includeProjectLocalResources === true && !projectLocalResources);\n\t\t\tif (!packageResources && shouldAddDirectoryFallback) {\n\t\t\t\taddResource(accumulator.extensions, resolved, packageMetadata, true);\n\t\t\t}\n\t\t}\n\t} catch {}\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-resource-collector.d.ts","sourceRoot":"","sources":["../../src/core/package-manager-resource-collector.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,aAAa,EAAE,YAAY,EAAE,mBAAmB,EAAE,WAAW,EAAE,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAe9H,wBAAsB,uBAAuB,CAC5C,WAAW,EAAE,MAAM,EACnB,WAAW,EAAE,mBAAmB,EAChC,MAAM,EAAE,aAAa,GAAG,SAAS,EACjC,QAAQ,EAAE,YAAY,GACpB,OAAO,CAAC,OAAO,CAAC,CAmClB;AA0DD,wBAAsB,mBAAmB,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAOpK;AAED,wBAAsB,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAW1G"}
1
+ {"version":3,"file":"package-manager-resource-collector.d.ts","sourceRoot":"","sources":["../../src/core/package-manager-resource-collector.ts"],"names":[],"mappings":"AAkBA,OAAO,KAAK,EACX,aAAa,EACb,YAAY,EACZ,mBAAmB,EACnB,WAAW,EACX,YAAY,EACZ,MAAM,4BAA4B,CAAC;AAoBpC,wBAAsB,uBAAuB,CAC5C,WAAW,EAAE,MAAM,EACnB,WAAW,EAAE,mBAAmB,EAChC,MAAM,EAAE,aAAa,GAAG,SAAS,EACjC,QAAQ,EAAE,YAAY,GACpB,OAAO,CAAC,OAAO,CAAC,CA4ClB;AAwFD,wBAAsB,mBAAmB,CACxC,OAAO,EAAE,MAAM,EAAE,EACjB,YAAY,EAAE,YAAY,EAC1B,MAAM,EAAE,WAAW,EACnB,QAAQ,EAAE,YAAY,EACtB,OAAO,EAAE,MAAM,GACb,OAAO,CAAC,IAAI,CAAC,CAOf;AAED,wBAAsB,qBAAqB,CAAC,KAAK,EAAE,MAAM,EAAE,EAAE,YAAY,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAW1G"}
@@ -1,11 +1,11 @@
1
1
  import { access, readFile, stat } from "node:fs/promises";
2
- import { glob } from "glob";
3
2
  import { resolve } from "node:path";
3
+ import { glob } from "glob";
4
+ import { conventionDirsForResource, getManifestFromPackageJson, manifestEntriesForResource, } from "./package-manager-manifest.js";
5
+ import { resolvePathFromBase } from "./package-manager-paths.js";
4
6
  import { addResource, getTargetMap } from "./package-manager-resource-accumulator.js";
5
7
  import { collectResourceFiles } from "./package-manager-resource-files.js";
6
- import { conventionDirsForResource, getManifestFromPackageJson, manifestEntriesForResource } from "./package-manager-manifest.js";
7
- import { applyAutoloadDisabledPatterns, applyPatterns, hasGlobPattern, isOverridePattern, splitPatterns } from "./package-manager-resource-patterns.js";
8
- import { resolvePathFromBase } from "./package-manager-paths.js";
8
+ import { applyAutoloadDisabledPatterns, applyPatterns, hasGlobPattern, isOverridePattern, splitPatterns, } from "./package-manager-resource-patterns.js";
9
9
  async function exists(path) {
10
10
  try {
11
11
  await access(path);
@@ -104,7 +104,7 @@ async function collectManifestFiles(packageRoot, resourceType) {
104
104
  const allFiles = [];
105
105
  for (const dir of conventionDirsForResource(packageRoot, resourceType)) {
106
106
  if (await exists(dir))
107
- allFiles.push(...await collectResourceFiles(dir, resourceType));
107
+ allFiles.push(...(await collectResourceFiles(dir, resourceType)));
108
108
  }
109
109
  return { allFiles, enabledByManifest: new Set(allFiles) };
110
110
  }
@@ -148,7 +148,7 @@ export async function collectFilesFromPaths(paths, resourceType) {
148
148
  if (stats.isFile())
149
149
  files.push(p);
150
150
  else if (stats.isDirectory())
151
- files.push(...await collectResourceFiles(p, resourceType));
151
+ files.push(...(await collectResourceFiles(p, resourceType)));
152
152
  }
153
153
  catch { }
154
154
  }
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-resource-collector.js","sourceRoot":"","sources":["../../src/core/package-manager-resource-collector.ts"],"names":[],"mappings":"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","sourcesContent":["import { access, readFile, stat } from \"node:fs/promises\";\nimport { glob } from \"glob\";\nimport { resolve } from \"node:path\";\nimport { addResource, getTargetMap } from \"./package-manager-resource-accumulator.ts\";\nimport { collectResourceFiles } from \"./package-manager-resource-files.ts\";\nimport { conventionDirsForResource, getManifestFromPackageJson, manifestEntriesForResource } from \"./package-manager-manifest.ts\";\nimport { applyAutoloadDisabledPatterns, applyPatterns, hasGlobPattern, isOverridePattern, splitPatterns } from \"./package-manager-resource-patterns.ts\";\nimport { resolvePathFromBase } from \"./package-manager-paths.ts\";\nimport type { PackageFilter, PathMetadata, ResourceAccumulator, ResourceMap, ResourceType } from \"./package-manager-types.ts\";\n\nasync function exists(path: string): Promise<boolean> {\n\ttry { await access(path); return true; } catch { return false; }\n}\n\nasync function readPiManifest(packageRoot: string): Promise<ReturnType<typeof getManifestFromPackageJson> | null> {\n\ttry {\n\t\tconst content = await readFile(resolve(packageRoot, \"package.json\"), \"utf-8\");\n\t\treturn getManifestFromPackageJson(JSON.parse(content) as Record<string, unknown>);\n\t} catch {\n\t\treturn null;\n\t}\n}\n\nexport async function collectPackageResources(\n\tpackageRoot: string,\n\taccumulator: ResourceAccumulator,\n\tfilter: PackageFilter | undefined,\n\tmetadata: PathMetadata,\n): Promise<boolean> {\n\tif (filter) {\n\t\tfor (const resourceType of [\"extensions\", \"skills\", \"prompts\", \"themes\", \"workflows\"] as const) {\n\t\t\tconst patterns = filter[resourceType];\n\t\t\tconst target = getTargetMap(accumulator, resourceType);\n\t\t\tif (filter.autoload === false) {\n\t\t\t\tconst { allFiles } = await collectManifestFiles(packageRoot, resourceType);\n\t\t\t\tconst selected = applyAutoloadDisabledPatterns(allFiles, patterns ?? [], packageRoot);\n\t\t\t\tfor (const [filePath, enabled] of selected) addResource(target, filePath, metadata, enabled);\n\t\t\t} else if (patterns !== undefined) await applyPackageFilter(packageRoot, patterns, resourceType, target, metadata);\n\t\t\telse await collectDefaultResources(packageRoot, resourceType, target, metadata);\n\t\t}\n\t\treturn true;\n\t}\n\tconst manifest = await readPiManifest(packageRoot);\n\tif (manifest) {\n\t\tfor (const resourceType of [\"extensions\", \"skills\", \"prompts\", \"themes\", \"workflows\"] as const) {\n\t\t\tconst entries = manifestEntriesForResource(manifest, resourceType);\n\t\t\tif (entries !== undefined) {\n\t\t\t\tawait addManifestEntries(entries, packageRoot, resourceType, getTargetMap(accumulator, resourceType), metadata);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (resourceType === \"workflows\") await collectDefaultResources(packageRoot, resourceType, getTargetMap(accumulator, resourceType), metadata);\n\t\t}\n\t\treturn true;\n\t}\n\tlet hasAnyDir = false;\n\tfor (const resourceType of [\"extensions\", \"skills\", \"prompts\", \"themes\", \"workflows\"] as const) {\n\t\tfor (const dir of conventionDirsForResource(packageRoot, resourceType)) {\n\t\t\tif (!(await exists(dir))) continue;\n\t\t\tfor (const f of await collectResourceFiles(dir, resourceType)) addResource(getTargetMap(accumulator, resourceType), f, metadata, true);\n\t\t\thasAnyDir = true;\n\t\t}\n\t}\n\treturn hasAnyDir;\n}\n\nasync function collectDefaultResources(packageRoot: string, resourceType: ResourceType, target: ResourceMap, metadata: PathMetadata): Promise<void> {\n\tconst manifest = await readPiManifest(packageRoot);\n\tconst entries = manifestEntriesForResource(manifest, resourceType);\n\tif (entries !== undefined) {\n\t\tawait addManifestEntries(entries, packageRoot, resourceType, target, metadata);\n\t\treturn;\n\t}\n\tfor (const dir of conventionDirsForResource(packageRoot, resourceType)) {\n\t\tif (!(await exists(dir))) continue;\n\t\tfor (const f of await collectResourceFiles(dir, resourceType)) addResource(target, f, metadata, true);\n\t}\n}\n\nasync function applyPackageFilter(packageRoot: string, userPatterns: string[], resourceType: ResourceType, target: ResourceMap, metadata: PathMetadata): Promise<void> {\n\tconst { allFiles } = await collectManifestFiles(packageRoot, resourceType);\n\tif (userPatterns.length === 0) {\n\t\tfor (const f of allFiles) addResource(target, f, metadata, false);\n\t\treturn;\n\t}\n\tconst enabledByUser = applyPatterns(allFiles, userPatterns, packageRoot);\n\tfor (const f of allFiles) addResource(target, f, metadata, enabledByUser.has(f));\n}\n\nasync function collectManifestFiles(packageRoot: string, resourceType: ResourceType): Promise<{ allFiles: string[]; enabledByManifest: Set<string> }> {\n\tconst manifest = await readPiManifest(packageRoot);\n\tconst entries = manifestEntriesForResource(manifest, resourceType);\n\tif (entries && entries.length > 0) {\n\t\tconst allFiles = await collectFilesFromManifestEntries(entries, packageRoot, resourceType);\n\t\tconst manifestPatterns = entries.filter(isOverridePattern);\n\t\tconst enabledByManifest = manifestPatterns.length > 0 ? applyPatterns(allFiles, manifestPatterns, packageRoot) : new Set(allFiles);\n\t\treturn { allFiles: Array.from(enabledByManifest), enabledByManifest };\n\t}\n\tconst allFiles: string[] = [];\n\tfor (const dir of conventionDirsForResource(packageRoot, resourceType)) {\n\t\tif (await exists(dir)) allFiles.push(...await collectResourceFiles(dir, resourceType));\n\t}\n\treturn { allFiles, enabledByManifest: new Set(allFiles) };\n}\n\nasync function addManifestEntries(entries: string[] | undefined, root: string, resourceType: ResourceType, target: ResourceMap, metadata: PathMetadata): Promise<void> {\n\tif (!entries) return;\n\tconst allFiles = await collectFilesFromManifestEntries(entries, root, resourceType);\n\tconst patterns = entries.filter(isOverridePattern);\n\tconst enabledPaths = applyPatterns(allFiles, patterns, root);\n\tfor (const f of allFiles) if (enabledPaths.has(f)) addResource(target, f, metadata, true);\n}\n\nasync function collectFilesFromManifestEntries(entries: string[], root: string, resourceType: ResourceType): Promise<string[]> {\n\tconst resolved: string[] = [];\n\tfor (const entry of entries.filter((entry) => !isOverridePattern(entry))) {\n\t\tif (!hasGlobPattern(entry)) resolved.push(resolve(root, entry));\n\t\telse resolved.push(...(await glob(entry, { cwd: root, absolute: true, dot: false, nodir: false })).map((match) => resolve(match)));\n\t}\n\treturn collectFilesFromPaths(resolved, resourceType);\n}\n\nexport async function resolveLocalEntries(entries: string[], resourceType: ResourceType, target: ResourceMap, metadata: PathMetadata, baseDir: string): Promise<void> {\n\tif (entries.length === 0) return;\n\tconst { plain, patterns } = splitPatterns(entries);\n\tconst resolvedPlain = plain.map((p) => resolvePathFromBase(p, baseDir));\n\tconst allFiles = await collectFilesFromPaths(resolvedPlain, resourceType);\n\tconst enabledPaths = applyPatterns(allFiles, patterns, baseDir);\n\tfor (const f of allFiles) addResource(target, f, metadata, enabledPaths.has(f));\n}\n\nexport async function collectFilesFromPaths(paths: string[], resourceType: ResourceType): Promise<string[]> {\n\tconst files: string[] = [];\n\tfor (const p of paths) {\n\t\tif (!(await exists(p))) continue;\n\t\ttry {\n\t\t\tconst stats = await stat(p);\n\t\t\tif (stats.isFile()) files.push(p);\n\t\t\telse if (stats.isDirectory()) files.push(...await collectResourceFiles(p, resourceType));\n\t\t} catch {}\n\t}\n\treturn files;\n}\n"]}
1
+ {"version":3,"file":"package-manager-resource-collector.js","sourceRoot":"","sources":["../../src/core/package-manager-resource-collector.ts"],"names":[],"mappings":"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","sourcesContent":["import { access, readFile, stat } from \"node:fs/promises\";\nimport { resolve } from \"node:path\";\nimport { glob } from \"glob\";\nimport {\n\tconventionDirsForResource,\n\tgetManifestFromPackageJson,\n\tmanifestEntriesForResource,\n} from \"./package-manager-manifest.ts\";\nimport { resolvePathFromBase } from \"./package-manager-paths.ts\";\nimport { addResource, getTargetMap } from \"./package-manager-resource-accumulator.ts\";\nimport { collectResourceFiles } from \"./package-manager-resource-files.ts\";\nimport {\n\tapplyAutoloadDisabledPatterns,\n\tapplyPatterns,\n\thasGlobPattern,\n\tisOverridePattern,\n\tsplitPatterns,\n} from \"./package-manager-resource-patterns.ts\";\nimport type {\n\tPackageFilter,\n\tPathMetadata,\n\tResourceAccumulator,\n\tResourceMap,\n\tResourceType,\n} from \"./package-manager-types.ts\";\n\nasync function exists(path: string): Promise<boolean> {\n\ttry {\n\t\tawait access(path);\n\t\treturn true;\n\t} catch {\n\t\treturn false;\n\t}\n}\n\nasync function readPiManifest(packageRoot: string): Promise<ReturnType<typeof getManifestFromPackageJson> | null> {\n\ttry {\n\t\tconst content = await readFile(resolve(packageRoot, \"package.json\"), \"utf-8\");\n\t\treturn getManifestFromPackageJson(JSON.parse(content) as Record<string, unknown>);\n\t} catch {\n\t\treturn null;\n\t}\n}\n\nexport async function collectPackageResources(\n\tpackageRoot: string,\n\taccumulator: ResourceAccumulator,\n\tfilter: PackageFilter | undefined,\n\tmetadata: PathMetadata,\n): Promise<boolean> {\n\tif (filter) {\n\t\tfor (const resourceType of [\"extensions\", \"skills\", \"prompts\", \"themes\", \"workflows\"] as const) {\n\t\t\tconst patterns = filter[resourceType];\n\t\t\tconst target = getTargetMap(accumulator, resourceType);\n\t\t\tif (filter.autoload === false) {\n\t\t\t\tconst { allFiles } = await collectManifestFiles(packageRoot, resourceType);\n\t\t\t\tconst selected = applyAutoloadDisabledPatterns(allFiles, patterns ?? [], packageRoot);\n\t\t\t\tfor (const [filePath, enabled] of selected) addResource(target, filePath, metadata, enabled);\n\t\t\t} else if (patterns !== undefined)\n\t\t\t\tawait applyPackageFilter(packageRoot, patterns, resourceType, target, metadata);\n\t\t\telse await collectDefaultResources(packageRoot, resourceType, target, metadata);\n\t\t}\n\t\treturn true;\n\t}\n\tconst manifest = await readPiManifest(packageRoot);\n\tif (manifest) {\n\t\tfor (const resourceType of [\"extensions\", \"skills\", \"prompts\", \"themes\", \"workflows\"] as const) {\n\t\t\tconst entries = manifestEntriesForResource(manifest, resourceType);\n\t\t\tif (entries !== undefined) {\n\t\t\t\tawait addManifestEntries(\n\t\t\t\t\tentries,\n\t\t\t\t\tpackageRoot,\n\t\t\t\t\tresourceType,\n\t\t\t\t\tgetTargetMap(accumulator, resourceType),\n\t\t\t\t\tmetadata,\n\t\t\t\t);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (resourceType === \"workflows\")\n\t\t\t\tawait collectDefaultResources(packageRoot, resourceType, getTargetMap(accumulator, resourceType), metadata);\n\t\t}\n\t\treturn true;\n\t}\n\tlet hasAnyDir = false;\n\tfor (const resourceType of [\"extensions\", \"skills\", \"prompts\", \"themes\", \"workflows\"] as const) {\n\t\tfor (const dir of conventionDirsForResource(packageRoot, resourceType)) {\n\t\t\tif (!(await exists(dir))) continue;\n\t\t\tfor (const f of await collectResourceFiles(dir, resourceType))\n\t\t\t\taddResource(getTargetMap(accumulator, resourceType), f, metadata, true);\n\t\t\thasAnyDir = true;\n\t\t}\n\t}\n\treturn hasAnyDir;\n}\n\nasync function collectDefaultResources(\n\tpackageRoot: string,\n\tresourceType: ResourceType,\n\ttarget: ResourceMap,\n\tmetadata: PathMetadata,\n): Promise<void> {\n\tconst manifest = await readPiManifest(packageRoot);\n\tconst entries = manifestEntriesForResource(manifest, resourceType);\n\tif (entries !== undefined) {\n\t\tawait addManifestEntries(entries, packageRoot, resourceType, target, metadata);\n\t\treturn;\n\t}\n\tfor (const dir of conventionDirsForResource(packageRoot, resourceType)) {\n\t\tif (!(await exists(dir))) continue;\n\t\tfor (const f of await collectResourceFiles(dir, resourceType)) addResource(target, f, metadata, true);\n\t}\n}\n\nasync function applyPackageFilter(\n\tpackageRoot: string,\n\tuserPatterns: string[],\n\tresourceType: ResourceType,\n\ttarget: ResourceMap,\n\tmetadata: PathMetadata,\n): Promise<void> {\n\tconst { allFiles } = await collectManifestFiles(packageRoot, resourceType);\n\tif (userPatterns.length === 0) {\n\t\tfor (const f of allFiles) addResource(target, f, metadata, false);\n\t\treturn;\n\t}\n\tconst enabledByUser = applyPatterns(allFiles, userPatterns, packageRoot);\n\tfor (const f of allFiles) addResource(target, f, metadata, enabledByUser.has(f));\n}\n\nasync function collectManifestFiles(\n\tpackageRoot: string,\n\tresourceType: ResourceType,\n): Promise<{ allFiles: string[]; enabledByManifest: Set<string> }> {\n\tconst manifest = await readPiManifest(packageRoot);\n\tconst entries = manifestEntriesForResource(manifest, resourceType);\n\tif (entries && entries.length > 0) {\n\t\tconst allFiles = await collectFilesFromManifestEntries(entries, packageRoot, resourceType);\n\t\tconst manifestPatterns = entries.filter(isOverridePattern);\n\t\tconst enabledByManifest =\n\t\t\tmanifestPatterns.length > 0 ? applyPatterns(allFiles, manifestPatterns, packageRoot) : new Set(allFiles);\n\t\treturn { allFiles: Array.from(enabledByManifest), enabledByManifest };\n\t}\n\tconst allFiles: string[] = [];\n\tfor (const dir of conventionDirsForResource(packageRoot, resourceType)) {\n\t\tif (await exists(dir)) allFiles.push(...(await collectResourceFiles(dir, resourceType)));\n\t}\n\treturn { allFiles, enabledByManifest: new Set(allFiles) };\n}\n\nasync function addManifestEntries(\n\tentries: string[] | undefined,\n\troot: string,\n\tresourceType: ResourceType,\n\ttarget: ResourceMap,\n\tmetadata: PathMetadata,\n): Promise<void> {\n\tif (!entries) return;\n\tconst allFiles = await collectFilesFromManifestEntries(entries, root, resourceType);\n\tconst patterns = entries.filter(isOverridePattern);\n\tconst enabledPaths = applyPatterns(allFiles, patterns, root);\n\tfor (const f of allFiles) if (enabledPaths.has(f)) addResource(target, f, metadata, true);\n}\n\nasync function collectFilesFromManifestEntries(\n\tentries: string[],\n\troot: string,\n\tresourceType: ResourceType,\n): Promise<string[]> {\n\tconst resolved: string[] = [];\n\tfor (const entry of entries.filter((entry) => !isOverridePattern(entry))) {\n\t\tif (!hasGlobPattern(entry)) resolved.push(resolve(root, entry));\n\t\telse\n\t\t\tresolved.push(\n\t\t\t\t...(await glob(entry, { cwd: root, absolute: true, dot: false, nodir: false })).map((match) =>\n\t\t\t\t\tresolve(match),\n\t\t\t\t),\n\t\t\t);\n\t}\n\treturn collectFilesFromPaths(resolved, resourceType);\n}\n\nexport async function resolveLocalEntries(\n\tentries: string[],\n\tresourceType: ResourceType,\n\ttarget: ResourceMap,\n\tmetadata: PathMetadata,\n\tbaseDir: string,\n): Promise<void> {\n\tif (entries.length === 0) return;\n\tconst { plain, patterns } = splitPatterns(entries);\n\tconst resolvedPlain = plain.map((p) => resolvePathFromBase(p, baseDir));\n\tconst allFiles = await collectFilesFromPaths(resolvedPlain, resourceType);\n\tconst enabledPaths = applyPatterns(allFiles, patterns, baseDir);\n\tfor (const f of allFiles) addResource(target, f, metadata, enabledPaths.has(f));\n}\n\nexport async function collectFilesFromPaths(paths: string[], resourceType: ResourceType): Promise<string[]> {\n\tconst files: string[] = [];\n\tfor (const p of paths) {\n\t\tif (!(await exists(p))) continue;\n\t\ttry {\n\t\t\tconst stats = await stat(p);\n\t\t\tif (stats.isFile()) files.push(p);\n\t\t\telse if (stats.isDirectory()) files.push(...(await collectResourceFiles(p, resourceType)));\n\t\t} catch {}\n\t}\n\treturn files;\n}\n"]}
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-resource-files.d.ts","sourceRoot":"","sources":["../../src/core/package-manager-resource-files.ts"],"names":[],"mappings":"AAEA,OAAO,MAAM,MAAM,QAAQ,CAAC;AAI5B,OAAO,EAAiB,KAAK,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAI9E,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAC;AAC/C,KAAK,kBAAkB,GAAG,IAAI,GAAG,QAAQ,CAAC;AAqD1C,wBAAsB,YAAY,CAAC,GAAG,EAAE,MAAM,EAAE,WAAW,EAAE,MAAM,EAAE,eAAe,UAAO,EAAE,aAAa,CAAC,EAAE,aAAa,EAAE,OAAO,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAsB/J;AAmCD,wBAAsB,uBAAuB,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAEtG;AAYD,wBAAsB,8BAA8B,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAaxF;AAuBD,wBAAsB,wBAAwB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAE7E;AAED,wBAAsB,uBAAuB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAE5E;AAED,wBAAsB,uBAAuB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC,CAqBnF;AAED,wBAAsB,2BAA2B,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CA0BhF;AAED,wBAAsB,oBAAoB,CAAC,GAAG,EAAE,MAAM,EAAE,YAAY,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAIrG;AAED,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAIjE"}
1
+ {"version":3,"file":"package-manager-resource-files.d.ts","sourceRoot":"","sources":["../../src/core/package-manager-resource-files.ts"],"names":[],"mappings":"AAEA,OAAO,MAAM,MAAM,QAAQ,CAAC;AAI5B,OAAO,EAAiB,KAAK,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAI9E,KAAK,aAAa,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,CAAC;AAC/C,KAAK,kBAAkB,GAAG,IAAI,GAAG,QAAQ,CAAC;AAoE1C,wBAAsB,YAAY,CACjC,GAAG,EAAE,MAAM,EACX,WAAW,EAAE,MAAM,EACnB,eAAe,UAAO,EACtB,aAAa,CAAC,EAAE,aAAa,EAC7B,OAAO,CAAC,EAAE,MAAM,GACd,OAAO,CAAC,MAAM,EAAE,CAAC,CAsBnB;AA2CD,wBAAsB,uBAAuB,CAAC,GAAG,EAAE,MAAM,EAAE,IAAI,EAAE,kBAAkB,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAEtG;AAYD,wBAAsB,8BAA8B,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAaxF;AAuBD,wBAAsB,wBAAwB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAE7E;AAED,wBAAsB,uBAAuB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAE5E;AAED,wBAAsB,uBAAuB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,GAAG,IAAI,CAAC,CAqBnF;AAED,wBAAsB,2BAA2B,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CA0BhF;AAED,wBAAsB,oBAAoB,CAAC,GAAG,EAAE,MAAM,EAAE,YAAY,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CAIrG;AAED,wBAAgB,WAAW,CAAC,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,OAAO,CAOjE"}
@@ -87,7 +87,7 @@ export async function collectFiles(dir, filePattern, skipNodeModules = true, ign
87
87
  if (ig.ignores(ignorePath))
88
88
  continue;
89
89
  if (info.isDir)
90
- files.push(...await collectFiles(info.fullPath, filePattern, skipNodeModules, ig, root));
90
+ files.push(...(await collectFiles(info.fullPath, filePattern, skipNodeModules, ig, root)));
91
91
  else if (info.isFile && filePattern.test(entry.name))
92
92
  files.push(info.fullPath);
93
93
  }
@@ -131,7 +131,7 @@ async function collectSkillEntries(dir, mode, ignoreMatcher, rootDir) {
131
131
  }
132
132
  if (!info.isDir || ig.ignores(`${relPath}/`))
133
133
  continue;
134
- entries.push(...await collectSkillEntries(info.fullPath, mode, ig, root));
134
+ entries.push(...(await collectSkillEntries(info.fullPath, mode, ig, root)));
135
135
  }
136
136
  }
137
137
  catch { }
@@ -271,6 +271,7 @@ export async function collectResourceFiles(dir, resourceType) {
271
271
  export function isPathUnder(target, root) {
272
272
  const resolvedRoot = resolve(root);
273
273
  const resolvedTarget = resolve(target);
274
- return resolvedTarget === resolvedRoot || resolvedTarget.startsWith(resolvedRoot.endsWith(sep) ? resolvedRoot : `${resolvedRoot}${sep}`);
274
+ return (resolvedTarget === resolvedRoot ||
275
+ resolvedTarget.startsWith(resolvedRoot.endsWith(sep) ? resolvedRoot : `${resolvedRoot}${sep}`));
275
276
  }
276
277
  //# sourceMappingURL=package-manager-resource-files.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"package-manager-resource-files.js","sourceRoot":"","sources":["../../src/core/package-manager-resource-files.ts"],"names":[],"mappings":"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","sourcesContent":["import { access, readdir, readFile, stat } from \"node:fs/promises\";\nimport { dirname, join, relative, resolve, sep } from \"node:path\";\nimport ignore from \"ignore\";\nimport { yieldToEventLoopIfSlow } from \"../utils/event-loop.ts\";\nimport { getManifestFromPackageJson } from \"./package-manager-manifest.ts\";\nimport { toPosixPath } from \"./package-manager-resource-patterns.ts\";\nimport { FILE_PATTERNS, type ResourceType } from \"./package-manager-types.ts\";\n\nconst IGNORE_FILE_NAMES = [\".gitignore\", \".ignore\", \".fdignore\"];\nconst RESOURCE_DISCOVERY_YIELD_AFTER_MS = 8;\ntype IgnoreMatcher = ReturnType<typeof ignore>;\ntype SkillDiscoveryMode = \"pi\" | \"agents\";\n\ntype DirEntryInfo = {\n\tfullPath: string;\n\tisDir: boolean;\n\tisFile: boolean;\n};\n\nasync function exists(path: string): Promise<boolean> {\n\ttry { await access(path); return true; } catch { return false; }\n}\n\nfunction prefixIgnorePattern(line: string, prefix: string): string | null {\n\tconst trimmed = line.trim();\n\tif (!trimmed || (trimmed.startsWith(\"#\") && !trimmed.startsWith(\"\\\\#\"))) return null;\n\tlet pattern = line;\n\tlet negated = false;\n\tif (pattern.startsWith(\"!\")) { negated = true; pattern = pattern.slice(1); }\n\telse if (pattern.startsWith(\"\\\\!\")) pattern = pattern.slice(1);\n\tif (pattern.startsWith(\"/\")) pattern = pattern.slice(1);\n\tconst prefixed = prefix ? `${prefix}${pattern}` : pattern;\n\treturn negated ? `!${prefixed}` : prefixed;\n}\n\nasync function addIgnoreRules(ig: IgnoreMatcher, dir: string, rootDir: string): Promise<void> {\n\tconst relativeDir = relative(rootDir, dir);\n\tconst prefix = relativeDir ? `${toPosixPath(relativeDir)}/` : \"\";\n\tfor (const filename of IGNORE_FILE_NAMES) {\n\t\ttry {\n\t\t\tconst content = await readFile(join(dir, filename), \"utf-8\");\n\t\t\tconst patterns = content\n\t\t\t\t.split(/\\r?\\n/)\n\t\t\t\t.map((line) => prefixIgnorePattern(line, prefix))\n\t\t\t\t.filter((line): line is string => Boolean(line));\n\t\t\tif (patterns.length > 0) ig.add(patterns);\n\t\t} catch {}\n\t}\n}\n\nasync function getEntryInfo(dir: string, name: string, isDirectory: boolean, isFileEntry: boolean, isSymlink: boolean): Promise<DirEntryInfo | null> {\n\tconst fullPath = join(dir, name);\n\tlet isDir = isDirectory;\n\tlet isFile = isFileEntry;\n\tif (isSymlink) {\n\t\ttry {\n\t\t\tconst stats = await stat(fullPath);\n\t\t\tisDir = stats.isDirectory();\n\t\t\tisFile = stats.isFile();\n\t\t} catch { return null; }\n\t}\n\treturn { fullPath, isDir, isFile };\n}\n\nexport async function collectFiles(dir: string, filePattern: RegExp, skipNodeModules = true, ignoreMatcher?: IgnoreMatcher, rootDir?: string): Promise<string[]> {\n\tconst files: string[] = [];\n\tif (!(await exists(dir))) return files;\n\tconst root = rootDir ?? dir;\n\tconst ig = ignoreMatcher ?? ignore();\n\tawait addIgnoreRules(ig, dir, root);\n\tconst startedAt = Date.now();\n\ttry {\n\t\tconst entries = await readdir(dir, { withFileTypes: true });\n\t\tfor (const entry of entries) {\n\t\t\tawait yieldToEventLoopIfSlow(startedAt, RESOURCE_DISCOVERY_YIELD_AFTER_MS);\n\t\t\tif (entry.name.startsWith(\".\") || (skipNodeModules && entry.name === \"node_modules\")) continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(root, info.fullPath));\n\t\t\tconst ignorePath = info.isDir ? `${relPath}/` : relPath;\n\t\t\tif (ig.ignores(ignorePath)) continue;\n\t\t\tif (info.isDir) files.push(...await collectFiles(info.fullPath, filePattern, skipNodeModules, ig, root));\n\t\t\telse if (info.isFile && filePattern.test(entry.name)) files.push(info.fullPath);\n\t\t}\n\t} catch {}\n\treturn files;\n}\n\nasync function collectSkillEntries(dir: string, mode: SkillDiscoveryMode, ignoreMatcher?: IgnoreMatcher, rootDir?: string): Promise<string[]> {\n\tconst entries: string[] = [];\n\tif (!(await exists(dir))) return entries;\n\tconst root = rootDir ?? dir;\n\tconst ig = ignoreMatcher ?? ignore();\n\tawait addIgnoreRules(ig, dir, root);\n\tconst startedAt = Date.now();\n\ttry {\n\t\tconst dirEntries = await readdir(dir, { withFileTypes: true });\n\t\tfor (const entry of dirEntries) {\n\t\t\tif (entry.name !== \"SKILL.md\") continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(root, info.fullPath));\n\t\t\tif (info.isFile && !ig.ignores(relPath)) { entries.push(info.fullPath); return entries; }\n\t\t}\n\t\tfor (const entry of dirEntries) {\n\t\t\tawait yieldToEventLoopIfSlow(startedAt, RESOURCE_DISCOVERY_YIELD_AFTER_MS);\n\t\t\tif (entry.name.startsWith(\".\") || entry.name === \"node_modules\") continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(root, info.fullPath));\n\t\t\tif (mode === \"pi\" && dir === root && info.isFile && entry.name.endsWith(\".md\") && !ig.ignores(relPath)) {\n\t\t\t\tentries.push(info.fullPath);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (!info.isDir || ig.ignores(`${relPath}/`)) continue;\n\t\t\tentries.push(...await collectSkillEntries(info.fullPath, mode, ig, root));\n\t\t}\n\t} catch {}\n\treturn entries;\n}\n\nexport async function collectAutoSkillEntries(dir: string, mode: SkillDiscoveryMode): Promise<string[]> {\n\treturn collectSkillEntries(dir, mode);\n}\n\nasync function findGitRepoRoot(startDir: string): Promise<string | null> {\n\tlet dir = resolve(startDir);\n\twhile (true) {\n\t\tif (await exists(join(dir, \".git\"))) return dir;\n\t\tconst parent = dirname(dir);\n\t\tif (parent === dir) return null;\n\t\tdir = parent;\n\t}\n}\n\nexport async function collectAncestorAgentsSkillDirs(startDir: string): Promise<string[]> {\n\tconst skillDirs: string[] = [];\n\tconst resolvedStartDir = resolve(startDir);\n\tconst gitRepoRoot = await findGitRepoRoot(resolvedStartDir);\n\tlet dir = resolvedStartDir;\n\twhile (true) {\n\t\tskillDirs.push(join(dir, \".agents\", \"skills\"));\n\t\tif (gitRepoRoot && dir === gitRepoRoot) break;\n\t\tconst parent = dirname(dir);\n\t\tif (parent === dir) break;\n\t\tdir = parent;\n\t}\n\treturn skillDirs;\n}\n\nasync function collectFlatEntries(dir: string, extension: string): Promise<string[]> {\n\tconst entries: string[] = [];\n\tif (!(await exists(dir))) return entries;\n\tconst ig = ignore();\n\tawait addIgnoreRules(ig, dir, dir);\n\tconst startedAt = Date.now();\n\ttry {\n\t\tconst dirEntries = await readdir(dir, { withFileTypes: true });\n\t\tfor (const entry of dirEntries) {\n\t\t\tawait yieldToEventLoopIfSlow(startedAt, RESOURCE_DISCOVERY_YIELD_AFTER_MS);\n\t\t\tif (entry.name.startsWith(\".\") || entry.name === \"node_modules\") continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(dir, info.fullPath));\n\t\t\tif (ig.ignores(relPath)) continue;\n\t\t\tif (info.isFile && entry.name.endsWith(extension)) entries.push(info.fullPath);\n\t\t}\n\t} catch {}\n\treturn entries;\n}\n\nexport async function collectAutoPromptEntries(dir: string): Promise<string[]> {\n\treturn collectFlatEntries(dir, \".md\");\n}\n\nexport async function collectAutoThemeEntries(dir: string): Promise<string[]> {\n\treturn collectFlatEntries(dir, \".json\");\n}\n\nexport async function resolveExtensionEntries(dir: string): Promise<string[] | null> {\n\tconst packageJsonPath = join(dir, \"package.json\");\n\tif (await exists(packageJsonPath)) {\n\t\ttry {\n\t\t\tconst pkg = JSON.parse(await readFile(packageJsonPath, \"utf-8\")) as Record<string, unknown>;\n\t\t\tconst manifest = getManifestFromPackageJson(pkg);\n\t\t\tif (manifest?.extensions?.length) {\n\t\t\t\tconst entries: string[] = [];\n\t\t\t\tfor (const extPath of manifest.extensions) {\n\t\t\t\t\tconst resolvedExtPath = resolve(dir, extPath);\n\t\t\t\t\tif (await exists(resolvedExtPath)) entries.push(resolvedExtPath);\n\t\t\t\t}\n\t\t\t\tif (entries.length > 0) return entries;\n\t\t\t}\n\t\t} catch {}\n\t}\n\tconst indexTs = join(dir, \"index.ts\");\n\tconst indexJs = join(dir, \"index.js\");\n\tif (await exists(indexTs)) return [indexTs];\n\tif (await exists(indexJs)) return [indexJs];\n\treturn null;\n}\n\nexport async function collectAutoExtensionEntries(dir: string): Promise<string[]> {\n\tconst entries: string[] = [];\n\tif (!(await exists(dir))) return entries;\n\tconst rootEntries = await resolveExtensionEntries(dir);\n\tif (rootEntries) return rootEntries;\n\tconst ig = ignore();\n\tawait addIgnoreRules(ig, dir, dir);\n\tconst startedAt = Date.now();\n\ttry {\n\t\tconst dirEntries = await readdir(dir, { withFileTypes: true });\n\t\tfor (const entry of dirEntries) {\n\t\t\tawait yieldToEventLoopIfSlow(startedAt, RESOURCE_DISCOVERY_YIELD_AFTER_MS);\n\t\t\tif (entry.name.startsWith(\".\") || entry.name === \"node_modules\") continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(dir, info.fullPath));\n\t\t\tconst ignorePath = info.isDir ? `${relPath}/` : relPath;\n\t\t\tif (ig.ignores(ignorePath)) continue;\n\t\t\tif (info.isFile && (entry.name.endsWith(\".ts\") || entry.name.endsWith(\".js\"))) entries.push(info.fullPath);\n\t\t\telse if (info.isDir) {\n\t\t\t\tconst resolvedEntries = await resolveExtensionEntries(info.fullPath);\n\t\t\t\tif (resolvedEntries) entries.push(...resolvedEntries);\n\t\t\t}\n\t\t}\n\t} catch {}\n\treturn entries;\n}\n\nexport async function collectResourceFiles(dir: string, resourceType: ResourceType): Promise<string[]> {\n\tif (resourceType === \"skills\") return collectSkillEntries(dir, \"pi\");\n\tif (resourceType === \"extensions\") return collectAutoExtensionEntries(dir);\n\treturn collectFiles(dir, FILE_PATTERNS[resourceType]);\n}\n\nexport function isPathUnder(target: string, root: string): boolean {\n\tconst resolvedRoot = resolve(root);\n\tconst resolvedTarget = resolve(target);\n\treturn resolvedTarget === resolvedRoot || resolvedTarget.startsWith(resolvedRoot.endsWith(sep) ? resolvedRoot : `${resolvedRoot}${sep}`);\n}\n"]}
1
+ {"version":3,"file":"package-manager-resource-files.js","sourceRoot":"","sources":["../../src/core/package-manager-resource-files.ts"],"names":[],"mappings":"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","sourcesContent":["import { access, readdir, readFile, stat } from \"node:fs/promises\";\nimport { dirname, join, relative, resolve, sep } from \"node:path\";\nimport ignore from \"ignore\";\nimport { yieldToEventLoopIfSlow } from \"../utils/event-loop.ts\";\nimport { getManifestFromPackageJson } from \"./package-manager-manifest.ts\";\nimport { toPosixPath } from \"./package-manager-resource-patterns.ts\";\nimport { FILE_PATTERNS, type ResourceType } from \"./package-manager-types.ts\";\n\nconst IGNORE_FILE_NAMES = [\".gitignore\", \".ignore\", \".fdignore\"];\nconst RESOURCE_DISCOVERY_YIELD_AFTER_MS = 8;\ntype IgnoreMatcher = ReturnType<typeof ignore>;\ntype SkillDiscoveryMode = \"pi\" | \"agents\";\n\ntype DirEntryInfo = {\n\tfullPath: string;\n\tisDir: boolean;\n\tisFile: boolean;\n};\n\nasync function exists(path: string): Promise<boolean> {\n\ttry {\n\t\tawait access(path);\n\t\treturn true;\n\t} catch {\n\t\treturn false;\n\t}\n}\n\nfunction prefixIgnorePattern(line: string, prefix: string): string | null {\n\tconst trimmed = line.trim();\n\tif (!trimmed || (trimmed.startsWith(\"#\") && !trimmed.startsWith(\"\\\\#\"))) return null;\n\tlet pattern = line;\n\tlet negated = false;\n\tif (pattern.startsWith(\"!\")) {\n\t\tnegated = true;\n\t\tpattern = pattern.slice(1);\n\t} else if (pattern.startsWith(\"\\\\!\")) pattern = pattern.slice(1);\n\tif (pattern.startsWith(\"/\")) pattern = pattern.slice(1);\n\tconst prefixed = prefix ? `${prefix}${pattern}` : pattern;\n\treturn negated ? `!${prefixed}` : prefixed;\n}\n\nasync function addIgnoreRules(ig: IgnoreMatcher, dir: string, rootDir: string): Promise<void> {\n\tconst relativeDir = relative(rootDir, dir);\n\tconst prefix = relativeDir ? `${toPosixPath(relativeDir)}/` : \"\";\n\tfor (const filename of IGNORE_FILE_NAMES) {\n\t\ttry {\n\t\t\tconst content = await readFile(join(dir, filename), \"utf-8\");\n\t\t\tconst patterns = content\n\t\t\t\t.split(/\\r?\\n/)\n\t\t\t\t.map((line) => prefixIgnorePattern(line, prefix))\n\t\t\t\t.filter((line): line is string => Boolean(line));\n\t\t\tif (patterns.length > 0) ig.add(patterns);\n\t\t} catch {}\n\t}\n}\n\nasync function getEntryInfo(\n\tdir: string,\n\tname: string,\n\tisDirectory: boolean,\n\tisFileEntry: boolean,\n\tisSymlink: boolean,\n): Promise<DirEntryInfo | null> {\n\tconst fullPath = join(dir, name);\n\tlet isDir = isDirectory;\n\tlet isFile = isFileEntry;\n\tif (isSymlink) {\n\t\ttry {\n\t\t\tconst stats = await stat(fullPath);\n\t\t\tisDir = stats.isDirectory();\n\t\t\tisFile = stats.isFile();\n\t\t} catch {\n\t\t\treturn null;\n\t\t}\n\t}\n\treturn { fullPath, isDir, isFile };\n}\n\nexport async function collectFiles(\n\tdir: string,\n\tfilePattern: RegExp,\n\tskipNodeModules = true,\n\tignoreMatcher?: IgnoreMatcher,\n\trootDir?: string,\n): Promise<string[]> {\n\tconst files: string[] = [];\n\tif (!(await exists(dir))) return files;\n\tconst root = rootDir ?? dir;\n\tconst ig = ignoreMatcher ?? ignore();\n\tawait addIgnoreRules(ig, dir, root);\n\tconst startedAt = Date.now();\n\ttry {\n\t\tconst entries = await readdir(dir, { withFileTypes: true });\n\t\tfor (const entry of entries) {\n\t\t\tawait yieldToEventLoopIfSlow(startedAt, RESOURCE_DISCOVERY_YIELD_AFTER_MS);\n\t\t\tif (entry.name.startsWith(\".\") || (skipNodeModules && entry.name === \"node_modules\")) continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(root, info.fullPath));\n\t\t\tconst ignorePath = info.isDir ? `${relPath}/` : relPath;\n\t\t\tif (ig.ignores(ignorePath)) continue;\n\t\t\tif (info.isDir) files.push(...(await collectFiles(info.fullPath, filePattern, skipNodeModules, ig, root)));\n\t\t\telse if (info.isFile && filePattern.test(entry.name)) files.push(info.fullPath);\n\t\t}\n\t} catch {}\n\treturn files;\n}\n\nasync function collectSkillEntries(\n\tdir: string,\n\tmode: SkillDiscoveryMode,\n\tignoreMatcher?: IgnoreMatcher,\n\trootDir?: string,\n): Promise<string[]> {\n\tconst entries: string[] = [];\n\tif (!(await exists(dir))) return entries;\n\tconst root = rootDir ?? dir;\n\tconst ig = ignoreMatcher ?? ignore();\n\tawait addIgnoreRules(ig, dir, root);\n\tconst startedAt = Date.now();\n\ttry {\n\t\tconst dirEntries = await readdir(dir, { withFileTypes: true });\n\t\tfor (const entry of dirEntries) {\n\t\t\tif (entry.name !== \"SKILL.md\") continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(root, info.fullPath));\n\t\t\tif (info.isFile && !ig.ignores(relPath)) {\n\t\t\t\tentries.push(info.fullPath);\n\t\t\t\treturn entries;\n\t\t\t}\n\t\t}\n\t\tfor (const entry of dirEntries) {\n\t\t\tawait yieldToEventLoopIfSlow(startedAt, RESOURCE_DISCOVERY_YIELD_AFTER_MS);\n\t\t\tif (entry.name.startsWith(\".\") || entry.name === \"node_modules\") continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(root, info.fullPath));\n\t\t\tif (mode === \"pi\" && dir === root && info.isFile && entry.name.endsWith(\".md\") && !ig.ignores(relPath)) {\n\t\t\t\tentries.push(info.fullPath);\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\tif (!info.isDir || ig.ignores(`${relPath}/`)) continue;\n\t\t\tentries.push(...(await collectSkillEntries(info.fullPath, mode, ig, root)));\n\t\t}\n\t} catch {}\n\treturn entries;\n}\n\nexport async function collectAutoSkillEntries(dir: string, mode: SkillDiscoveryMode): Promise<string[]> {\n\treturn collectSkillEntries(dir, mode);\n}\n\nasync function findGitRepoRoot(startDir: string): Promise<string | null> {\n\tlet dir = resolve(startDir);\n\twhile (true) {\n\t\tif (await exists(join(dir, \".git\"))) return dir;\n\t\tconst parent = dirname(dir);\n\t\tif (parent === dir) return null;\n\t\tdir = parent;\n\t}\n}\n\nexport async function collectAncestorAgentsSkillDirs(startDir: string): Promise<string[]> {\n\tconst skillDirs: string[] = [];\n\tconst resolvedStartDir = resolve(startDir);\n\tconst gitRepoRoot = await findGitRepoRoot(resolvedStartDir);\n\tlet dir = resolvedStartDir;\n\twhile (true) {\n\t\tskillDirs.push(join(dir, \".agents\", \"skills\"));\n\t\tif (gitRepoRoot && dir === gitRepoRoot) break;\n\t\tconst parent = dirname(dir);\n\t\tif (parent === dir) break;\n\t\tdir = parent;\n\t}\n\treturn skillDirs;\n}\n\nasync function collectFlatEntries(dir: string, extension: string): Promise<string[]> {\n\tconst entries: string[] = [];\n\tif (!(await exists(dir))) return entries;\n\tconst ig = ignore();\n\tawait addIgnoreRules(ig, dir, dir);\n\tconst startedAt = Date.now();\n\ttry {\n\t\tconst dirEntries = await readdir(dir, { withFileTypes: true });\n\t\tfor (const entry of dirEntries) {\n\t\t\tawait yieldToEventLoopIfSlow(startedAt, RESOURCE_DISCOVERY_YIELD_AFTER_MS);\n\t\t\tif (entry.name.startsWith(\".\") || entry.name === \"node_modules\") continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(dir, info.fullPath));\n\t\t\tif (ig.ignores(relPath)) continue;\n\t\t\tif (info.isFile && entry.name.endsWith(extension)) entries.push(info.fullPath);\n\t\t}\n\t} catch {}\n\treturn entries;\n}\n\nexport async function collectAutoPromptEntries(dir: string): Promise<string[]> {\n\treturn collectFlatEntries(dir, \".md\");\n}\n\nexport async function collectAutoThemeEntries(dir: string): Promise<string[]> {\n\treturn collectFlatEntries(dir, \".json\");\n}\n\nexport async function resolveExtensionEntries(dir: string): Promise<string[] | null> {\n\tconst packageJsonPath = join(dir, \"package.json\");\n\tif (await exists(packageJsonPath)) {\n\t\ttry {\n\t\t\tconst pkg = JSON.parse(await readFile(packageJsonPath, \"utf-8\")) as Record<string, unknown>;\n\t\t\tconst manifest = getManifestFromPackageJson(pkg);\n\t\t\tif (manifest?.extensions?.length) {\n\t\t\t\tconst entries: string[] = [];\n\t\t\t\tfor (const extPath of manifest.extensions) {\n\t\t\t\t\tconst resolvedExtPath = resolve(dir, extPath);\n\t\t\t\t\tif (await exists(resolvedExtPath)) entries.push(resolvedExtPath);\n\t\t\t\t}\n\t\t\t\tif (entries.length > 0) return entries;\n\t\t\t}\n\t\t} catch {}\n\t}\n\tconst indexTs = join(dir, \"index.ts\");\n\tconst indexJs = join(dir, \"index.js\");\n\tif (await exists(indexTs)) return [indexTs];\n\tif (await exists(indexJs)) return [indexJs];\n\treturn null;\n}\n\nexport async function collectAutoExtensionEntries(dir: string): Promise<string[]> {\n\tconst entries: string[] = [];\n\tif (!(await exists(dir))) return entries;\n\tconst rootEntries = await resolveExtensionEntries(dir);\n\tif (rootEntries) return rootEntries;\n\tconst ig = ignore();\n\tawait addIgnoreRules(ig, dir, dir);\n\tconst startedAt = Date.now();\n\ttry {\n\t\tconst dirEntries = await readdir(dir, { withFileTypes: true });\n\t\tfor (const entry of dirEntries) {\n\t\t\tawait yieldToEventLoopIfSlow(startedAt, RESOURCE_DISCOVERY_YIELD_AFTER_MS);\n\t\t\tif (entry.name.startsWith(\".\") || entry.name === \"node_modules\") continue;\n\t\t\tconst info = await getEntryInfo(dir, entry.name, entry.isDirectory(), entry.isFile(), entry.isSymbolicLink());\n\t\t\tif (!info) continue;\n\t\t\tconst relPath = toPosixPath(relative(dir, info.fullPath));\n\t\t\tconst ignorePath = info.isDir ? `${relPath}/` : relPath;\n\t\t\tif (ig.ignores(ignorePath)) continue;\n\t\t\tif (info.isFile && (entry.name.endsWith(\".ts\") || entry.name.endsWith(\".js\"))) entries.push(info.fullPath);\n\t\t\telse if (info.isDir) {\n\t\t\t\tconst resolvedEntries = await resolveExtensionEntries(info.fullPath);\n\t\t\t\tif (resolvedEntries) entries.push(...resolvedEntries);\n\t\t\t}\n\t\t}\n\t} catch {}\n\treturn entries;\n}\n\nexport async function collectResourceFiles(dir: string, resourceType: ResourceType): Promise<string[]> {\n\tif (resourceType === \"skills\") return collectSkillEntries(dir, \"pi\");\n\tif (resourceType === \"extensions\") return collectAutoExtensionEntries(dir);\n\treturn collectFiles(dir, FILE_PATTERNS[resourceType]);\n}\n\nexport function isPathUnder(target: string, root: string): boolean {\n\tconst resolvedRoot = resolve(root);\n\tconst resolvedTarget = resolve(target);\n\treturn (\n\t\tresolvedTarget === resolvedRoot ||\n\t\tresolvedTarget.startsWith(resolvedRoot.endsWith(sep) ? resolvedRoot : `${resolvedRoot}${sep}`)\n\t);\n}\n"]}