@pasko70/pibo 1.1.0 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +106 -254
- package/context/codex-base-prompt.md +4 -0
- package/context/compute-worker.md +23 -0
- package/context/pibo-native-tooling.md +18 -0
- package/context/pibo-system-prompt.md +69 -8
- package/dist/api/simple-agent-api.js +136 -0
- package/dist/app-context.js +4 -0
- package/dist/apps/chat/agent-profiles.js +18 -3
- package/dist/apps/chat/agent-store.js +113 -16
- package/dist/apps/chat/chat-api-routes.js +311 -0
- package/dist/apps/chat/chat-capability-routes.js +90 -0
- package/dist/apps/chat/chat-files.js +178 -0
- package/dist/apps/chat/chat-request-normalizers.js +681 -0
- package/dist/apps/chat/chat-settings-routes.js +75 -0
- package/dist/apps/chat/chat-trace-helpers.js +94 -0
- package/dist/apps/chat/chat-user-skill-routes.js +149 -0
- package/dist/apps/chat/cron-api.js +213 -0
- package/dist/apps/chat/data/chat-data-mappers.js +74 -0
- package/dist/apps/chat/data/event-command-service.js +75 -0
- package/dist/apps/chat/data/navigation-query-service.js +11 -0
- package/dist/apps/chat/data/project-service.js +844 -0
- package/dist/apps/chat/data/read-state-service.js +42 -0
- package/dist/apps/chat/data/room-service.js +52 -0
- package/dist/apps/chat/data/session-query-service.js +63 -0
- package/dist/apps/chat/data/timeline-query-service.js +96 -0
- package/dist/apps/chat/event-log.js +1 -307
- package/dist/apps/chat/model-catalog.js +7 -2
- package/dist/apps/chat/output-compactor.js +126 -0
- package/dist/apps/chat/output-event-policy.js +17 -0
- package/dist/apps/chat/project-workflow-human-actions.js +347 -0
- package/dist/apps/chat/project-workflow-sessions.js +260 -0
- package/dist/apps/chat/provider-auth-actions.js +43 -0
- package/dist/apps/chat/ralph-api.js +156 -0
- package/dist/apps/chat/read-model.js +1 -218
- package/dist/apps/chat/rooms.js +1 -321
- package/dist/apps/chat/static-assets.js +996 -0
- package/dist/apps/chat/stream.js +29 -6
- package/dist/apps/chat/trace.js +179 -1003
- package/dist/apps/chat/types/event-store.js +1 -0
- package/dist/apps/chat/types/read-model.js +1 -0
- package/dist/apps/chat/types/rooms.js +36 -0
- package/dist/apps/chat/web-app.js +3131 -1959
- package/dist/apps/chat/workflow-catalog.js +572 -0
- package/dist/apps/chat/workflow-edge-compatibility.js +51 -0
- package/dist/apps/chat/workflow-json-schema-validation.js +335 -0
- package/dist/apps/chat/workflow-persistence-model.js +140 -0
- package/dist/apps/chat/workflow-persistence.js +633 -0
- package/dist/apps/chat/workflow-registered-ref-params.js +130 -0
- package/dist/apps/chat/workflow-registered-ref-pickers.js +179 -0
- package/dist/apps/chat/workflow-registered-ref-validation.js +210 -0
- package/dist/apps/chat/workflow-v2-security-validation.js +93 -0
- package/dist/apps/chat/workflow-validation-helpers.js +114 -0
- package/dist/apps/chat-ui/assets/{dist-CNLWH2qh.js → dist-B4lw9z4F.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-8e4L8ciw.js → dist-BbTaHWON.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-CMZOa5ik.js → dist-BcT_c1EJ.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-DNcnQRPF.js → dist-CGINd7XU.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-CqqUC8Ce.js → dist-CrBzZkUp.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-D2N4-LIc.js → dist-CyyISotB.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-CUqpST5w.js → dist-DFbnFNpX.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-CspjOeBj.js → dist-DGLWQLX8.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-B7bbI3Qz.js → dist-DfcIkFSN.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-v4pjHlB7.js → dist-sKDHTwaT.js} +1 -1
- package/dist/apps/chat-ui/assets/{dist-D9L4MSRF.js → dist-y9D6la48.js} +1 -1
- package/dist/apps/chat-ui/assets/index-C25VYnyb.css +1 -0
- package/dist/apps/chat-ui/assets/index-CUkuvI3v.js +165 -0
- package/dist/apps/chat-ui/assets/pwa-images/android/launchericon-144x144.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/android/launchericon-192x192.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/android/launchericon-48x48.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/android/launchericon-512x512.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/android/launchericon-72x72.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/android/launchericon-96x96.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/100.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/1024.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/114.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/120.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/128.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/144.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/152.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/16.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/167.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/180.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/192.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/20.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/256.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/29.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/32.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/40.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/50.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/512.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/57.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/58.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/60.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/64.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/72.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/76.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/80.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/ios/87.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/LargeTile.scale-100.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/LargeTile.scale-125.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/LargeTile.scale-150.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/LargeTile.scale-200.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/LargeTile.scale-400.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SmallTile.scale-100.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SmallTile.scale-125.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SmallTile.scale-150.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SmallTile.scale-200.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SmallTile.scale-400.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SplashScreen.scale-100.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SplashScreen.scale-125.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SplashScreen.scale-150.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SplashScreen.scale-200.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/SplashScreen.scale-400.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square150x150Logo.scale-100.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square150x150Logo.scale-125.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square150x150Logo.scale-150.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square150x150Logo.scale-200.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square150x150Logo.scale-400.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-16.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-20.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-24.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-256.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-30.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-32.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-36.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-40.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-44.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-48.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-60.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-64.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-72.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-80.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-lightunplated_targetsize-96.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-16.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-20.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-24.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-256.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-30.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-32.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-36.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-40.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-44.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-48.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-60.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-64.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-72.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-80.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.altform-unplated_targetsize-96.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.scale-100.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.scale-125.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.scale-150.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.scale-200.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.scale-400.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-16.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-20.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-24.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-256.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-30.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-32.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-36.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-40.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-44.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-48.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-60.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-64.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-72.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-80.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Square44x44Logo.targetsize-96.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/StoreLogo.scale-100.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/StoreLogo.scale-125.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/StoreLogo.scale-150.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/StoreLogo.scale-200.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/StoreLogo.scale-400.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Wide310x150Logo.scale-100.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Wide310x150Logo.scale-125.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Wide310x150Logo.scale-150.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Wide310x150Logo.scale-200.png +0 -0
- package/dist/apps/chat-ui/assets/pwa-images/windows/Wide310x150Logo.scale-400.png +0 -0
- package/dist/apps/chat-ui/index.html +8 -3
- package/dist/apps/chat-ui/manifest.webmanifest +25 -0
- package/dist/apps/chat-ui/sw.js +41 -0
- package/dist/apps/chat-vscode-web/assets/index-B5QK07zO.css +2 -0
- package/dist/apps/chat-vscode-web/assets/index-C3GTPyDo.js +41 -0
- package/dist/apps/chat-vscode-web/index.html +14 -0
- package/dist/apps/cli-ui/InkSessionApp.js +1218 -0
- package/dist/apps/cli-ui/InkTerminalLine.js +53 -0
- package/dist/apps/cli-ui/InkTerminalRow.js +304 -0
- package/dist/apps/cli-ui/InkTerminalView.js +25 -0
- package/dist/apps/cli-ui/cliSessionsCommand.js +232 -0
- package/dist/apps/cli-ui/index.js +8 -0
- package/dist/apps/cli-ui/inkColors.js +67 -0
- package/dist/apps/cli-ui/inkJson.js +244 -0
- package/dist/apps/cli-ui/inkMarkdown.js +122 -0
- package/dist/apps/context-files-ui/assets/{dist-DFi2YGux.js → dist-BOiGdrG-.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-DyfSeBMu.js → dist-DK01b7x4.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-CwbH_3RN.js → dist-DPG9jOQ-.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-dTBsFYAl.js → dist-Dp5AH00p.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-CxRLRmMx.js → dist-DqYw0LH7.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-MyZgX9K2.js → dist-TF5iO5ML.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-DQXzt2Ng.js → dist-TbjAhles.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-YwR9dpb-.js → dist-ZsBbt0uY.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-CKQF1zEu.js → dist-kmsvtHkH.js} +1 -1
- package/dist/apps/context-files-ui/assets/{dist-BJW3917N.js → dist-vnd7PMu3.js} +1 -1
- package/dist/apps/context-files-ui/assets/{index-BwRDoHMC.css → index-B92tL3Pp.css} +1 -1
- package/dist/apps/context-files-ui/assets/{index-GwvjXytt.js → index-BhAWD3dv.js} +2 -2
- package/dist/apps/context-files-ui/index.html +2 -2
- package/dist/apps/vscode-artifacts/latest.vsix +0 -0
- package/dist/apps/vscode-artifacts/pibo-vscode-1.3.0.vsix +0 -0
- package/dist/auth/better-auth.js +2 -1
- package/dist/auth/login-actions.js +251 -0
- package/dist/auth/openai-codex-usage.js +147 -0
- package/dist/bin/pibo.js +0 -0
- package/dist/bin/rg.js +15 -0
- package/dist/cli-session/fakeSessionSource.js +804 -0
- package/dist/cli-session/index.js +3 -0
- package/dist/cli-session/localSessionSource.js +1144 -0
- package/dist/cli-session/sessionSource.js +13 -0
- package/dist/cli.js +159 -14
- package/dist/compute/cli.js +415 -0
- package/dist/compute/docker.js +827 -0
- package/dist/compute/resource-health.js +333 -0
- package/dist/compute/resource-policy.js +98 -0
- package/dist/config/config.js +9 -5
- package/dist/core/context-build.js +677 -0
- package/dist/core/model-defaults.js +51 -9
- package/dist/core/pibo-home.js +8 -0
- package/dist/core/profiles.js +48 -0
- package/dist/core/provider-telemetry.js +222 -0
- package/dist/core/routed-session.js +441 -47
- package/dist/core/runtime-telemetry.js +853 -0
- package/dist/core/runtime.js +103 -15
- package/dist/core/session-errors.js +47 -0
- package/dist/core/session-model.js +39 -0
- package/dist/core/session-router.js +292 -62
- package/dist/core/shared-app.js +17 -0
- package/dist/core/skill-expansion.js +43 -0
- package/dist/core/system-prompt-template.js +9 -9
- package/dist/core/telemetry-staleness.js +128 -0
- package/dist/core/test-output-compaction.js +145 -0
- package/dist/core/user-settings.js +73 -0
- package/dist/cron/channel.js +28 -0
- package/dist/cron/cli.js +230 -0
- package/dist/cron/plugin.js +11 -0
- package/dist/cron/schedule.js +214 -0
- package/dist/cron/service.js +177 -0
- package/dist/cron/store.js +349 -0
- package/dist/cron/types.js +1 -0
- package/dist/data/cli.js +184 -0
- package/dist/data/event-log.js +106 -0
- package/dist/data/final-app-space-cutover-migration.js +728 -0
- package/dist/data/ingest-service.js +389 -0
- package/dist/data/message-store.js +62 -0
- package/dist/data/navigation-store.js +75 -0
- package/dist/data/observation-store.js +46 -0
- package/dist/data/payload-store.js +144 -0
- package/dist/data/pibo-store.js +59 -0
- package/dist/data/schema.js +434 -0
- package/dist/data/session-store.js +63 -0
- package/dist/data/shared-app-migration.js +757 -0
- package/dist/data/sqlite-schema.js +12 -0
- package/dist/data/telemetry-preview.js +65 -0
- package/dist/data/telemetry-queries.js +212 -0
- package/dist/data/telemetry-retention.js +50 -0
- package/dist/data/telemetry-rows.js +158 -0
- package/dist/data/telemetry.js +357 -0
- package/dist/debug/delta-compaction.js +99 -0
- package/dist/debug/detail-format.js +86 -0
- package/dist/debug/events.js +149 -29
- package/dist/debug/failures.js +162 -0
- package/dist/debug/index.js +655 -30
- package/dist/debug/messages.js +185 -0
- package/dist/debug/next-commands.js +6 -0
- package/dist/debug/payloads.js +123 -0
- package/dist/debug/pty.js +924 -0
- package/dist/debug/session.js +45 -15
- package/dist/debug/sql.js +1 -1
- package/dist/debug/stores.js +18 -13
- package/dist/debug/summary.js +72 -0
- package/dist/debug/telemetry.js +649 -0
- package/dist/debug/tools.js +168 -0
- package/dist/debug/trace-render-check.js +151 -0
- package/dist/debug/trace.js +152 -27
- package/dist/debug/web-artifacts.js +63 -0
- package/dist/debug/web-options.js +313 -0
- package/dist/debug/web-render-analysis.js +310 -0
- package/dist/debug/web-snapshot-browser-scripts.js +303 -0
- package/dist/debug/web-streaming-benchmark-analysis.js +605 -0
- package/dist/debug/web-streaming-browser-library.js +928 -0
- package/dist/debug/web-streaming-browser-scripts.js +242 -0
- package/dist/debug/web-streaming-provider-telemetry.js +194 -0
- package/dist/debug/web-streaming-report.js +493 -0
- package/dist/debug/web-streaming-types.js +1 -0
- package/dist/debug/web.js +574 -0
- package/dist/gateway/backup.js +83 -0
- package/dist/gateway/cli.js +511 -0
- package/dist/gateway/fallback.js +155 -0
- package/dist/gateway/pidfile.js +84 -0
- package/dist/gateway/protocol.js +16 -0
- package/dist/gateway/server.js +172 -17
- package/dist/gateway/tool.js +54 -51
- package/dist/gateway/web.js +74 -2
- package/dist/index.js +3 -1
- package/dist/local/client.js +3 -3
- package/dist/local/extension.js +8 -5
- package/dist/plugins/builtin.js +251 -49
- package/dist/plugins/chat-vscode-web.js +28 -0
- package/dist/plugins/codex-compat.js +0 -41
- package/dist/plugins/context-files.js +98 -18
- package/dist/plugins/dev-auth.js +124 -0
- package/dist/plugins/native-tooling.js +15 -0
- package/dist/plugins/registry.js +49 -1
- package/dist/plugins/web-annotations.js +27 -0
- package/dist/providers/minimax.js +70 -0
- package/dist/providers/openai-compat.js +48 -0
- package/dist/ralph/channel.js +8 -0
- package/dist/ralph/cli.js +152 -0
- package/dist/ralph/plugin.js +14 -0
- package/dist/ralph/service.js +271 -0
- package/dist/ralph/stopping.js +151 -0
- package/dist/ralph/store.js +450 -0
- package/dist/ralph/templates.js +200 -0
- package/dist/ralph/types.js +1 -0
- package/dist/reliability/store.js +42 -26
- package/dist/runs/registry.js +72 -35
- package/dist/session-ui/commandCatalog.js +193 -0
- package/dist/session-ui/commandResults.js +95 -0
- package/dist/session-ui/index.js +7 -0
- package/dist/session-ui/ownerViewModel.js +27 -0
- package/dist/session-ui/roomSessionViewModel.js +69 -0
- package/dist/session-ui/statusViewModel.js +127 -0
- package/dist/session-ui/terminalCards.js +210 -0
- package/dist/session-ui/terminalRows.js +937 -0
- package/dist/session-ui/terminalValue.js +45 -0
- package/dist/sessions/pibo-data-store.js +178 -0
- package/dist/sessions/sqlite-store.js +78 -12
- package/dist/sessions/store.js +11 -4
- package/dist/sessions/workflow-session-kind.js +20 -0
- package/dist/setup/cli.js +567 -0
- package/dist/shared/trace-async-agent-runs.js +127 -0
- package/dist/shared/trace-engine.js +96 -0
- package/dist/shared/trace-event-projection.js +679 -0
- package/dist/shared/trace-live-reducer.js +191 -0
- package/dist/shared/trace-nodes.js +76 -0
- package/dist/shared/trace-order.js +11 -10
- package/dist/shared/trace-patch-nodes.js +83 -0
- package/dist/shared/trace-run-notifications.js +69 -0
- package/dist/shared/trace-subagent-links.js +46 -0
- package/dist/shared/trace-transcript.js +303 -0
- package/dist/shared/trace-types.js +1 -0
- package/dist/shared-app.js +4 -0
- package/dist/signals/aggregate.js +65 -0
- package/dist/signals/events.js +1 -0
- package/dist/signals/projector.js +158 -0
- package/dist/signals/registry.js +513 -0
- package/dist/signals/store.js +1 -0
- package/dist/signals/types.js +1 -0
- package/dist/skills/cli.js +117 -0
- package/dist/tools/agent-browser-leases.js +219 -0
- package/dist/tools/agent-browser-wrapper.js +99 -0
- package/dist/tools/browser-pool.js +623 -0
- package/dist/tools/browser-use-cdp.js +56 -4
- package/dist/tools/browser-use-leases.js +215 -37
- package/dist/tools/browser-use-wrapper.js +508 -65
- package/dist/tools/cdp-client.js +189 -0
- package/dist/tools/guides.js +203 -4
- package/dist/tools/index.js +666 -16
- package/dist/tools/npm-runtime.js +136 -0
- package/dist/tools/registry.js +107 -8
- package/dist/tools/runtime/index.js +3 -0
- package/dist/tools/runtime/node-backend.js +225 -0
- package/dist/tools/runtime/node-worker-source.js +206 -0
- package/dist/tools/runtime/python-backend.js +227 -0
- package/dist/tools/runtime/python-worker-source.js +178 -0
- package/dist/tools/runtime/registry.js +255 -0
- package/dist/tools/runtime/tool.js +168 -0
- package/dist/tools/runtime/types.js +1 -0
- package/dist/tools/web-search.js +2 -1
- package/dist/user-skills/installer.js +39 -36
- package/dist/user-skills/store.js +50 -11
- package/dist/vscode/cli.js +90 -0
- package/dist/vscode/code-cli.js +119 -0
- package/dist/vscode/install.js +177 -0
- package/dist/vscode/status.js +80 -0
- package/dist/vscode/types.js +14 -0
- package/dist/vscode/uninstall.js +49 -0
- package/dist/vscode/vsix-fetcher.js +131 -0
- package/dist/web/auth.js +5 -1
- package/dist/web/channel.js +86 -0
- package/dist/web/http.js +79 -14
- package/dist/web-annotations/api.js +348 -0
- package/dist/web-annotations/attachments.js +201 -0
- package/dist/web-annotations/cdp.js +1107 -0
- package/dist/web-annotations/index.js +7 -0
- package/dist/web-annotations/store.js +407 -0
- package/dist/web-annotations/tools.js +350 -0
- package/dist/web-annotations/types.js +34 -0
- package/dist/web-annotations/validation.js +288 -0
- package/docs/README.md +23 -0
- package/docs/ops/install-developer-host.md +112 -0
- package/docs/ops/install-user-host.md +76 -0
- package/docs/ops/upgrade-user-to-developer-host.md +69 -0
- package/docs/ops/vscode-extension-release.md +138 -0
- package/package.json +24 -9
- package/skills/builtin/pi-agent-harness/SKILL.md +24 -24
- package/skills/builtin/pibo-docker-system/SKILL.md +170 -0
- package/skills/builtin/pibo-spec-writing/SKILL.md +330 -0
- package/skills/builtin/prd/SKILL.md +143 -0
- package/skills/builtin/ralph-loop/SKILL.md +359 -0
- package/skills/builtin/ralph-prd-json/SKILL.md +123 -0
- package/skills/builtin/skill-creator/LICENSE.txt +202 -0
- package/skills/builtin/skill-creator/SKILL.md +513 -0
- package/skills/builtin/skill-creator/agents/analyzer.md +274 -0
- package/skills/builtin/skill-creator/agents/comparator.md +202 -0
- package/skills/builtin/skill-creator/agents/grader.md +223 -0
- package/skills/builtin/skill-creator/assets/eval_review.html +146 -0
- package/skills/builtin/skill-creator/eval-viewer/generate_review.py +471 -0
- package/skills/builtin/skill-creator/eval-viewer/viewer.html +1325 -0
- package/skills/builtin/skill-creator/references/schemas.md +430 -0
- package/skills/builtin/skill-creator/scripts/__init__.py +0 -0
- package/skills/builtin/skill-creator/scripts/aggregate_benchmark.py +401 -0
- package/skills/builtin/skill-creator/scripts/generate_report.py +326 -0
- package/skills/builtin/skill-creator/scripts/improve_description.py +247 -0
- package/skills/builtin/skill-creator/scripts/package_skill.py +136 -0
- package/skills/builtin/skill-creator/scripts/quick_validate.py +103 -0
- package/skills/builtin/skill-creator/scripts/run_eval.py +310 -0
- package/skills/builtin/skill-creator/scripts/run_loop.py +328 -0
- package/skills/builtin/skill-creator/scripts/utils.py +47 -0
- package/skills/builtin/web-annotations/SKILL.md +93 -0
- package/dist/apps/chat-ui/assets/index-D2Qxambd.js +0 -151
- package/dist/apps/chat-ui/assets/index-DXx368XK.css +0 -1
- package/dist/env.js +0 -32
- package/dist/plugins/core-tools.js +0 -94
- package/dist/plugins/example.js +0 -67
- package/dist/plugins/remote-agent.js +0 -9
- package/dist/remote/channel.js +0 -176
- package/dist/remote/client.js +0 -92
- package/dist/remote/examples/tui-controller.js +0 -263
- package/dist/remote/protocol.js +0 -55
- package/dist/remote/session-client.js +0 -189
- package/dist/sessions/bindings.js +0 -41
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Box, Text } from "ink";
|
|
3
|
+
import { redactTerminalSecret } from "../../session-ui/index.js";
|
|
4
|
+
import { colorForTone } from "./inkColors.js";
|
|
5
|
+
import { formatFunctionCallTokens } from "./inkJson.js";
|
|
6
|
+
export function InkTerminalLine({ line, leadingMarker, leadingColor, maxChars = 220 }) {
|
|
7
|
+
const chunks = buildLineChunks(line, maxChars);
|
|
8
|
+
return React.createElement(Box, { flexDirection: "row" }, React.createElement(Text, { color: leadingColor, key: "marker" }, markerText(line, leadingMarker)), React.createElement(Text, { key: "content" }, " ", ...chunks.map((chunk, index) => React.createElement(Text, {
|
|
9
|
+
bold: chunk.weight === "bold" || chunk.weight === "semibold",
|
|
10
|
+
color: colorForTone(chunk.tone),
|
|
11
|
+
dimColor: chunk.tone === "dim",
|
|
12
|
+
italic: chunk.italic,
|
|
13
|
+
key: `token-${index}`,
|
|
14
|
+
}, chunk.text))));
|
|
15
|
+
}
|
|
16
|
+
export function linePrefixSymbol(prefix) {
|
|
17
|
+
switch (prefix) {
|
|
18
|
+
case "prompt":
|
|
19
|
+
return "›";
|
|
20
|
+
case "bullet":
|
|
21
|
+
return "•";
|
|
22
|
+
case "detail":
|
|
23
|
+
return "↳";
|
|
24
|
+
case "continuation":
|
|
25
|
+
return " ";
|
|
26
|
+
case "none":
|
|
27
|
+
case undefined:
|
|
28
|
+
default:
|
|
29
|
+
return " ";
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
function markerText(line, leadingMarker) {
|
|
33
|
+
const prefix = linePrefixSymbol(line.prefix);
|
|
34
|
+
if (leadingMarker === undefined)
|
|
35
|
+
return prefix;
|
|
36
|
+
if (prefix.trim() && prefix !== leadingMarker)
|
|
37
|
+
return `${leadingMarker} ${prefix}`;
|
|
38
|
+
return leadingMarker;
|
|
39
|
+
}
|
|
40
|
+
function buildLineChunks(line, _maxChars) {
|
|
41
|
+
const chunks = [...line.tokens];
|
|
42
|
+
if (line.functionCall) {
|
|
43
|
+
if (line.functionCall.input === undefined)
|
|
44
|
+
chunks.push({ text: line.functionCall.name, tone: "yellow", weight: "semibold" });
|
|
45
|
+
else
|
|
46
|
+
chunks.push(...formatFunctionCallTokens(line.functionCall.name, line.functionCall.input));
|
|
47
|
+
}
|
|
48
|
+
if (chunks.length === 0)
|
|
49
|
+
return [{ text: "∅", tone: "dim" }];
|
|
50
|
+
return chunks
|
|
51
|
+
.map((chunk) => ({ ...chunk, text: redactTerminalSecret(chunk.text).replace(/\n/g, " ") }))
|
|
52
|
+
.filter((chunk) => chunk.text.length > 0);
|
|
53
|
+
}
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Box, Text } from "ink";
|
|
3
|
+
import { buildTerminalCardDescriptor, progressBarText, redactTerminalSecret } from "../../session-ui/index.js";
|
|
4
|
+
import { colorForRowKind, colorForStatus, colorForTone, markerForStatus } from "./inkColors.js";
|
|
5
|
+
import { formatDetailJsonWellLines, formatInkJson } from "./inkJson.js";
|
|
6
|
+
import { renderInkMarkdownTerminalLines } from "./inkMarkdown.js";
|
|
7
|
+
import { InkTerminalLine } from "./InkTerminalLine.js";
|
|
8
|
+
export function InkTerminalRow({ row, maxLineChars = 220, maxMarkdownLines = 80, isExpanded = false, isSelected = false }) {
|
|
9
|
+
const card = isStructuredCardException(row) ? buildTerminalCardDescriptor(row) : undefined;
|
|
10
|
+
const detailLines = isExpanded ? rowDetailLines(row, maxLineChars) : [];
|
|
11
|
+
const selectedHint = isSelected && isExpandableTerminalRow(row) && !isExpanded
|
|
12
|
+
? [React.createElement(Text, { color: "cyan", key: `${row.id}:selected-detail-hint` }, " ↳ details available · press d or enter")]
|
|
13
|
+
: [];
|
|
14
|
+
if (card)
|
|
15
|
+
return React.createElement(Box, { flexDirection: "column" }, React.createElement(InkTerminalCard, { card, maxLineChars }), ...selectedHint, ...detailLines);
|
|
16
|
+
const lines = rowLines(row, maxMarkdownLines);
|
|
17
|
+
const statusColor = colorForStatus(row.status);
|
|
18
|
+
return React.createElement(Box, { flexDirection: "column" }, ...lines.map((line, index) => React.createElement(InkTerminalLine, {
|
|
19
|
+
key: `${row.id}-${index}`,
|
|
20
|
+
leadingColor: index === 0 ? rowMarkerColor(row) ?? statusColor : undefined,
|
|
21
|
+
leadingMarker: index === 0 ? rowMarker(row) : " ",
|
|
22
|
+
line,
|
|
23
|
+
maxChars: maxLineChars,
|
|
24
|
+
})), ...selectedHint, ...detailLines);
|
|
25
|
+
}
|
|
26
|
+
function isStructuredCardException(row) {
|
|
27
|
+
return row.kind === "tool.status"
|
|
28
|
+
|| row.kind === "tool.thinking"
|
|
29
|
+
|| row.kind === "tool.login"
|
|
30
|
+
|| row.kind === "tool.model";
|
|
31
|
+
}
|
|
32
|
+
export function isExpandableTerminalRow(row) {
|
|
33
|
+
return row.expandable === true
|
|
34
|
+
|| row.input !== undefined
|
|
35
|
+
|| row.output !== undefined
|
|
36
|
+
|| Boolean(row.error)
|
|
37
|
+
|| Boolean(row.linkedPiboSessionId)
|
|
38
|
+
|| Boolean(row.previewOmission)
|
|
39
|
+
|| Boolean(row.detailItems?.length);
|
|
40
|
+
}
|
|
41
|
+
export function InkTerminalCard({ card, maxLineChars: _maxLineChars = 220 }) {
|
|
42
|
+
const marker = markerForStatus(card.status);
|
|
43
|
+
const color = colorForCardTone(card.tone) ?? colorForStatus(card.status);
|
|
44
|
+
const statusLabel = card.status === "neutral" ? card.kind : `${card.kind} · ${card.status}`;
|
|
45
|
+
const statusSummary = card.kind === "status" ? statusCardSummary(card) : undefined;
|
|
46
|
+
const lines = [
|
|
47
|
+
React.createElement(Text, { color, key: "header", bold: true }, cardLine(`${marker} ▣ ${card.title} — ${statusLabel}${statusSummary ? ` · ${statusSummary}` : ""}`)),
|
|
48
|
+
];
|
|
49
|
+
if (card.kind === "status") {
|
|
50
|
+
lines.push(...statusCardCompactRows(card));
|
|
51
|
+
}
|
|
52
|
+
else {
|
|
53
|
+
for (const [index, row] of card.rows.entries()) {
|
|
54
|
+
const text = row.label ? ` ↳ ${row.label}: ${row.value}` : ` ↳ ${row.value}`;
|
|
55
|
+
lines.push(React.createElement(Text, { color: colorForCardTone(row.tone) ?? "white", key: `row-${index}` }, cardLine(text)));
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
for (const progress of card.statusView?.progress ?? []) {
|
|
59
|
+
const bar = inkProgressBarText(progress, 18);
|
|
60
|
+
const detail = progress.state === "available" ? ` — ${progress.text}` : "";
|
|
61
|
+
lines.push(React.createElement(Text, { color: progress.tone === "neutral" ? "gray" : colorForTone(progress.tone), key: `progress-${progress.id}` }, cardLine(` ↳ ${progress.label}: ${bar}${detail}`)));
|
|
62
|
+
}
|
|
63
|
+
for (const [index, warning] of (card.statusView?.warnings ?? []).entries()) {
|
|
64
|
+
lines.push(React.createElement(Text, { color: "yellow", key: `warning-${index}` }, cardLine(` ⚠ ${warning}`)));
|
|
65
|
+
}
|
|
66
|
+
for (const [index, error] of (card.statusView?.errors ?? []).entries()) {
|
|
67
|
+
lines.push(React.createElement(Text, { color: "red", key: `error-${index}` }, cardLine(` ✕ ${error}`)));
|
|
68
|
+
}
|
|
69
|
+
if (card.actions?.length) {
|
|
70
|
+
const actions = card.actions.map((action) => `${action.disabled ? "-" : "•"} ${action.label}`).join(" ");
|
|
71
|
+
lines.push(React.createElement(Text, { color: "gray", key: "actions" }, cardLine(` Actions: ${actions}`)));
|
|
72
|
+
}
|
|
73
|
+
if (lines.length === 1)
|
|
74
|
+
lines.push(React.createElement(Text, { color: "gray", key: "empty" }, " ↳ No details"));
|
|
75
|
+
return React.createElement(Box, { flexDirection: "column" }, ...lines);
|
|
76
|
+
}
|
|
77
|
+
export function rowMarker(row) {
|
|
78
|
+
if (row.kind === "message.user")
|
|
79
|
+
return "›";
|
|
80
|
+
if (row.kind === "message.assistant")
|
|
81
|
+
return row.status === "running" ? "…" : " ";
|
|
82
|
+
if (row.kind === "error")
|
|
83
|
+
return "✕";
|
|
84
|
+
return markerForStatus(row.status);
|
|
85
|
+
}
|
|
86
|
+
function rowMarkerColor(row) {
|
|
87
|
+
return row.status === "error" ? colorForStatus("error") : colorForRowKind(row.kind);
|
|
88
|
+
}
|
|
89
|
+
function colorForCardTone(tone) {
|
|
90
|
+
if (tone === "neutral")
|
|
91
|
+
return "gray";
|
|
92
|
+
return colorForTone(tone);
|
|
93
|
+
}
|
|
94
|
+
function statusCardSummary(card) {
|
|
95
|
+
const fields = statusFieldMap(card);
|
|
96
|
+
const runtime = fields.get("runtime") ?? card.status;
|
|
97
|
+
const session = shortStatusValue(fields.get("session"));
|
|
98
|
+
const model = shortStatusValue(fields.get("model"));
|
|
99
|
+
return [runtime, session ? `session ${session}` : undefined, model ? `model ${model}` : undefined].filter(Boolean).join(" · ");
|
|
100
|
+
}
|
|
101
|
+
function statusCardCompactRows(card) {
|
|
102
|
+
const fields = statusFieldMap(card);
|
|
103
|
+
const rows = [];
|
|
104
|
+
const identity = [
|
|
105
|
+
fields.get("session") ? `session ${shortStatusValue(fields.get("session"))}` : undefined,
|
|
106
|
+
fields.get("profile") ? `profile ${fields.get("profile")}` : undefined,
|
|
107
|
+
fields.get("model") ? `model ${fields.get("model")}` : undefined,
|
|
108
|
+
].filter(Boolean).join(" · ");
|
|
109
|
+
if (identity)
|
|
110
|
+
rows.push(statusCardRow("identity", "Identity", identity));
|
|
111
|
+
const runtime = [
|
|
112
|
+
fields.get("runtime"),
|
|
113
|
+
fieldIfMeaningful("queue", fields.get("queue")),
|
|
114
|
+
fieldIfMeaningful("processing", fields.get("processing")),
|
|
115
|
+
fieldIfMeaningful("streaming", fields.get("streaming")),
|
|
116
|
+
fieldIfMeaningful("disposed", fields.get("disposed")),
|
|
117
|
+
fields.get("session-status") ? `session ${fields.get("session-status")}` : undefined,
|
|
118
|
+
].filter(Boolean).join(" · ");
|
|
119
|
+
if (runtime)
|
|
120
|
+
rows.push(statusCardRow("runtime", "Runtime", runtime, statusRuntimeTone(fields)));
|
|
121
|
+
const location = fields.get("cwd");
|
|
122
|
+
if (location)
|
|
123
|
+
rows.push(statusCardRow("location", "CWD", location));
|
|
124
|
+
const settings = [
|
|
125
|
+
fields.get("thinking") ? `thinking ${fields.get("thinking")}` : undefined,
|
|
126
|
+
fieldIfEnabled("fast", fields.get("fast-mode")),
|
|
127
|
+
].filter(Boolean).join(" · ");
|
|
128
|
+
if (settings)
|
|
129
|
+
rows.push(statusCardRow("settings", "Settings", settings, "yellow"));
|
|
130
|
+
const provider = [
|
|
131
|
+
fields.get("provider-plan") ? `plan ${fields.get("provider-plan")}` : undefined,
|
|
132
|
+
fields.get("provider-credits") ? `credits ${fields.get("provider-credits")}` : undefined,
|
|
133
|
+
].filter(Boolean).join(" · ");
|
|
134
|
+
if (provider)
|
|
135
|
+
rows.push(statusCardRow("provider", "Provider", provider));
|
|
136
|
+
const tools = [
|
|
137
|
+
fields.get("enabled-tools") ? `enabled ${foldedToolCount(fields.get("enabled-tools"))}` : undefined,
|
|
138
|
+
fields.get("active-tools") ? `active ${activeToolSummary(fields.get("active-tools"))}` : undefined,
|
|
139
|
+
].filter(Boolean).join(" · ");
|
|
140
|
+
if (tools)
|
|
141
|
+
rows.push(statusCardRow("tools", "Tools", `${tools} · names in details`, "cyan"));
|
|
142
|
+
const message = fields.get("message");
|
|
143
|
+
if (message)
|
|
144
|
+
rows.push(statusCardRow("message", "Message", message, "neutral"));
|
|
145
|
+
return rows;
|
|
146
|
+
}
|
|
147
|
+
function statusCardRow(id, label, value, tone = "neutral") {
|
|
148
|
+
return React.createElement(Text, { color: colorForCardTone(tone) ?? "white", key: `status-${id}` }, cardLine(` ↳ ${label}: ${value}`));
|
|
149
|
+
}
|
|
150
|
+
function statusFieldMap(card) {
|
|
151
|
+
return new Map((card.statusView?.fields ?? []).map((field) => [field.id, field.value]));
|
|
152
|
+
}
|
|
153
|
+
function statusRuntimeTone(fields) {
|
|
154
|
+
if (fields.get("disposed") === "yes" || fields.get("runtime") === "disconnected")
|
|
155
|
+
return "red";
|
|
156
|
+
if (fields.get("processing") === "yes" || fields.get("streaming") === "yes")
|
|
157
|
+
return "cyan";
|
|
158
|
+
return "green";
|
|
159
|
+
}
|
|
160
|
+
function fieldIfMeaningful(label, value) {
|
|
161
|
+
if (!value || value === "no" || value === "0")
|
|
162
|
+
return undefined;
|
|
163
|
+
return `${label} ${value}`;
|
|
164
|
+
}
|
|
165
|
+
function fieldIfEnabled(label, value) {
|
|
166
|
+
if (!value || value === "off" || value === "no")
|
|
167
|
+
return undefined;
|
|
168
|
+
return `${label} ${value}`;
|
|
169
|
+
}
|
|
170
|
+
function foldedToolCount(value) {
|
|
171
|
+
if (!value)
|
|
172
|
+
return undefined;
|
|
173
|
+
const count = value.match(/^\d+/)?.[0] ?? value;
|
|
174
|
+
return `${count} folded`;
|
|
175
|
+
}
|
|
176
|
+
function activeToolSummary(value) {
|
|
177
|
+
if (!value)
|
|
178
|
+
return undefined;
|
|
179
|
+
const names = value.match(/\(([^)]+)\)/)?.[1];
|
|
180
|
+
return names ?? foldedToolCount(value);
|
|
181
|
+
}
|
|
182
|
+
function shortStatusValue(value) {
|
|
183
|
+
if (!value)
|
|
184
|
+
return undefined;
|
|
185
|
+
return value.split("|")[0]?.trim() || value;
|
|
186
|
+
}
|
|
187
|
+
function cardLine(value) {
|
|
188
|
+
return value.replace(/\s+/g, " ");
|
|
189
|
+
}
|
|
190
|
+
function inkProgressBarText(progress, width) {
|
|
191
|
+
const boundedWidth = Math.max(4, Math.min(80, Math.floor(width)));
|
|
192
|
+
const ascii = shouldUseAsciiProgress();
|
|
193
|
+
if (progress.state !== "available" || progress.percent === undefined) {
|
|
194
|
+
const empty = ascii ? "-".repeat(boundedWidth) : "░".repeat(boundedWidth);
|
|
195
|
+
return `unavailable · ${empty}`;
|
|
196
|
+
}
|
|
197
|
+
const text = progressBarText(progress, boundedWidth);
|
|
198
|
+
if (!ascii)
|
|
199
|
+
return text;
|
|
200
|
+
const filled = Math.round((Math.max(0, Math.min(100, progress.percent)) / 100) * boundedWidth);
|
|
201
|
+
return `${"#".repeat(filled)}${"-".repeat(boundedWidth - filled)} ${progress.percent.toFixed(1)}%`;
|
|
202
|
+
}
|
|
203
|
+
function shouldUseAsciiProgress() {
|
|
204
|
+
return Boolean(process.env.NO_COLOR) || process.env.TERM === "dumb" || process.env.PIBO_ASCII_PROGRESS === "1";
|
|
205
|
+
}
|
|
206
|
+
function rowDetailLines(row, maxLineChars) {
|
|
207
|
+
const details = detailsForExpandedRow(row);
|
|
208
|
+
if (!details.length)
|
|
209
|
+
return [];
|
|
210
|
+
const lines = [
|
|
211
|
+
React.createElement(Text, { color: "yellow", key: `${row.id}:details-header`, bold: true }, " └ Details"),
|
|
212
|
+
];
|
|
213
|
+
for (const [index, detail] of details.entries()) {
|
|
214
|
+
for (const [lineIndex, text] of detailTextLines(detail, maxLineChars).entries()) {
|
|
215
|
+
lines.push(React.createElement(Text, {
|
|
216
|
+
color: detail.status === "error" ? "red" : "gray",
|
|
217
|
+
key: `${row.id}:detail:${detail.id}:${index}:${lineIndex}`,
|
|
218
|
+
}, lineIndex === 0 ? ` ${text}` : ` ${text}`));
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
return lines;
|
|
222
|
+
}
|
|
223
|
+
function detailsForExpandedRow(row) {
|
|
224
|
+
const details = [...(row.detailItems ?? [])];
|
|
225
|
+
if (details.length === 0 && (row.input !== undefined || row.output !== undefined || row.error || row.linkedPiboSessionId || row.previewOmission)) {
|
|
226
|
+
details.push({
|
|
227
|
+
id: `${row.id}:row-details`,
|
|
228
|
+
label: "Row details",
|
|
229
|
+
status: row.status,
|
|
230
|
+
input: row.input,
|
|
231
|
+
output: row.output,
|
|
232
|
+
error: row.error,
|
|
233
|
+
linkedPiboSessionId: row.linkedPiboSessionId,
|
|
234
|
+
previewOmission: row.previewOmission,
|
|
235
|
+
});
|
|
236
|
+
}
|
|
237
|
+
if (row.linkedPiboSessionId && !details.some((item) => item.linkedPiboSessionId === row.linkedPiboSessionId)) {
|
|
238
|
+
details.push({ id: `${row.id}:linked-session`, label: "Linked session", status: "done", linkedPiboSessionId: row.linkedPiboSessionId });
|
|
239
|
+
}
|
|
240
|
+
return details;
|
|
241
|
+
}
|
|
242
|
+
function detailTextLines(detail, maxLineChars) {
|
|
243
|
+
const label = detail.status === "error" && !/error/i.test(detail.label) ? `${detail.label} error` : detail.label;
|
|
244
|
+
const lines = [`${label}:`];
|
|
245
|
+
if (detail.previewOmission) {
|
|
246
|
+
const source = sectionLabel(detail.previewOmission.source);
|
|
247
|
+
lines.push(`${source}: ${detail.previewOmission.totalLineCount} lines total · ${detail.previewOmission.omittedLineCount} hidden while collapsed`);
|
|
248
|
+
}
|
|
249
|
+
if (detail.linkedPiboSessionId)
|
|
250
|
+
lines.push(`Linked session: ${redactTerminalSecret(detail.linkedPiboSessionId)}`);
|
|
251
|
+
if (detail.input !== undefined)
|
|
252
|
+
lines.push("Input:", ...detailValueLines(detail.input, maxLineChars));
|
|
253
|
+
if (detail.output !== undefined)
|
|
254
|
+
lines.push("Output:", ...detailValueLines(detail.output, maxLineChars));
|
|
255
|
+
if (detail.error)
|
|
256
|
+
lines.push("Error:", ...redactedTextLines(detail.error));
|
|
257
|
+
if (lines.length === 1)
|
|
258
|
+
lines.push(detail.status);
|
|
259
|
+
return lines;
|
|
260
|
+
}
|
|
261
|
+
function sectionLabel(source) {
|
|
262
|
+
if (source === "input")
|
|
263
|
+
return "Input";
|
|
264
|
+
if (source === "error")
|
|
265
|
+
return "Error";
|
|
266
|
+
if (source === "details")
|
|
267
|
+
return "Details";
|
|
268
|
+
return "Output";
|
|
269
|
+
}
|
|
270
|
+
function detailValueLines(value, maxLineChars) {
|
|
271
|
+
const jsonWell = formatDetailJsonWellLines(value, { maxChars: Math.min(1600, Math.max(420, maxLineChars * 8)), maxDepth: 2, maxArrayItems: 12, maxObjectKeys: 20 });
|
|
272
|
+
if (jsonWell)
|
|
273
|
+
return jsonWell;
|
|
274
|
+
const text = typeof value === "string"
|
|
275
|
+
? value
|
|
276
|
+
: formatInkJson(value, { maxChars: Math.min(1600, Math.max(420, maxLineChars * 8)), maxDepth: 4, maxArrayItems: 12, maxObjectKeys: 20 });
|
|
277
|
+
return redactedTextLines(text);
|
|
278
|
+
}
|
|
279
|
+
function redactedTextLines(value) {
|
|
280
|
+
const redacted = redactTerminalSecret(value).trimEnd();
|
|
281
|
+
const lines = redacted.split(/\r?\n/);
|
|
282
|
+
return lines.length > 0 && lines.some((line) => line.length > 0) ? lines : ["∅"];
|
|
283
|
+
}
|
|
284
|
+
function rowLines(row, maxMarkdownLines) {
|
|
285
|
+
if (row.lines.length > 0)
|
|
286
|
+
return row.lines;
|
|
287
|
+
if (row.markdown || typeof row.output === "string") {
|
|
288
|
+
const markdown = row.markdown ?? String(row.output ?? "");
|
|
289
|
+
return renderInkMarkdownTerminalLines(markdown, { maxLines: maxMarkdownLines, reasoning: row.kind === "reasoning" });
|
|
290
|
+
}
|
|
291
|
+
if (row.error)
|
|
292
|
+
return [{ prefix: "none", tokens: [{ text: row.error, tone: "red", weight: "semibold" }] }];
|
|
293
|
+
if (row.output !== undefined)
|
|
294
|
+
return jsonLines(row.output);
|
|
295
|
+
if (row.input !== undefined)
|
|
296
|
+
return jsonLines(row.input);
|
|
297
|
+
return [{ prefix: "none", tokens: [{ text: fallbackLabel(row), tone: "dim" }] }];
|
|
298
|
+
}
|
|
299
|
+
function jsonLines(value) {
|
|
300
|
+
return formatInkJson(value).split("\n").map((text) => ({ prefix: "none", tokens: [{ text, tone: "dim" }] }));
|
|
301
|
+
}
|
|
302
|
+
function fallbackLabel(row) {
|
|
303
|
+
return `${row.kind} ${row.status}`.trim();
|
|
304
|
+
}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Box, Text } from "ink";
|
|
3
|
+
import { InkTerminalRow } from "./InkTerminalRow.js";
|
|
4
|
+
const DEFAULT_MAX_ROWS = 200;
|
|
5
|
+
export function InkTerminalView({ rows, maxRows = DEFAULT_MAX_ROWS, maxLineChars, showOmittedCount = true, selectedRowId, expandedRowIds = [] }) {
|
|
6
|
+
const windowedRows = rowWindow(rows, maxRows);
|
|
7
|
+
const omitted = Math.max(0, rows.length - windowedRows.length);
|
|
8
|
+
const expanded = new Set(expandedRowIds);
|
|
9
|
+
return React.createElement(Box, { flexDirection: "column" }, ...(showOmittedCount && omitted > 0
|
|
10
|
+
? [React.createElement(Text, { color: "gray", key: "omitted" }, `… ${omitted} earlier rows omitted`)]
|
|
11
|
+
: []), ...windowedRows.map((row) => React.createElement(InkTerminalRow, {
|
|
12
|
+
key: row.id,
|
|
13
|
+
maxLineChars,
|
|
14
|
+
row,
|
|
15
|
+
isExpanded: expanded.has(row.id),
|
|
16
|
+
isSelected: row.id === selectedRowId,
|
|
17
|
+
})));
|
|
18
|
+
}
|
|
19
|
+
export function rowWindow(rows, maxRows = DEFAULT_MAX_ROWS) {
|
|
20
|
+
if (!Number.isFinite(maxRows) || maxRows <= 0)
|
|
21
|
+
return [];
|
|
22
|
+
if (rows.length <= maxRows)
|
|
23
|
+
return rows;
|
|
24
|
+
return rows.slice(rows.length - maxRows);
|
|
25
|
+
}
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
import { randomUUID } from "node:crypto";
|
|
2
|
+
import React from "react";
|
|
3
|
+
import { render } from "ink";
|
|
4
|
+
import { createCustomAgentProfileDefinition } from "../../apps/chat/agent-profiles.js";
|
|
5
|
+
import { createDefaultCustomAgentStore } from "../../apps/chat/agent-store.js";
|
|
6
|
+
import { createDefaultFakeCliSessionSource, LocalCliSessionSource } from "../../cli-session/index.js";
|
|
7
|
+
import { PiboSessionRouter } from "../../core/session-router.js";
|
|
8
|
+
import { PiboDataStore } from "../../data/pibo-store.js";
|
|
9
|
+
import { createDefaultPiboPluginRegistry } from "../../plugins/builtin.js";
|
|
10
|
+
import { PiboDataSessionStore } from "../../sessions/pibo-data-store.js";
|
|
11
|
+
import { cliCommandSummaryText, InkSessionApp } from "./InkSessionApp.js";
|
|
12
|
+
export async function runCliSessionsUi(options = {}) {
|
|
13
|
+
const stdin = options.stdin ?? process.stdin;
|
|
14
|
+
const stdout = options.stdout ?? process.stdout;
|
|
15
|
+
const stderr = options.stderr ?? process.stderr;
|
|
16
|
+
if (options.allowNonTty !== true && (stdin.isTTY !== true || stdout.isTTY !== true)) {
|
|
17
|
+
stderr.write("pibo tui:sessions requires interactive stdin and stdout TTYs. Re-run from a terminal, SSH session, or use --help for command usage.\n");
|
|
18
|
+
process.exitCode = 1;
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
const debugPtyMockedSource = process.env.PIBO_DEBUG_PTY_CLI_SESSIONS_MOCKED === "1";
|
|
22
|
+
const source = options.source ?? (options.useFakeSource
|
|
23
|
+
? createDefaultFakeCliSessionSource()
|
|
24
|
+
: debugPtyMockedSource
|
|
25
|
+
? createDebugMockedLocalCliSessionSource({ assistantReply: process.env.PIBO_DEBUG_PTY_ASSISTANT_REPLY ?? "Mocked PTY assistant response" })
|
|
26
|
+
: createDefaultLocalCliSessionSource());
|
|
27
|
+
const instance = render(React.createElement(InkSessionApp, {
|
|
28
|
+
initialSessionId: options.initialSessionId,
|
|
29
|
+
maxLineChars: options.maxLineChars ?? terminalLineLimitFromColumns(stdout.columns),
|
|
30
|
+
maxRows: options.maxRows,
|
|
31
|
+
source,
|
|
32
|
+
}), {
|
|
33
|
+
stdin,
|
|
34
|
+
stdout,
|
|
35
|
+
stderr,
|
|
36
|
+
});
|
|
37
|
+
await instance.waitUntilExit();
|
|
38
|
+
}
|
|
39
|
+
export function createDefaultLocalCliSessionSource() {
|
|
40
|
+
const context = createLocalCliSessionSourceContext();
|
|
41
|
+
const router = new PiboSessionRouter({ sessionStore: context.sessionStore, pluginRegistry: context.pluginRegistry });
|
|
42
|
+
return createLocalCliSessionSourceFromContext({ ...context, router, ownsRouter: true });
|
|
43
|
+
}
|
|
44
|
+
function createDebugMockedLocalCliSessionSource(options) {
|
|
45
|
+
const context = createLocalCliSessionSourceContext();
|
|
46
|
+
const debugRooms = debugRoomSummariesFromEnv();
|
|
47
|
+
const router = new DebugMockCliSessionRouter(options.assistantReply);
|
|
48
|
+
return createLocalCliSessionSourceFromContext({
|
|
49
|
+
...context,
|
|
50
|
+
router,
|
|
51
|
+
ownsRouter: true,
|
|
52
|
+
roomProvider: debugRooms.length > 0 ? { listRooms: () => debugRooms } : undefined,
|
|
53
|
+
statusMessage: "Debug PTY mocked local router",
|
|
54
|
+
});
|
|
55
|
+
}
|
|
56
|
+
function debugRoomSummariesFromEnv() {
|
|
57
|
+
const raw = process.env.PIBO_DEBUG_PTY_CLI_SESSIONS_ROOMS;
|
|
58
|
+
if (!raw)
|
|
59
|
+
return [];
|
|
60
|
+
const rooms = [];
|
|
61
|
+
for (const entry of raw.split(";").map((value) => value.trim()).filter(Boolean)) {
|
|
62
|
+
const parts = entry.split("|").map((part) => part?.trim());
|
|
63
|
+
const [id, title, description] = parts.length >= 4 ? parts.slice(1) : parts;
|
|
64
|
+
if (id && title)
|
|
65
|
+
rooms.push({ id, title, description: description || "Debug PTY room fixture", isDefault: title === "Shared Chat" });
|
|
66
|
+
}
|
|
67
|
+
return rooms;
|
|
68
|
+
}
|
|
69
|
+
function createLocalCliSessionSourceContext() {
|
|
70
|
+
const dataStore = new PiboDataStore();
|
|
71
|
+
const sessionStore = new PiboDataSessionStore(dataStore);
|
|
72
|
+
const pluginRegistry = createDefaultPiboPluginRegistry();
|
|
73
|
+
const builtInAgentSummaries = pluginRegistry.getProfileInfos().map((profile) => ({ id: profile.name, name: profile.name, description: profile.description, profileName: profile.name }));
|
|
74
|
+
const customAgentStore = createDefaultCustomAgentStore();
|
|
75
|
+
const customAgents = customAgentStore.list();
|
|
76
|
+
try {
|
|
77
|
+
for (const agent of customAgents)
|
|
78
|
+
pluginRegistry.upsertProfile(createCustomAgentProfileDefinition(agent, { missingReferenceMode: "silent" }));
|
|
79
|
+
}
|
|
80
|
+
finally {
|
|
81
|
+
customAgentStore.close();
|
|
82
|
+
}
|
|
83
|
+
const agentSummaries = [
|
|
84
|
+
...builtInAgentSummaries,
|
|
85
|
+
...customAgents.map((agent) => ({ id: agent.profileName, name: agent.profileName, description: agent.description || agent.displayName, profileName: agent.profileName })),
|
|
86
|
+
];
|
|
87
|
+
return { dataStore, sessionStore, pluginRegistry, agentSummaries };
|
|
88
|
+
}
|
|
89
|
+
function createLocalCliSessionSourceFromContext(input) {
|
|
90
|
+
return new LocalCliSessionSource({
|
|
91
|
+
sessionStore: input.sessionStore,
|
|
92
|
+
ownsSessionStore: true,
|
|
93
|
+
pluginRegistry: input.pluginRegistry,
|
|
94
|
+
router: input.router,
|
|
95
|
+
ownsRouter: input.ownsRouter,
|
|
96
|
+
dataStore: input.dataStore,
|
|
97
|
+
ownsDataStore: true,
|
|
98
|
+
agentSummaries: input.agentSummaries,
|
|
99
|
+
roomProvider: input.roomProvider,
|
|
100
|
+
statusMessage: input.statusMessage,
|
|
101
|
+
});
|
|
102
|
+
}
|
|
103
|
+
class DebugMockCliSessionRouter {
|
|
104
|
+
assistantReply;
|
|
105
|
+
listeners = new Set();
|
|
106
|
+
statuses = new Map();
|
|
107
|
+
constructor(assistantReply) {
|
|
108
|
+
this.assistantReply = assistantReply;
|
|
109
|
+
}
|
|
110
|
+
subscribe(listener) {
|
|
111
|
+
this.listeners.add(listener);
|
|
112
|
+
return () => this.listeners.delete(listener);
|
|
113
|
+
}
|
|
114
|
+
async emit(event) {
|
|
115
|
+
if (event.type !== "message") {
|
|
116
|
+
const result = { type: "execution_result", piboSessionId: event.piboSessionId, eventId: event.id, action: event.action, result: this.executionResult(event) };
|
|
117
|
+
this.publish(result);
|
|
118
|
+
return result;
|
|
119
|
+
}
|
|
120
|
+
const eventId = event.id ?? randomUUID();
|
|
121
|
+
this.statuses.set(event.piboSessionId, this.status(event.piboSessionId, { processing: true, queuedMessages: 1 }));
|
|
122
|
+
this.publish({ type: "message_queued", piboSessionId: event.piboSessionId, eventId, queuedMessages: 1, text: event.text, source: event.source });
|
|
123
|
+
this.statuses.set(event.piboSessionId, this.status(event.piboSessionId, { processing: true, queuedMessages: 0 }));
|
|
124
|
+
this.publish({ type: "message_started", piboSessionId: event.piboSessionId, eventId, text: event.text, source: event.source });
|
|
125
|
+
const assistant = { type: "assistant_message", piboSessionId: event.piboSessionId, eventId, assistantIndex: 0, contentIndex: 0, text: this.assistantReply };
|
|
126
|
+
this.publish(assistant);
|
|
127
|
+
const finished = { type: "message_finished", piboSessionId: event.piboSessionId, eventId, source: event.source };
|
|
128
|
+
this.statuses.set(event.piboSessionId, this.status(event.piboSessionId, { processing: false, queuedMessages: 0 }));
|
|
129
|
+
this.publish(finished);
|
|
130
|
+
return assistant;
|
|
131
|
+
}
|
|
132
|
+
getSessionRuntimeStatus(piboSessionId) {
|
|
133
|
+
return this.statuses.get(piboSessionId) ?? this.status(piboSessionId);
|
|
134
|
+
}
|
|
135
|
+
async disposeAll() {
|
|
136
|
+
this.listeners.clear();
|
|
137
|
+
this.statuses.clear();
|
|
138
|
+
}
|
|
139
|
+
publish(event) {
|
|
140
|
+
for (const listener of this.listeners)
|
|
141
|
+
listener(event);
|
|
142
|
+
}
|
|
143
|
+
executionResult(event) {
|
|
144
|
+
const params = "params" in event && event.params && typeof event.params === "object" && !Array.isArray(event.params) ? event.params : {};
|
|
145
|
+
if (event.action === "fast_mode")
|
|
146
|
+
return { mode: "fast", supported: true, changed: true };
|
|
147
|
+
if (event.action === "thinking") {
|
|
148
|
+
const level = typeof params.level === "string" ? params.level : undefined;
|
|
149
|
+
if (level)
|
|
150
|
+
return { message: `Thinking level set to ${level}`, level, supported: true, changed: true };
|
|
151
|
+
return { action: "show_thinking_menu", items: ["off", "minimal", "low", "medium", "high", "xhigh"].map((value) => ({ id: value, label: value })) };
|
|
152
|
+
}
|
|
153
|
+
if (event.action === "model") {
|
|
154
|
+
const model = typeof params.model === "string" ? params.model : undefined;
|
|
155
|
+
const provider = typeof params.provider === "string" ? params.provider : "openai";
|
|
156
|
+
if (model)
|
|
157
|
+
return { message: `Model set to ${provider}/${model}`, provider, model, supported: true, changed: true };
|
|
158
|
+
return { action: "show_model_menu", providers: [{ id: "openai", label: "OpenAI", description: "Debug PTY provider", models: [{ id: "gpt-pty-large", label: "GPT PTY Large" }, { id: "gpt-pty-mini", label: "GPT PTY Mini" }] }, { id: "offline", label: "Offline Provider", description: "Unavailable in debug PTY", disabled: true, reason: "Debug provider has no credentials", models: [{ id: "offline-model", label: "Offline Model", disabled: true, reason: "Provider unavailable" }] }] };
|
|
159
|
+
}
|
|
160
|
+
if (event.action === "login") {
|
|
161
|
+
return { action: "show_login_menu", providers: [{ id: "openai-codex", name: "OpenAI (ChatGPT Plus/Pro)", authMethods: ["device_code"], configured: false }, { id: "openai", name: "OpenAI API", authMethods: ["api_key"], configured: false }] };
|
|
162
|
+
}
|
|
163
|
+
if (event.action === "login.start")
|
|
164
|
+
return { message: `Open ${params.provider ?? "provider"} login URL https://example.test/device and enter code PTY-1234. Complete sign-in in a browser, then return to the terminal.`, url: "https://example.test/device", userCode: "PTY-1234" };
|
|
165
|
+
if (event.action === "session.fork_candidates")
|
|
166
|
+
return { action: "show_fork_candidates", messages: [{ entryId: "entry_pty_1", text: "Fork from PTY prompt one" }, { entryId: "entry_pty_2", text: "Fork from PTY prompt two" }] };
|
|
167
|
+
if (event.action === "session.fork")
|
|
168
|
+
return { supported: false, unsupportedReason: "Debug PTY mocked router cannot fork Pi session state; live routed sessions return a visible fork when supported." };
|
|
169
|
+
if (event.action === "compact")
|
|
170
|
+
return { queued: true, queuedMessages: 1 };
|
|
171
|
+
if (event.action === "clear_queue")
|
|
172
|
+
return { cleared: 0 };
|
|
173
|
+
if (event.action === "abort")
|
|
174
|
+
return { aborted: true };
|
|
175
|
+
if (event.action === "kill")
|
|
176
|
+
return { killed: [event.piboSessionId], cancelledRuns: [] };
|
|
177
|
+
if (event.action === "kill_all")
|
|
178
|
+
return { killed: [event.piboSessionId], cancelledRuns: [] };
|
|
179
|
+
if (event.action === "session.clone")
|
|
180
|
+
return { supported: false, unsupportedReason: "Debug PTY mocked router cannot clone Pi session state; live routed sessions return a derived session id when clone succeeds." };
|
|
181
|
+
return { mocked: true, action: event.action };
|
|
182
|
+
}
|
|
183
|
+
status(piboSessionId, overrides = {}) {
|
|
184
|
+
return {
|
|
185
|
+
piboSessionId,
|
|
186
|
+
queuedMessages: 0,
|
|
187
|
+
processing: false,
|
|
188
|
+
streaming: false,
|
|
189
|
+
activeTools: [],
|
|
190
|
+
enabledTools: [],
|
|
191
|
+
cwd: process.cwd(),
|
|
192
|
+
disposed: false,
|
|
193
|
+
thinkingLevel: "high",
|
|
194
|
+
fastMode: false,
|
|
195
|
+
contextUsage: { tokens: 128, contextWindow: 1024, percent: 12.5 },
|
|
196
|
+
providerUsage: { provider: "openai", planType: "debug", limits: [{ label: "requests", usedPercent: 25 }] },
|
|
197
|
+
warnings: ["Debug PTY status fixture redacts TOKEN=secret-value"],
|
|
198
|
+
...overrides,
|
|
199
|
+
};
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
export function terminalLineLimitFromColumns(columns) {
|
|
203
|
+
if (columns === undefined || !Number.isFinite(columns) || columns <= 0)
|
|
204
|
+
return undefined;
|
|
205
|
+
return Math.max(20, Math.floor(columns) - 4);
|
|
206
|
+
}
|
|
207
|
+
export function cliSessionsHelpText() {
|
|
208
|
+
return `pibo tui:sessions - reduced Web Chat-derived session UI for terminals
|
|
209
|
+
|
|
210
|
+
Usage:
|
|
211
|
+
pibo tui:sessions [options]
|
|
212
|
+
|
|
213
|
+
Options:
|
|
214
|
+
--session <id> Open a specific Pibo session id
|
|
215
|
+
--max-rows <count> Limit rendered transcript rows (default: 20)
|
|
216
|
+
--demo Use deterministic fake session data for smoke testing
|
|
217
|
+
-h, --help Show this help
|
|
218
|
+
|
|
219
|
+
V2 commands inside the app:
|
|
220
|
+
${cliCommandSummaryText()}
|
|
221
|
+
|
|
222
|
+
Scope:
|
|
223
|
+
CLI Sessions is a reduced session/chat UI for SSH, bootstrap, recovery, and quick local work.
|
|
224
|
+
It starts only when stdin and stdout are interactive TTYs; pipes fail with a clear error.
|
|
225
|
+
Transcript rendering uses a bounded default tail window of 20 rows and truncates narrow terminal lines.
|
|
226
|
+
Web Chat remains the full control center for projects, workflows, Cron, Ralph, Agent Designer, settings, and context management.
|
|
227
|
+
|
|
228
|
+
Related existing commands:
|
|
229
|
+
pibo tui
|
|
230
|
+
pibo tui:routed
|
|
231
|
+
`;
|
|
232
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./InkTerminalLine.js";
|
|
2
|
+
export * from "./InkTerminalRow.js";
|
|
3
|
+
export * from "./InkTerminalView.js";
|
|
4
|
+
export * from "./InkSessionApp.js";
|
|
5
|
+
export * from "./cliSessionsCommand.js";
|
|
6
|
+
export * from "./inkColors.js";
|
|
7
|
+
export * from "./inkJson.js";
|
|
8
|
+
export * from "./inkMarkdown.js";
|