pi-harness-runtime 0.10.11 → 0.10.12

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 (584) hide show
  1. package/cli.ts +111 -0
  2. package/footer-status.ts +204 -0
  3. package/harness/agent-handoff.ts +189 -0
  4. package/harness/auto-compact.ts +309 -0
  5. package/harness/auto-quota-resume.ts +132 -0
  6. package/harness/autonomous-review.ts +88 -0
  7. package/harness/blackboard.ts +291 -0
  8. package/harness/context-compact-orchestrator.ts +551 -0
  9. package/harness/context-window-manager.ts +464 -0
  10. package/harness/continue-prompt.ts +242 -0
  11. package/harness/e2e/index.ts +44 -0
  12. package/harness/e2e/minimax-quota-parser.ts +88 -0
  13. package/harness/e2e/minimax-quota-scraper.ts +609 -0
  14. package/harness/e2e/openai-quota-scraper.ts +447 -0
  15. package/harness/e2e/playwright-runner.ts +204 -0
  16. package/harness/e2e/quota-status.ts +194 -0
  17. package/harness/e2e/test-engine.ts +398 -0
  18. package/harness/forked-summarizer.ts +304 -0
  19. package/harness/herdr-agents.ts +91 -0
  20. package/harness/index.ts +232 -0
  21. package/harness/job-state-machine.ts +363 -0
  22. package/harness/loop-code-agent.ts +284 -0
  23. package/harness/loop-controller.ts +201 -0
  24. package/harness/loop-review-agent.ts +295 -0
  25. package/harness/loop-runtime.ts +760 -0
  26. package/harness/loop-types.ts +118 -0
  27. package/harness/master-planner.ts +327 -0
  28. package/harness/notification-events.ts +299 -0
  29. package/harness/output-limit-handler.ts +316 -0
  30. package/harness/partial-recovery.ts +531 -0
  31. package/harness/project-detector/detector.ts +328 -0
  32. package/harness/repair-engine.ts +340 -0
  33. package/harness/session-memory.ts +401 -0
  34. package/harness/task-graph.d.ts +51 -0
  35. package/harness/task-graph.ts +143 -0
  36. package/mirror.ts +278 -0
  37. package/package.json +8 -12
  38. package/packages/a2a-adapter/src/agent.ts +139 -0
  39. package/packages/a2a-adapter/src/client.ts +107 -0
  40. package/packages/a2a-adapter/src/discovery.ts +106 -0
  41. package/packages/a2a-adapter/src/index.ts +38 -0
  42. package/packages/a2a-adapter/src/protocol.ts +46 -0
  43. package/packages/a2a-adapter/src/transport.ts +142 -0
  44. package/packages/a2a-adapter/src/types.ts +117 -0
  45. package/packages/auth/src/minimax-browser-auth.ts +1109 -0
  46. package/packages/auth/src/run-minimax-auth.ts +150 -0
  47. package/packages/autonomous-refactor/src/detector.ts +219 -0
  48. package/packages/autonomous-refactor/src/index.ts +16 -0
  49. package/packages/autonomous-refactor/src/planner.ts +99 -0
  50. package/packages/autonomous-refactor/src/types.ts +57 -0
  51. package/packages/autonomous-runtime/src/inbox.ts +266 -0
  52. package/packages/autonomous-runtime/src/index.ts +22 -0
  53. package/packages/autonomous-runtime/src/lease.ts +318 -0
  54. package/packages/autonomous-runtime/src/types.ts +257 -0
  55. package/packages/cache-strategy/src/cache.ts +213 -0
  56. package/packages/cache-strategy/src/index.ts +6 -0
  57. package/packages/cache-strategy/src/types.ts +40 -0
  58. package/packages/capability-registry/src/defaults.ts +247 -0
  59. package/packages/capability-registry/src/index.ts +43 -0
  60. package/packages/capability-registry/src/query.ts +99 -0
  61. package/packages/capability-registry/src/registry.ts +222 -0
  62. package/packages/capability-registry/src/types.d.ts +47 -0
  63. package/packages/capability-registry/src/types.js +10 -0
  64. package/packages/capability-registry/src/types.ts +83 -0
  65. package/packages/checkpoint/src/checkpoint-manager.ts +33 -0
  66. package/packages/checkpoint/src/differ.ts +281 -0
  67. package/packages/checkpoint/src/engine.ts +532 -0
  68. package/packages/checkpoint/src/index.ts +48 -0
  69. package/packages/checkpoint/src/storage.ts +439 -0
  70. package/packages/checkpoint/src/types.ts +348 -0
  71. package/packages/cli-plugin-sdk/src/index.ts +169 -0
  72. package/packages/cli-plugin-sdk/src/plugin-fs.ts +91 -0
  73. package/packages/cli-plugin-sdk/src/registry.ts +55 -0
  74. package/packages/cli-plugin-sdk/src/types.ts +32 -0
  75. package/packages/clipboard/dist/src/clipboard.d.ts +11 -0
  76. package/packages/clipboard/dist/src/clipboard.js +51 -0
  77. package/packages/clipboard/dist/src/copy-sync.d.ts +27 -0
  78. package/packages/clipboard/dist/src/copy-sync.js +170 -0
  79. package/packages/clipboard/dist/src/gist-relay.d.ts +48 -0
  80. package/packages/clipboard/dist/src/gist-relay.js +186 -0
  81. package/packages/clipboard/dist/src/github-login.d.ts +16 -0
  82. package/packages/clipboard/dist/src/github-login.js +69 -0
  83. package/packages/clipboard/dist/src/index.d.ts +4 -0
  84. package/packages/clipboard/dist/src/index.js +3 -0
  85. package/packages/clipboard/dist/src/types.d.ts +13 -0
  86. package/packages/clipboard/dist/src/types.js +5 -0
  87. package/packages/clipboard/src/clipboard.ts +59 -0
  88. package/packages/clipboard/src/copy-sync.ts +201 -0
  89. package/packages/clipboard/src/gist-relay.ts +240 -0
  90. package/packages/clipboard/src/github-login.ts +107 -0
  91. package/packages/clipboard/src/index.ts +3 -0
  92. package/packages/clipboard/src/types.ts +14 -0
  93. package/packages/code-generation/src/faker.ts +461 -0
  94. package/packages/code-generation/src/generator.ts +421 -0
  95. package/packages/code-generation/src/index.ts +56 -0
  96. package/packages/code-generation/src/templates/ejs-renderer.ts +142 -0
  97. package/packages/code-generation/src/templates/registry.ts +174 -0
  98. package/packages/code-generation/src/types.ts +373 -0
  99. package/packages/code-review/src/engine.ts +408 -0
  100. package/packages/code-review/src/index.ts +46 -0
  101. package/packages/code-review/src/reports/html.ts +143 -0
  102. package/packages/code-review/src/reports/markdown.ts +197 -0
  103. package/packages/code-review/src/reports/text.ts +171 -0
  104. package/packages/code-review/src/types.ts +324 -0
  105. package/packages/codex-adapter/src/executor.ts +83 -0
  106. package/packages/codex-adapter/src/index.ts +16 -0
  107. package/packages/codex-adapter/src/provider.ts +213 -0
  108. package/packages/codex-adapter/src/types.ts +118 -0
  109. package/packages/config-capture/src/index.ts +357 -0
  110. package/packages/context-compiler/src/budget.ts +122 -0
  111. package/packages/context-compiler/src/cache.ts +134 -0
  112. package/packages/context-compiler/src/compiler.ts +314 -0
  113. package/packages/context-compiler/src/deduplicate.ts +171 -0
  114. package/packages/context-compiler/src/filter.ts +135 -0
  115. package/packages/context-compiler/src/index.ts +61 -0
  116. package/packages/context-compiler/src/okf-loader.ts +86 -0
  117. package/packages/context-compiler/src/score.ts +130 -0
  118. package/packages/context-compiler/src/types.ts +246 -0
  119. package/packages/context-discovery/dist/src/discover.d.ts +3 -0
  120. package/packages/context-discovery/dist/src/discover.js +42 -0
  121. package/packages/context-discovery/dist/src/discovery.d.ts +28 -0
  122. package/packages/context-discovery/dist/src/discovery.js +21 -0
  123. package/packages/context-discovery/dist/src/index.d.ts +3 -0
  124. package/packages/context-discovery/dist/src/index.js +2 -0
  125. package/packages/context-discovery/dist/src/types.d.ts +16 -0
  126. package/packages/context-discovery/dist/src/types.js +2 -0
  127. package/packages/context-discovery/src/discover.ts +42 -0
  128. package/packages/context-discovery/src/discovery.ts +44 -0
  129. package/packages/context-discovery/src/index.ts +2 -0
  130. package/packages/context-discovery/src/types.ts +15 -0
  131. package/packages/context-manager/src/compaction.ts +139 -0
  132. package/packages/context-manager/src/core.ts +85 -0
  133. package/packages/context-manager/src/index.ts +22 -0
  134. package/packages/context-manager/src/types.ts +44 -0
  135. package/packages/cookie-sanitizer/src/atomic-write.ts +79 -0
  136. package/packages/cookie-sanitizer/src/detect-format.ts +102 -0
  137. package/packages/cookie-sanitizer/src/index.ts +89 -0
  138. package/packages/cookie-sanitizer/src/infer-provider.ts +103 -0
  139. package/packages/cookie-sanitizer/src/normalize.ts +92 -0
  140. package/packages/cookie-sanitizer/src/parse-json.ts +122 -0
  141. package/packages/cookie-sanitizer/src/parse-netscape.ts +118 -0
  142. package/packages/cookie-sanitizer/src/sync.ts +312 -0
  143. package/packages/cookie-sanitizer/src/types.ts +101 -0
  144. package/packages/cookie-sanitizer/src/watcher.ts +180 -0
  145. package/packages/cost-optimizer/src/budget.ts +138 -0
  146. package/packages/cost-optimizer/src/config.ts +34 -0
  147. package/packages/cost-optimizer/src/forecast.ts +59 -0
  148. package/packages/cost-optimizer/src/index.ts +74 -0
  149. package/packages/cost-optimizer/src/optimizer.ts +277 -0
  150. package/packages/cost-optimizer/src/selection.ts +264 -0
  151. package/packages/cost-optimizer/src/tracker.ts +122 -0
  152. package/packages/cost-optimizer/src/types.ts +134 -0
  153. package/packages/dependency-analyzer/dist/src/analyzer.d.ts +17 -0
  154. package/packages/dependency-analyzer/dist/src/analyzer.js +119 -0
  155. package/packages/dependency-analyzer/dist/src/imports.d.ts +12 -0
  156. package/packages/dependency-analyzer/dist/src/imports.js +73 -0
  157. package/packages/dependency-analyzer/dist/src/index.d.ts +4 -0
  158. package/packages/dependency-analyzer/dist/src/index.js +3 -0
  159. package/packages/dependency-analyzer/dist/src/types.d.ts +28 -0
  160. package/packages/dependency-analyzer/dist/src/types.js +5 -0
  161. package/packages/dependency-analyzer/src/analyzer.ts +140 -0
  162. package/packages/dependency-analyzer/src/imports.ts +93 -0
  163. package/packages/dependency-analyzer/src/index.ts +9 -0
  164. package/packages/dependency-analyzer/src/types.ts +38 -0
  165. package/packages/django-plugin/src/analyzer.ts +284 -0
  166. package/packages/django-plugin/src/index.ts +39 -0
  167. package/packages/django-plugin/src/types.ts +35 -0
  168. package/packages/doc-generator/src/detector.ts +113 -0
  169. package/packages/doc-generator/src/docs.ts +158 -0
  170. package/packages/doc-generator/src/index.ts +7 -0
  171. package/packages/doc-generator/src/types.ts +58 -0
  172. package/packages/evaluation-engine/src/engine.ts +488 -0
  173. package/packages/evaluation-engine/src/index.ts +23 -0
  174. package/packages/evaluation-engine/src/types.ts +136 -0
  175. package/packages/evaluation-runner/src/index.ts +6 -0
  176. package/packages/evaluation-runner/src/runner.ts +182 -0
  177. package/packages/evaluation-runner/src/types.ts +51 -0
  178. package/packages/event-bus/dist/src/bus.d.ts +15 -0
  179. package/packages/event-bus/dist/src/bus.js +98 -0
  180. package/packages/event-bus/dist/src/herdr-bus.d.ts +121 -0
  181. package/packages/event-bus/dist/src/herdr-bus.js +322 -0
  182. package/packages/event-bus/dist/src/index.d.ts +6 -0
  183. package/packages/event-bus/dist/src/index.js +4 -0
  184. package/packages/event-bus/dist/src/types.d.ts +27 -0
  185. package/packages/event-bus/dist/src/types.js +10 -0
  186. package/packages/event-bus/src/bus.ts +111 -0
  187. package/packages/event-bus/src/herdr-bus.ts +525 -0
  188. package/packages/event-bus/src/index.ts +38 -0
  189. package/packages/event-bus/src/types.ts +59 -0
  190. package/packages/event-store/dist/src/index.d.ts +3 -0
  191. package/packages/event-store/dist/src/index.js +2 -0
  192. package/packages/event-store/dist/src/store.d.ts +15 -0
  193. package/packages/event-store/dist/src/store.js +139 -0
  194. package/packages/event-store/dist/src/types.d.ts +48 -0
  195. package/packages/event-store/dist/src/types.js +5 -0
  196. package/packages/event-store/src/index.ts +11 -0
  197. package/packages/event-store/src/store.ts +168 -0
  198. package/packages/event-store/src/types.d.ts +48 -0
  199. package/packages/event-store/src/types.js +5 -0
  200. package/packages/event-store/src/types.ts +65 -0
  201. package/packages/experience-replay/src/index.ts +19 -0
  202. package/packages/experience-replay/src/replay.ts +348 -0
  203. package/packages/experience-replay/src/types.ts +128 -0
  204. package/packages/feedback-collector/src/collector.ts +160 -0
  205. package/packages/feedback-collector/src/index.ts +6 -0
  206. package/packages/feedback-collector/src/types.ts +51 -0
  207. package/packages/framework-detector/src/detector.ts +586 -0
  208. package/packages/framework-detector/src/index.ts +46 -0
  209. package/packages/framework-detector/src/signatures/registry.ts +648 -0
  210. package/packages/framework-detector/src/types.ts +299 -0
  211. package/packages/framework-plugin-sdk/src/index.ts +45 -0
  212. package/packages/framework-plugin-sdk/src/manager.ts +525 -0
  213. package/packages/framework-plugin-sdk/src/types.ts +449 -0
  214. package/packages/frappe-plugin/src/analyzer.ts +454 -0
  215. package/packages/frappe-plugin/src/index.ts +72 -0
  216. package/packages/frappe-plugin/src/types.ts +135 -0
  217. package/packages/generic-web-plugin/src/analyzer.ts +347 -0
  218. package/packages/generic-web-plugin/src/index.ts +61 -0
  219. package/packages/generic-web-plugin/src/types.ts +41 -0
  220. package/packages/health-monitor/src/index.ts +16 -0
  221. package/packages/health-monitor/src/monitor.ts +216 -0
  222. package/packages/health-monitor/src/types.ts +45 -0
  223. package/packages/intent-analyzer/dist/src/analyzer.d.ts +13 -0
  224. package/packages/intent-analyzer/dist/src/analyzer.js +239 -0
  225. package/packages/intent-analyzer/dist/src/index.d.ts +3 -0
  226. package/packages/intent-analyzer/dist/src/index.js +2 -0
  227. package/packages/intent-analyzer/dist/src/types.d.ts +26 -0
  228. package/packages/intent-analyzer/dist/src/types.js +7 -0
  229. package/packages/intent-analyzer/src/analyzer.ts +259 -0
  230. package/packages/intent-analyzer/src/index.ts +8 -0
  231. package/packages/intent-analyzer/src/types.ts +44 -0
  232. package/packages/knowledge-retrieval/src/index.ts +18 -0
  233. package/packages/knowledge-retrieval/src/mcp-client.ts +212 -0
  234. package/packages/knowledge-retrieval/src/types.ts +112 -0
  235. package/packages/laravel-plugin/src/analyzer.ts +323 -0
  236. package/packages/laravel-plugin/src/index.ts +40 -0
  237. package/packages/laravel-plugin/src/types.ts +24 -0
  238. package/packages/learning-engine/src/engine.ts +391 -0
  239. package/packages/learning-engine/src/index.ts +26 -0
  240. package/packages/learning-engine/src/types.ts +201 -0
  241. package/packages/mcp-adapter/src/index.ts +20 -0
  242. package/packages/mcp-adapter/src/server.ts +273 -0
  243. package/packages/mcp-adapter/src/tools.ts +220 -0
  244. package/packages/mcp-adapter/src/types.ts +79 -0
  245. package/packages/memory-engine/src/engine.ts +615 -0
  246. package/packages/memory-engine/src/index.ts +20 -0
  247. package/packages/memory-engine/src/types.ts +159 -0
  248. package/packages/model-registry/src/cost.ts +80 -0
  249. package/packages/model-registry/src/defaults.ts +178 -0
  250. package/packages/model-registry/src/index.ts +57 -0
  251. package/packages/model-registry/src/query.ts +85 -0
  252. package/packages/model-registry/src/registry.ts +188 -0
  253. package/packages/model-registry/src/types.d.ts +63 -0
  254. package/packages/model-registry/src/types.js +5 -0
  255. package/packages/model-registry/src/types.ts +69 -0
  256. package/packages/nextjs-plugin/src/analyzer.ts +247 -0
  257. package/packages/nextjs-plugin/src/index.ts +41 -0
  258. package/packages/nextjs-plugin/src/types.ts +36 -0
  259. package/packages/notification/src/adapters/email-adapter.ts +126 -0
  260. package/packages/notification/src/adapters/ntfy-adapter.ts +100 -0
  261. package/packages/notification/src/adapters/telegram-adapter.ts +107 -0
  262. package/packages/notification/src/adapters/webhook-adapter.ts +75 -0
  263. package/packages/notification/src/base-adapter.ts +75 -0
  264. package/packages/notification/src/index.ts +9 -0
  265. package/packages/notification/src/notification-center.ts +286 -0
  266. package/packages/notification/src/types.ts +89 -0
  267. package/packages/observability/src/alerts.ts +355 -0
  268. package/packages/observability/src/health.ts +325 -0
  269. package/packages/observability/src/index.ts +79 -0
  270. package/packages/observability/src/logger.ts +373 -0
  271. package/packages/observability/src/metrics.ts +475 -0
  272. package/packages/observability/src/tracer.ts +336 -0
  273. package/packages/observability/src/types.ts +391 -0
  274. package/packages/okf-indexer/src/cli.ts +25 -0
  275. package/packages/okf-indexer/src/indexer.ts +186 -0
  276. package/packages/performance-optimizer/src/index.ts +20 -0
  277. package/packages/performance-optimizer/src/optimizer.ts +428 -0
  278. package/packages/performance-optimizer/src/types.ts +112 -0
  279. package/packages/privilege-broker/src/approval.ts +70 -0
  280. package/packages/privilege-broker/src/audit.ts +142 -0
  281. package/packages/privilege-broker/src/executor.ts +110 -0
  282. package/packages/privilege-broker/src/index.ts +46 -0
  283. package/packages/privilege-broker/src/registry.ts +98 -0
  284. package/packages/privilege-broker/src/types.ts +105 -0
  285. package/packages/project-analyzer/src/analyzer.ts +683 -0
  286. package/packages/project-analyzer/src/cache.ts +329 -0
  287. package/packages/project-analyzer/src/command-discovery.ts +239 -0
  288. package/packages/project-analyzer/src/index.ts +123 -0
  289. package/packages/project-analyzer/src/plugins/index.ts +16 -0
  290. package/packages/project-analyzer/src/rule-discovery.ts +282 -0
  291. package/packages/project-analyzer/src/signals.ts +355 -0
  292. package/packages/project-analyzer/src/types.ts +412 -0
  293. package/packages/project-analyzer/src/walker.ts +366 -0
  294. package/packages/projection-engine/dist/src/engine.d.ts +61 -0
  295. package/packages/projection-engine/dist/src/engine.js +87 -0
  296. package/packages/projection-engine/dist/src/index.d.ts +2 -0
  297. package/packages/projection-engine/dist/src/index.js +2 -0
  298. package/packages/projection-engine/dist/src/project.d.ts +3 -0
  299. package/packages/projection-engine/dist/src/project.js +24 -0
  300. package/packages/projection-engine/dist/src/types.d.ts +55 -0
  301. package/packages/projection-engine/dist/src/types.js +5 -0
  302. package/packages/projection-engine/src/engine.ts +134 -0
  303. package/packages/projection-engine/src/index.ts +8 -0
  304. package/packages/projection-engine/src/project.ts +24 -0
  305. package/packages/projection-engine/src/types.d.ts +55 -0
  306. package/packages/projection-engine/src/types.js +5 -0
  307. package/packages/projection-engine/src/types.ts +60 -0
  308. package/packages/prompt-compiler/src/budget.ts +170 -0
  309. package/packages/prompt-compiler/src/compiler.ts +188 -0
  310. package/packages/prompt-compiler/src/deduplicate.ts +84 -0
  311. package/packages/prompt-compiler/src/index.ts +50 -0
  312. package/packages/prompt-compiler/src/normalize.ts +140 -0
  313. package/packages/prompt-compiler/src/render.ts +105 -0
  314. package/packages/prompt-compiler/src/section-builder.ts +279 -0
  315. package/packages/prompt-compiler/src/types.ts +263 -0
  316. package/packages/prompt-compiler/src/validate.ts +157 -0
  317. package/packages/prompt-versioning/src/index.ts +6 -0
  318. package/packages/prompt-versioning/src/types.ts +41 -0
  319. package/packages/prompt-versioning/src/versioning.ts +149 -0
  320. package/packages/provider-adapter-sdk/dist/src/builder.d.ts +140 -0
  321. package/packages/provider-adapter-sdk/dist/src/builder.js +332 -0
  322. package/packages/provider-adapter-sdk/dist/src/errors.d.ts +71 -0
  323. package/packages/provider-adapter-sdk/dist/src/errors.js +111 -0
  324. package/packages/provider-adapter-sdk/dist/src/index.d.ts +15 -0
  325. package/packages/provider-adapter-sdk/dist/src/index.js +19 -0
  326. package/packages/provider-adapter-sdk/dist/src/registry.d.ts +108 -0
  327. package/packages/provider-adapter-sdk/dist/src/registry.js +301 -0
  328. package/packages/provider-adapter-sdk/dist/src/tester.d.ts +71 -0
  329. package/packages/provider-adapter-sdk/dist/src/tester.js +392 -0
  330. package/packages/provider-adapter-sdk/dist/src/types.d.ts +182 -0
  331. package/packages/provider-adapter-sdk/dist/src/types.js +11 -0
  332. package/packages/provider-adapter-sdk/src/builder.ts +442 -0
  333. package/packages/provider-adapter-sdk/src/errors.ts +153 -0
  334. package/packages/provider-adapter-sdk/src/index.ts +84 -0
  335. package/packages/provider-adapter-sdk/src/registry.ts +486 -0
  336. package/packages/provider-adapter-sdk/src/tester.ts +483 -0
  337. package/packages/provider-adapter-sdk/src/types.ts +293 -0
  338. package/packages/provider-router/dist/capability-registry/src/types.d.ts +47 -0
  339. package/packages/provider-router/dist/capability-registry/src/types.js +10 -0
  340. package/packages/provider-router/dist/provider-router/src/index.d.ts +23 -0
  341. package/packages/provider-router/dist/provider-router/src/index.js +25 -0
  342. package/packages/provider-router/dist/provider-router/src/policy.d.ts +10 -0
  343. package/packages/provider-router/dist/provider-router/src/policy.js +45 -0
  344. package/packages/provider-router/dist/provider-router/src/provider-router.d.ts +56 -0
  345. package/packages/provider-router/dist/provider-router/src/provider-router.js +222 -0
  346. package/packages/provider-router/dist/provider-router/src/strategies.d.ts +19 -0
  347. package/packages/provider-router/dist/provider-router/src/strategies.js +110 -0
  348. package/packages/provider-router/dist/provider-router/src/types.d.ts +91 -0
  349. package/packages/provider-router/dist/provider-router/src/types.js +10 -0
  350. package/packages/provider-router/dist/src/index.d.ts +23 -0
  351. package/packages/provider-router/dist/src/index.js +25 -0
  352. package/packages/provider-router/dist/src/policy.d.ts +10 -0
  353. package/packages/provider-router/dist/src/policy.js +45 -0
  354. package/packages/provider-router/dist/src/provider-router.d.ts +56 -0
  355. package/packages/provider-router/dist/src/provider-router.js +222 -0
  356. package/packages/provider-router/dist/src/strategies.d.ts +19 -0
  357. package/packages/provider-router/dist/src/strategies.js +110 -0
  358. package/packages/provider-router/dist/src/types.d.ts +91 -0
  359. package/packages/provider-router/dist/src/types.js +10 -0
  360. package/packages/provider-router/dist/types/src/runtime-types.d.ts +412 -0
  361. package/packages/provider-router/dist/types/src/runtime-types.js +2 -0
  362. package/packages/provider-router/src/index.ts +49 -0
  363. package/packages/provider-router/src/policy.ts +50 -0
  364. package/packages/provider-router/src/provider-router.ts +315 -0
  365. package/packages/provider-router/src/strategies.ts +158 -0
  366. package/packages/provider-router/src/types.ts +130 -0
  367. package/packages/provider-selector/src/index.ts +13 -0
  368. package/packages/provider-selector/src/selector.ts +120 -0
  369. package/packages/provider-selector/src/types.ts +33 -0
  370. package/packages/providers/dist/src/adapters.d.ts +133 -0
  371. package/packages/providers/dist/src/adapters.js +236 -0
  372. package/packages/providers/dist/src/deepagents-adapter.d.ts +78 -0
  373. package/packages/providers/dist/src/deepagents-adapter.js +323 -0
  374. package/packages/providers/dist/src/glm-usage.d.ts +102 -0
  375. package/packages/providers/dist/src/glm-usage.js +197 -0
  376. package/packages/providers/dist/src/index.d.ts +11 -0
  377. package/packages/providers/dist/src/index.js +11 -0
  378. package/packages/providers/dist/src/openai-usage.d.ts +103 -0
  379. package/packages/providers/dist/src/openai-usage.js +208 -0
  380. package/packages/providers/dist/src/provider-id.d.ts +46 -0
  381. package/packages/providers/dist/src/provider-id.js +113 -0
  382. package/packages/providers/src/adapters.ts +362 -0
  383. package/packages/providers/src/deepagents-adapter.ts +458 -0
  384. package/packages/providers/src/glm-usage.ts +248 -0
  385. package/packages/providers/src/index.ts +11 -0
  386. package/packages/providers/src/openai-usage.ts +263 -0
  387. package/packages/providers/src/provider-id.ts +129 -0
  388. package/packages/quota-manager/dist/src/examples/tui-usage-integration.d.ts +35 -0
  389. package/packages/quota-manager/dist/src/examples/tui-usage-integration.js +73 -0
  390. package/packages/quota-manager/dist/src/index.d.ts +8 -0
  391. package/packages/quota-manager/dist/src/index.js +8 -0
  392. package/packages/quota-manager/dist/src/quota-manager.d.ts +70 -0
  393. package/packages/quota-manager/dist/src/quota-manager.js +260 -0
  394. package/packages/quota-manager/dist/src/tui-usage-monitor.d.ts +96 -0
  395. package/packages/quota-manager/dist/src/tui-usage-monitor.js +268 -0
  396. package/packages/quota-manager/src/examples/tui-usage-integration.ts +72 -0
  397. package/packages/quota-manager/src/index.ts +8 -0
  398. package/packages/quota-manager/src/quota-manager.ts +336 -0
  399. package/packages/quota-manager/src/tui-usage-monitor.ts +355 -0
  400. package/packages/rate-limiter/src/index.ts +6 -0
  401. package/packages/rate-limiter/src/limiter.ts +122 -0
  402. package/packages/rate-limiter/src/types.ts +41 -0
  403. package/packages/react-vite-plugin/src/analyzer.ts +226 -0
  404. package/packages/react-vite-plugin/src/index.ts +39 -0
  405. package/packages/react-vite-plugin/src/types.ts +28 -0
  406. package/packages/release-manager/src/changelog.ts +148 -0
  407. package/packages/release-manager/src/index.ts +21 -0
  408. package/packages/release-manager/src/types.ts +50 -0
  409. package/packages/release-manager/src/version.ts +52 -0
  410. package/packages/requirement-compiler/src/ambiguity-detector.ts +302 -0
  411. package/packages/requirement-compiler/src/classifier.ts +145 -0
  412. package/packages/requirement-compiler/src/compiler.ts +328 -0
  413. package/packages/requirement-compiler/src/extractor.ts +155 -0
  414. package/packages/requirement-compiler/src/index.ts +36 -0
  415. package/packages/requirement-compiler/src/normalizer.ts +161 -0
  416. package/packages/requirement-compiler/src/risk-detector.ts +58 -0
  417. package/packages/requirement-compiler/src/types.ts +596 -0
  418. package/packages/runtime/dist/src/command-executor.d.ts +129 -0
  419. package/packages/runtime/dist/src/command-executor.js +383 -0
  420. package/packages/runtime/dist/src/index.d.ts +11 -0
  421. package/packages/runtime/dist/src/index.js +11 -0
  422. package/packages/runtime/dist/src/local-runtime-agent.d.ts +111 -0
  423. package/packages/runtime/dist/src/local-runtime-agent.js +356 -0
  424. package/packages/runtime/dist/src/policy-engine.d.ts +203 -0
  425. package/packages/runtime/dist/src/policy-engine.js +592 -0
  426. package/packages/runtime/dist/src/runtime-api.d.ts +137 -0
  427. package/packages/runtime/dist/src/runtime-api.js +454 -0
  428. package/packages/runtime/dist/src/workspace-manager.d.ts +162 -0
  429. package/packages/runtime/dist/src/workspace-manager.js +451 -0
  430. package/packages/runtime/src/command-executor.ts +523 -0
  431. package/packages/runtime/src/index.ts +11 -0
  432. package/packages/runtime/src/local-runtime-agent.ts +480 -0
  433. package/packages/runtime/src/policy-engine.ts +813 -0
  434. package/packages/runtime/src/runtime-api.ts +665 -0
  435. package/packages/runtime/src/workspace-manager.ts +591 -0
  436. package/packages/scheduler/src/scheduler.ts +50 -0
  437. package/packages/scheduler-adapter/src/cron.ts +123 -0
  438. package/packages/scheduler-adapter/src/index.ts +9 -0
  439. package/packages/scheduler-adapter/src/interface.ts +61 -0
  440. package/packages/scheduler-adapter/src/internal.ts +99 -0
  441. package/packages/scheduler-adapter/src/systemd.ts +221 -0
  442. package/packages/session/src/history.ts +353 -0
  443. package/packages/session/src/index.ts +53 -0
  444. package/packages/session/src/manager.ts +481 -0
  445. package/packages/session/src/policy.ts +363 -0
  446. package/packages/session/src/store.ts +348 -0
  447. package/packages/session/src/types.ts +275 -0
  448. package/packages/session-api/dist/src/api.d.ts +83 -0
  449. package/packages/session-api/dist/src/api.js +49 -0
  450. package/packages/session-api/dist/src/index.d.ts +2 -0
  451. package/packages/session-api/dist/src/index.js +2 -0
  452. package/packages/session-api/dist/src/types.d.ts +22 -0
  453. package/packages/session-api/dist/src/types.js +5 -0
  454. package/packages/session-api/src/api.ts +117 -0
  455. package/packages/session-api/src/index.ts +1 -0
  456. package/packages/session-api/src/types.ts +23 -0
  457. package/packages/session-export/dist/src/exporter.d.ts +28 -0
  458. package/packages/session-export/dist/src/exporter.js +42 -0
  459. package/packages/session-export/dist/src/index.d.ts +2 -0
  460. package/packages/session-export/dist/src/index.js +2 -0
  461. package/packages/session-export/dist/src/types.d.ts +20 -0
  462. package/packages/session-export/dist/src/types.js +5 -0
  463. package/packages/session-export/src/exporter.ts +81 -0
  464. package/packages/session-export/src/index.ts +1 -0
  465. package/packages/session-export/src/types.ts +22 -0
  466. package/packages/shared-context/src/index.ts +7 -0
  467. package/packages/shared-context/src/shared-context.ts +42 -0
  468. package/packages/skill-registry/src/defaults.ts +146 -0
  469. package/packages/skill-registry/src/index.ts +48 -0
  470. package/packages/skill-registry/src/matching.ts +118 -0
  471. package/packages/skill-registry/src/registry.ts +211 -0
  472. package/packages/skill-registry/src/types.ts +97 -0
  473. package/packages/sprint-planner/src/decomposer.ts +57 -0
  474. package/packages/sprint-planner/src/index.ts +16 -0
  475. package/packages/sprint-planner/src/planner.ts +150 -0
  476. package/packages/sprint-planner/src/types.ts +59 -0
  477. package/packages/subscription-engine/dist/src/engine.d.ts +13 -0
  478. package/packages/subscription-engine/dist/src/engine.js +40 -0
  479. package/packages/subscription-engine/dist/src/index.d.ts +2 -0
  480. package/packages/subscription-engine/dist/src/index.js +2 -0
  481. package/packages/subscription-engine/dist/src/subscriptions.d.ts +19 -0
  482. package/packages/subscription-engine/dist/src/subscriptions.js +39 -0
  483. package/packages/subscription-engine/dist/src/types.d.ts +24 -0
  484. package/packages/subscription-engine/dist/src/types.js +5 -0
  485. package/packages/subscription-engine/src/engine.ts +55 -0
  486. package/packages/subscription-engine/src/index.ts +6 -0
  487. package/packages/subscription-engine/src/subscriptions.ts +55 -0
  488. package/packages/subscription-engine/src/types.ts +27 -0
  489. package/packages/task-compiler/src/command-policy.ts +193 -0
  490. package/packages/task-compiler/src/compiler.ts +114 -0
  491. package/packages/task-compiler/src/decompose.ts +265 -0
  492. package/packages/task-compiler/src/file-scope.ts +240 -0
  493. package/packages/task-compiler/src/graph.ts +144 -0
  494. package/packages/task-compiler/src/index.ts +38 -0
  495. package/packages/task-compiler/src/types.ts +225 -0
  496. package/packages/task-compiler/src/validate.ts +218 -0
  497. package/packages/task-compiler/src/verification.ts +248 -0
  498. package/packages/tencentdb-memory/src/client.ts +130 -0
  499. package/packages/tencentdb-memory/src/index.ts +32 -0
  500. package/packages/tencentdb-memory/src/loader.ts +150 -0
  501. package/packages/tencentdb-memory/src/mcp-tools.ts +213 -0
  502. package/packages/tencentdb-memory/src/types.ts +101 -0
  503. package/packages/tencentdb-sync/src/cli.ts +363 -0
  504. package/packages/tencentdb-sync/src/client.ts +268 -0
  505. package/packages/tencentdb-sync/src/config.ts +139 -0
  506. package/packages/tencentdb-sync/src/index.ts +15 -0
  507. package/packages/test-data-generator/src/faker-adapter.ts +657 -0
  508. package/packages/test-data-generator/src/generator.ts +461 -0
  509. package/packages/test-data-generator/src/index.ts +48 -0
  510. package/packages/test-data-generator/src/types.ts +421 -0
  511. package/packages/test-generator/src/generator.ts +144 -0
  512. package/packages/test-generator/src/index.ts +11 -0
  513. package/packages/test-generator/src/types.ts +39 -0
  514. package/packages/todo-bd-sync/src/detector.ts +171 -0
  515. package/packages/todo-bd-sync/src/extension.ts +129 -0
  516. package/packages/todo-bd-sync/src/index.ts +401 -0
  517. package/packages/todo-bd-sync/src/sync.ts +322 -0
  518. package/packages/todo-bd-sync/src/task-analyzer.ts +314 -0
  519. package/packages/todo-bd-sync/src/todo-reminder.ts +418 -0
  520. package/packages/todo-bd-sync/src/types.ts +137 -0
  521. package/packages/token-estimation/src/index.ts +192 -0
  522. package/packages/token-optimizer/src/index.ts +15 -0
  523. package/packages/token-optimizer/src/optimizer.ts +150 -0
  524. package/packages/token-optimizer/src/types.ts +47 -0
  525. package/packages/types/src/agent-worker-types.d.ts +206 -0
  526. package/packages/types/src/agent-worker-types.js +41 -0
  527. package/packages/types/src/agent-worker-types.ts +264 -0
  528. package/packages/types/src/ai-providers.d.ts +36 -0
  529. package/packages/types/src/ai-providers.js +66 -0
  530. package/packages/types/src/ai-providers.ts +73 -0
  531. package/packages/types/src/runtime-types.d.ts +418 -0
  532. package/packages/types/src/runtime-types.js +3 -0
  533. package/packages/types/src/runtime-types.ts +588 -0
  534. package/packages/workflow-events/dist/src/events.d.ts +38 -0
  535. package/packages/workflow-events/dist/src/events.js +55 -0
  536. package/packages/workflow-events/dist/src/index.d.ts +2 -0
  537. package/packages/workflow-events/dist/src/index.js +2 -0
  538. package/packages/workflow-events/dist/src/pipeline.d.ts +21 -0
  539. package/packages/workflow-events/dist/src/pipeline.js +36 -0
  540. package/packages/workflow-events/dist/src/types.d.ts +110 -0
  541. package/packages/workflow-events/dist/src/types.js +5 -0
  542. package/packages/workflow-events/src/events.ts +86 -0
  543. package/packages/workflow-events/src/index.ts +19 -0
  544. package/packages/workflow-events/src/pipeline.ts +41 -0
  545. package/packages/workflow-events/src/types.d.ts +110 -0
  546. package/packages/workflow-events/src/types.js +5 -0
  547. package/packages/workflow-events/src/types.ts +139 -0
  548. package/packages/workspace-scanner/dist/src/detect.d.ts +3 -0
  549. package/packages/workspace-scanner/dist/src/detect.js +60 -0
  550. package/packages/workspace-scanner/dist/src/git.d.ts +7 -0
  551. package/packages/workspace-scanner/dist/src/git.js +75 -0
  552. package/packages/workspace-scanner/dist/src/index.d.ts +5 -0
  553. package/packages/workspace-scanner/dist/src/index.js +4 -0
  554. package/packages/workspace-scanner/dist/src/scanner.d.ts +11 -0
  555. package/packages/workspace-scanner/dist/src/scanner.js +59 -0
  556. package/packages/workspace-scanner/dist/src/types.d.ts +35 -0
  557. package/packages/workspace-scanner/dist/src/types.js +5 -0
  558. package/packages/workspace-scanner/src/detect.ts +77 -0
  559. package/packages/workspace-scanner/src/git.ts +83 -0
  560. package/packages/workspace-scanner/src/index.ts +9 -0
  561. package/packages/workspace-scanner/src/scanner.ts +73 -0
  562. package/packages/workspace-scanner/src/types.ts +48 -0
  563. package/packages/worktree/dist/src/index.d.ts +7 -0
  564. package/packages/worktree/dist/src/index.js +7 -0
  565. package/packages/worktree/dist/src/worktree.d.ts +88 -0
  566. package/packages/worktree/dist/src/worktree.js +239 -0
  567. package/packages/worktree/src/index.ts +7 -0
  568. package/packages/worktree/src/worktree.ts +290 -0
  569. package/packages/write-review/src/blackboard.ts +249 -0
  570. package/packages/write-review/src/gate.ts +169 -0
  571. package/packages/write-review/src/index.ts +18 -0
  572. package/packages/write-review/src/injection.ts +170 -0
  573. package/packages/write-review/src/review.ts +206 -0
  574. package/packages/write-review/src/trigger.ts +133 -0
  575. package/packages/write-review/src/types.ts +90 -0
  576. package/proactive-compact.ts +90 -0
  577. package/prompts/tencentdb-connect.md +35 -0
  578. package/prompts/tencentdb-setup.md +101 -0
  579. package/prompts/tencentdb.md +88 -0
  580. package/renderer.ts +205 -0
  581. package/skills/harness-runtime/SKILL.md +237 -0
  582. package/status-parsers.ts +84 -0
  583. package/tracker.ts +72 -0
  584. package/windows.ts +121 -0
