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.
- package/cli.ts +111 -0
- package/footer-status.ts +204 -0
- package/harness/agent-handoff.ts +189 -0
- package/harness/auto-compact.ts +309 -0
- package/harness/auto-quota-resume.ts +132 -0
- package/harness/autonomous-review.ts +88 -0
- package/harness/blackboard.ts +291 -0
- package/harness/context-compact-orchestrator.ts +551 -0
- package/harness/context-window-manager.ts +464 -0
- package/harness/continue-prompt.ts +242 -0
- package/harness/e2e/index.ts +44 -0
- package/harness/e2e/minimax-quota-parser.ts +88 -0
- package/harness/e2e/minimax-quota-scraper.ts +609 -0
- package/harness/e2e/openai-quota-scraper.ts +447 -0
- package/harness/e2e/playwright-runner.ts +204 -0
- package/harness/e2e/quota-status.ts +194 -0
- package/harness/e2e/test-engine.ts +398 -0
- package/harness/forked-summarizer.ts +304 -0
- package/harness/herdr-agents.ts +91 -0
- package/harness/index.ts +232 -0
- package/harness/job-state-machine.ts +363 -0
- package/harness/loop-code-agent.ts +284 -0
- package/harness/loop-controller.ts +201 -0
- package/harness/loop-review-agent.ts +295 -0
- package/harness/loop-runtime.ts +760 -0
- package/harness/loop-types.ts +118 -0
- package/harness/master-planner.ts +327 -0
- package/harness/notification-events.ts +299 -0
- package/harness/output-limit-handler.ts +316 -0
- package/harness/partial-recovery.ts +531 -0
- package/harness/project-detector/detector.ts +328 -0
- package/harness/repair-engine.ts +340 -0
- package/harness/session-memory.ts +401 -0
- package/harness/task-graph.d.ts +51 -0
- package/harness/task-graph.ts +143 -0
- package/mirror.ts +278 -0
- package/package.json +8 -12
- package/packages/a2a-adapter/src/agent.ts +139 -0
- package/packages/a2a-adapter/src/client.ts +107 -0
- package/packages/a2a-adapter/src/discovery.ts +106 -0
- package/packages/a2a-adapter/src/index.ts +38 -0
- package/packages/a2a-adapter/src/protocol.ts +46 -0
- package/packages/a2a-adapter/src/transport.ts +142 -0
- package/packages/a2a-adapter/src/types.ts +117 -0
- package/packages/auth/src/minimax-browser-auth.ts +1109 -0
- package/packages/auth/src/run-minimax-auth.ts +150 -0
- package/packages/autonomous-refactor/src/detector.ts +219 -0
- package/packages/autonomous-refactor/src/index.ts +16 -0
- package/packages/autonomous-refactor/src/planner.ts +99 -0
- package/packages/autonomous-refactor/src/types.ts +57 -0
- package/packages/autonomous-runtime/src/inbox.ts +266 -0
- package/packages/autonomous-runtime/src/index.ts +22 -0
- package/packages/autonomous-runtime/src/lease.ts +318 -0
- package/packages/autonomous-runtime/src/types.ts +257 -0
- package/packages/cache-strategy/src/cache.ts +213 -0
- package/packages/cache-strategy/src/index.ts +6 -0
- package/packages/cache-strategy/src/types.ts +40 -0
- package/packages/capability-registry/src/defaults.ts +247 -0
- package/packages/capability-registry/src/index.ts +43 -0
- package/packages/capability-registry/src/query.ts +99 -0
- package/packages/capability-registry/src/registry.ts +222 -0
- package/packages/capability-registry/src/types.d.ts +47 -0
- package/packages/capability-registry/src/types.js +10 -0
- package/packages/capability-registry/src/types.ts +83 -0
- package/packages/checkpoint/src/checkpoint-manager.ts +33 -0
- package/packages/checkpoint/src/differ.ts +281 -0
- package/packages/checkpoint/src/engine.ts +532 -0
- package/packages/checkpoint/src/index.ts +48 -0
- package/packages/checkpoint/src/storage.ts +439 -0
- package/packages/checkpoint/src/types.ts +348 -0
- package/packages/cli-plugin-sdk/src/index.ts +169 -0
- package/packages/cli-plugin-sdk/src/plugin-fs.ts +91 -0
- package/packages/cli-plugin-sdk/src/registry.ts +55 -0
- package/packages/cli-plugin-sdk/src/types.ts +32 -0
- package/packages/clipboard/dist/src/clipboard.d.ts +11 -0
- package/packages/clipboard/dist/src/clipboard.js +51 -0
- package/packages/clipboard/dist/src/copy-sync.d.ts +27 -0
- package/packages/clipboard/dist/src/copy-sync.js +170 -0
- package/packages/clipboard/dist/src/gist-relay.d.ts +48 -0
- package/packages/clipboard/dist/src/gist-relay.js +186 -0
- package/packages/clipboard/dist/src/github-login.d.ts +16 -0
- package/packages/clipboard/dist/src/github-login.js +69 -0
- package/packages/clipboard/dist/src/index.d.ts +4 -0
- package/packages/clipboard/dist/src/index.js +3 -0
- package/packages/clipboard/dist/src/types.d.ts +13 -0
- package/packages/clipboard/dist/src/types.js +5 -0
- package/packages/clipboard/src/clipboard.ts +59 -0
- package/packages/clipboard/src/copy-sync.ts +201 -0
- package/packages/clipboard/src/gist-relay.ts +240 -0
- package/packages/clipboard/src/github-login.ts +107 -0
- package/packages/clipboard/src/index.ts +3 -0
- package/packages/clipboard/src/types.ts +14 -0
- package/packages/code-generation/src/faker.ts +461 -0
- package/packages/code-generation/src/generator.ts +421 -0
- package/packages/code-generation/src/index.ts +56 -0
- package/packages/code-generation/src/templates/ejs-renderer.ts +142 -0
- package/packages/code-generation/src/templates/registry.ts +174 -0
- package/packages/code-generation/src/types.ts +373 -0
- package/packages/code-review/src/engine.ts +408 -0
- package/packages/code-review/src/index.ts +46 -0
- package/packages/code-review/src/reports/html.ts +143 -0
- package/packages/code-review/src/reports/markdown.ts +197 -0
- package/packages/code-review/src/reports/text.ts +171 -0
- package/packages/code-review/src/types.ts +324 -0
- package/packages/codex-adapter/src/executor.ts +83 -0
- package/packages/codex-adapter/src/index.ts +16 -0
- package/packages/codex-adapter/src/provider.ts +213 -0
- package/packages/codex-adapter/src/types.ts +118 -0
- package/packages/config-capture/src/index.ts +357 -0
- package/packages/context-compiler/src/budget.ts +122 -0
- package/packages/context-compiler/src/cache.ts +134 -0
- package/packages/context-compiler/src/compiler.ts +314 -0
- package/packages/context-compiler/src/deduplicate.ts +171 -0
- package/packages/context-compiler/src/filter.ts +135 -0
- package/packages/context-compiler/src/index.ts +61 -0
- package/packages/context-compiler/src/okf-loader.ts +86 -0
- package/packages/context-compiler/src/score.ts +130 -0
- package/packages/context-compiler/src/types.ts +246 -0
- package/packages/context-discovery/dist/src/discover.d.ts +3 -0
- package/packages/context-discovery/dist/src/discover.js +42 -0
- package/packages/context-discovery/dist/src/discovery.d.ts +28 -0
- package/packages/context-discovery/dist/src/discovery.js +21 -0
- package/packages/context-discovery/dist/src/index.d.ts +3 -0
- package/packages/context-discovery/dist/src/index.js +2 -0
- package/packages/context-discovery/dist/src/types.d.ts +16 -0
- package/packages/context-discovery/dist/src/types.js +2 -0
- package/packages/context-discovery/src/discover.ts +42 -0
- package/packages/context-discovery/src/discovery.ts +44 -0
- package/packages/context-discovery/src/index.ts +2 -0
- package/packages/context-discovery/src/types.ts +15 -0
- package/packages/context-manager/src/compaction.ts +139 -0
- package/packages/context-manager/src/core.ts +85 -0
- package/packages/context-manager/src/index.ts +22 -0
- package/packages/context-manager/src/types.ts +44 -0
- package/packages/cookie-sanitizer/src/atomic-write.ts +79 -0
- package/packages/cookie-sanitizer/src/detect-format.ts +102 -0
- package/packages/cookie-sanitizer/src/index.ts +89 -0
- package/packages/cookie-sanitizer/src/infer-provider.ts +103 -0
- package/packages/cookie-sanitizer/src/normalize.ts +92 -0
- package/packages/cookie-sanitizer/src/parse-json.ts +122 -0
- package/packages/cookie-sanitizer/src/parse-netscape.ts +118 -0
- package/packages/cookie-sanitizer/src/sync.ts +312 -0
- package/packages/cookie-sanitizer/src/types.ts +101 -0
- package/packages/cookie-sanitizer/src/watcher.ts +180 -0
- package/packages/cost-optimizer/src/budget.ts +138 -0
- package/packages/cost-optimizer/src/config.ts +34 -0
- package/packages/cost-optimizer/src/forecast.ts +59 -0
- package/packages/cost-optimizer/src/index.ts +74 -0
- package/packages/cost-optimizer/src/optimizer.ts +277 -0
- package/packages/cost-optimizer/src/selection.ts +264 -0
- package/packages/cost-optimizer/src/tracker.ts +122 -0
- package/packages/cost-optimizer/src/types.ts +134 -0
- package/packages/dependency-analyzer/dist/src/analyzer.d.ts +17 -0
- package/packages/dependency-analyzer/dist/src/analyzer.js +119 -0
- package/packages/dependency-analyzer/dist/src/imports.d.ts +12 -0
- package/packages/dependency-analyzer/dist/src/imports.js +73 -0
- package/packages/dependency-analyzer/dist/src/index.d.ts +4 -0
- package/packages/dependency-analyzer/dist/src/index.js +3 -0
- package/packages/dependency-analyzer/dist/src/types.d.ts +28 -0
- package/packages/dependency-analyzer/dist/src/types.js +5 -0
- package/packages/dependency-analyzer/src/analyzer.ts +140 -0
- package/packages/dependency-analyzer/src/imports.ts +93 -0
- package/packages/dependency-analyzer/src/index.ts +9 -0
- package/packages/dependency-analyzer/src/types.ts +38 -0
- package/packages/django-plugin/src/analyzer.ts +284 -0
- package/packages/django-plugin/src/index.ts +39 -0
- package/packages/django-plugin/src/types.ts +35 -0
- package/packages/doc-generator/src/detector.ts +113 -0
- package/packages/doc-generator/src/docs.ts +158 -0
- package/packages/doc-generator/src/index.ts +7 -0
- package/packages/doc-generator/src/types.ts +58 -0
- package/packages/evaluation-engine/src/engine.ts +488 -0
- package/packages/evaluation-engine/src/index.ts +23 -0
- package/packages/evaluation-engine/src/types.ts +136 -0
- package/packages/evaluation-runner/src/index.ts +6 -0
- package/packages/evaluation-runner/src/runner.ts +182 -0
- package/packages/evaluation-runner/src/types.ts +51 -0
- package/packages/event-bus/dist/src/bus.d.ts +15 -0
- package/packages/event-bus/dist/src/bus.js +98 -0
- package/packages/event-bus/dist/src/herdr-bus.d.ts +121 -0
- package/packages/event-bus/dist/src/herdr-bus.js +322 -0
- package/packages/event-bus/dist/src/index.d.ts +6 -0
- package/packages/event-bus/dist/src/index.js +4 -0
- package/packages/event-bus/dist/src/types.d.ts +27 -0
- package/packages/event-bus/dist/src/types.js +10 -0
- package/packages/event-bus/src/bus.ts +111 -0
- package/packages/event-bus/src/herdr-bus.ts +525 -0
- package/packages/event-bus/src/index.ts +38 -0
- package/packages/event-bus/src/types.ts +59 -0
- package/packages/event-store/dist/src/index.d.ts +3 -0
- package/packages/event-store/dist/src/index.js +2 -0
- package/packages/event-store/dist/src/store.d.ts +15 -0
- package/packages/event-store/dist/src/store.js +139 -0
- package/packages/event-store/dist/src/types.d.ts +48 -0
- package/packages/event-store/dist/src/types.js +5 -0
- package/packages/event-store/src/index.ts +11 -0
- package/packages/event-store/src/store.ts +168 -0
- package/packages/event-store/src/types.d.ts +48 -0
- package/packages/event-store/src/types.js +5 -0
- package/packages/event-store/src/types.ts +65 -0
- package/packages/experience-replay/src/index.ts +19 -0
- package/packages/experience-replay/src/replay.ts +348 -0
- package/packages/experience-replay/src/types.ts +128 -0
- package/packages/feedback-collector/src/collector.ts +160 -0
- package/packages/feedback-collector/src/index.ts +6 -0
- package/packages/feedback-collector/src/types.ts +51 -0
- package/packages/framework-detector/src/detector.ts +586 -0
- package/packages/framework-detector/src/index.ts +46 -0
- package/packages/framework-detector/src/signatures/registry.ts +648 -0
- package/packages/framework-detector/src/types.ts +299 -0
- package/packages/framework-plugin-sdk/src/index.ts +45 -0
- package/packages/framework-plugin-sdk/src/manager.ts +525 -0
- package/packages/framework-plugin-sdk/src/types.ts +449 -0
- package/packages/frappe-plugin/src/analyzer.ts +454 -0
- package/packages/frappe-plugin/src/index.ts +72 -0
- package/packages/frappe-plugin/src/types.ts +135 -0
- package/packages/generic-web-plugin/src/analyzer.ts +347 -0
- package/packages/generic-web-plugin/src/index.ts +61 -0
- package/packages/generic-web-plugin/src/types.ts +41 -0
- package/packages/health-monitor/src/index.ts +16 -0
- package/packages/health-monitor/src/monitor.ts +216 -0
- package/packages/health-monitor/src/types.ts +45 -0
- package/packages/intent-analyzer/dist/src/analyzer.d.ts +13 -0
- package/packages/intent-analyzer/dist/src/analyzer.js +239 -0
- package/packages/intent-analyzer/dist/src/index.d.ts +3 -0
- package/packages/intent-analyzer/dist/src/index.js +2 -0
- package/packages/intent-analyzer/dist/src/types.d.ts +26 -0
- package/packages/intent-analyzer/dist/src/types.js +7 -0
- package/packages/intent-analyzer/src/analyzer.ts +259 -0
- package/packages/intent-analyzer/src/index.ts +8 -0
- package/packages/intent-analyzer/src/types.ts +44 -0
- package/packages/knowledge-retrieval/src/index.ts +18 -0
- package/packages/knowledge-retrieval/src/mcp-client.ts +212 -0
- package/packages/knowledge-retrieval/src/types.ts +112 -0
- package/packages/laravel-plugin/src/analyzer.ts +323 -0
- package/packages/laravel-plugin/src/index.ts +40 -0
- package/packages/laravel-plugin/src/types.ts +24 -0
- package/packages/learning-engine/src/engine.ts +391 -0
- package/packages/learning-engine/src/index.ts +26 -0
- package/packages/learning-engine/src/types.ts +201 -0
- package/packages/mcp-adapter/src/index.ts +20 -0
- package/packages/mcp-adapter/src/server.ts +273 -0
- package/packages/mcp-adapter/src/tools.ts +220 -0
- package/packages/mcp-adapter/src/types.ts +79 -0
- package/packages/memory-engine/src/engine.ts +615 -0
- package/packages/memory-engine/src/index.ts +20 -0
- package/packages/memory-engine/src/types.ts +159 -0
- package/packages/model-registry/src/cost.ts +80 -0
- package/packages/model-registry/src/defaults.ts +178 -0
- package/packages/model-registry/src/index.ts +57 -0
- package/packages/model-registry/src/query.ts +85 -0
- package/packages/model-registry/src/registry.ts +188 -0
- package/packages/model-registry/src/types.d.ts +63 -0
- package/packages/model-registry/src/types.js +5 -0
- package/packages/model-registry/src/types.ts +69 -0
- package/packages/nextjs-plugin/src/analyzer.ts +247 -0
- package/packages/nextjs-plugin/src/index.ts +41 -0
- package/packages/nextjs-plugin/src/types.ts +36 -0
- package/packages/notification/src/adapters/email-adapter.ts +126 -0
- package/packages/notification/src/adapters/ntfy-adapter.ts +100 -0
- package/packages/notification/src/adapters/telegram-adapter.ts +107 -0
- package/packages/notification/src/adapters/webhook-adapter.ts +75 -0
- package/packages/notification/src/base-adapter.ts +75 -0
- package/packages/notification/src/index.ts +9 -0
- package/packages/notification/src/notification-center.ts +286 -0
- package/packages/notification/src/types.ts +89 -0
- package/packages/observability/src/alerts.ts +355 -0
- package/packages/observability/src/health.ts +325 -0
- package/packages/observability/src/index.ts +79 -0
- package/packages/observability/src/logger.ts +373 -0
- package/packages/observability/src/metrics.ts +475 -0
- package/packages/observability/src/tracer.ts +336 -0
- package/packages/observability/src/types.ts +391 -0
- package/packages/okf-indexer/src/cli.ts +25 -0
- package/packages/okf-indexer/src/indexer.ts +186 -0
- package/packages/performance-optimizer/src/index.ts +20 -0
- package/packages/performance-optimizer/src/optimizer.ts +428 -0
- package/packages/performance-optimizer/src/types.ts +112 -0
- package/packages/privilege-broker/src/approval.ts +70 -0
- package/packages/privilege-broker/src/audit.ts +142 -0
- package/packages/privilege-broker/src/executor.ts +110 -0
- package/packages/privilege-broker/src/index.ts +46 -0
- package/packages/privilege-broker/src/registry.ts +98 -0
- package/packages/privilege-broker/src/types.ts +105 -0
- package/packages/project-analyzer/src/analyzer.ts +683 -0
- package/packages/project-analyzer/src/cache.ts +329 -0
- package/packages/project-analyzer/src/command-discovery.ts +239 -0
- package/packages/project-analyzer/src/index.ts +123 -0
- package/packages/project-analyzer/src/plugins/index.ts +16 -0
- package/packages/project-analyzer/src/rule-discovery.ts +282 -0
- package/packages/project-analyzer/src/signals.ts +355 -0
- package/packages/project-analyzer/src/types.ts +412 -0
- package/packages/project-analyzer/src/walker.ts +366 -0
- package/packages/projection-engine/dist/src/engine.d.ts +61 -0
- package/packages/projection-engine/dist/src/engine.js +87 -0
- package/packages/projection-engine/dist/src/index.d.ts +2 -0
- package/packages/projection-engine/dist/src/index.js +2 -0
- package/packages/projection-engine/dist/src/project.d.ts +3 -0
- package/packages/projection-engine/dist/src/project.js +24 -0
- package/packages/projection-engine/dist/src/types.d.ts +55 -0
- package/packages/projection-engine/dist/src/types.js +5 -0
- package/packages/projection-engine/src/engine.ts +134 -0
- package/packages/projection-engine/src/index.ts +8 -0
- package/packages/projection-engine/src/project.ts +24 -0
- package/packages/projection-engine/src/types.d.ts +55 -0
- package/packages/projection-engine/src/types.js +5 -0
- package/packages/projection-engine/src/types.ts +60 -0
- package/packages/prompt-compiler/src/budget.ts +170 -0
- package/packages/prompt-compiler/src/compiler.ts +188 -0
- package/packages/prompt-compiler/src/deduplicate.ts +84 -0
- package/packages/prompt-compiler/src/index.ts +50 -0
- package/packages/prompt-compiler/src/normalize.ts +140 -0
- package/packages/prompt-compiler/src/render.ts +105 -0
- package/packages/prompt-compiler/src/section-builder.ts +279 -0
- package/packages/prompt-compiler/src/types.ts +263 -0
- package/packages/prompt-compiler/src/validate.ts +157 -0
- package/packages/prompt-versioning/src/index.ts +6 -0
- package/packages/prompt-versioning/src/types.ts +41 -0
- package/packages/prompt-versioning/src/versioning.ts +149 -0
- package/packages/provider-adapter-sdk/dist/src/builder.d.ts +140 -0
- package/packages/provider-adapter-sdk/dist/src/builder.js +332 -0
- package/packages/provider-adapter-sdk/dist/src/errors.d.ts +71 -0
- package/packages/provider-adapter-sdk/dist/src/errors.js +111 -0
- package/packages/provider-adapter-sdk/dist/src/index.d.ts +15 -0
- package/packages/provider-adapter-sdk/dist/src/index.js +19 -0
- package/packages/provider-adapter-sdk/dist/src/registry.d.ts +108 -0
- package/packages/provider-adapter-sdk/dist/src/registry.js +301 -0
- package/packages/provider-adapter-sdk/dist/src/tester.d.ts +71 -0
- package/packages/provider-adapter-sdk/dist/src/tester.js +392 -0
- package/packages/provider-adapter-sdk/dist/src/types.d.ts +182 -0
- package/packages/provider-adapter-sdk/dist/src/types.js +11 -0
- package/packages/provider-adapter-sdk/src/builder.ts +442 -0
- package/packages/provider-adapter-sdk/src/errors.ts +153 -0
- package/packages/provider-adapter-sdk/src/index.ts +84 -0
- package/packages/provider-adapter-sdk/src/registry.ts +486 -0
- package/packages/provider-adapter-sdk/src/tester.ts +483 -0
- package/packages/provider-adapter-sdk/src/types.ts +293 -0
- package/packages/provider-router/dist/capability-registry/src/types.d.ts +47 -0
- package/packages/provider-router/dist/capability-registry/src/types.js +10 -0
- package/packages/provider-router/dist/provider-router/src/index.d.ts +23 -0
- package/packages/provider-router/dist/provider-router/src/index.js +25 -0
- package/packages/provider-router/dist/provider-router/src/policy.d.ts +10 -0
- package/packages/provider-router/dist/provider-router/src/policy.js +45 -0
- package/packages/provider-router/dist/provider-router/src/provider-router.d.ts +56 -0
- package/packages/provider-router/dist/provider-router/src/provider-router.js +222 -0
- package/packages/provider-router/dist/provider-router/src/strategies.d.ts +19 -0
- package/packages/provider-router/dist/provider-router/src/strategies.js +110 -0
- package/packages/provider-router/dist/provider-router/src/types.d.ts +91 -0
- package/packages/provider-router/dist/provider-router/src/types.js +10 -0
- package/packages/provider-router/dist/src/index.d.ts +23 -0
- package/packages/provider-router/dist/src/index.js +25 -0
- package/packages/provider-router/dist/src/policy.d.ts +10 -0
- package/packages/provider-router/dist/src/policy.js +45 -0
- package/packages/provider-router/dist/src/provider-router.d.ts +56 -0
- package/packages/provider-router/dist/src/provider-router.js +222 -0
- package/packages/provider-router/dist/src/strategies.d.ts +19 -0
- package/packages/provider-router/dist/src/strategies.js +110 -0
- package/packages/provider-router/dist/src/types.d.ts +91 -0
- package/packages/provider-router/dist/src/types.js +10 -0
- package/packages/provider-router/dist/types/src/runtime-types.d.ts +412 -0
- package/packages/provider-router/dist/types/src/runtime-types.js +2 -0
- package/packages/provider-router/src/index.ts +49 -0
- package/packages/provider-router/src/policy.ts +50 -0
- package/packages/provider-router/src/provider-router.ts +315 -0
- package/packages/provider-router/src/strategies.ts +158 -0
- package/packages/provider-router/src/types.ts +130 -0
- package/packages/provider-selector/src/index.ts +13 -0
- package/packages/provider-selector/src/selector.ts +120 -0
- package/packages/provider-selector/src/types.ts +33 -0
- package/packages/providers/dist/src/adapters.d.ts +133 -0
- package/packages/providers/dist/src/adapters.js +236 -0
- package/packages/providers/dist/src/deepagents-adapter.d.ts +78 -0
- package/packages/providers/dist/src/deepagents-adapter.js +323 -0
- package/packages/providers/dist/src/glm-usage.d.ts +102 -0
- package/packages/providers/dist/src/glm-usage.js +197 -0
- package/packages/providers/dist/src/index.d.ts +11 -0
- package/packages/providers/dist/src/index.js +11 -0
- package/packages/providers/dist/src/openai-usage.d.ts +103 -0
- package/packages/providers/dist/src/openai-usage.js +208 -0
- package/packages/providers/dist/src/provider-id.d.ts +46 -0
- package/packages/providers/dist/src/provider-id.js +113 -0
- package/packages/providers/src/adapters.ts +362 -0
- package/packages/providers/src/deepagents-adapter.ts +458 -0
- package/packages/providers/src/glm-usage.ts +248 -0
- package/packages/providers/src/index.ts +11 -0
- package/packages/providers/src/openai-usage.ts +263 -0
- package/packages/providers/src/provider-id.ts +129 -0
- package/packages/quota-manager/dist/src/examples/tui-usage-integration.d.ts +35 -0
- package/packages/quota-manager/dist/src/examples/tui-usage-integration.js +73 -0
- package/packages/quota-manager/dist/src/index.d.ts +8 -0
- package/packages/quota-manager/dist/src/index.js +8 -0
- package/packages/quota-manager/dist/src/quota-manager.d.ts +70 -0
- package/packages/quota-manager/dist/src/quota-manager.js +260 -0
- package/packages/quota-manager/dist/src/tui-usage-monitor.d.ts +96 -0
- package/packages/quota-manager/dist/src/tui-usage-monitor.js +268 -0
- package/packages/quota-manager/src/examples/tui-usage-integration.ts +72 -0
- package/packages/quota-manager/src/index.ts +8 -0
- package/packages/quota-manager/src/quota-manager.ts +336 -0
- package/packages/quota-manager/src/tui-usage-monitor.ts +355 -0
- package/packages/rate-limiter/src/index.ts +6 -0
- package/packages/rate-limiter/src/limiter.ts +122 -0
- package/packages/rate-limiter/src/types.ts +41 -0
- package/packages/react-vite-plugin/src/analyzer.ts +226 -0
- package/packages/react-vite-plugin/src/index.ts +39 -0
- package/packages/react-vite-plugin/src/types.ts +28 -0
- package/packages/release-manager/src/changelog.ts +148 -0
- package/packages/release-manager/src/index.ts +21 -0
- package/packages/release-manager/src/types.ts +50 -0
- package/packages/release-manager/src/version.ts +52 -0
- package/packages/requirement-compiler/src/ambiguity-detector.ts +302 -0
- package/packages/requirement-compiler/src/classifier.ts +145 -0
- package/packages/requirement-compiler/src/compiler.ts +328 -0
- package/packages/requirement-compiler/src/extractor.ts +155 -0
- package/packages/requirement-compiler/src/index.ts +36 -0
- package/packages/requirement-compiler/src/normalizer.ts +161 -0
- package/packages/requirement-compiler/src/risk-detector.ts +58 -0
- package/packages/requirement-compiler/src/types.ts +596 -0
- package/packages/runtime/dist/src/command-executor.d.ts +129 -0
- package/packages/runtime/dist/src/command-executor.js +383 -0
- package/packages/runtime/dist/src/index.d.ts +11 -0
- package/packages/runtime/dist/src/index.js +11 -0
- package/packages/runtime/dist/src/local-runtime-agent.d.ts +111 -0
- package/packages/runtime/dist/src/local-runtime-agent.js +356 -0
- package/packages/runtime/dist/src/policy-engine.d.ts +203 -0
- package/packages/runtime/dist/src/policy-engine.js +592 -0
- package/packages/runtime/dist/src/runtime-api.d.ts +137 -0
- package/packages/runtime/dist/src/runtime-api.js +454 -0
- package/packages/runtime/dist/src/workspace-manager.d.ts +162 -0
- package/packages/runtime/dist/src/workspace-manager.js +451 -0
- package/packages/runtime/src/command-executor.ts +523 -0
- package/packages/runtime/src/index.ts +11 -0
- package/packages/runtime/src/local-runtime-agent.ts +480 -0
- package/packages/runtime/src/policy-engine.ts +813 -0
- package/packages/runtime/src/runtime-api.ts +665 -0
- package/packages/runtime/src/workspace-manager.ts +591 -0
- package/packages/scheduler/src/scheduler.ts +50 -0
- package/packages/scheduler-adapter/src/cron.ts +123 -0
- package/packages/scheduler-adapter/src/index.ts +9 -0
- package/packages/scheduler-adapter/src/interface.ts +61 -0
- package/packages/scheduler-adapter/src/internal.ts +99 -0
- package/packages/scheduler-adapter/src/systemd.ts +221 -0
- package/packages/session/src/history.ts +353 -0
- package/packages/session/src/index.ts +53 -0
- package/packages/session/src/manager.ts +481 -0
- package/packages/session/src/policy.ts +363 -0
- package/packages/session/src/store.ts +348 -0
- package/packages/session/src/types.ts +275 -0
- package/packages/session-api/dist/src/api.d.ts +83 -0
- package/packages/session-api/dist/src/api.js +49 -0
- package/packages/session-api/dist/src/index.d.ts +2 -0
- package/packages/session-api/dist/src/index.js +2 -0
- package/packages/session-api/dist/src/types.d.ts +22 -0
- package/packages/session-api/dist/src/types.js +5 -0
- package/packages/session-api/src/api.ts +117 -0
- package/packages/session-api/src/index.ts +1 -0
- package/packages/session-api/src/types.ts +23 -0
- package/packages/session-export/dist/src/exporter.d.ts +28 -0
- package/packages/session-export/dist/src/exporter.js +42 -0
- package/packages/session-export/dist/src/index.d.ts +2 -0
- package/packages/session-export/dist/src/index.js +2 -0
- package/packages/session-export/dist/src/types.d.ts +20 -0
- package/packages/session-export/dist/src/types.js +5 -0
- package/packages/session-export/src/exporter.ts +81 -0
- package/packages/session-export/src/index.ts +1 -0
- package/packages/session-export/src/types.ts +22 -0
- package/packages/shared-context/src/index.ts +7 -0
- package/packages/shared-context/src/shared-context.ts +42 -0
- package/packages/skill-registry/src/defaults.ts +146 -0
- package/packages/skill-registry/src/index.ts +48 -0
- package/packages/skill-registry/src/matching.ts +118 -0
- package/packages/skill-registry/src/registry.ts +211 -0
- package/packages/skill-registry/src/types.ts +97 -0
- package/packages/sprint-planner/src/decomposer.ts +57 -0
- package/packages/sprint-planner/src/index.ts +16 -0
- package/packages/sprint-planner/src/planner.ts +150 -0
- package/packages/sprint-planner/src/types.ts +59 -0
- package/packages/subscription-engine/dist/src/engine.d.ts +13 -0
- package/packages/subscription-engine/dist/src/engine.js +40 -0
- package/packages/subscription-engine/dist/src/index.d.ts +2 -0
- package/packages/subscription-engine/dist/src/index.js +2 -0
- package/packages/subscription-engine/dist/src/subscriptions.d.ts +19 -0
- package/packages/subscription-engine/dist/src/subscriptions.js +39 -0
- package/packages/subscription-engine/dist/src/types.d.ts +24 -0
- package/packages/subscription-engine/dist/src/types.js +5 -0
- package/packages/subscription-engine/src/engine.ts +55 -0
- package/packages/subscription-engine/src/index.ts +6 -0
- package/packages/subscription-engine/src/subscriptions.ts +55 -0
- package/packages/subscription-engine/src/types.ts +27 -0
- package/packages/task-compiler/src/command-policy.ts +193 -0
- package/packages/task-compiler/src/compiler.ts +114 -0
- package/packages/task-compiler/src/decompose.ts +265 -0
- package/packages/task-compiler/src/file-scope.ts +240 -0
- package/packages/task-compiler/src/graph.ts +144 -0
- package/packages/task-compiler/src/index.ts +38 -0
- package/packages/task-compiler/src/types.ts +225 -0
- package/packages/task-compiler/src/validate.ts +218 -0
- package/packages/task-compiler/src/verification.ts +248 -0
- package/packages/tencentdb-memory/src/client.ts +130 -0
- package/packages/tencentdb-memory/src/index.ts +32 -0
- package/packages/tencentdb-memory/src/loader.ts +150 -0
- package/packages/tencentdb-memory/src/mcp-tools.ts +213 -0
- package/packages/tencentdb-memory/src/types.ts +101 -0
- package/packages/tencentdb-sync/src/cli.ts +363 -0
- package/packages/tencentdb-sync/src/client.ts +268 -0
- package/packages/tencentdb-sync/src/config.ts +139 -0
- package/packages/tencentdb-sync/src/index.ts +15 -0
- package/packages/test-data-generator/src/faker-adapter.ts +657 -0
- package/packages/test-data-generator/src/generator.ts +461 -0
- package/packages/test-data-generator/src/index.ts +48 -0
- package/packages/test-data-generator/src/types.ts +421 -0
- package/packages/test-generator/src/generator.ts +144 -0
- package/packages/test-generator/src/index.ts +11 -0
- package/packages/test-generator/src/types.ts +39 -0
- package/packages/todo-bd-sync/src/detector.ts +171 -0
- package/packages/todo-bd-sync/src/extension.ts +129 -0
- package/packages/todo-bd-sync/src/index.ts +401 -0
- package/packages/todo-bd-sync/src/sync.ts +322 -0
- package/packages/todo-bd-sync/src/task-analyzer.ts +314 -0
- package/packages/todo-bd-sync/src/todo-reminder.ts +418 -0
- package/packages/todo-bd-sync/src/types.ts +137 -0
- package/packages/token-estimation/src/index.ts +192 -0
- package/packages/token-optimizer/src/index.ts +15 -0
- package/packages/token-optimizer/src/optimizer.ts +150 -0
- package/packages/token-optimizer/src/types.ts +47 -0
- package/packages/types/src/agent-worker-types.d.ts +206 -0
- package/packages/types/src/agent-worker-types.js +41 -0
- package/packages/types/src/agent-worker-types.ts +264 -0
- package/packages/types/src/ai-providers.d.ts +36 -0
- package/packages/types/src/ai-providers.js +66 -0
- package/packages/types/src/ai-providers.ts +73 -0
- package/packages/types/src/runtime-types.d.ts +418 -0
- package/packages/types/src/runtime-types.js +3 -0
- package/packages/types/src/runtime-types.ts +588 -0
- package/packages/workflow-events/dist/src/events.d.ts +38 -0
- package/packages/workflow-events/dist/src/events.js +55 -0
- package/packages/workflow-events/dist/src/index.d.ts +2 -0
- package/packages/workflow-events/dist/src/index.js +2 -0
- package/packages/workflow-events/dist/src/pipeline.d.ts +21 -0
- package/packages/workflow-events/dist/src/pipeline.js +36 -0
- package/packages/workflow-events/dist/src/types.d.ts +110 -0
- package/packages/workflow-events/dist/src/types.js +5 -0
- package/packages/workflow-events/src/events.ts +86 -0
- package/packages/workflow-events/src/index.ts +19 -0
- package/packages/workflow-events/src/pipeline.ts +41 -0
- package/packages/workflow-events/src/types.d.ts +110 -0
- package/packages/workflow-events/src/types.js +5 -0
- package/packages/workflow-events/src/types.ts +139 -0
- package/packages/workspace-scanner/dist/src/detect.d.ts +3 -0
- package/packages/workspace-scanner/dist/src/detect.js +60 -0
- package/packages/workspace-scanner/dist/src/git.d.ts +7 -0
- package/packages/workspace-scanner/dist/src/git.js +75 -0
- package/packages/workspace-scanner/dist/src/index.d.ts +5 -0
- package/packages/workspace-scanner/dist/src/index.js +4 -0
- package/packages/workspace-scanner/dist/src/scanner.d.ts +11 -0
- package/packages/workspace-scanner/dist/src/scanner.js +59 -0
- package/packages/workspace-scanner/dist/src/types.d.ts +35 -0
- package/packages/workspace-scanner/dist/src/types.js +5 -0
- package/packages/workspace-scanner/src/detect.ts +77 -0
- package/packages/workspace-scanner/src/git.ts +83 -0
- package/packages/workspace-scanner/src/index.ts +9 -0
- package/packages/workspace-scanner/src/scanner.ts +73 -0
- package/packages/workspace-scanner/src/types.ts +48 -0
- package/packages/worktree/dist/src/index.d.ts +7 -0
- package/packages/worktree/dist/src/index.js +7 -0
- package/packages/worktree/dist/src/worktree.d.ts +88 -0
- package/packages/worktree/dist/src/worktree.js +239 -0
- package/packages/worktree/src/index.ts +7 -0
- package/packages/worktree/src/worktree.ts +290 -0
- package/packages/write-review/src/blackboard.ts +249 -0
- package/packages/write-review/src/gate.ts +169 -0
- package/packages/write-review/src/index.ts +18 -0
- package/packages/write-review/src/injection.ts +170 -0
- package/packages/write-review/src/review.ts +206 -0
- package/packages/write-review/src/trigger.ts +133 -0
- package/packages/write-review/src/types.ts +90 -0
- package/proactive-compact.ts +90 -0
- package/prompts/tencentdb-connect.md +35 -0
- package/prompts/tencentdb-setup.md +101 -0
- package/prompts/tencentdb.md +88 -0
- package/renderer.ts +205 -0
- package/skills/harness-runtime/SKILL.md +237 -0
- package/status-parsers.ts +84 -0
- package/tracker.ts +72 -0
- 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
|
+
}
|
package/footer-status.ts
ADDED
|
@@ -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
|
+
}
|