experimental-ash 0.1.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/ash.d.ts +59 -0
- package/bin/ash.js +124 -0
- package/dist/src/cli/commands/info.d.ts +9 -0
- package/dist/src/cli/commands/info.d.ts.map +1 -0
- package/dist/src/cli/commands/info.js +200 -0
- package/dist/src/cli/commands/info.js.map +1 -0
- package/dist/src/cli/dev/environment.d.ts +11 -0
- package/dist/src/cli/dev/environment.d.ts.map +1 -0
- package/dist/src/cli/dev/environment.js +31 -0
- package/dist/src/cli/dev/environment.js.map +1 -0
- package/dist/src/cli/dev/input.d.ts +20 -0
- package/dist/src/cli/dev/input.d.ts.map +1 -0
- package/dist/src/cli/dev/input.js +31 -0
- package/dist/src/cli/dev/input.js.map +1 -0
- package/dist/src/cli/dev/live-stream.d.ts +2 -0
- package/dist/src/cli/dev/live-stream.d.ts.map +1 -0
- package/dist/src/cli/dev/live-stream.js +2 -0
- package/dist/src/cli/dev/live-stream.js.map +1 -0
- package/dist/src/cli/dev/repl.d.ts +8 -0
- package/dist/src/cli/dev/repl.d.ts.map +1 -0
- package/dist/src/cli/dev/repl.js +327 -0
- package/dist/src/cli/dev/repl.js.map +1 -0
- package/dist/src/cli/dev/request-headers.d.ts +2 -0
- package/dist/src/cli/dev/request-headers.d.ts.map +1 -0
- package/dist/src/cli/dev/request-headers.js +2 -0
- package/dist/src/cli/dev/request-headers.js.map +1 -0
- package/dist/src/cli/dev/send-message.d.ts +2 -0
- package/dist/src/cli/dev/send-message.d.ts.map +1 -0
- package/dist/src/cli/dev/send-message.js +2 -0
- package/dist/src/cli/dev/send-message.js.map +1 -0
- package/dist/src/cli/dev/session.d.ts +2 -0
- package/dist/src/cli/dev/session.d.ts.map +1 -0
- package/dist/src/cli/dev/session.js +2 -0
- package/dist/src/cli/dev/session.js.map +1 -0
- package/dist/src/cli/dev/stream.d.ts +2 -0
- package/dist/src/cli/dev/stream.d.ts.map +1 -0
- package/dist/src/cli/dev/stream.js +2 -0
- package/dist/src/cli/dev/stream.js.map +1 -0
- package/dist/src/cli/dev/terminal.d.ts +20 -0
- package/dist/src/cli/dev/terminal.d.ts.map +1 -0
- package/dist/src/cli/dev/terminal.js +114 -0
- package/dist/src/cli/dev/terminal.js.map +1 -0
- package/dist/src/cli/dev/url.d.ts +6 -0
- package/dist/src/cli/dev/url.d.ts.map +1 -0
- package/dist/src/cli/dev/url.js +28 -0
- package/dist/src/cli/dev/url.js.map +1 -0
- package/dist/src/cli/run.d.ts +16 -0
- package/dist/src/cli/run.d.ts.map +1 -0
- package/dist/src/cli/run.js +209 -0
- package/dist/src/cli/run.js.map +1 -0
- package/dist/src/cli/ui/output.d.ts +62 -0
- package/dist/src/cli/ui/output.d.ts.map +1 -0
- package/dist/src/cli/ui/output.js +84 -0
- package/dist/src/cli/ui/output.js.map +1 -0
- package/dist/src/compiler/artifacts.d.ts +124 -0
- package/dist/src/compiler/artifacts.d.ts.map +1 -0
- package/dist/src/compiler/artifacts.js +180 -0
- package/dist/src/compiler/artifacts.js.map +1 -0
- package/dist/src/compiler/compile-agent.d.ts +40 -0
- package/dist/src/compiler/compile-agent.d.ts.map +1 -0
- package/dist/src/compiler/compile-agent.js +47 -0
- package/dist/src/compiler/compile-agent.js.map +1 -0
- package/dist/src/compiler/context.d.ts +85 -0
- package/dist/src/compiler/context.d.ts.map +1 -0
- package/dist/src/compiler/context.js +128 -0
- package/dist/src/compiler/context.js.map +1 -0
- package/dist/src/compiler/json-schema.d.ts +2 -0
- package/dist/src/compiler/json-schema.d.ts.map +1 -0
- package/dist/src/compiler/json-schema.js +2 -0
- package/dist/src/compiler/json-schema.js.map +1 -0
- package/dist/src/compiler/manifest.d.ts +196 -0
- package/dist/src/compiler/manifest.d.ts.map +1 -0
- package/dist/src/compiler/manifest.js +246 -0
- package/dist/src/compiler/manifest.js.map +1 -0
- package/dist/src/compiler/module-map.d.ts +37 -0
- package/dist/src/compiler/module-map.d.ts.map +1 -0
- package/dist/src/compiler/module-map.js +148 -0
- package/dist/src/compiler/module-map.js.map +1 -0
- package/dist/src/compiler/normalize-manifest.d.ts +20 -0
- package/dist/src/compiler/normalize-manifest.d.ts.map +1 -0
- package/dist/src/compiler/normalize-manifest.js +315 -0
- package/dist/src/compiler/normalize-manifest.js.map +1 -0
- package/dist/src/compiler/resource-files.d.ts +20 -0
- package/dist/src/compiler/resource-files.d.ts.map +1 -0
- package/dist/src/compiler/resource-files.js +29 -0
- package/dist/src/compiler/resource-files.js.map +1 -0
- package/dist/src/compiler/workspace.d.ts +58 -0
- package/dist/src/compiler/workspace.d.ts.map +1 -0
- package/dist/src/compiler/workspace.js +70 -0
- package/dist/src/compiler/workspace.js.map +1 -0
- package/dist/src/discover/context.d.ts +35 -0
- package/dist/src/discover/context.d.ts.map +1 -0
- package/dist/src/discover/context.js +88 -0
- package/dist/src/discover/context.js.map +1 -0
- package/dist/src/discover/diagnostics.d.ts +74 -0
- package/dist/src/discover/diagnostics.d.ts.map +1 -0
- package/dist/src/discover/diagnostics.js +98 -0
- package/dist/src/discover/diagnostics.js.map +1 -0
- package/dist/src/discover/discover-agent.d.ts +29 -0
- package/dist/src/discover/discover-agent.d.ts.map +1 -0
- package/dist/src/discover/discover-agent.js +175 -0
- package/dist/src/discover/discover-agent.js.map +1 -0
- package/dist/src/discover/discover-subagent.d.ts +31 -0
- package/dist/src/discover/discover-subagent.d.ts.map +1 -0
- package/dist/src/discover/discover-subagent.js +175 -0
- package/dist/src/discover/discover-subagent.js.map +1 -0
- package/dist/src/discover/discover-worker.d.ts +31 -0
- package/dist/src/discover/discover-worker.d.ts.map +1 -0
- package/dist/src/discover/discover-worker.js +376 -0
- package/dist/src/discover/discover-worker.js.map +1 -0
- package/dist/src/discover/filesystem.d.ts +108 -0
- package/dist/src/discover/filesystem.d.ts.map +1 -0
- package/dist/src/discover/filesystem.js +270 -0
- package/dist/src/discover/filesystem.js.map +1 -0
- package/dist/src/discover/grammar.d.ts +104 -0
- package/dist/src/discover/grammar.d.ts.map +1 -0
- package/dist/src/discover/grammar.js +261 -0
- package/dist/src/discover/grammar.js.map +1 -0
- package/dist/src/discover/lib.d.ts +35 -0
- package/dist/src/discover/lib.d.ts.map +1 -0
- package/dist/src/discover/lib.js +81 -0
- package/dist/src/discover/lib.js.map +1 -0
- package/dist/src/discover/manifest.d.ts +217 -0
- package/dist/src/discover/manifest.d.ts.map +1 -0
- package/dist/src/discover/manifest.js +155 -0
- package/dist/src/discover/manifest.js.map +1 -0
- package/dist/src/discover/markdown.d.ts +17 -0
- package/dist/src/discover/markdown.d.ts.map +1 -0
- package/dist/src/discover/markdown.js +19 -0
- package/dist/src/discover/markdown.js.map +1 -0
- package/dist/src/discover/project.d.ts +25 -0
- package/dist/src/discover/project.d.ts.map +1 -0
- package/dist/src/discover/project.js +115 -0
- package/dist/src/discover/project.js.map +1 -0
- package/dist/src/discover/resource-tree.d.ts +18 -0
- package/dist/src/discover/resource-tree.d.ts.map +1 -0
- package/dist/src/discover/resource-tree.js +43 -0
- package/dist/src/discover/resource-tree.js.map +1 -0
- package/dist/src/discover/skills.d.ts +32 -0
- package/dist/src/discover/skills.d.ts.map +1 -0
- package/dist/src/discover/skills.js +323 -0
- package/dist/src/discover/skills.js.map +1 -0
- package/dist/src/discover/slots.d.ts +30 -0
- package/dist/src/discover/slots.d.ts.map +1 -0
- package/dist/src/discover/slots.js +69 -0
- package/dist/src/discover/slots.js.map +1 -0
- package/dist/src/discover/workspace.d.ts +35 -0
- package/dist/src/discover/workspace.d.ts.map +1 -0
- package/dist/src/discover/workspace.js +61 -0
- package/dist/src/discover/workspace.js.map +1 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +2 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/internal/application/compiled-artifacts.d.ts +23 -0
- package/dist/src/internal/application/compiled-artifacts.d.ts.map +1 -0
- package/dist/src/internal/application/compiled-artifacts.js +152 -0
- package/dist/src/internal/application/compiled-artifacts.js.map +1 -0
- package/dist/src/internal/application/package.d.ts +19 -0
- package/dist/src/internal/application/package.d.ts.map +1 -0
- package/dist/src/internal/application/package.js +110 -0
- package/dist/src/internal/application/package.js.map +1 -0
- package/dist/src/internal/application/paths.d.ts +33 -0
- package/dist/src/internal/application/paths.d.ts.map +1 -0
- package/dist/src/internal/application/paths.js +57 -0
- package/dist/src/internal/application/paths.js.map +1 -0
- package/dist/src/internal/authored-definition/core.d.ts +30 -0
- package/dist/src/internal/authored-definition/core.d.ts.map +1 -0
- package/dist/src/internal/authored-definition/core.js +105 -0
- package/dist/src/internal/authored-definition/core.js.map +1 -0
- package/dist/src/internal/authored-definition/sandbox.d.ts +10 -0
- package/dist/src/internal/authored-definition/sandbox.d.ts.map +1 -0
- package/dist/src/internal/authored-definition/sandbox.js +22 -0
- package/dist/src/internal/authored-definition/sandbox.js.map +1 -0
- package/dist/src/internal/authored-definition/schema-backed.d.ts +20 -0
- package/dist/src/internal/authored-definition/schema-backed.d.ts.map +1 -0
- package/dist/src/internal/authored-definition/schema-backed.js +41 -0
- package/dist/src/internal/authored-definition/schema-backed.js.map +1 -0
- package/dist/src/internal/authored-module.d.ts +42 -0
- package/dist/src/internal/authored-module.d.ts.map +1 -0
- package/dist/src/internal/authored-module.js +88 -0
- package/dist/src/internal/authored-module.js.map +1 -0
- package/dist/src/internal/json-schema.d.ts +6 -0
- package/dist/src/internal/json-schema.d.ts.map +1 -0
- package/dist/src/internal/json-schema.js +14 -0
- package/dist/src/internal/json-schema.js.map +1 -0
- package/dist/src/internal/logical-paths.d.ts +14 -0
- package/dist/src/internal/logical-paths.d.ts.map +1 -0
- package/dist/src/internal/logical-paths.js +26 -0
- package/dist/src/internal/logical-paths.js.map +1 -0
- package/dist/src/internal/message/builder.d.ts +28 -0
- package/dist/src/internal/message/builder.d.ts.map +1 -0
- package/dist/src/internal/message/builder.js +200 -0
- package/dist/src/internal/message/builder.js.map +1 -0
- package/dist/src/internal/message/handler.d.ts +9 -0
- package/dist/src/internal/message/handler.d.ts.map +1 -0
- package/dist/src/internal/message/handler.js +192 -0
- package/dist/src/internal/message/handler.js.map +1 -0
- package/dist/src/internal/message/health.d.ts +5 -0
- package/dist/src/internal/message/health.d.ts.map +1 -0
- package/dist/src/internal/message/health.js +13 -0
- package/dist/src/internal/message/health.js.map +1 -0
- package/dist/src/internal/message/nitro-route-shims.d.ts +6 -0
- package/dist/src/internal/message/nitro-route-shims.d.ts.map +1 -0
- package/dist/src/internal/message/nitro-route-shims.js +38 -0
- package/dist/src/internal/message/nitro-route-shims.js.map +1 -0
- package/dist/src/internal/message/reference.d.ts +24 -0
- package/dist/src/internal/message/reference.d.ts.map +1 -0
- package/dist/src/internal/message/reference.js +34 -0
- package/dist/src/internal/message/reference.js.map +1 -0
- package/dist/src/internal/message/rewrite-generated-imports.d.ts +15 -0
- package/dist/src/internal/message/rewrite-generated-imports.d.ts.map +1 -0
- package/dist/src/internal/message/rewrite-generated-imports.js +59 -0
- package/dist/src/internal/message/rewrite-generated-imports.js.map +1 -0
- package/dist/src/internal/message/routes.d.ts +2 -0
- package/dist/src/internal/message/routes.d.ts.map +1 -0
- package/dist/src/internal/message/routes.js +2 -0
- package/dist/src/internal/message/routes.js.map +1 -0
- package/dist/src/internal/message/vercel-workflow-output.d.ts +24 -0
- package/dist/src/internal/message/vercel-workflow-output.d.ts.map +1 -0
- package/dist/src/internal/message/vercel-workflow-output.js +82 -0
- package/dist/src/internal/message/vercel-workflow-output.js.map +1 -0
- package/dist/src/internal/message/workflow/action-step-types.d.ts +11 -0
- package/dist/src/internal/message/workflow/action-step-types.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/action-step-types.js +2 -0
- package/dist/src/internal/message/workflow/action-step-types.js.map +1 -0
- package/dist/src/internal/message/workflow/action-steps.d.ts +28 -0
- package/dist/src/internal/message/workflow/action-steps.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/action-steps.js +136 -0
- package/dist/src/internal/message/workflow/action-steps.js.map +1 -0
- package/dist/src/internal/message/workflow/handle-message.d.ts +14 -0
- package/dist/src/internal/message/workflow/handle-message.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/handle-message.js +84 -0
- package/dist/src/internal/message/workflow/handle-message.js.map +1 -0
- package/dist/src/internal/message/workflow/handle-schedule.d.ts +23 -0
- package/dist/src/internal/message/workflow/handle-schedule.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/handle-schedule.js +62 -0
- package/dist/src/internal/message/workflow/handle-schedule.js.map +1 -0
- package/dist/src/internal/message/workflow/handle-subagent.d.ts +7 -0
- package/dist/src/internal/message/workflow/handle-subagent.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/handle-subagent.js +161 -0
- package/dist/src/internal/message/workflow/handle-subagent.js.map +1 -0
- package/dist/src/internal/message/workflow/session-callbacks.d.ts +11 -0
- package/dist/src/internal/message/workflow/session-callbacks.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/session-callbacks.js +127 -0
- package/dist/src/internal/message/workflow/session-callbacks.js.map +1 -0
- package/dist/src/internal/message/workflow/session.d.ts +59 -0
- package/dist/src/internal/message/workflow/session.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/session.js +40 -0
- package/dist/src/internal/message/workflow/session.js.map +1 -0
- package/dist/src/internal/message/workflow/step-diagnostics.d.ts +14 -0
- package/dist/src/internal/message/workflow/step-diagnostics.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/step-diagnostics.js +79 -0
- package/dist/src/internal/message/workflow/step-diagnostics.js.map +1 -0
- package/dist/src/internal/message/workflow/steps.d.ts +7 -0
- package/dist/src/internal/message/workflow/steps.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/steps.js +4 -0
- package/dist/src/internal/message/workflow/steps.js.map +1 -0
- package/dist/src/internal/message/workflow/stream-callbacks.d.ts +10 -0
- package/dist/src/internal/message/workflow/stream-callbacks.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/stream-callbacks.js +58 -0
- package/dist/src/internal/message/workflow/stream-callbacks.js.map +1 -0
- package/dist/src/internal/message/workflow/stream-events.d.ts +97 -0
- package/dist/src/internal/message/workflow/stream-events.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/stream-events.js +233 -0
- package/dist/src/internal/message/workflow/stream-events.js.map +1 -0
- package/dist/src/internal/message/workflow/stream.d.ts +2 -0
- package/dist/src/internal/message/workflow/stream.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/stream.js +2 -0
- package/dist/src/internal/message/workflow/stream.js.map +1 -0
- package/dist/src/internal/message/workflow/subagent-steps.d.ts +43 -0
- package/dist/src/internal/message/workflow/subagent-steps.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/subagent-steps.js +119 -0
- package/dist/src/internal/message/workflow/subagent-steps.js.map +1 -0
- package/dist/src/internal/message/workflow/subagent.d.ts +44 -0
- package/dist/src/internal/message/workflow/subagent.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/subagent.js +2 -0
- package/dist/src/internal/message/workflow/subagent.js.map +1 -0
- package/dist/src/internal/message/workflow/turn-steps.d.ts +39 -0
- package/dist/src/internal/message/workflow/turn-steps.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/turn-steps.js +134 -0
- package/dist/src/internal/message/workflow/turn-steps.js.map +1 -0
- package/dist/src/internal/message/workflow/workspace-merge.d.ts +9 -0
- package/dist/src/internal/message/workflow/workspace-merge.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/workspace-merge.js +44 -0
- package/dist/src/internal/message/workflow/workspace-merge.js.map +1 -0
- package/dist/src/internal/message/workflow/workspace-step.d.ts +11 -0
- package/dist/src/internal/message/workflow/workspace-step.d.ts.map +1 -0
- package/dist/src/internal/message/workflow/workspace-step.js +13 -0
- package/dist/src/internal/message/workflow/workspace-step.js.map +1 -0
- package/dist/src/internal/nitro/host/build-application.d.ts +5 -0
- package/dist/src/internal/nitro/host/build-application.d.ts.map +1 -0
- package/dist/src/internal/nitro/host/build-application.js +67 -0
- package/dist/src/internal/nitro/host/build-application.js.map +1 -0
- package/dist/src/internal/nitro/host/configure-message-routes.d.ts +8 -0
- package/dist/src/internal/nitro/host/configure-message-routes.d.ts.map +1 -0
- package/dist/src/internal/nitro/host/configure-message-routes.js +75 -0
- package/dist/src/internal/nitro/host/configure-message-routes.js.map +1 -0
- package/dist/src/internal/nitro/host/create-application-nitro.d.ts +8 -0
- package/dist/src/internal/nitro/host/create-application-nitro.d.ts.map +1 -0
- package/dist/src/internal/nitro/host/create-application-nitro.js +81 -0
- package/dist/src/internal/nitro/host/create-application-nitro.js.map +1 -0
- package/dist/src/internal/nitro/host/prepare-application-host.d.ts +7 -0
- package/dist/src/internal/nitro/host/prepare-application-host.d.ts.map +1 -0
- package/dist/src/internal/nitro/host/prepare-application-host.js +33 -0
- package/dist/src/internal/nitro/host/prepare-application-host.js.map +1 -0
- package/dist/src/internal/nitro/host/prewarm-vercel-sandboxes.d.ts +33 -0
- package/dist/src/internal/nitro/host/prewarm-vercel-sandboxes.d.ts.map +1 -0
- package/dist/src/internal/nitro/host/prewarm-vercel-sandboxes.js +105 -0
- package/dist/src/internal/nitro/host/prewarm-vercel-sandboxes.js.map +1 -0
- package/dist/src/internal/nitro/host/start-development-server.d.ts +9 -0
- package/dist/src/internal/nitro/host/start-development-server.d.ts.map +1 -0
- package/dist/src/internal/nitro/host/start-development-server.js +32 -0
- package/dist/src/internal/nitro/host/start-development-server.js.map +1 -0
- package/dist/src/internal/nitro/host/types.d.ts +20 -0
- package/dist/src/internal/nitro/host/types.d.ts.map +1 -0
- package/dist/src/internal/nitro/host/types.js +2 -0
- package/dist/src/internal/nitro/host/types.js.map +1 -0
- package/dist/src/internal/nitro/host.d.ts +4 -0
- package/dist/src/internal/nitro/host.d.ts.map +1 -0
- package/dist/src/internal/nitro/host.js +3 -0
- package/dist/src/internal/nitro/host.js.map +1 -0
- package/dist/src/internal/nitro/routes/health.d.ts +9 -0
- package/dist/src/internal/nitro/routes/health.d.ts.map +1 -0
- package/dist/src/internal/nitro/routes/health.js +8 -0
- package/dist/src/internal/nitro/routes/health.js.map +1 -0
- package/dist/src/internal/nitro/routes/home-page/build-home-page-view-model.d.ts +11 -0
- package/dist/src/internal/nitro/routes/home-page/build-home-page-view-model.d.ts.map +1 -0
- package/dist/src/internal/nitro/routes/home-page/build-home-page-view-model.js +303 -0
- package/dist/src/internal/nitro/routes/home-page/build-home-page-view-model.js.map +1 -0
- package/dist/src/internal/nitro/routes/home-page/load-home-page-data.d.ts +27 -0
- package/dist/src/internal/nitro/routes/home-page/load-home-page-data.d.ts.map +1 -0
- package/dist/src/internal/nitro/routes/home-page/load-home-page-data.js +55 -0
- package/dist/src/internal/nitro/routes/home-page/load-home-page-data.js.map +1 -0
- package/dist/src/internal/nitro/routes/home-page/render-home-page.d.ts +9 -0
- package/dist/src/internal/nitro/routes/home-page/render-home-page.d.ts.map +1 -0
- package/dist/src/internal/nitro/routes/home-page/render-home-page.js +15 -0
- package/dist/src/internal/nitro/routes/home-page/render-home-page.js.map +1 -0
- package/dist/src/internal/nitro/routes/index.d.ts +12 -0
- package/dist/src/internal/nitro/routes/index.d.ts.map +1 -0
- package/dist/src/internal/nitro/routes/index.html +548 -0
- package/dist/src/internal/nitro/routes/index.js +45 -0
- package/dist/src/internal/nitro/routes/index.js.map +1 -0
- package/dist/src/internal/nitro/routes/message.d.ts +9 -0
- package/dist/src/internal/nitro/routes/message.d.ts.map +1 -0
- package/dist/src/internal/nitro/routes/message.js +8 -0
- package/dist/src/internal/nitro/routes/message.js.map +1 -0
- package/dist/src/internal/nitro/routes/run-stream.d.ts +14 -0
- package/dist/src/internal/nitro/routes/run-stream.d.ts.map +1 -0
- package/dist/src/internal/nitro/routes/run-stream.js +15 -0
- package/dist/src/internal/nitro/routes/run-stream.js.map +1 -0
- package/dist/src/internal/nitro/shims/schedule-task-handler.d.ts +16 -0
- package/dist/src/internal/nitro/shims/schedule-task-handler.d.ts.map +1 -0
- package/dist/src/internal/nitro/shims/schedule-task-handler.js +39 -0
- package/dist/src/internal/nitro/shims/schedule-task-handler.js.map +1 -0
- package/dist/src/internal/object.d.ts +18 -0
- package/dist/src/internal/object.d.ts.map +1 -0
- package/dist/src/internal/object.js +17 -0
- package/dist/src/internal/object.js.map +1 -0
- package/dist/src/internal/runtime-model.d.ts +6 -0
- package/dist/src/internal/runtime-model.d.ts.map +1 -0
- package/dist/src/internal/runtime-model.js +6 -0
- package/dist/src/internal/runtime-model.js.map +1 -0
- package/dist/src/internal/source-ref.d.ts +48 -0
- package/dist/src/internal/source-ref.d.ts.map +1 -0
- package/dist/src/internal/source-ref.js +2 -0
- package/dist/src/internal/source-ref.js.map +1 -0
- package/dist/src/protocol/message.d.ts +356 -0
- package/dist/src/protocol/message.d.ts.map +1 -0
- package/dist/src/protocol/message.js +233 -0
- package/dist/src/protocol/message.js.map +1 -0
- package/dist/src/protocol/routes.d.ts +22 -0
- package/dist/src/protocol/routes.d.ts.map +1 -0
- package/dist/src/protocol/routes.js +24 -0
- package/dist/src/protocol/routes.js.map +1 -0
- package/dist/src/public/agent.d.ts +2 -0
- package/dist/src/public/agent.d.ts.map +1 -0
- package/dist/src/public/agent.js +2 -0
- package/dist/src/public/agent.js.map +1 -0
- package/dist/src/public/definitions/agent.d.ts +18 -0
- package/dist/src/public/definitions/agent.d.ts.map +1 -0
- package/dist/src/public/definitions/agent.js +7 -0
- package/dist/src/public/definitions/agent.js.map +1 -0
- package/dist/src/public/definitions/context.d.ts +16 -0
- package/dist/src/public/definitions/context.d.ts.map +1 -0
- package/dist/src/public/definitions/context.js +8 -0
- package/dist/src/public/definitions/context.js.map +1 -0
- package/dist/src/public/definitions/memory.d.ts +20 -0
- package/dist/src/public/definitions/memory.d.ts.map +1 -0
- package/dist/src/public/definitions/memory.js +8 -0
- package/dist/src/public/definitions/memory.js.map +1 -0
- package/dist/src/public/definitions/sandbox.d.ts +33 -0
- package/dist/src/public/definitions/sandbox.d.ts.map +1 -0
- package/dist/src/public/definitions/sandbox.js +7 -0
- package/dist/src/public/definitions/sandbox.js.map +1 -0
- package/dist/src/public/definitions/schedule.d.ts +14 -0
- package/dist/src/public/definitions/schedule.d.ts.map +1 -0
- package/dist/src/public/definitions/schedule.js +8 -0
- package/dist/src/public/definitions/schedule.js.map +1 -0
- package/dist/src/public/definitions/skill.d.ts +18 -0
- package/dist/src/public/definitions/skill.d.ts.map +1 -0
- package/dist/src/public/definitions/skill.js +8 -0
- package/dist/src/public/definitions/skill.js.map +1 -0
- package/dist/src/public/definitions/soul.d.ts +20 -0
- package/dist/src/public/definitions/soul.d.ts.map +1 -0
- package/dist/src/public/definitions/soul.js +8 -0
- package/dist/src/public/definitions/soul.js.map +1 -0
- package/dist/src/public/definitions/source.d.ts +9 -0
- package/dist/src/public/definitions/source.d.ts.map +1 -0
- package/dist/src/public/definitions/source.js +2 -0
- package/dist/src/public/definitions/source.js.map +1 -0
- package/dist/src/public/definitions/standard-json-schema.d.ts +15 -0
- package/dist/src/public/definitions/standard-json-schema.d.ts.map +1 -0
- package/dist/src/public/definitions/standard-json-schema.js +2 -0
- package/dist/src/public/definitions/standard-json-schema.js.map +1 -0
- package/dist/src/public/definitions/standard-schema.d.ts +69 -0
- package/dist/src/public/definitions/standard-schema.d.ts.map +1 -0
- package/dist/src/public/definitions/standard-schema.js +197 -0
- package/dist/src/public/definitions/standard-schema.js.map +1 -0
- package/dist/src/public/definitions/subagent.d.ts +16 -0
- package/dist/src/public/definitions/subagent.d.ts.map +1 -0
- package/dist/src/public/definitions/subagent.js +7 -0
- package/dist/src/public/definitions/subagent.js.map +1 -0
- package/dist/src/public/definitions/system.d.ts +13 -0
- package/dist/src/public/definitions/system.d.ts.map +1 -0
- package/dist/src/public/definitions/system.js +8 -0
- package/dist/src/public/definitions/system.js.map +1 -0
- package/dist/src/public/definitions/tool.d.ts +21 -0
- package/dist/src/public/definitions/tool.d.ts.map +1 -0
- package/dist/src/public/definitions/tool.js +4 -0
- package/dist/src/public/definitions/tool.js.map +1 -0
- package/dist/src/public/definitions/worker.d.ts +171 -0
- package/dist/src/public/definitions/worker.d.ts.map +1 -0
- package/dist/src/public/definitions/worker.js +13 -0
- package/dist/src/public/definitions/worker.js.map +1 -0
- package/dist/src/public/helpers/markdown.d.ts +55 -0
- package/dist/src/public/helpers/markdown.d.ts.map +1 -0
- package/dist/src/public/helpers/markdown.js +193 -0
- package/dist/src/public/helpers/markdown.js.map +1 -0
- package/dist/src/public/index.d.ts +12 -0
- package/dist/src/public/index.d.ts.map +1 -0
- package/dist/src/public/index.js +11 -0
- package/dist/src/public/index.js.map +1 -0
- package/dist/src/runtime/actions/activate-skill.d.ts +19 -0
- package/dist/src/runtime/actions/activate-skill.d.ts.map +1 -0
- package/dist/src/runtime/actions/activate-skill.js +74 -0
- package/dist/src/runtime/actions/activate-skill.js.map +1 -0
- package/dist/src/runtime/actions/execute-action.d.ts +34 -0
- package/dist/src/runtime/actions/execute-action.d.ts.map +1 -0
- package/dist/src/runtime/actions/execute-action.js +42 -0
- package/dist/src/runtime/actions/execute-action.js.map +1 -0
- package/dist/src/runtime/actions/types.d.ts +251 -0
- package/dist/src/runtime/actions/types.d.ts.map +1 -0
- package/dist/src/runtime/actions/types.js +210 -0
- package/dist/src/runtime/actions/types.js.map +1 -0
- package/dist/src/runtime/agent/bootstrap-model.d.ts +8 -0
- package/dist/src/runtime/agent/bootstrap-model.d.ts.map +1 -0
- package/dist/src/runtime/agent/bootstrap-model.js +106 -0
- package/dist/src/runtime/agent/bootstrap-model.js.map +1 -0
- package/dist/src/runtime/agent/bootstrap.d.ts +71 -0
- package/dist/src/runtime/agent/bootstrap.d.ts.map +1 -0
- package/dist/src/runtime/agent/bootstrap.js +130 -0
- package/dist/src/runtime/agent/bootstrap.js.map +1 -0
- package/dist/src/runtime/agent/mock-model-adapter.d.ts +22 -0
- package/dist/src/runtime/agent/mock-model-adapter.d.ts.map +1 -0
- package/dist/src/runtime/agent/mock-model-adapter.js +403 -0
- package/dist/src/runtime/agent/mock-model-adapter.js.map +1 -0
- package/dist/src/runtime/agent/resolve-model.d.ts +12 -0
- package/dist/src/runtime/agent/resolve-model.d.ts.map +1 -0
- package/dist/src/runtime/agent/resolve-model.js +49 -0
- package/dist/src/runtime/agent/resolve-model.js.map +1 -0
- package/dist/src/runtime/compiled-artifacts-source.d.ts +35 -0
- package/dist/src/runtime/compiled-artifacts-source.d.ts.map +1 -0
- package/dist/src/runtime/compiled-artifacts-source.js +30 -0
- package/dist/src/runtime/compiled-artifacts-source.js.map +1 -0
- package/dist/src/runtime/graph.d.ts +34 -0
- package/dist/src/runtime/graph.d.ts.map +1 -0
- package/dist/src/runtime/graph.js +18 -0
- package/dist/src/runtime/graph.js.map +1 -0
- package/dist/src/runtime/harness/contracts.d.ts +173 -0
- package/dist/src/runtime/harness/contracts.d.ts.map +1 -0
- package/dist/src/runtime/harness/contracts.js +121 -0
- package/dist/src/runtime/harness/contracts.js.map +1 -0
- package/dist/src/runtime/harness/hosts/json-protocol.d.ts +50 -0
- package/dist/src/runtime/harness/hosts/json-protocol.d.ts.map +1 -0
- package/dist/src/runtime/harness/hosts/json-protocol.js +42 -0
- package/dist/src/runtime/harness/hosts/json-protocol.js.map +1 -0
- package/dist/src/runtime/harness/hosts/tool-loop.d.ts +8 -0
- package/dist/src/runtime/harness/hosts/tool-loop.d.ts.map +1 -0
- package/dist/src/runtime/harness/hosts/tool-loop.js +17 -0
- package/dist/src/runtime/harness/hosts/tool-loop.js.map +1 -0
- package/dist/src/runtime/harness/hosts/types.d.ts +14 -0
- package/dist/src/runtime/harness/hosts/types.d.ts.map +1 -0
- package/dist/src/runtime/harness/hosts/types.js +2 -0
- package/dist/src/runtime/harness/hosts/types.js.map +1 -0
- package/dist/src/runtime/harness/run-turn.d.ts +111 -0
- package/dist/src/runtime/harness/run-turn.d.ts.map +1 -0
- package/dist/src/runtime/harness/run-turn.js +92 -0
- package/dist/src/runtime/harness/run-turn.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/create-harness.d.ts +31 -0
- package/dist/src/runtime/harness/tool-loop/create-harness.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/create-harness.js +276 -0
- package/dist/src/runtime/harness/tool-loop/create-harness.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/action-results.d.ts +12 -0
- package/dist/src/runtime/harness/tool-loop/internal/action-results.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/action-results.js +68 -0
- package/dist/src/runtime/harness/tool-loop/internal/action-results.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/generate-with-retries.d.ts +16 -0
- package/dist/src/runtime/harness/tool-loop/internal/generate-with-retries.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/generate-with-retries.js +115 -0
- package/dist/src/runtime/harness/tool-loop/internal/generate-with-retries.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/model-messages.d.ts +5 -0
- package/dist/src/runtime/harness/tool-loop/internal/model-messages.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/model-messages.js +5 -0
- package/dist/src/runtime/harness/tool-loop/internal/model-messages.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/provider-messages.d.ts +13 -0
- package/dist/src/runtime/harness/tool-loop/internal/provider-messages.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/provider-messages.js +190 -0
- package/dist/src/runtime/harness/tool-loop/internal/provider-messages.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-bash-files.d.ts +19 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-bash-files.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-bash-files.js +117 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-bash-files.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-history.d.ts +12 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-history.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-history.js +58 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-history.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-skills.d.ts +23 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-skills.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-skills.js +67 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-skills.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-tools.d.ts +31 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-tools.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-tools.js +86 -0
- package/dist/src/runtime/harness/tool-loop/internal/runtime-tools.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/state.d.ts +47 -0
- package/dist/src/runtime/harness/tool-loop/internal/state.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/state.js +71 -0
- package/dist/src/runtime/harness/tool-loop/internal/state.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/stream-result.d.ts +36 -0
- package/dist/src/runtime/harness/tool-loop/internal/stream-result.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/stream-result.js +70 -0
- package/dist/src/runtime/harness/tool-loop/internal/stream-result.js.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/transcript.d.ts +94 -0
- package/dist/src/runtime/harness/tool-loop/internal/transcript.d.ts.map +1 -0
- package/dist/src/runtime/harness/tool-loop/internal/transcript.js +107 -0
- package/dist/src/runtime/harness/tool-loop/internal/transcript.js.map +1 -0
- package/dist/src/runtime/harness/types.d.ts +36 -0
- package/dist/src/runtime/harness/types.d.ts.map +1 -0
- package/dist/src/runtime/harness/types.js +2 -0
- package/dist/src/runtime/harness/types.js.map +1 -0
- package/dist/src/runtime/harness/workspace/ensure.d.ts +33 -0
- package/dist/src/runtime/harness/workspace/ensure.d.ts.map +1 -0
- package/dist/src/runtime/harness/workspace/ensure.js +280 -0
- package/dist/src/runtime/harness/workspace/ensure.js.map +1 -0
- package/dist/src/runtime/harness/workspace/project-workspace-overlay.d.ts +19 -0
- package/dist/src/runtime/harness/workspace/project-workspace-overlay.d.ts.map +1 -0
- package/dist/src/runtime/harness/workspace/project-workspace-overlay.js +219 -0
- package/dist/src/runtime/harness/workspace/project-workspace-overlay.js.map +1 -0
- package/dist/src/runtime/harness/workspace/spec.d.ts +59 -0
- package/dist/src/runtime/harness/workspace/spec.d.ts.map +1 -0
- package/dist/src/runtime/harness/workspace/spec.js +133 -0
- package/dist/src/runtime/harness/workspace/spec.js.map +1 -0
- package/dist/src/runtime/harness/workspace/state.d.ts +27 -0
- package/dist/src/runtime/harness/workspace/state.d.ts.map +1 -0
- package/dist/src/runtime/harness/workspace/state.js +144 -0
- package/dist/src/runtime/harness/workspace/state.js.map +1 -0
- package/dist/src/runtime/harness/workspace/types.d.ts +134 -0
- package/dist/src/runtime/harness/workspace/types.d.ts.map +1 -0
- package/dist/src/runtime/harness/workspace/types.js +19 -0
- package/dist/src/runtime/harness/workspace/types.js.map +1 -0
- package/dist/src/runtime/json.d.ts +36 -0
- package/dist/src/runtime/json.d.ts.map +1 -0
- package/dist/src/runtime/json.js +55 -0
- package/dist/src/runtime/json.js.map +1 -0
- package/dist/src/runtime/loaders/bundled-artifacts.d.ts +35 -0
- package/dist/src/runtime/loaders/bundled-artifacts.d.ts.map +1 -0
- package/dist/src/runtime/loaders/bundled-artifacts.js +20 -0
- package/dist/src/runtime/loaders/bundled-artifacts.js.map +1 -0
- package/dist/src/runtime/loaders/compile-metadata.d.ts +22 -0
- package/dist/src/runtime/loaders/compile-metadata.d.ts.map +1 -0
- package/dist/src/runtime/loaders/compile-metadata.js +94 -0
- package/dist/src/runtime/loaders/compile-metadata.js.map +1 -0
- package/dist/src/runtime/loaders/context.d.ts +36 -0
- package/dist/src/runtime/loaders/context.d.ts.map +1 -0
- package/dist/src/runtime/loaders/context.js +116 -0
- package/dist/src/runtime/loaders/context.js.map +1 -0
- package/dist/src/runtime/loaders/manifest.d.ts +22 -0
- package/dist/src/runtime/loaders/manifest.d.ts.map +1 -0
- package/dist/src/runtime/loaders/manifest.js +57 -0
- package/dist/src/runtime/loaders/manifest.js.map +1 -0
- package/dist/src/runtime/loaders/module-map.d.ts +22 -0
- package/dist/src/runtime/loaders/module-map.d.ts.map +1 -0
- package/dist/src/runtime/loaders/module-map.js +56 -0
- package/dist/src/runtime/loaders/module-map.js.map +1 -0
- package/dist/src/runtime/loaders/resolved-agent.d.ts +28 -0
- package/dist/src/runtime/loaders/resolved-agent.d.ts.map +1 -0
- package/dist/src/runtime/loaders/resolved-agent.js +39 -0
- package/dist/src/runtime/loaders/resolved-agent.js.map +1 -0
- package/dist/src/runtime/loaders/workspace.d.ts +37 -0
- package/dist/src/runtime/loaders/workspace.d.ts.map +1 -0
- package/dist/src/runtime/loaders/workspace.js +104 -0
- package/dist/src/runtime/loaders/workspace.js.map +1 -0
- package/dist/src/runtime/prompt/compose.d.ts +17 -0
- package/dist/src/runtime/prompt/compose.d.ts.map +1 -0
- package/dist/src/runtime/prompt/compose.js +42 -0
- package/dist/src/runtime/prompt/compose.js.map +1 -0
- package/dist/src/runtime/resolve-agent-graph.d.ts +34 -0
- package/dist/src/runtime/resolve-agent-graph.d.ts.map +1 -0
- package/dist/src/runtime/resolve-agent-graph.js +181 -0
- package/dist/src/runtime/resolve-agent-graph.js.map +1 -0
- package/dist/src/runtime/resolve-agent.d.ts +30 -0
- package/dist/src/runtime/resolve-agent.d.ts.map +1 -0
- package/dist/src/runtime/resolve-agent.js +169 -0
- package/dist/src/runtime/resolve-agent.js.map +1 -0
- package/dist/src/runtime/sandboxes/bindings/local.d.ts +8 -0
- package/dist/src/runtime/sandboxes/bindings/local.d.ts.map +1 -0
- package/dist/src/runtime/sandboxes/bindings/local.js +209 -0
- package/dist/src/runtime/sandboxes/bindings/local.js.map +1 -0
- package/dist/src/runtime/sandboxes/bindings/vercel.d.ts +11 -0
- package/dist/src/runtime/sandboxes/bindings/vercel.d.ts.map +1 -0
- package/dist/src/runtime/sandboxes/bindings/vercel.js +147 -0
- package/dist/src/runtime/sandboxes/bindings/vercel.js.map +1 -0
- package/dist/src/runtime/sandboxes/ensure.d.ts +36 -0
- package/dist/src/runtime/sandboxes/ensure.d.ts.map +1 -0
- package/dist/src/runtime/sandboxes/ensure.js +288 -0
- package/dist/src/runtime/sandboxes/ensure.js.map +1 -0
- package/dist/src/runtime/sandboxes/keys.d.ts +30 -0
- package/dist/src/runtime/sandboxes/keys.d.ts.map +1 -0
- package/dist/src/runtime/sandboxes/keys.js +61 -0
- package/dist/src/runtime/sandboxes/keys.js.map +1 -0
- package/dist/src/runtime/sandboxes/registry.d.ts +44 -0
- package/dist/src/runtime/sandboxes/registry.d.ts.map +1 -0
- package/dist/src/runtime/sandboxes/registry.js +87 -0
- package/dist/src/runtime/sandboxes/registry.js.map +1 -0
- package/dist/src/runtime/sandboxes/tool-name.d.ts +6 -0
- package/dist/src/runtime/sandboxes/tool-name.d.ts.map +1 -0
- package/dist/src/runtime/sandboxes/tool-name.js +15 -0
- package/dist/src/runtime/sandboxes/tool-name.js.map +1 -0
- package/dist/src/runtime/sandboxes/types.d.ts +136 -0
- package/dist/src/runtime/sandboxes/types.d.ts.map +1 -0
- package/dist/src/runtime/sandboxes/types.js +2 -0
- package/dist/src/runtime/sandboxes/types.js.map +1 -0
- package/dist/src/runtime/schedules/register.d.ts +45 -0
- package/dist/src/runtime/schedules/register.d.ts.map +1 -0
- package/dist/src/runtime/schedules/register.js +94 -0
- package/dist/src/runtime/schedules/register.js.map +1 -0
- package/dist/src/runtime/schedules/resolve-schedule.d.ts +41 -0
- package/dist/src/runtime/schedules/resolve-schedule.d.ts.map +1 -0
- package/dist/src/runtime/schedules/resolve-schedule.js +61 -0
- package/dist/src/runtime/schedules/resolve-schedule.js.map +1 -0
- package/dist/src/runtime/session-context.d.ts +40 -0
- package/dist/src/runtime/session-context.d.ts.map +1 -0
- package/dist/src/runtime/session-context.js +55 -0
- package/dist/src/runtime/session-context.js.map +1 -0
- package/dist/src/runtime/sessions/compiled-agent-cache.d.ts +25 -0
- package/dist/src/runtime/sessions/compiled-agent-cache.d.ts.map +1 -0
- package/dist/src/runtime/sessions/compiled-agent-cache.js +48 -0
- package/dist/src/runtime/sessions/compiled-agent-cache.js.map +1 -0
- package/dist/src/runtime/sessions/messages.d.ts +90 -0
- package/dist/src/runtime/sessions/messages.d.ts.map +1 -0
- package/dist/src/runtime/sessions/messages.js +91 -0
- package/dist/src/runtime/sessions/messages.js.map +1 -0
- package/dist/src/runtime/sessions/prepare-turn.d.ts +60 -0
- package/dist/src/runtime/sessions/prepare-turn.d.ts.map +1 -0
- package/dist/src/runtime/sessions/prepare-turn.js +85 -0
- package/dist/src/runtime/sessions/prepare-turn.js.map +1 -0
- package/dist/src/runtime/sessions/run-session.d.ts +191 -0
- package/dist/src/runtime/sessions/run-session.d.ts.map +1 -0
- package/dist/src/runtime/sessions/run-session.js +297 -0
- package/dist/src/runtime/sessions/run-session.js.map +1 -0
- package/dist/src/runtime/sessions/turn.d.ts +94 -0
- package/dist/src/runtime/sessions/turn.d.ts.map +1 -0
- package/dist/src/runtime/sessions/turn.js +2 -0
- package/dist/src/runtime/sessions/turn.js.map +1 -0
- package/dist/src/runtime/sessions/types.d.ts +72 -0
- package/dist/src/runtime/sessions/types.d.ts.map +1 -0
- package/dist/src/runtime/sessions/types.js +28 -0
- package/dist/src/runtime/sessions/types.js.map +1 -0
- package/dist/src/runtime/skills/fragment-context.d.ts +26 -0
- package/dist/src/runtime/skills/fragment-context.d.ts.map +1 -0
- package/dist/src/runtime/skills/fragment-context.js +94 -0
- package/dist/src/runtime/skills/fragment-context.js.map +1 -0
- package/dist/src/runtime/skills/load-skill-content.d.ts +15 -0
- package/dist/src/runtime/skills/load-skill-content.d.ts.map +1 -0
- package/dist/src/runtime/skills/load-skill-content.js +29 -0
- package/dist/src/runtime/skills/load-skill-content.js.map +1 -0
- package/dist/src/runtime/skills/load-skills.d.ts +22 -0
- package/dist/src/runtime/skills/load-skills.d.ts.map +1 -0
- package/dist/src/runtime/skills/load-skills.js +47 -0
- package/dist/src/runtime/skills/load-skills.js.map +1 -0
- package/dist/src/runtime/skills/types.d.ts +8 -0
- package/dist/src/runtime/skills/types.d.ts.map +1 -0
- package/dist/src/runtime/skills/types.js +2 -0
- package/dist/src/runtime/skills/types.js.map +1 -0
- package/dist/src/runtime/subagents/definitions.d.ts +11 -0
- package/dist/src/runtime/subagents/definitions.d.ts.map +1 -0
- package/dist/src/runtime/subagents/definitions.js +15 -0
- package/dist/src/runtime/subagents/definitions.js.map +1 -0
- package/dist/src/runtime/subagents/execute-subagent.d.ts +23 -0
- package/dist/src/runtime/subagents/execute-subagent.d.ts.map +1 -0
- package/dist/src/runtime/subagents/execute-subagent.js +26 -0
- package/dist/src/runtime/subagents/execute-subagent.js.map +1 -0
- package/dist/src/runtime/subagents/invocation.d.ts +11 -0
- package/dist/src/runtime/subagents/invocation.d.ts.map +1 -0
- package/dist/src/runtime/subagents/invocation.js +16 -0
- package/dist/src/runtime/subagents/invocation.js.map +1 -0
- package/dist/src/runtime/subagents/registry.d.ts +44 -0
- package/dist/src/runtime/subagents/registry.d.ts.map +1 -0
- package/dist/src/runtime/subagents/registry.js +107 -0
- package/dist/src/runtime/subagents/registry.js.map +1 -0
- package/dist/src/runtime/tools/execute-tool.d.ts +28 -0
- package/dist/src/runtime/tools/execute-tool.d.ts.map +1 -0
- package/dist/src/runtime/tools/execute-tool.js +75 -0
- package/dist/src/runtime/tools/execute-tool.js.map +1 -0
- package/dist/src/runtime/tools/registry.d.ts +42 -0
- package/dist/src/runtime/tools/registry.d.ts.map +1 -0
- package/dist/src/runtime/tools/registry.js +79 -0
- package/dist/src/runtime/tools/registry.js.map +1 -0
- package/dist/src/runtime/types.d.ts +160 -0
- package/dist/src/runtime/types.d.ts.map +1 -0
- package/dist/src/runtime/types.js +2 -0
- package/dist/src/runtime/types.js.map +1 -0
- package/dist/src/runtime/validation.d.ts +6 -0
- package/dist/src/runtime/validation.d.ts.map +1 -0
- package/dist/src/runtime/validation.js +8 -0
- package/dist/src/runtime/validation.js.map +1 -0
- package/dist/src/services/dev-client/live-stream.d.ts +36 -0
- package/dist/src/services/dev-client/live-stream.d.ts.map +1 -0
- package/dist/src/services/dev-client/live-stream.js +158 -0
- package/dist/src/services/dev-client/live-stream.js.map +1 -0
- package/dist/src/services/dev-client/request-headers.d.ts +15 -0
- package/dist/src/services/dev-client/request-headers.d.ts.map +1 -0
- package/dist/src/services/dev-client/request-headers.js +23 -0
- package/dist/src/services/dev-client/request-headers.js.map +1 -0
- package/dist/src/services/dev-client/send-message.d.ts +20 -0
- package/dist/src/services/dev-client/send-message.d.ts.map +1 -0
- package/dist/src/services/dev-client/send-message.js +260 -0
- package/dist/src/services/dev-client/send-message.js.map +1 -0
- package/dist/src/services/dev-client/session.d.ts +54 -0
- package/dist/src/services/dev-client/session.d.ts.map +1 -0
- package/dist/src/services/dev-client/session.js +71 -0
- package/dist/src/services/dev-client/session.js.map +1 -0
- package/dist/src/services/dev-client/stream.d.ts +25 -0
- package/dist/src/services/dev-client/stream.d.ts.map +1 -0
- package/dist/src/services/dev-client/stream.js +42 -0
- package/dist/src/services/dev-client/stream.js.map +1 -0
- package/dist/src/services/dev-client/url.d.ts +16 -0
- package/dist/src/services/dev-client/url.d.ts.map +1 -0
- package/dist/src/services/dev-client/url.js +32 -0
- package/dist/src/services/dev-client/url.js.map +1 -0
- package/dist/src/services/dev-client.d.ts +49 -0
- package/dist/src/services/dev-client.d.ts.map +1 -0
- package/dist/src/services/dev-client.js +52 -0
- package/dist/src/services/dev-client.js.map +1 -0
- package/dist/src/services/host.d.ts +14 -0
- package/dist/src/services/host.d.ts.map +1 -0
- package/dist/src/services/host.js +14 -0
- package/dist/src/services/host.js.map +1 -0
- package/dist/src/services/inspect-application.d.ts +25 -0
- package/dist/src/services/inspect-application.d.ts.map +1 -0
- package/dist/src/services/inspect-application.js +39 -0
- package/dist/src/services/inspect-application.js.map +1 -0
- package/package.json +58 -0
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { createBundledRuntimeCompiledArtifactsSource, createDiskRuntimeCompiledArtifactsSource, } from "../../../../runtime/compiled-artifacts-source.js";
|
|
2
|
+
import { readBundledCompiledArtifacts } from "../../../../runtime/loaders/bundled-artifacts.js";
|
|
3
|
+
import { loadResolvedCompiledContext } from "../../../../runtime/loaders/context.js";
|
|
4
|
+
import { loadCompiledManifest } from "../../../../runtime/loaders/manifest.js";
|
|
5
|
+
import { loadCompiledModuleMap } from "../../../../runtime/loaders/module-map.js";
|
|
6
|
+
import { resolveAgent } from "../../../../runtime/resolve-agent.js";
|
|
7
|
+
import { resolveSchedules } from "../../../../runtime/schedules/resolve-schedule.js";
|
|
8
|
+
/**
|
|
9
|
+
* Loads the resolved runtime data displayed on Ash's package-owned Nitro
|
|
10
|
+
* homepage.
|
|
11
|
+
*/
|
|
12
|
+
export async function loadHomePageData(input) {
|
|
13
|
+
return await loadHomePageDataFromArtifacts(input.compiledArtifactsSource);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* Resolves the explicit runtime artifact source used by the package-owned
|
|
17
|
+
* Nitro home page.
|
|
18
|
+
*/
|
|
19
|
+
export function resolveHomePageCompiledArtifactsSource(input = {}) {
|
|
20
|
+
if (readBundledCompiledArtifacts() !== null) {
|
|
21
|
+
return createBundledRuntimeCompiledArtifactsSource();
|
|
22
|
+
}
|
|
23
|
+
if (input.appRoot !== undefined) {
|
|
24
|
+
return createDiskRuntimeCompiledArtifactsSource(input.appRoot);
|
|
25
|
+
}
|
|
26
|
+
throw new Error("Ash home page runtime data requires bundled artifacts or an app root.");
|
|
27
|
+
}
|
|
28
|
+
async function loadHomePageDataFromArtifacts(compiledArtifactsSource) {
|
|
29
|
+
const [manifest, moduleMap] = await Promise.all([
|
|
30
|
+
loadCompiledManifest({
|
|
31
|
+
compiledArtifactsSource,
|
|
32
|
+
}),
|
|
33
|
+
loadCompiledModuleMap({
|
|
34
|
+
compiledArtifactsSource,
|
|
35
|
+
}),
|
|
36
|
+
]);
|
|
37
|
+
const [contextDocuments, schedules] = await Promise.all([
|
|
38
|
+
loadResolvedCompiledContext({
|
|
39
|
+
compiledArtifactsSource,
|
|
40
|
+
}),
|
|
41
|
+
resolveSchedules({
|
|
42
|
+
manifest,
|
|
43
|
+
}),
|
|
44
|
+
]);
|
|
45
|
+
return {
|
|
46
|
+
agent: await resolveAgent({
|
|
47
|
+
contextDocuments,
|
|
48
|
+
manifest,
|
|
49
|
+
moduleMap,
|
|
50
|
+
}),
|
|
51
|
+
manifest,
|
|
52
|
+
schedules,
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
//# sourceMappingURL=load-home-page-data.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"load-home-page-data.js","sourceRoot":"","sources":["../../../../../../src/internal/nitro/routes/home-page/load-home-page-data.ts"],"names":[],"mappings":"AACA,OAAO,EACL,2CAA2C,EAC3C,wCAAwC,GAEzC,MAAM,kDAAkD,CAAC;AAC1D,OAAO,EAAE,4BAA4B,EAAE,MAAM,kDAAkD,CAAC;AAChG,OAAO,EAAE,2BAA2B,EAAE,MAAM,wCAAwC,CAAC;AACrF,OAAO,EAAE,oBAAoB,EAAE,MAAM,yCAAyC,CAAC;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAE,YAAY,EAAE,MAAM,sCAAsC,CAAC;AACpE,OAAO,EAAE,gBAAgB,EAAE,MAAM,mDAAmD,CAAC;AAmBrF;;;GAGG;AACH,MAAM,CAAC,KAAK,UAAU,gBAAgB,CAAC,KAEtC;IACC,OAAO,MAAM,6BAA6B,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC;AAC5E,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,sCAAsC,CACpD,QAAuC,EAAE;IAEzC,IAAI,4BAA4B,EAAE,KAAK,IAAI,EAAE,CAAC;QAC5C,OAAO,2CAA2C,EAAE,CAAC;IACvD,CAAC;IAED,IAAI,KAAK,CAAC,OAAO,KAAK,SAAS,EAAE,CAAC;QAChC,OAAO,wCAAwC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACjE,CAAC;IAED,MAAM,IAAI,KAAK,CAAC,uEAAuE,CAAC,CAAC;AAC3F,CAAC;AAED,KAAK,UAAU,6BAA6B,CAC1C,uBAAuD;IAEvD,MAAM,CAAC,QAAQ,EAAE,SAAS,CAAC,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC;QAC9C,oBAAoB,CAAC;YACnB,uBAAuB;SACxB,CAAC;QACF,qBAAqB,CAAC;YACpB,uBAAuB;SACxB,CAAC;KACH,CAAC,CAAC;IACH,MAAM,CAAC,gBAAgB,EAAE,SAAS,CAAC,GAAG,MAAM,OAAO,CAAC,GAAG,CAAC;QACtD,2BAA2B,CAAC;YAC1B,uBAAuB;SACxB,CAAC;QACF,gBAAgB,CAAC;YACf,QAAQ;SACT,CAAC;KACH,CAAC,CAAC;IAEH,OAAO;QACL,KAAK,EAAE,MAAM,YAAY,CAAC;YACxB,gBAAgB;YAChB,QAAQ;YACR,SAAS;SACV,CAAC;QACF,QAAQ;QACR,SAAS;KACV,CAAC;AACJ,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Loads the static HTML template used by Ash's package-owned Nitro homepage.
|
|
3
|
+
*/
|
|
4
|
+
export declare function loadHomePageTemplate(): Promise<string>;
|
|
5
|
+
/**
|
|
6
|
+
* Renders one homepage template using the provided token map.
|
|
7
|
+
*/
|
|
8
|
+
export declare function renderHomePage(template: string, values: Record<string, string>): string;
|
|
9
|
+
//# sourceMappingURL=render-home-page.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"render-home-page.d.ts","sourceRoot":"","sources":["../../../../../../src/internal/nitro/routes/home-page/render-home-page.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,wBAAsB,oBAAoB,IAAI,OAAO,CAAC,MAAM,CAAC,CAE5D;AAED;;GAEG;AACH,wBAAgB,cAAc,CAAC,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,GAAG,MAAM,CAEvF"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { readFile } from "node:fs/promises";
|
|
2
|
+
const TEMPLATE_TOKEN_PATTERN = /__([A-Z0-9_]+)__/g;
|
|
3
|
+
/**
|
|
4
|
+
* Loads the static HTML template used by Ash's package-owned Nitro homepage.
|
|
5
|
+
*/
|
|
6
|
+
export async function loadHomePageTemplate() {
|
|
7
|
+
return await readFile(new URL("../index.html", import.meta.url), "utf8");
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Renders one homepage template using the provided token map.
|
|
11
|
+
*/
|
|
12
|
+
export function renderHomePage(template, values) {
|
|
13
|
+
return template.replace(TEMPLATE_TOKEN_PATTERN, (_match, token) => values[token] ?? "");
|
|
14
|
+
}
|
|
15
|
+
//# sourceMappingURL=render-home-page.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"render-home-page.js","sourceRoot":"","sources":["../../../../../../src/internal/nitro/routes/home-page/render-home-page.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,MAAM,sBAAsB,GAAG,mBAAmB,CAAC;AAEnD;;GAEG;AACH,MAAM,CAAC,KAAK,UAAU,oBAAoB;IACxC,OAAO,MAAM,QAAQ,CAAC,IAAI,GAAG,CAAC,eAAe,EAAE,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,EAAE,MAAM,CAAC,CAAC;AAC3E,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,cAAc,CAAC,QAAgB,EAAE,MAA8B;IAC7E,OAAO,QAAQ,CAAC,OAAO,CAAC,sBAAsB,EAAE,CAAC,MAAM,EAAE,KAAa,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,CAAC,CAAC;AAClG,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Builds the package-owned home page response for one resolved application.
|
|
3
|
+
*/
|
|
4
|
+
export declare function handleHomePageRequest(input?: {
|
|
5
|
+
appRoot?: string;
|
|
6
|
+
}): Promise<Response>;
|
|
7
|
+
/**
|
|
8
|
+
* Nitro route for Ash's package-owned home page.
|
|
9
|
+
*/
|
|
10
|
+
declare const _default: () => Promise<Response>;
|
|
11
|
+
export default _default;
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/internal/nitro/routes/index.ts"],"names":[],"mappings":"AAgDA;;GAEG;AACH,wBAAsB,qBAAqB,CAAC,KAAK,GAAE;IAAE,OAAO,CAAC,EAAE,MAAM,CAAA;CAAO,GAAG,OAAO,CAAC,QAAQ,CAAC,CAM/F;AAED;;GAEG;8BACsB,OAAO,CAAC,QAAQ,CAAC;AAA1C,wBAEE"}
|
|
@@ -0,0 +1,548 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>__PAGE_TITLE__</title>
|
|
7
|
+
<meta name="description" content="__PAGE_DESCRIPTION__" />
|
|
8
|
+
<style>
|
|
9
|
+
:root {
|
|
10
|
+
color-scheme: dark;
|
|
11
|
+
--page-bg: #070707;
|
|
12
|
+
--page-glow: rgba(255, 255, 255, 0.05);
|
|
13
|
+
--panel-bg: #101010;
|
|
14
|
+
--panel-bg-soft: #141414;
|
|
15
|
+
--ink: #f5f1e8;
|
|
16
|
+
--muted: #b9b3a8;
|
|
17
|
+
--line: #262626;
|
|
18
|
+
--line-strong: #363636;
|
|
19
|
+
--shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
|
|
20
|
+
font-family:
|
|
21
|
+
"Suisse Intl",
|
|
22
|
+
"Avenir Next",
|
|
23
|
+
"Helvetica Neue",
|
|
24
|
+
sans-serif;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
* {
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
html {
|
|
32
|
+
min-height: 100%;
|
|
33
|
+
background: var(--page-bg);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
body {
|
|
37
|
+
margin: 0;
|
|
38
|
+
min-height: 100vh;
|
|
39
|
+
color: var(--ink);
|
|
40
|
+
background:
|
|
41
|
+
radial-gradient(circle at top center, var(--page-glow), transparent 34%),
|
|
42
|
+
linear-gradient(180deg, #0d0d0d 0%, var(--page-bg) 100%);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
a {
|
|
46
|
+
color: inherit;
|
|
47
|
+
text-decoration: none;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
code,
|
|
51
|
+
pre,
|
|
52
|
+
.eyebrow,
|
|
53
|
+
.data-table th,
|
|
54
|
+
.path-cell,
|
|
55
|
+
.pill {
|
|
56
|
+
font-family:
|
|
57
|
+
"IBM Plex Mono",
|
|
58
|
+
"SFMono-Regular",
|
|
59
|
+
"SF Mono",
|
|
60
|
+
"JetBrains Mono",
|
|
61
|
+
monospace;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
h1,
|
|
65
|
+
h2 {
|
|
66
|
+
font-family:
|
|
67
|
+
"Iowan Old Style",
|
|
68
|
+
"Palatino Linotype",
|
|
69
|
+
"Book Antiqua",
|
|
70
|
+
serif;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.page {
|
|
74
|
+
width: min(1180px, calc(100% - 32px));
|
|
75
|
+
margin: 0 auto;
|
|
76
|
+
padding: 22px 0 40px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.sheet {
|
|
80
|
+
margin-top: 18px;
|
|
81
|
+
border: 1px solid var(--line-strong);
|
|
82
|
+
background: var(--panel-bg);
|
|
83
|
+
box-shadow: var(--shadow);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.sheet:first-child {
|
|
87
|
+
margin-top: 0;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.masthead-table,
|
|
91
|
+
.data-table {
|
|
92
|
+
width: 100%;
|
|
93
|
+
border-collapse: collapse;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.masthead-table td {
|
|
97
|
+
width: 50%;
|
|
98
|
+
padding: 24px;
|
|
99
|
+
vertical-align: top;
|
|
100
|
+
border-right: 1px solid var(--line);
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.masthead-table td:last-child {
|
|
104
|
+
border-right: none;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.eyebrow {
|
|
108
|
+
margin: 0;
|
|
109
|
+
color: var(--muted);
|
|
110
|
+
font-size: 11px;
|
|
111
|
+
font-weight: 700;
|
|
112
|
+
letter-spacing: 0.16em;
|
|
113
|
+
text-transform: uppercase;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
h1 {
|
|
117
|
+
margin: 16px 0 12px;
|
|
118
|
+
font-size: clamp(40px, 8vw, 78px);
|
|
119
|
+
line-height: 0.96;
|
|
120
|
+
letter-spacing: -0.05em;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.lede {
|
|
124
|
+
max-width: 56ch;
|
|
125
|
+
margin: 0;
|
|
126
|
+
color: var(--muted);
|
|
127
|
+
font-size: 16px;
|
|
128
|
+
line-height: 1.7;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.system-label {
|
|
132
|
+
margin: 0;
|
|
133
|
+
color: var(--muted);
|
|
134
|
+
font-size: 11px;
|
|
135
|
+
font-weight: 700;
|
|
136
|
+
letter-spacing: 0.16em;
|
|
137
|
+
text-transform: uppercase;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.system-path {
|
|
141
|
+
display: inline-block;
|
|
142
|
+
margin-top: 10px;
|
|
143
|
+
color: var(--muted);
|
|
144
|
+
font-size: 12px;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.system-copy {
|
|
148
|
+
margin: 14px 0 0;
|
|
149
|
+
color: var(--ink);
|
|
150
|
+
line-height: 1.7;
|
|
151
|
+
white-space: pre-wrap;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.section-head {
|
|
155
|
+
padding: 18px 20px;
|
|
156
|
+
border-bottom: 1px solid var(--line);
|
|
157
|
+
background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.section-head h2 {
|
|
161
|
+
margin: 8px 0 0;
|
|
162
|
+
font-size: 31px;
|
|
163
|
+
letter-spacing: -0.04em;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.section-copy {
|
|
167
|
+
max-width: 72ch;
|
|
168
|
+
margin: 10px 0 0;
|
|
169
|
+
color: var(--muted);
|
|
170
|
+
line-height: 1.65;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.table-wrap {
|
|
174
|
+
overflow-x: auto;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.data-table {
|
|
178
|
+
min-width: 760px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.data-table--compact {
|
|
182
|
+
min-width: 0;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.data-table thead th {
|
|
186
|
+
padding: 14px 16px;
|
|
187
|
+
border-bottom: 1px solid var(--line-strong);
|
|
188
|
+
background: var(--panel-bg-soft);
|
|
189
|
+
color: var(--muted);
|
|
190
|
+
font-size: 11px;
|
|
191
|
+
font-weight: 700;
|
|
192
|
+
letter-spacing: 0.12em;
|
|
193
|
+
text-align: left;
|
|
194
|
+
text-transform: uppercase;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.data-table tbody th,
|
|
198
|
+
.data-table tbody td {
|
|
199
|
+
padding: 14px 16px;
|
|
200
|
+
border-bottom: 1px solid var(--line);
|
|
201
|
+
text-align: left;
|
|
202
|
+
vertical-align: top;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.data-table tbody tr:last-child th,
|
|
206
|
+
.data-table tbody tr:last-child td {
|
|
207
|
+
border-bottom: none;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.data-table tbody tr:nth-child(odd) {
|
|
211
|
+
background: rgba(255, 255, 255, 0.014);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
.data-table tbody th {
|
|
215
|
+
width: 240px;
|
|
216
|
+
font-size: 13px;
|
|
217
|
+
font-weight: 600;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.path-cell {
|
|
221
|
+
color: var(--muted);
|
|
222
|
+
font-size: 12px;
|
|
223
|
+
word-break: break-all;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.copy-cell {
|
|
227
|
+
color: var(--muted);
|
|
228
|
+
line-height: 1.65;
|
|
229
|
+
white-space: pre-wrap;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
.muted-copy {
|
|
233
|
+
color: var(--muted);
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
.pill-list {
|
|
237
|
+
display: flex;
|
|
238
|
+
flex-wrap: wrap;
|
|
239
|
+
gap: 8px;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.pill {
|
|
243
|
+
display: inline-flex;
|
|
244
|
+
align-items: center;
|
|
245
|
+
min-height: 28px;
|
|
246
|
+
padding: 0 9px;
|
|
247
|
+
border: 1px solid var(--line-strong);
|
|
248
|
+
background: var(--panel-bg-soft);
|
|
249
|
+
font-size: 11px;
|
|
250
|
+
letter-spacing: 0.03em;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.empty-row td {
|
|
254
|
+
padding: 24px 16px;
|
|
255
|
+
color: var(--muted);
|
|
256
|
+
text-align: center;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.request-block {
|
|
260
|
+
padding: 20px;
|
|
261
|
+
border-top: 1px solid var(--line);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.request-label {
|
|
265
|
+
margin: 0;
|
|
266
|
+
color: var(--muted);
|
|
267
|
+
font-size: 11px;
|
|
268
|
+
font-weight: 700;
|
|
269
|
+
letter-spacing: 0.16em;
|
|
270
|
+
text-transform: uppercase;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.request {
|
|
274
|
+
margin: 12px 0 0;
|
|
275
|
+
padding: 16px;
|
|
276
|
+
overflow-x: auto;
|
|
277
|
+
border: 1px solid var(--line);
|
|
278
|
+
background: #090909;
|
|
279
|
+
color: var(--ink);
|
|
280
|
+
font-size: 12px;
|
|
281
|
+
line-height: 1.7;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
@media (max-width: 900px) {
|
|
285
|
+
.page {
|
|
286
|
+
width: min(100% - 20px, 1180px);
|
|
287
|
+
padding-top: 14px;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.masthead-table,
|
|
291
|
+
.masthead-table tbody,
|
|
292
|
+
.masthead-table tr,
|
|
293
|
+
.masthead-table td {
|
|
294
|
+
display: block;
|
|
295
|
+
width: 100%;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.masthead-table td {
|
|
299
|
+
border-right: none;
|
|
300
|
+
border-bottom: 1px solid var(--line);
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.masthead-table td:last-child {
|
|
304
|
+
border-bottom: none;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.section-head {
|
|
308
|
+
padding: 16px 18px;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.data-table {
|
|
312
|
+
min-width: 680px;
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
</style>
|
|
316
|
+
</head>
|
|
317
|
+
<body>
|
|
318
|
+
<main class="page">
|
|
319
|
+
<section class="sheet">
|
|
320
|
+
<table class="masthead-table">
|
|
321
|
+
<tbody>
|
|
322
|
+
<tr>
|
|
323
|
+
<td>
|
|
324
|
+
<p class="eyebrow">Ash Agent Host</p>
|
|
325
|
+
<h1>__AGENT_ID__</h1>
|
|
326
|
+
<p class="lede">__HERO_SUMMARY__</p>
|
|
327
|
+
</td>
|
|
328
|
+
<td>
|
|
329
|
+
<p class="system-label">System prompt</p>
|
|
330
|
+
<div class="system-path"><code>__SYSTEM_PATH__</code></div>
|
|
331
|
+
<p class="system-copy">__SYSTEM_COPY__</p>
|
|
332
|
+
</td>
|
|
333
|
+
</tr>
|
|
334
|
+
</tbody>
|
|
335
|
+
</table>
|
|
336
|
+
</section>
|
|
337
|
+
|
|
338
|
+
<section class="sheet">
|
|
339
|
+
<div class="section-head">
|
|
340
|
+
<p class="eyebrow">Overview</p>
|
|
341
|
+
<h2>Agent overview</h2>
|
|
342
|
+
<p class="section-copy">Core runtime and discovery facts for the current compiled agent.</p>
|
|
343
|
+
</div>
|
|
344
|
+
<div class="table-wrap">
|
|
345
|
+
<table class="data-table data-table--compact">
|
|
346
|
+
<thead>
|
|
347
|
+
<tr>
|
|
348
|
+
<th scope="col">Field</th>
|
|
349
|
+
<th scope="col">Value</th>
|
|
350
|
+
</tr>
|
|
351
|
+
</thead>
|
|
352
|
+
<tbody>
|
|
353
|
+
__OVERVIEW_ROWS__
|
|
354
|
+
</tbody>
|
|
355
|
+
</table>
|
|
356
|
+
</div>
|
|
357
|
+
</section>
|
|
358
|
+
|
|
359
|
+
<section class="sheet">
|
|
360
|
+
<div class="section-head">
|
|
361
|
+
<p class="eyebrow">Prompt layers</p>
|
|
362
|
+
<h2>System prompt and memories</h2>
|
|
363
|
+
<p class="section-copy">Resolved prompt layers in the order used to build the base instructions.</p>
|
|
364
|
+
</div>
|
|
365
|
+
<div class="table-wrap">
|
|
366
|
+
<table class="data-table">
|
|
367
|
+
<thead>
|
|
368
|
+
<tr>
|
|
369
|
+
<th scope="col">Kind</th>
|
|
370
|
+
<th scope="col">Name</th>
|
|
371
|
+
<th scope="col">Path</th>
|
|
372
|
+
<th scope="col">Preview</th>
|
|
373
|
+
</tr>
|
|
374
|
+
</thead>
|
|
375
|
+
<tbody>
|
|
376
|
+
__PROMPT_LAYER_ROWS__
|
|
377
|
+
</tbody>
|
|
378
|
+
</table>
|
|
379
|
+
</div>
|
|
380
|
+
</section>
|
|
381
|
+
|
|
382
|
+
<section class="sheet">
|
|
383
|
+
<div class="section-head">
|
|
384
|
+
<p class="eyebrow">Context</p>
|
|
385
|
+
<h2>Always-loaded documents</h2>
|
|
386
|
+
<p class="section-copy">Context resources are shown in the same logical order used for prompt composition.</p>
|
|
387
|
+
</div>
|
|
388
|
+
<div class="table-wrap">
|
|
389
|
+
<table class="data-table">
|
|
390
|
+
<thead>
|
|
391
|
+
<tr>
|
|
392
|
+
<th scope="col">Source</th>
|
|
393
|
+
<th scope="col">Title</th>
|
|
394
|
+
<th scope="col">Path</th>
|
|
395
|
+
<th scope="col">Preview</th>
|
|
396
|
+
</tr>
|
|
397
|
+
</thead>
|
|
398
|
+
<tbody>
|
|
399
|
+
__CONTEXT_ROWS__
|
|
400
|
+
</tbody>
|
|
401
|
+
</table>
|
|
402
|
+
</div>
|
|
403
|
+
</section>
|
|
404
|
+
|
|
405
|
+
<section class="sheet">
|
|
406
|
+
<div class="section-head">
|
|
407
|
+
<p class="eyebrow">Skills</p>
|
|
408
|
+
<h2>Available skill surface</h2>
|
|
409
|
+
<p class="section-copy">Authored skills that can be activated to load additional instructions.</p>
|
|
410
|
+
</div>
|
|
411
|
+
<div class="table-wrap">
|
|
412
|
+
<table class="data-table">
|
|
413
|
+
<thead>
|
|
414
|
+
<tr>
|
|
415
|
+
<th scope="col">Name</th>
|
|
416
|
+
<th scope="col">Path</th>
|
|
417
|
+
<th scope="col">Description</th>
|
|
418
|
+
<th scope="col">Source</th>
|
|
419
|
+
</tr>
|
|
420
|
+
</thead>
|
|
421
|
+
<tbody>
|
|
422
|
+
__SKILL_ROWS__
|
|
423
|
+
</tbody>
|
|
424
|
+
</table>
|
|
425
|
+
</div>
|
|
426
|
+
</section>
|
|
427
|
+
|
|
428
|
+
<section class="sheet">
|
|
429
|
+
<div class="section-head">
|
|
430
|
+
<p class="eyebrow">Tools</p>
|
|
431
|
+
<h2>Authored tool definitions</h2>
|
|
432
|
+
<p class="section-copy">Callable tool surfaces available to the runtime.</p>
|
|
433
|
+
</div>
|
|
434
|
+
<div class="table-wrap">
|
|
435
|
+
<table class="data-table">
|
|
436
|
+
<thead>
|
|
437
|
+
<tr>
|
|
438
|
+
<th scope="col">Name</th>
|
|
439
|
+
<th scope="col">Path</th>
|
|
440
|
+
<th scope="col">Details</th>
|
|
441
|
+
<th scope="col">Source</th>
|
|
442
|
+
</tr>
|
|
443
|
+
</thead>
|
|
444
|
+
<tbody>
|
|
445
|
+
__TOOL_ROWS__
|
|
446
|
+
</tbody>
|
|
447
|
+
</table>
|
|
448
|
+
</div>
|
|
449
|
+
</section>
|
|
450
|
+
|
|
451
|
+
<section class="sheet">
|
|
452
|
+
<div class="section-head">
|
|
453
|
+
<p class="eyebrow">Sandboxes</p>
|
|
454
|
+
<h2>Authored sandbox environments</h2>
|
|
455
|
+
<p class="section-copy">Named isolated bash-style environments prepared by the runtime before the harness starts.</p>
|
|
456
|
+
</div>
|
|
457
|
+
<div class="table-wrap">
|
|
458
|
+
<table class="data-table">
|
|
459
|
+
<thead>
|
|
460
|
+
<tr>
|
|
461
|
+
<th scope="col">Name</th>
|
|
462
|
+
<th scope="col">Path</th>
|
|
463
|
+
<th scope="col">Details</th>
|
|
464
|
+
<th scope="col">Source</th>
|
|
465
|
+
</tr>
|
|
466
|
+
</thead>
|
|
467
|
+
<tbody>
|
|
468
|
+
__SANDBOX_ROWS__
|
|
469
|
+
</tbody>
|
|
470
|
+
</table>
|
|
471
|
+
</div>
|
|
472
|
+
</section>
|
|
473
|
+
|
|
474
|
+
<section class="sheet">
|
|
475
|
+
<div class="section-head">
|
|
476
|
+
<p class="eyebrow">Schedules</p>
|
|
477
|
+
<h2>Compiled schedule definitions</h2>
|
|
478
|
+
<p class="section-copy">Authored schedules registered against the current Nitro host.</p>
|
|
479
|
+
</div>
|
|
480
|
+
<div class="table-wrap">
|
|
481
|
+
<table class="data-table">
|
|
482
|
+
<thead>
|
|
483
|
+
<tr>
|
|
484
|
+
<th scope="col">Id</th>
|
|
485
|
+
<th scope="col">Cron</th>
|
|
486
|
+
<th scope="col">Path</th>
|
|
487
|
+
<th scope="col">Preview</th>
|
|
488
|
+
</tr>
|
|
489
|
+
</thead>
|
|
490
|
+
<tbody>
|
|
491
|
+
__SCHEDULE_ROWS__
|
|
492
|
+
</tbody>
|
|
493
|
+
</table>
|
|
494
|
+
</div>
|
|
495
|
+
</section>
|
|
496
|
+
|
|
497
|
+
<section class="sheet">
|
|
498
|
+
<div class="section-head">
|
|
499
|
+
<p class="eyebrow">Subagents</p>
|
|
500
|
+
<h2>Discovered subagent graph</h2>
|
|
501
|
+
<p class="section-copy">Remote bindings and local subagent packages discovered under <code>subagents/</code>.</p>
|
|
502
|
+
</div>
|
|
503
|
+
<div class="table-wrap">
|
|
504
|
+
<table class="data-table">
|
|
505
|
+
<thead>
|
|
506
|
+
<tr>
|
|
507
|
+
<th scope="col">Kind</th>
|
|
508
|
+
<th scope="col">Name</th>
|
|
509
|
+
<th scope="col">Path</th>
|
|
510
|
+
<th scope="col">Details</th>
|
|
511
|
+
</tr>
|
|
512
|
+
</thead>
|
|
513
|
+
<tbody>
|
|
514
|
+
__SUBAGENT_ROWS__
|
|
515
|
+
</tbody>
|
|
516
|
+
</table>
|
|
517
|
+
</div>
|
|
518
|
+
</section>
|
|
519
|
+
|
|
520
|
+
<section class="sheet">
|
|
521
|
+
<div class="section-head">
|
|
522
|
+
<p class="eyebrow">API</p>
|
|
523
|
+
<h2>Framework endpoints</h2>
|
|
524
|
+
<p class="section-copy">Framework-owned transport endpoints exposed by this host.</p>
|
|
525
|
+
</div>
|
|
526
|
+
<div class="table-wrap">
|
|
527
|
+
<table class="data-table">
|
|
528
|
+
<thead>
|
|
529
|
+
<tr>
|
|
530
|
+
<th scope="col">Method</th>
|
|
531
|
+
<th scope="col">Endpoint</th>
|
|
532
|
+
<th scope="col">Path</th>
|
|
533
|
+
<th scope="col">Notes</th>
|
|
534
|
+
</tr>
|
|
535
|
+
</thead>
|
|
536
|
+
<tbody>
|
|
537
|
+
__ENDPOINT_ROWS__
|
|
538
|
+
</tbody>
|
|
539
|
+
</table>
|
|
540
|
+
</div>
|
|
541
|
+
<div class="request-block">
|
|
542
|
+
<p class="request-label">Example request</p>
|
|
543
|
+
<pre class="request"><code>__MESSAGE_REQUEST_EXAMPLE__</code></pre>
|
|
544
|
+
</div>
|
|
545
|
+
</section>
|
|
546
|
+
</main>
|
|
547
|
+
</body>
|
|
548
|
+
</html>
|