package/cli.ts ADDED
@@ -0,0 +1,111 @@
1
+ /**
2
+ * Pure helper functions — testable without pi context.
3
+ * Imported by tracker.ts, mirror.ts, windows.ts, renderer.ts.
4
+ */
5
+
6
+ import { appendFileSync, existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
7
+ import { dirname, join } from "node:path";
8
+ import { homedir } from "node:os";
9
+
10
+ /** Resolve the ~/.pi/usage-status/ directory. Override with PI_USAGE_DIR env var (testing). */
11
+ export function getUsageDir(): string {
12
+ const override = process.env.PI_USAGE_DIR;
13
+ if (override) return override;
14
+ return join(homedir(), ".pi", "usage-status");
15
+ }
16
+
17
+ /** Resolve the JSONL usage log path. */
18
+ export function getUsageLogPath(): string {
19
+ return join(getUsageDir(), "usage.jsonl");
20
+ }
21
+
22
+ /** Resolve the mirror JSON path. */
23
+ export function getMirrorPath(): string {
24
+ return join(getUsageDir(), "mirror.json");
25
+ }
26
+
27
+ /** Ensure the directory exists. Idempotent. */
28
+ export function ensureUsageDir(): void {
29
+ const dir = getUsageDir();
30
+ if (!existsSync(dir)) {
31
+ mkdirSync(dir, { recursive: true });
32
+ }
33
+ }
34
+
35
+ /** Read the JSONL usage log as an array of UsageRecord. Returns [] if missing. */
36
+ export function readJsonl<T>(path: string): T[] {
37
+ if (!existsSync(path)) return [];
38
+ const text = readFileSync(path, "utf-8");
39
+ const out: T[] = [];
40
+ for (const line of text.split("\n")) {
41
+ const trimmed = line.trim();
42
+ if (!trimmed) continue;
43
+ try {
44
+ out.push(JSON.parse(trimmed) as T);
45
+ } catch {
46
+ // skip corrupted line
47
+ }
48
+ }
49
+ return out;
50
+ }
51
+
52
+ /** Append a single JSON line to a JSONL file. */
53
+ export function appendJsonl(path: string, record: unknown): void {
54
+ ensureUsageDir();
55
+ const line = JSON.stringify(record) + "\n";
56
+ appendFileSync(path, line, "utf-8");
57
+ }
58
+
59
+ /** Read JSON file safely. Returns null if missing or corrupted. */
60
+ export function readJson(path: string): unknown | null {
61
+ if (!existsSync(path)) return null;
62
+ try {
63
+ return JSON.parse(readFileSync(path, "utf-8"));
64
+ } catch {
65
+ return null;
66
+ }
67
+ }
68
+
69
+ /** Write JSON file (creates parent dir if needed). */
70
+ export function writeJson(path: string, data: unknown): void {
71
+ ensureUsageDir();
72
+ if (!existsSync(dirname(path))) {
73
+ mkdirSync(dirname(path), { recursive: true });
74
+ }
75
+ writeFileSync(path, JSON.stringify(data, null, 2) + "\n", "utf-8");
76
+ }
77
+
78
+ /** Format milliseconds as "Xh Ym" or "Xd Yh" or "Xm" or "Xs". */
79
+ export function formatDuration(ms: number): string {
80
+ const abs = Math.max(0, Math.floor(ms / 1000));
81
+ const sec = abs % 60;
82
+ const min = Math.floor(abs / 60) % 60;
83
+ const hr = Math.floor(abs / 3600) % 24;
84
+ const day = Math.floor(abs / 86400);
85
+ if (day > 0) return `${day}d ${hr}h`;
86
+ if (hr > 0) return `${hr}h ${min}m`;
87
+ if (min > 0) return `${min}m`;
88
+ return `${sec}s`;
89
+ }
90
+
91
+ /** Format a timestamp as relative time "X min ago". */
92
+ export function formatRelative(fromIso: string, nowMs: number): string {
93
+ const fromMs = Date.parse(fromIso);
94
+ if (isNaN(fromMs)) return "unknown";
95
+ const deltaMs = nowMs - fromMs;
96
+ return formatDuration(deltaMs) + " ago";
97
+ }
98
+
99
+ /** Format a token count with k/M suffix. */
100
+ export function formatTokens(n: number): string {
101
+ if (n < 1000) return String(n);
102
+ if (n < 1_000_000) return `${(n / 1000).toFixed(1)}k`;
103
+ return `${(n / 1_000_000).toFixed(2)}M`;
104
+ }
105
+
106
+ /** Format USD cost with 2-4 decimals depending on size. */
107
+ export function formatUsd(n: number): string {
108
+ if (n < 0.01) return `$${n.toFixed(4)}`;
109
+ if (n < 100) return `$${n.toFixed(2)}`;
110
+ return `$${n.toFixed(0)}`;
111
+ }
@@ -0,0 +1,204 @@
1
+ import type { MirrorRecord, ProviderMirrorRecord } from "./mirror.ts";
2
+
3
+ import {
4
+ parseContextWindowStatusLine,
5
+ parseQuotaUsageStatusLine,
6
+ type ParsedContextWindowUsage,
7
+ type ParsedQuotaUsageData,
8
+ } from "./status-parsers.ts";
9
+ import { getProviderLabel } from "./packages/types/src/ai-providers.js";
10
+ import {
11
+ providerHasContinuousScrape,
12
+ providerHasTUISignal,
13
+ } from "./packages/providers/src/provider-id.js";
14
+
15
+ export type ParsedFooterStatusValue =
16
+ | { kind: "quota"; value: ParsedQuotaUsageData }
17
+ | { kind: "context-window"; value: ParsedContextWindowUsage }
18
+ | { kind: "today"; value: { tokens: number; cost: number } }
19
+ | { kind: "unknown"; value: null };
20
+
21
+ export function parseFooterStatusValue(value: string): ParsedFooterStatusValue {
22
+ const quota = parseQuotaUsageStatusLine(value);
23
+ if (quota) {
24
+ return { kind: "quota", value: quota };
25
+ }
26
+
27
+ const contextWindow = parseContextWindowStatusLine(value);
28
+ if (contextWindow) {
29
+ return { kind: "context-window", value: contextWindow };
30
+ }
31
+
32
+ const todayMatch = value.match(/^today:\s*([\d,.]+)k tok\s*·\s*\$([\d,.]+)/i);
33
+ if (todayMatch) {
34
+ const tokens = Number.parseFloat(todayMatch[1].replace(/,/g, "")) * 1000;
35
+ const cost = Number.parseFloat(todayMatch[2].replace(/,/g, ""));
36
+ if (Number.isFinite(tokens) && Number.isFinite(cost)) {
37
+ return {
38
+ kind: "today",
39
+ value: { tokens, cost },
40
+ };
41
+ }
42
+ }
43
+
44
+ return { kind: "unknown", value: null };
45
+ }
46
+
47
+ /**
48
+ * Get display label for a provider id.
49
+ * Uses the canonical getProviderLabel() from packages/types/src/ai-providers.ts
50
+ * which handles all 9 known providers: minimax, openai, anthropic, glm,
51
+ * openrouter, openai-codex, deepseek, gemini, kimi.
52
+ */
53
+ function providerDisplayName(provider: string | null | undefined): string {
54
+ if (!provider) return "Provider";
55
+ return getProviderLabel(provider);
56
+ }
57
+
58
+ /**
59
+ * Hint shown when the provider has no usage data yet.
60
+ * Covers all 9 known providers from KNOWN_AI_PROVIDERS.
61
+ */
62
+ function missingDataHint(
63
+ provider: string | null | undefined,
64
+ hasCookieSource: boolean,
65
+ ): string {
66
+ if (!provider) return "no usage source configured";
67
+
68
+ // MiniMax: needs cookies for continuous scrape
69
+ if (provider === "minimax") {
70
+ return hasCookieSource
71
+ ? "no data yet (updates after first scrape)"
72
+ : "drop minimax cookies into ~/.pi-harness-runtime/cookies/";
73
+ }
74
+
75
+ // TUI signal providers: one-shot signal on limit hit
76
+ if (providerHasTUISignal(provider)) {
77
+ return "no signal yet (updates on first limit hit)";
78
+ }
79
+
80
+ // Providers without any tracking implementation yet
81
+ // deepseek, gemini, kimi, or any unknown provider
82
+ if (provider === "deepseek") {
83
+ return "deepseek usage tracking not yet implemented";
84
+ }
85
+ if (provider === "gemini") {
86
+ return "gemini usage tracking not yet implemented";
87
+ }
88
+ if (provider === "kimi") {
89
+ return "kimi usage tracking not yet implemented";
90
+ }
91
+
92
+ // Generic fallback for any other unknown provider
93
+ if (!hasCookieSource) return "no usage source configured";
94
+ return "no data yet";
95
+ }
96
+
97
+ /** Normalize an unknown mirror record into a ProviderMirrorRecord view. */
98
+ function toProviderView(
99
+ mirror: MirrorRecord | ProviderMirrorRecord | null,
100
+ ): ProviderMirrorRecord | null {
101
+ if (!mirror) return null;
102
+ const m = mirror as ProviderMirrorRecord;
103
+ if (typeof m.provider === "string") return m;
104
+ // Legacy flat-shape: already a single record without a provider wrapper.
105
+ return {
106
+ synced_at: m.synced_at ?? new Date().toISOString(),
107
+ provider: (m as MirrorRecord).provider ?? "",
108
+ source: "scrape",
109
+ model: (m as MirrorRecord).model,
110
+ h5_used_pct: (m as MirrorRecord).h5_used_pct,
111
+ h5_resets_at: (m as MirrorRecord).h5_resets_at,
112
+ weekly_used_pct: (m as MirrorRecord).weekly_used_pct,
113
+ weekly_resets_at: (m as MirrorRecord).weekly_resets_at,
114
+ };
115
+ }
116
+
117
+ export function buildFooterStatusValue(
118
+ local: { today: { tokens: number; cost: number } },
119
+ mirror: MirrorRecord | ProviderMirrorRecord | null,
120
+ freshness: "fresh" | "stale" | "expired" | "missing",
121
+ hasCookieSource: boolean = true,
122
+ activeProvider: string | null = null,
123
+ ): string {
124
+ const view = toProviderView(mirror);
125
+ const provider = activeProvider ?? view?.provider ?? null;
126
+ const label = providerDisplayName(provider);
127
+
128
+ // TUI-signal exhaustion path: fires when limit is hit (one-shot signal).
129
+ // This takes priority over continuous data to show the most recent state.
130
+ if (
131
+ provider &&
132
+ view &&
133
+ view.exhausted &&
134
+ (view.limitType !== undefined ||
135
+ view.resets_at !== undefined ||
136
+ view.h5_resets_at !== undefined)
137
+ ) {
138
+ const reset = view.resets_at ?? view.h5_resets_at ?? "soon";
139
+ const limitType = view.limitType ?? "tokens";
140
+ return `${label}: limit hit (${limitType}), reset ${reset}`;
141
+ }
142
+
143
+ // Continuous data path: providers with continuous scrape (MiniMax has 5h+weekly, OpenAI has weekly-only)
144
+ if (
145
+ provider &&
146
+ providerHasContinuousScrape(provider) &&
147
+ view &&
148
+ freshness !== "expired" &&
149
+ (view.h5_used_pct !== undefined || view.weekly_used_pct !== undefined)
150
+ ) {
151
+ const weeklyPct = view.weekly_used_pct ?? 0;
152
+ const weeklyLeft = Math.max(0, 100 - weeklyPct);
153
+ const weeklyResets = view.weekly_resets_at ?? "soon";
154
+
155
+ let statusLine: string;
156
+ if (view.h5_used_pct !== undefined) {
157
+ // MiniMax: has both 5h and weekly windows
158
+ const h5Pct = view.h5_used_pct;
159
+ const h5Left = Math.max(0, 100 - h5Pct);
160
+ statusLine = `5h: ${h5Left.toFixed(0)}% left · week: ${weeklyLeft.toFixed(0)}% left`;
161
+ } else {
162
+ // OpenAI: weekly-only (no 5h window)
163
+ statusLine = `week: ${weeklyLeft.toFixed(0)}% left (resets ${weeklyResets})`;
164
+ }
165
+
166
+ const freshnessSuffix =
167
+ freshness === "fresh" || freshness === "missing" ? "" : ` · ${freshness}`;
168
+ return `${label}: ${statusLine}${freshnessSuffix}`;
169
+ }
170
+
171
+ // TUI signal providers (OpenAI, Anthropic, GLM, OpenRouter):
172
+ // Show monitoring status when we have a record but haven't hit limits.
173
+ // These providers only emit data when a limit is hit.
174
+ if (
175
+ provider &&
176
+ providerHasTUISignal(provider) &&
177
+ view &&
178
+ freshness !== "expired"
179
+ ) {
180
+ // If exhausted is not set, we're monitoring normally
181
+ if (!view.exhausted) {
182
+ return `${label}: monitoring (no limits hit)`;
183
+ }
184
+ }
185
+
186
+ // Discoverable hint when we have no data yet.
187
+ if (
188
+ provider &&
189
+ (!view || freshness === "expired" || freshness === "missing")
190
+ ) {
191
+ const hint = missingDataHint(provider, hasCookieSource);
192
+ // MiniMax-on-fresh-machine still gets the cookie hint; for others
193
+ // the hint explains the signal-driven design.
194
+ if (provider === "minimax" && !hasCookieSource) {
195
+ return `${label}: 5h: -- (${hint})`;
196
+ }
197
+ return `${label}: 5h: -- · week: -- (${hint})`;
198
+ }
199
+
200
+ // Silent fallback: only reached if we genuinely don't know the provider.
201
+ // No "5h/week: --" line here because we'd be making up data.
202
+ const todayStr = `${(local.today.tokens / 1000).toFixed(1)}k tok · $${local.today.cost.toFixed(3)}`;
203
+ return `today: ${todayStr}`;
204
+ }
@@ -0,0 +1,189 @@
1
+ /**
2
+ * Agent Handoff Protocol — RFC-0012
3
+ *
4
+ * Clean handoff between agents with context transfer.
5
+ * Ensures continuity when switching agents mid-task.
6
+ */
7
+
8
+ import type {
9
+ HandoffContext,
10
+ HandoffEvent,
11
+ } from "../packages/types/src/runtime-types.ts";
12
+ import { writeJson, readJson } from "../cli.ts";
13
+ // @ts-expect-error - Bun has built-in Node.js types
14
+ import { join } from "node:path";
15
+
16
+ export interface HandoffData {
17
+ fromAgent: string;
18
+ toAgent: string;
19
+ taskId: string;
20
+ taskSummary: string;
21
+ contextFiles: string[];
22
+ recentHistory: string[];
23
+ currentState: Record<string, unknown>;
24
+ }
25
+
26
+ export class AgentHandoffProtocol {
27
+ private readonly rootDir: string;
28
+
29
+ constructor(rootDir: string) {
30
+ this.rootDir = rootDir;
31
+ }
32
+
33
+ /**
34
+ * Create a handoff context for switching agents
35
+ */
36
+ createHandoff(
37
+ jobId: string,
38
+ taskId: string,
39
+ fromAgent: string,
40
+ toAgent: string,
41
+ currentState?: Record<string, unknown>,
42
+ ): HandoffContext {
43
+ const events = this.loadHandoffHistory(jobId, taskId);
44
+
45
+ return {
46
+ jobId,
47
+ taskId,
48
+ fromAgent,
49
+ toAgent,
50
+ sharedFiles: [],
51
+ taskHistory: events,
52
+ summary: this.generateSummary(taskId, currentState),
53
+ };
54
+ }
55
+
56
+ /**
57
+ * Record a handoff event
58
+ */
59
+ recordHandoff(context: HandoffContext, result?: string): void {
60
+ const path = join(
61
+ this.rootDir,
62
+ "jobs",
63
+ context.jobId,
64
+ "handoffs",
65
+ `${context.taskId}.json`,
66
+ );
67
+ const event: HandoffEvent = {
68
+ ts: new Date().toISOString(),
69
+ agentId: context.toAgent,
70
+ action: "handoff_received",
71
+ result,
72
+ };
73
+ context.taskHistory.push(event);
74
+ writeJson(path, context);
75
+ }
76
+
77
+ /**
78
+ * Generate handoff prompt for the receiving agent
79
+ */
80
+ generateHandoffPrompt(context: HandoffContext): string {
81
+ const lines = [
82
+ `## Agent Handoff`,
83
+ ``,
84
+ `**From Agent:** ${context.fromAgent}`,
85
+ `**To Agent:** ${context.toAgent}`,
86
+ `**Task:** ${context.taskId}`,
87
+ ``,
88
+ `### Task History`,
89
+ ];
90
+
91
+ for (const event of context.taskHistory) {
92
+ lines.push(`- [${event.ts}] ${event.agentId}: ${event.action}`);
93
+ if (event.result) {
94
+ lines.push(` Result: ${event.result}`);
95
+ }
96
+ }
97
+
98
+ lines.push(``);
99
+ lines.push(`### Summary`);
100
+ lines.push(context.summary);
101
+
102
+ if (context.sharedFiles.length > 0) {
103
+ lines.push(``);
104
+ lines.push(`### Shared Files`);
105
+ for (const file of context.sharedFiles) {
106
+ lines.push(`- ${file}`);
107
+ }
108
+ }
109
+
110
+ return lines.join("\n");
111
+ }
112
+
113
+ /**
114
+ * Validate handoff readiness
115
+ */
116
+ validateHandoff(context: HandoffContext): {
117
+ valid: boolean;
118
+ issues: string[];
119
+ } {
120
+ const issues: string[] = [];
121
+
122
+ if (!context.summary) {
123
+ issues.push("Task summary is empty");
124
+ }
125
+
126
+ if (context.taskHistory.length === 0) {
127
+ issues.push("No task history recorded");
128
+ }
129
+
130
+ // Check for recent handoffs
131
+ const recentHandoffs = context.taskHistory.filter((h) => {
132
+ const age = Date.now() - Date.parse(h.ts);
133
+ return age < 5 * 60 * 1000; // 5 minutes
134
+ });
135
+
136
+ if (recentHandoffs.length > 3) {
137
+ issues.push(
138
+ `Too many recent handoffs (${recentHandoffs.length}). Possible ping-pong.`,
139
+ );
140
+ }
141
+
142
+ return { valid: issues.length === 0, issues };
143
+ }
144
+
145
+ /**
146
+ * Load handoff history for a task
147
+ */
148
+ private loadHandoffHistory(jobId: string, taskId: string): HandoffEvent[] {
149
+ const path = join(
150
+ this.rootDir,
151
+ "jobs",
152
+ jobId,
153
+ "handoffs",
154
+ `${taskId}.json`,
155
+ );
156
+ const data = readJson(path) as HandoffContext | null;
157
+ return data?.taskHistory ?? [];
158
+ }
159
+
160
+ /**
161
+ * Generate a summary of the task state
162
+ */
163
+ private generateSummary(
164
+ taskId: string,
165
+ currentState?: Record<string, unknown>,
166
+ ): string {
167
+ if (!currentState) {
168
+ return `Task ${taskId} requires continuation. Check task files for current state.`;
169
+ }
170
+
171
+ const lines = [`Task ${taskId} is in progress.`];
172
+
173
+ if (currentState.filesModified) {
174
+ lines.push(
175
+ `Files modified: ${(currentState.filesModified as string[]).join(", ")}`,
176
+ );
177
+ }
178
+
179
+ if (currentState.lastAction) {
180
+ lines.push(`Last action: ${currentState.lastAction}`);
181
+ }
182
+
183
+ if (currentState.blockers) {
184
+ lines.push(`Blockers: ${currentState.blockers}`);
185
+ }
186
+
187
+ return lines.join("\n");
188
+ }
189
+ }