@phuetz/code-buddy 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 +211 -163
- package/dist/agent/autonomous/agentic-coding-contract.d.ts +12 -12
- package/dist/agent/base-agent.d.ts +4 -0
- package/dist/agent/base-agent.js +6 -0
- package/dist/agent/codebuddy-agent.d.ts +1 -1
- package/dist/agent/codebuddy-agent.js +69 -14
- package/dist/agent/execution/agent-executor.js +122 -12
- package/dist/agent/execution/tool-dependency-graph.js +7 -0
- package/dist/agent/execution/tool-hooks.d.ts +6 -0
- package/dist/agent/execution/tool-hooks.js +13 -5
- package/dist/agent/execution/tool-selection-strategy.d.ts +11 -2
- package/dist/agent/execution/tool-selection-strategy.js +67 -10
- package/dist/agent/extended-thinking.d.ts +8 -0
- package/dist/agent/extended-thinking.js +27 -0
- package/dist/agent/facades/infrastructure-facade.d.ts +9 -2
- package/dist/agent/facades/infrastructure-facade.js +15 -6
- package/dist/agent/hermes-browser-backends.js +151 -11
- package/dist/agent/hermes-claw-migrate.d.ts +59 -0
- package/dist/agent/hermes-claw-migrate.js +427 -26
- package/dist/agent/hermes-parity-manifest.js +78 -71
- package/dist/agent/hermes-runtime-lifecycle.d.ts +67 -0
- package/dist/agent/hermes-runtime-lifecycle.js +468 -0
- package/dist/agent/middleware/index.d.ts +1 -0
- package/dist/agent/middleware/index.js +1 -0
- package/dist/agent/middleware/visual-validation-middleware.d.ts +17 -0
- package/dist/agent/middleware/visual-validation-middleware.js +67 -0
- package/dist/agent/model-benchmark.d.ts +77 -0
- package/dist/agent/model-benchmark.js +309 -0
- package/dist/agent/model-tier.d.ts +14 -0
- package/dist/agent/model-tier.js +71 -0
- package/dist/agent/multi-agent/agents/orchestrator-agent.js +17 -6
- package/dist/agent/multi-agent/multi-agent-system.js +3 -1
- package/dist/agent/multi-agent/session-fleet-bridge.d.ts +2 -0
- package/dist/agent/multi-agent/session-fleet-bridge.js +9 -1
- package/dist/agent/multi-agent/session-tools.js +22 -5
- package/dist/agent/reasoning/mcts.js +20 -6
- package/dist/agent/self-improvement/authored-artifact-gate.d.ts +18 -0
- package/dist/agent/self-improvement/authored-artifact-gate.js +42 -0
- package/dist/agent/self-improvement/authored-tool-runtime.d.ts +27 -0
- package/dist/agent/self-improvement/authored-tool-runtime.js +57 -0
- package/dist/agent/self-improvement/authored-tool-store.d.ts +24 -0
- package/dist/agent/self-improvement/authored-tool-store.js +57 -0
- package/dist/agent/self-improvement/llm-tool-proposer.d.ts +41 -0
- package/dist/agent/self-improvement/llm-tool-proposer.js +136 -0
- package/dist/agent/self-improvement/sandbox-scorer.d.ts +17 -0
- package/dist/agent/self-improvement/sandbox-scorer.js +43 -0
- package/dist/agent/self-improvement/self-knowledge.d.ts +8 -0
- package/dist/agent/self-improvement/self-knowledge.js +24 -0
- package/dist/agent/self-improvement/skill-benchmark.d.ts +9 -0
- package/dist/agent/self-improvement/skill-benchmark.js +22 -0
- package/dist/agent/self-improvement/skill-consolidator.d.ts +71 -0
- package/dist/agent/self-improvement/skill-consolidator.js +137 -0
- package/dist/agent/self-improvement/skill-engine.d.ts +42 -0
- package/dist/agent/self-improvement/skill-engine.js +87 -0
- package/dist/agent/self-improvement/skill-gate.d.ts +19 -0
- package/dist/agent/self-improvement/skill-gate.js +62 -0
- package/dist/agent/self-improvement/skill-mutator.d.ts +74 -0
- package/dist/agent/self-improvement/skill-mutator.js +223 -0
- package/dist/agent/self-improvement/skill-proposer.d.ts +40 -0
- package/dist/agent/self-improvement/skill-proposer.js +82 -0
- package/dist/agent/self-improvement/skill-types.d.ts +41 -0
- package/dist/agent/self-improvement/skill-types.js +13 -0
- package/dist/agent/self-improvement/tool-benchmark.d.ts +10 -0
- package/dist/agent/self-improvement/tool-benchmark.js +37 -0
- package/dist/agent/self-improvement/tool-engine.d.ts +54 -0
- package/dist/agent/self-improvement/tool-engine.js +101 -0
- package/dist/agent/self-improvement/tool-gate.d.ts +20 -0
- package/dist/agent/self-improvement/tool-gate.js +78 -0
- package/dist/agent/self-improvement/tool-proposer.d.ts +31 -0
- package/dist/agent/self-improvement/tool-proposer.js +34 -0
- package/dist/agent/self-improvement/tool-skill-mutator.d.ts +40 -0
- package/dist/agent/self-improvement/tool-skill-mutator.js +79 -0
- package/dist/agent/self-improvement/tool-types.d.ts +48 -0
- package/dist/agent/self-improvement/tool-types.js +9 -0
- package/dist/agent/self-improvement/types.d.ts +3 -1
- package/dist/agent/session-end-flush.d.ts +6 -1
- package/dist/agent/session-end-flush.js +20 -4
- package/dist/agent/streaming/streaming-handler.d.ts +7 -0
- package/dist/agent/streaming/streaming-handler.js +8 -1
- package/dist/agent/tool-executor.js +1 -0
- package/dist/agent/tool-handler.d.ts +5 -0
- package/dist/agent/tool-handler.js +133 -4
- package/dist/browser-automation/browser-operator-executor.js +15 -0
- package/dist/browser-automation/browser-use-runner.d.ts +96 -0
- package/dist/browser-automation/browser-use-runner.js +492 -0
- package/dist/browser-automation/camofox-runner.d.ts +107 -0
- package/dist/browser-automation/camofox-runner.js +287 -0
- package/dist/channels/dingtalk/index.js +3 -0
- package/dist/channels/discord/client.d.ts +9 -0
- package/dist/channels/discord/client.js +12 -0
- package/dist/channels/feishu/index.d.ts +167 -1
- package/dist/channels/feishu/index.js +432 -7
- package/dist/channels/gateway-lifecycle.d.ts +132 -0
- package/dist/channels/gateway-lifecycle.js +219 -0
- package/dist/channels/google-chat/index.d.ts +5 -1
- package/dist/channels/google-chat/index.js +5 -1
- package/dist/channels/imessage/index.d.ts +14 -0
- package/dist/channels/imessage/index.js +64 -17
- package/dist/channels/index.d.ts +4 -0
- package/dist/channels/index.js +4 -0
- package/dist/channels/irc/index.d.ts +73 -3
- package/dist/channels/irc/index.js +446 -11
- package/dist/channels/line/index.js +3 -0
- package/dist/channels/mattermost/index.d.ts +51 -4
- package/dist/channels/mattermost/index.js +303 -20
- package/dist/channels/nextcloud-talk/index.d.ts +89 -8
- package/dist/channels/nextcloud-talk/index.js +367 -16
- package/dist/channels/nostr/index.d.ts +121 -1
- package/dist/channels/nostr/index.js +396 -8
- package/dist/channels/ntfy/index.js +3 -0
- package/dist/channels/qq/index.js +3 -0
- package/dist/channels/slash-parity.d.ts +117 -0
- package/dist/channels/slash-parity.js +185 -0
- package/dist/channels/synology-chat/index.js +3 -0
- package/dist/channels/teams/index.d.ts +3 -0
- package/dist/channels/teams/index.js +3 -0
- package/dist/channels/telegram/client.d.ts +9 -0
- package/dist/channels/telegram/client.js +12 -0
- package/dist/channels/twilio-voice/index.js +3 -0
- package/dist/channels/webchat/index.d.ts +7 -1
- package/dist/channels/webchat/index.js +7 -1
- package/dist/channels/wecom/index.js +3 -0
- package/dist/channels/weixin/index.js +3 -0
- package/dist/channels/zalo/index.js +3 -0
- package/dist/cli/config-loader.js +1 -1
- package/dist/codebuddy/client.d.ts +30 -1
- package/dist/codebuddy/client.js +167 -20
- package/dist/codebuddy/providers/provider-chatgpt-responses.d.ts +5 -0
- package/dist/codebuddy/providers/provider-chatgpt-responses.js +7 -1
- package/dist/codebuddy/providers/provider-gemini-native.js +1 -1
- package/dist/codebuddy/providers/provider-openai-compat.d.ts +5 -0
- package/dist/codebuddy/providers/provider-openai-compat.js +82 -2
- package/dist/codebuddy/tool-definitions/computer-control-tools.js +32 -2
- package/dist/codebuddy/tool-definitions/core-tools.js +3 -3
- package/dist/codebuddy/tool-definitions/index.d.ts +2 -1
- package/dist/codebuddy/tool-definitions/index.js +2 -1
- package/dist/codebuddy/tool-definitions/multimodal-tools.d.ts +1 -0
- package/dist/codebuddy/tool-definitions/multimodal-tools.js +44 -1
- package/dist/codebuddy/tool-definitions/windows-tools.d.ts +2 -0
- package/dist/codebuddy/tool-definitions/windows-tools.js +34 -0
- package/dist/codebuddy/tools.d.ts +8 -1
- package/dist/codebuddy/tools.js +67 -24
- package/dist/commands/cli/hermes-commands.js +108 -0
- package/dist/commands/cli/improve-command.js +123 -0
- package/dist/commands/cli/native-engine-commands.js +102 -3
- package/dist/commands/cli/utility-commands.js +45 -0
- package/dist/commands/enhanced-command-handler.js +2 -2
- package/dist/commands/goal-cli.d.ts +30 -0
- package/dist/commands/goal-cli.js +210 -27
- package/dist/commands/handlers/goal-handler.d.ts +9 -2
- package/dist/commands/handlers/goal-handler.js +36 -9
- package/dist/commands/handlers/infra-handlers.js +36 -0
- package/dist/commands/handlers/memory-handlers.js +96 -1
- package/dist/commands/handlers/missing-handlers.d.ts +1 -1
- package/dist/commands/handlers/missing-handlers.js +26 -3
- package/dist/commands/headless-slash.d.ts +2 -0
- package/dist/commands/headless-slash.js +12 -0
- package/dist/commands/llm-provider-resolution.d.ts +5 -3
- package/dist/commands/llm-provider-resolution.js +87 -33
- package/dist/commands/ollama.d.ts +25 -0
- package/dist/commands/ollama.js +100 -0
- package/dist/commands/provider.d.ts +5 -0
- package/dist/commands/provider.js +106 -55
- package/dist/commands/skills-cli/index.js +123 -0
- package/dist/commands/slash/builtin-commands.js +1 -1
- package/dist/commands/spec-next.js +2 -1
- package/dist/commands/spec-plan.js +5 -16
- package/dist/commands/tunnel.d.ts +2 -0
- package/dist/commands/tunnel.js +48 -0
- package/dist/companion/percepts.js +11 -1
- package/dist/config/config-resolver.d.ts +2 -1
- package/dist/config/config-resolver.js +54 -41
- package/dist/config/constants.d.ts +28 -0
- package/dist/config/constants.js +7 -0
- package/dist/config/env-schema.js +756 -0
- package/dist/config/model-tools.js +4 -4
- package/dist/config/toml-config.d.ts +16 -0
- package/dist/config/toml-config.js +3 -0
- package/dist/context/bootstrap-loader.js +6 -23
- package/dist/context/context-manager-v2.js +1 -0
- package/dist/context/import-directive-parser.d.ts +4 -0
- package/dist/context/import-directive-parser.js +51 -6
- package/dist/context/instruction-excludes.d.ts +30 -1
- package/dist/context/instruction-excludes.js +71 -1
- package/dist/context/jit-context.d.ts +8 -10
- package/dist/context/jit-context.js +28 -106
- package/dist/context/project-context.d.ts +90 -0
- package/dist/context/project-context.js +295 -0
- package/dist/daemon/autonomous-daemon.d.ts +1 -1
- package/dist/daemon/autonomous-daemon.js +3 -3
- package/dist/daemon/autonomous-loop.d.ts +31 -1
- package/dist/daemon/autonomous-loop.js +91 -4
- package/dist/daemon/colab-goal.js +9 -1
- package/dist/daemon/cron-agent-bridge.d.ts +12 -3
- package/dist/daemon/cron-agent-bridge.js +25 -9
- package/dist/desktop/codebuddy-engine-adapter.d.ts +32 -0
- package/dist/desktop/codebuddy-engine-adapter.js +257 -80
- package/dist/desktop/engine-adapter.d.ts +14 -0
- package/dist/desktop-automation/automation-manager.js +16 -0
- package/dist/desktop-automation/omniparser-runner.d.ts +63 -0
- package/dist/desktop-automation/omniparser-runner.js +115 -0
- package/dist/desktop-automation/smart-snapshot.d.ts +11 -0
- package/dist/desktop-automation/smart-snapshot.js +72 -5
- package/dist/doctor/index.js +40 -23
- package/dist/events/types.d.ts +11 -0
- package/dist/fleet/colab-store.js +14 -2
- package/dist/fleet/peer-session-bridge.js +50 -12
- package/dist/fleet/peer-tool-bridge.js +14 -0
- package/dist/goals/goal-decomposer.d.ts +27 -0
- package/dist/goals/goal-decomposer.js +293 -0
- package/dist/goals/goal-judge-client.d.ts +15 -0
- package/dist/goals/goal-judge-client.js +45 -0
- package/dist/goals/goal-judge.d.ts +2 -0
- package/dist/goals/goal-judge.js +35 -6
- package/dist/goals/goal-loop.d.ts +14 -0
- package/dist/goals/goal-loop.js +47 -2
- package/dist/goals/goal-manager.d.ts +6 -0
- package/dist/goals/goal-manager.js +67 -14
- package/dist/goals/goal-state.d.ts +13 -0
- package/dist/goals/goal-state.js +83 -13
- package/dist/goals/goal-store.d.ts +3 -0
- package/dist/goals/goal-store.js +31 -15
- package/dist/harness/contract.d.ts +28 -28
- package/dist/hooks/user-hooks.js +17 -3
- package/dist/identity/identity-manager.js +3 -2
- package/dist/index.js +481 -26
- package/dist/input/text-to-speech.d.ts +2 -6
- package/dist/input/text-to-speech.js +2 -27
- package/dist/integrations/screenpipe/screenpipe-client.d.ts +10 -0
- package/dist/integrations/screenpipe/screenpipe-client.js +12 -2
- package/dist/integrations/tailscale.d.ts +13 -0
- package/dist/integrations/tailscale.js +87 -34
- package/dist/knowledge/workspace-indexer.js +53 -9
- package/dist/mcp/client.js +1 -0
- package/dist/mcp/mcp-desktop-tools.d.ts +23 -0
- package/dist/mcp/mcp-desktop-tools.js +158 -0
- package/dist/mcp/mcp-resources.js +2 -3
- package/dist/mcp/mcp-server.js +2 -0
- package/dist/memory/enhanced-memory.d.ts +10 -0
- package/dist/memory/enhanced-memory.js +33 -2
- package/dist/memory/index.d.ts +3 -1
- package/dist/memory/index.js +4 -1
- package/dist/memory/memory-auto-proposer.d.ts +23 -0
- package/dist/memory/memory-auto-proposer.js +308 -0
- package/dist/memory/memory-candidate-queue.d.ts +92 -0
- package/dist/memory/memory-candidate-queue.js +261 -0
- package/dist/memory/persistent-memory.d.ts +45 -2
- package/dist/memory/persistent-memory.js +236 -40
- package/dist/ml/bayesian-qualifier.d.ts +1 -1
- package/dist/ml/bayesian-qualifier.js +35 -2
- package/dist/openclaw/gateway-bridge.js +5 -0
- package/dist/plugins/marketplace.d.ts +1 -0
- package/dist/plugins/marketplace.js +7 -0
- package/dist/prompts/execution-discipline.d.ts +14 -0
- package/dist/prompts/execution-discipline.js +29 -0
- package/dist/prompts/variation-injector.js +9 -2
- package/dist/protocols/acp/acp-agentic-runner.d.ts +7 -6
- package/dist/protocols/acp/acp-agentic-runner.js +115 -18
- package/dist/protocols/acp/acp-session-store.d.ts +23 -0
- package/dist/protocols/acp/acp-session-store.js +77 -0
- package/dist/protocols/acp/acp-stdio-server.d.ts +7 -0
- package/dist/protocols/acp/acp-stdio-server.js +71 -16
- package/dist/providers/active-llm-registry.d.ts +37 -0
- package/dist/providers/active-llm-registry.js +186 -0
- package/dist/providers/auxiliary-provider.d.ts +25 -0
- package/dist/providers/auxiliary-provider.js +192 -0
- package/dist/providers/codex-oauth.d.ts +1 -1
- package/dist/providers/codex-oauth.js +27 -4
- package/dist/providers/index.d.ts +3 -0
- package/dist/providers/index.js +4 -0
- package/dist/providers/provider-catalog.d.ts +70 -0
- package/dist/providers/provider-catalog.js +738 -0
- package/dist/providers/provider-fallback.d.ts +35 -0
- package/dist/providers/provider-fallback.js +171 -0
- package/dist/providers/xai-oauth.d.ts +128 -0
- package/dist/providers/xai-oauth.js +735 -0
- package/dist/scheduler/cron-scheduler.d.ts +15 -3
- package/dist/scheduler/cron-scheduler.js +53 -7
- package/dist/scheduler/script-runner.d.ts +2 -0
- package/dist/scheduler/script-runner.js +19 -4
- package/dist/scheduler/watchdog-handlers.js +7 -20
- package/dist/search/usearch-index.js +7 -2
- package/dist/security/tool-policy/tool-groups.js +2 -0
- package/dist/sensory/dreaming.d.ts +45 -0
- package/dist/sensory/dreaming.js +114 -0
- package/dist/sensory/heartbeat-scheduler.d.ts +38 -0
- package/dist/sensory/heartbeat-scheduler.js +72 -0
- package/dist/sensory/reactions.d.ts +24 -0
- package/dist/sensory/reactions.js +31 -0
- package/dist/sensory/screen-reaction.d.ts +23 -0
- package/dist/sensory/screen-reaction.js +59 -0
- package/dist/sensory/sensory-bridge.d.ts +23 -0
- package/dist/sensory/sensory-bridge.js +85 -0
- package/dist/sensory/sensory-memory.d.ts +20 -0
- package/dist/sensory/sensory-memory.js +39 -0
- package/dist/sensory/speech-reaction.d.ts +21 -0
- package/dist/sensory/speech-reaction.js +83 -0
- package/dist/sensory/vision-reaction.d.ts +31 -0
- package/dist/sensory/vision-reaction.js +74 -0
- package/dist/server/index.js +106 -2
- package/dist/server/routes/mobile.d.ts +12 -4
- package/dist/server/routes/mobile.js +116 -1
- package/dist/server/tls-config.d.ts +35 -0
- package/dist/server/tls-config.js +142 -0
- package/dist/server/tunnel-manager.d.ts +20 -0
- package/dist/server/tunnel-manager.js +58 -0
- package/dist/server/websocket/fleet-bridge.js +5 -0
- package/dist/services/prompt-builder.d.ts +11 -0
- package/dist/services/prompt-builder.js +124 -17
- package/dist/shared/engine-types.d.ts +15 -1
- package/dist/sidecar/sidecar-bridge.d.ts +1 -0
- package/dist/sidecar/sidecar-bridge.js +21 -10
- package/dist/skills/parser.js +3 -0
- package/dist/skills/skill-importer.d.ts +58 -0
- package/dist/skills/skill-importer.js +261 -0
- package/dist/skills/skill-sources.d.ts +20 -0
- package/dist/skills/skill-sources.js +102 -0
- package/dist/skills/types.d.ts +6 -0
- package/dist/spec/spec-store.js +8 -1
- package/dist/talk-mode/providers/audioreader-tts.d.ts +1 -1
- package/dist/talk-mode/providers/audioreader-tts.js +8 -8
- package/dist/templates/project-scaffolding.js +3 -2
- package/dist/themes/theme-schema.d.ts +10 -10
- package/dist/tools/application-profiles.js +38 -0
- package/dist/tools/bash/bash-tool.d.ts +1 -0
- package/dist/tools/bash/bash-tool.js +16 -2
- package/dist/tools/bash/command-validator.js +3 -0
- package/dist/tools/bash/rtk-rewrite.d.ts +16 -0
- package/dist/tools/bash/rtk-rewrite.js +100 -0
- package/dist/tools/bash/streaming-executor.js +14 -1
- package/dist/tools/computer-control-tool.d.ts +16 -1
- package/dist/tools/computer-control-tool.js +317 -5
- package/dist/tools/document-generator.d.ts +14 -0
- package/dist/tools/document-generator.js +79 -0
- package/dist/tools/execute-code-rpc-invoker.d.ts +26 -2
- package/dist/tools/execute-code-rpc-invoker.js +46 -5
- package/dist/tools/metadata.js +28 -0
- package/dist/tools/office-macro-tool.d.ts +10 -0
- package/dist/tools/office-macro-tool.js +93 -0
- package/dist/tools/register-tool-handler.d.ts +25 -0
- package/dist/tools/register-tool-handler.js +100 -0
- package/dist/tools/registry/index.d.ts +2 -1
- package/dist/tools/registry/index.js +2 -1
- package/dist/tools/registry/memory-tools.d.ts +20 -0
- package/dist/tools/registry/memory-tools.js +225 -3
- package/dist/tools/registry/multimodal-tools.js +2 -2
- package/dist/tools/registry/vision-tools.d.ts +33 -0
- package/dist/tools/registry/vision-tools.js +308 -6
- package/dist/tools/registry/windows-tools.d.ts +2 -0
- package/dist/tools/registry/windows-tools.js +47 -0
- package/dist/tools/registry.d.ts +6 -0
- package/dist/tools/registry.js +8 -0
- package/dist/tools/route-peer-tool.js +14 -0
- package/dist/tools/screenshot-tool.js +14 -2
- package/dist/tools/text-to-speech-tool.d.ts +1 -1
- package/dist/tools/text-to-speech-tool.js +2 -12
- package/dist/tools/tool-selector.js +3 -59
- package/dist/utils/config-validation/schema.d.ts +40 -7
- package/dist/utils/config-validation/schema.js +130 -1
- package/dist/utils/cost-tracker.js +21 -1
- package/dist/utils/disk-guard.d.ts +180 -0
- package/dist/utils/disk-guard.js +404 -0
- package/dist/utils/init-project.d.ts +7 -0
- package/dist/utils/init-project.js +37 -0
- package/dist/utils/interactive-setup.js +35 -2
- package/dist/utils/model-utils.js +11 -2
- package/dist/utils/output-sanitizer.js +11 -0
- package/dist/utils/provider-detector.d.ts +8 -7
- package/dist/utils/provider-detector.js +19 -77
- package/dist/utils/settings-manager.d.ts +19 -0
- package/dist/utils/token-display.d.ts +3 -3
- package/dist/utils/token-display.js +22 -4
- package/dist/wizard/onboarding.d.ts +39 -0
- package/dist/wizard/onboarding.js +433 -21
- package/dist/wizard/provider-onboarding.d.ts +8 -23
- package/dist/wizard/provider-onboarding.js +39 -158
- package/package.json +4 -2
- package/dist/plugins/provider-onboarding.d.ts +0 -23
- package/dist/plugins/provider-onboarding.js +0 -116
- package/dist/utils/kokoro-tts.d.ts +0 -8
- package/dist/utils/kokoro-tts.js +0 -67
|
@@ -139,6 +139,7 @@ export declare const runSchema: z.ZodObject<{
|
|
|
139
139
|
}, "strict", z.ZodTypeAny, {
|
|
140
140
|
status: "cancelled" | "running" | "completed" | "failed" | "queued" | "waiting_approval";
|
|
141
141
|
id: string;
|
|
142
|
+
schemaVersion: 1;
|
|
142
143
|
objective: string;
|
|
143
144
|
kind: "run";
|
|
144
145
|
actor: {
|
|
@@ -146,7 +147,6 @@ export declare const runSchema: z.ZodObject<{
|
|
|
146
147
|
id: string;
|
|
147
148
|
provider?: string | undefined;
|
|
148
149
|
};
|
|
149
|
-
schemaVersion: 1;
|
|
150
150
|
startedAt: number;
|
|
151
151
|
metadata?: {
|
|
152
152
|
tags: string[];
|
|
@@ -169,6 +169,7 @@ export declare const runSchema: z.ZodObject<{
|
|
|
169
169
|
}, {
|
|
170
170
|
status: "cancelled" | "running" | "completed" | "failed" | "queued" | "waiting_approval";
|
|
171
171
|
id: string;
|
|
172
|
+
schemaVersion: 1;
|
|
172
173
|
objective: string;
|
|
173
174
|
kind: "run";
|
|
174
175
|
actor: {
|
|
@@ -176,7 +177,6 @@ export declare const runSchema: z.ZodObject<{
|
|
|
176
177
|
id: string;
|
|
177
178
|
provider?: string | undefined;
|
|
178
179
|
};
|
|
179
|
-
schemaVersion: 1;
|
|
180
180
|
startedAt: number;
|
|
181
181
|
metadata?: {
|
|
182
182
|
sessionId?: string | undefined;
|
|
@@ -245,8 +245,8 @@ export declare const proofSchema: z.ZodObject<{
|
|
|
245
245
|
id: string;
|
|
246
246
|
summary: string;
|
|
247
247
|
createdAt: number;
|
|
248
|
-
kind: "proof";
|
|
249
248
|
schemaVersion: 1;
|
|
249
|
+
kind: "proof";
|
|
250
250
|
runId: string;
|
|
251
251
|
producedBy: {
|
|
252
252
|
type: "agent" | "human";
|
|
@@ -259,8 +259,8 @@ export declare const proofSchema: z.ZodObject<{
|
|
|
259
259
|
id: string;
|
|
260
260
|
summary: string;
|
|
261
261
|
createdAt: number;
|
|
262
|
-
kind: "proof";
|
|
263
262
|
schemaVersion: 1;
|
|
263
|
+
kind: "proof";
|
|
264
264
|
runId: string;
|
|
265
265
|
producedBy: {
|
|
266
266
|
type: "agent" | "human";
|
|
@@ -283,17 +283,17 @@ export declare const sensitiveActionSchema: z.ZodObject<{
|
|
|
283
283
|
name: string;
|
|
284
284
|
id: string;
|
|
285
285
|
scope: string[];
|
|
286
|
+
schemaVersion: 1;
|
|
286
287
|
kind: "sensitive-action";
|
|
287
288
|
requires: "autonomous" | "dry-run-required" | "approval-required";
|
|
288
|
-
schemaVersion: 1;
|
|
289
289
|
riskLevel: "low" | "medium" | "high";
|
|
290
290
|
defaultDryRun: boolean;
|
|
291
291
|
}, {
|
|
292
292
|
name: string;
|
|
293
293
|
id: string;
|
|
294
|
+
schemaVersion: 1;
|
|
294
295
|
kind: "sensitive-action";
|
|
295
296
|
requires: "autonomous" | "dry-run-required" | "approval-required";
|
|
296
|
-
schemaVersion: 1;
|
|
297
297
|
riskLevel: "low" | "medium" | "high";
|
|
298
298
|
scope?: string[] | undefined;
|
|
299
299
|
defaultDryRun?: boolean | undefined;
|
|
@@ -364,6 +364,7 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
364
364
|
id: string;
|
|
365
365
|
version: number;
|
|
366
366
|
summary: string;
|
|
367
|
+
schemaVersion: 1;
|
|
367
368
|
kind: "workflow";
|
|
368
369
|
nodes: {
|
|
369
370
|
id: string;
|
|
@@ -371,7 +372,6 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
371
372
|
canvasKind: "action" | "trigger" | "logic";
|
|
372
373
|
role?: "edit" | "analysis" | "handoff" | "approval" | "verification" | "gate" | undefined;
|
|
373
374
|
}[];
|
|
374
|
-
schemaVersion: 1;
|
|
375
375
|
edges: {
|
|
376
376
|
source: string;
|
|
377
377
|
target: string;
|
|
@@ -381,6 +381,7 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
381
381
|
id: string;
|
|
382
382
|
version: number;
|
|
383
383
|
summary: string;
|
|
384
|
+
schemaVersion: 1;
|
|
384
385
|
kind: "workflow";
|
|
385
386
|
nodes: {
|
|
386
387
|
id: string;
|
|
@@ -388,7 +389,6 @@ export declare const workflowSchema: z.ZodObject<{
|
|
|
388
389
|
canvasKind: "action" | "trigger" | "logic";
|
|
389
390
|
role?: "edit" | "analysis" | "handoff" | "approval" | "verification" | "gate" | undefined;
|
|
390
391
|
}[];
|
|
391
|
-
schemaVersion: 1;
|
|
392
392
|
edges?: {
|
|
393
393
|
source: string;
|
|
394
394
|
target: string;
|
|
@@ -413,8 +413,8 @@ export declare const approvalSchema: z.ZodObject<{
|
|
|
413
413
|
id: string;
|
|
414
414
|
target: string;
|
|
415
415
|
decision: "rejected" | "approved";
|
|
416
|
-
kind: "approval";
|
|
417
416
|
schemaVersion: 1;
|
|
417
|
+
kind: "approval";
|
|
418
418
|
reviewer: string;
|
|
419
419
|
decidedAt: number;
|
|
420
420
|
scope?: string | undefined;
|
|
@@ -425,8 +425,8 @@ export declare const approvalSchema: z.ZodObject<{
|
|
|
425
425
|
id: string;
|
|
426
426
|
target: string;
|
|
427
427
|
decision: "rejected" | "approved";
|
|
428
|
-
kind: "approval";
|
|
429
428
|
schemaVersion: 1;
|
|
429
|
+
kind: "approval";
|
|
430
430
|
reviewer: string;
|
|
431
431
|
decidedAt: number;
|
|
432
432
|
scope?: string | undefined;
|
|
@@ -453,17 +453,17 @@ export declare const lessonSchema: z.ZodObject<{
|
|
|
453
453
|
tags: string[];
|
|
454
454
|
createdAt: number;
|
|
455
455
|
policy: "none" | "lessons" | "handoff";
|
|
456
|
+
schemaVersion: 1;
|
|
456
457
|
kind: "lesson";
|
|
457
458
|
tier: "technical" | "experience";
|
|
458
|
-
schemaVersion: 1;
|
|
459
459
|
sourceRunId: string;
|
|
460
460
|
}, {
|
|
461
461
|
content: string;
|
|
462
462
|
id: string;
|
|
463
463
|
createdAt: number;
|
|
464
|
+
schemaVersion: 1;
|
|
464
465
|
kind: "lesson";
|
|
465
466
|
tier: "technical" | "experience";
|
|
466
|
-
schemaVersion: 1;
|
|
467
467
|
sourceRunId: string;
|
|
468
468
|
tags?: string[] | undefined;
|
|
469
469
|
policy?: "none" | "lessons" | "handoff" | undefined;
|
|
@@ -483,8 +483,8 @@ export declare const capabilitySchema: z.ZodObject<{
|
|
|
483
483
|
level: "read" | "sensitive" | "reversible-write";
|
|
484
484
|
id: string;
|
|
485
485
|
policy: "autonomous" | "dry-run-required" | "approval-required";
|
|
486
|
-
kind: "capability";
|
|
487
486
|
schemaVersion: 1;
|
|
487
|
+
kind: "capability";
|
|
488
488
|
fleetPolicy: "none" | "read-only-help" | "delegated-slices";
|
|
489
489
|
description?: string | undefined;
|
|
490
490
|
}, {
|
|
@@ -492,8 +492,8 @@ export declare const capabilitySchema: z.ZodObject<{
|
|
|
492
492
|
level: "read" | "sensitive" | "reversible-write";
|
|
493
493
|
id: string;
|
|
494
494
|
policy: "autonomous" | "dry-run-required" | "approval-required";
|
|
495
|
-
kind: "capability";
|
|
496
495
|
schemaVersion: 1;
|
|
496
|
+
kind: "capability";
|
|
497
497
|
description?: string | undefined;
|
|
498
498
|
fleetPolicy?: "none" | "read-only-help" | "delegated-slices" | undefined;
|
|
499
499
|
}>;
|
|
@@ -567,6 +567,7 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
567
567
|
}, "strict", z.ZodTypeAny, {
|
|
568
568
|
status: "cancelled" | "running" | "completed" | "failed" | "queued" | "waiting_approval";
|
|
569
569
|
id: string;
|
|
570
|
+
schemaVersion: 1;
|
|
570
571
|
objective: string;
|
|
571
572
|
kind: "run";
|
|
572
573
|
actor: {
|
|
@@ -574,7 +575,6 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
574
575
|
id: string;
|
|
575
576
|
provider?: string | undefined;
|
|
576
577
|
};
|
|
577
|
-
schemaVersion: 1;
|
|
578
578
|
startedAt: number;
|
|
579
579
|
metadata?: {
|
|
580
580
|
tags: string[];
|
|
@@ -597,6 +597,7 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
597
597
|
}, {
|
|
598
598
|
status: "cancelled" | "running" | "completed" | "failed" | "queued" | "waiting_approval";
|
|
599
599
|
id: string;
|
|
600
|
+
schemaVersion: 1;
|
|
600
601
|
objective: string;
|
|
601
602
|
kind: "run";
|
|
602
603
|
actor: {
|
|
@@ -604,7 +605,6 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
604
605
|
id: string;
|
|
605
606
|
provider?: string | undefined;
|
|
606
607
|
};
|
|
607
|
-
schemaVersion: 1;
|
|
608
608
|
startedAt: number;
|
|
609
609
|
metadata?: {
|
|
610
610
|
sessionId?: string | undefined;
|
|
@@ -651,8 +651,8 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
651
651
|
id: string;
|
|
652
652
|
summary: string;
|
|
653
653
|
createdAt: number;
|
|
654
|
-
kind: "proof";
|
|
655
654
|
schemaVersion: 1;
|
|
655
|
+
kind: "proof";
|
|
656
656
|
runId: string;
|
|
657
657
|
producedBy: {
|
|
658
658
|
type: "agent" | "human";
|
|
@@ -665,8 +665,8 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
665
665
|
id: string;
|
|
666
666
|
summary: string;
|
|
667
667
|
createdAt: number;
|
|
668
|
-
kind: "proof";
|
|
669
668
|
schemaVersion: 1;
|
|
669
|
+
kind: "proof";
|
|
670
670
|
runId: string;
|
|
671
671
|
producedBy: {
|
|
672
672
|
type: "agent" | "human";
|
|
@@ -687,17 +687,17 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
687
687
|
name: string;
|
|
688
688
|
id: string;
|
|
689
689
|
scope: string[];
|
|
690
|
+
schemaVersion: 1;
|
|
690
691
|
kind: "sensitive-action";
|
|
691
692
|
requires: "autonomous" | "dry-run-required" | "approval-required";
|
|
692
|
-
schemaVersion: 1;
|
|
693
693
|
riskLevel: "low" | "medium" | "high";
|
|
694
694
|
defaultDryRun: boolean;
|
|
695
695
|
}, {
|
|
696
696
|
name: string;
|
|
697
697
|
id: string;
|
|
698
|
+
schemaVersion: 1;
|
|
698
699
|
kind: "sensitive-action";
|
|
699
700
|
requires: "autonomous" | "dry-run-required" | "approval-required";
|
|
700
|
-
schemaVersion: 1;
|
|
701
701
|
riskLevel: "low" | "medium" | "high";
|
|
702
702
|
scope?: string[] | undefined;
|
|
703
703
|
defaultDryRun?: boolean | undefined;
|
|
@@ -738,6 +738,7 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
738
738
|
id: string;
|
|
739
739
|
version: number;
|
|
740
740
|
summary: string;
|
|
741
|
+
schemaVersion: 1;
|
|
741
742
|
kind: "workflow";
|
|
742
743
|
nodes: {
|
|
743
744
|
id: string;
|
|
@@ -745,7 +746,6 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
745
746
|
canvasKind: "action" | "trigger" | "logic";
|
|
746
747
|
role?: "edit" | "analysis" | "handoff" | "approval" | "verification" | "gate" | undefined;
|
|
747
748
|
}[];
|
|
748
|
-
schemaVersion: 1;
|
|
749
749
|
edges: {
|
|
750
750
|
source: string;
|
|
751
751
|
target: string;
|
|
@@ -755,6 +755,7 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
755
755
|
id: string;
|
|
756
756
|
version: number;
|
|
757
757
|
summary: string;
|
|
758
|
+
schemaVersion: 1;
|
|
758
759
|
kind: "workflow";
|
|
759
760
|
nodes: {
|
|
760
761
|
id: string;
|
|
@@ -762,7 +763,6 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
762
763
|
canvasKind: "action" | "trigger" | "logic";
|
|
763
764
|
role?: "edit" | "analysis" | "handoff" | "approval" | "verification" | "gate" | undefined;
|
|
764
765
|
}[];
|
|
765
|
-
schemaVersion: 1;
|
|
766
766
|
edges?: {
|
|
767
767
|
source: string;
|
|
768
768
|
target: string;
|
|
@@ -785,8 +785,8 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
785
785
|
id: string;
|
|
786
786
|
target: string;
|
|
787
787
|
decision: "rejected" | "approved";
|
|
788
|
-
kind: "approval";
|
|
789
788
|
schemaVersion: 1;
|
|
789
|
+
kind: "approval";
|
|
790
790
|
reviewer: string;
|
|
791
791
|
decidedAt: number;
|
|
792
792
|
scope?: string | undefined;
|
|
@@ -797,8 +797,8 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
797
797
|
id: string;
|
|
798
798
|
target: string;
|
|
799
799
|
decision: "rejected" | "approved";
|
|
800
|
-
kind: "approval";
|
|
801
800
|
schemaVersion: 1;
|
|
801
|
+
kind: "approval";
|
|
802
802
|
reviewer: string;
|
|
803
803
|
decidedAt: number;
|
|
804
804
|
scope?: string | undefined;
|
|
@@ -820,17 +820,17 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
820
820
|
tags: string[];
|
|
821
821
|
createdAt: number;
|
|
822
822
|
policy: "none" | "lessons" | "handoff";
|
|
823
|
+
schemaVersion: 1;
|
|
823
824
|
kind: "lesson";
|
|
824
825
|
tier: "technical" | "experience";
|
|
825
|
-
schemaVersion: 1;
|
|
826
826
|
sourceRunId: string;
|
|
827
827
|
}, {
|
|
828
828
|
content: string;
|
|
829
829
|
id: string;
|
|
830
830
|
createdAt: number;
|
|
831
|
+
schemaVersion: 1;
|
|
831
832
|
kind: "lesson";
|
|
832
833
|
tier: "technical" | "experience";
|
|
833
|
-
schemaVersion: 1;
|
|
834
834
|
sourceRunId: string;
|
|
835
835
|
tags?: string[] | undefined;
|
|
836
836
|
policy?: "none" | "lessons" | "handoff" | undefined;
|
|
@@ -848,8 +848,8 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
848
848
|
level: "read" | "sensitive" | "reversible-write";
|
|
849
849
|
id: string;
|
|
850
850
|
policy: "autonomous" | "dry-run-required" | "approval-required";
|
|
851
|
-
kind: "capability";
|
|
852
851
|
schemaVersion: 1;
|
|
852
|
+
kind: "capability";
|
|
853
853
|
fleetPolicy: "none" | "read-only-help" | "delegated-slices";
|
|
854
854
|
description?: string | undefined;
|
|
855
855
|
}, {
|
|
@@ -857,8 +857,8 @@ export declare const harnessArtifactSchema: z.ZodDiscriminatedUnion<"kind", [z.Z
|
|
|
857
857
|
level: "read" | "sensitive" | "reversible-write";
|
|
858
858
|
id: string;
|
|
859
859
|
policy: "autonomous" | "dry-run-required" | "approval-required";
|
|
860
|
-
kind: "capability";
|
|
861
860
|
schemaVersion: 1;
|
|
861
|
+
kind: "capability";
|
|
862
862
|
description?: string | undefined;
|
|
863
863
|
fleetPolicy?: "none" | "read-only-help" | "delegated-slices" | undefined;
|
|
864
864
|
}>]>;
|
package/dist/hooks/user-hooks.js
CHANGED
|
@@ -188,6 +188,8 @@ export class UserHooksManager {
|
|
|
188
188
|
const shellFlag = isWindows ? '/c' : '-c';
|
|
189
189
|
const child = spawn(shell, [shellFlag, expandedCommand], {
|
|
190
190
|
stdio: ['pipe', 'pipe', 'pipe'],
|
|
191
|
+
detached: !isWindows,
|
|
192
|
+
windowsHide: true,
|
|
191
193
|
env: {
|
|
192
194
|
...process.env,
|
|
193
195
|
TOOL_NAME: context.toolName ?? '',
|
|
@@ -202,12 +204,24 @@ export class UserHooksManager {
|
|
|
202
204
|
let timedOut = false;
|
|
203
205
|
const timer = setTimeout(() => {
|
|
204
206
|
timedOut = true;
|
|
205
|
-
child.
|
|
207
|
+
if (!isWindows && child.pid) {
|
|
208
|
+
try {
|
|
209
|
+
process.kill(-child.pid, 'SIGTERM');
|
|
210
|
+
}
|
|
211
|
+
catch {
|
|
212
|
+
child.kill('SIGTERM');
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
else {
|
|
216
|
+
child.kill('SIGTERM');
|
|
217
|
+
}
|
|
206
218
|
}, timeout);
|
|
207
219
|
// Write context JSON to stdin
|
|
220
|
+
child.stdin.on('error', (err) => {
|
|
221
|
+
logger.debug(`[user-hooks] command stdin closed: ${err.message}`);
|
|
222
|
+
});
|
|
208
223
|
try {
|
|
209
|
-
child.stdin.
|
|
210
|
-
child.stdin.end();
|
|
224
|
+
child.stdin.end(JSON.stringify({ event, ...context }));
|
|
211
225
|
}
|
|
212
226
|
catch {
|
|
213
227
|
// stdin may already be closed
|
|
@@ -16,13 +16,14 @@ import { logger } from '../utils/logger.js';
|
|
|
16
16
|
// ============================================================================
|
|
17
17
|
// Defaults
|
|
18
18
|
// ============================================================================
|
|
19
|
+
// AGENTS.md and INSTRUCTIONS.md are intentionally NOT here — they are owned by
|
|
20
|
+
// the unified project-context loader (src/context/project-context.ts). Identity
|
|
21
|
+
// covers only the soul/identity tier.
|
|
19
22
|
const DEFAULT_IDENTITY_FILES = [
|
|
20
23
|
'SOUL.md',
|
|
21
24
|
'USER.md',
|
|
22
|
-
'AGENTS.md',
|
|
23
25
|
'TOOLS.md',
|
|
24
26
|
'IDENTITY.md',
|
|
25
|
-
'INSTRUCTIONS.md',
|
|
26
27
|
'BOOT.md',
|
|
27
28
|
'BOOTSTRAP.md',
|
|
28
29
|
'HEARTBEAT.md',
|