@ai-setting/roy-agent-core 1.0.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/dist/index.js +99145 -0
- package/package.json +114 -0
- package/src/config/config-component.test.ts +627 -0
- package/src/config/config-component.ts +906 -0
- package/src/config/config-parser.test.ts +319 -0
- package/src/config/config-parser.ts +203 -0
- package/src/config/decentralized-config.test.ts +740 -0
- package/src/config/env-key.ts +210 -0
- package/src/config/env-source.test.ts +252 -0
- package/src/config/env-source.ts +301 -0
- package/src/config/file-source.test.ts +357 -0
- package/src/config/file-source.ts +421 -0
- package/src/config/index.ts +24 -0
- package/src/config/protocol-resolver.test.ts +217 -0
- package/src/config/protocol-resolver.ts +228 -0
- package/src/env/agent/agent-component.abort.test.ts +511 -0
- package/src/env/agent/agent-component.record-session.test.ts +349 -0
- package/src/env/agent/agent-component.test.ts +1389 -0
- package/src/env/agent/agent-component.tool-error.test.ts +327 -0
- package/src/env/agent/agent-component.ts +1711 -0
- package/src/env/agent/agent-config-registration.test.ts +226 -0
- package/src/env/agent/agent-config-registration.ts +46 -0
- package/src/env/agent/agent-reminder-plugin.integration.test.ts +243 -0
- package/src/env/agent/index.ts +10 -0
- package/src/env/agent/summary-agent.parse-hint.test.ts +360 -0
- package/src/env/agent/summary-agent.ts +508 -0
- package/src/env/agent/types.ts +536 -0
- package/src/env/commands/commands-component.test.ts +364 -0
- package/src/env/commands/commands-component.ts +604 -0
- package/src/env/commands/commands-config-registration.test.ts +198 -0
- package/src/env/commands/commands-config-registration.ts +38 -0
- package/src/env/commands/index.ts +21 -0
- package/src/env/commands/parser.test.ts +203 -0
- package/src/env/commands/parser.ts +115 -0
- package/src/env/commands/types.ts +184 -0
- package/src/env/commands-prompt-integration.test.ts +243 -0
- package/src/env/component-env.test.ts +119 -0
- package/src/env/component.ts +335 -0
- package/src/env/constants.test.ts +72 -0
- package/src/env/constants.ts +123 -0
- package/src/env/debug/debug-component.test.ts +114 -0
- package/src/env/debug/debug-component.ts +547 -0
- package/src/env/debug/formatters/index.ts +9 -0
- package/src/env/debug/formatters/repl-formatter.test.ts +139 -0
- package/src/env/debug/formatters/repl-formatter.ts +358 -0
- package/src/env/debug/formatters/trace-formatter.test.ts +119 -0
- package/src/env/debug/formatters/trace-formatter.ts +191 -0
- package/src/env/debug/formatters/tree-formatter.test.ts +107 -0
- package/src/env/debug/formatters/tree-formatter.ts +325 -0
- package/src/env/debug/index.ts +38 -0
- package/src/env/debug/parser/regex-parser.test.ts +201 -0
- package/src/env/debug/parser/regex-parser.ts +196 -0
- package/src/env/debug/parser/span-builder.test.ts +241 -0
- package/src/env/debug/parser/span-builder.ts +386 -0
- package/src/env/debug/reader/log-reader.test.ts +170 -0
- package/src/env/debug/reader/log-reader.ts +186 -0
- package/src/env/debug/reader/span-db-reader.test.ts +118 -0
- package/src/env/debug/reader/span-db-reader.ts +201 -0
- package/src/env/debug/types.test.ts +187 -0
- package/src/env/debug/types.ts +171 -0
- package/src/env/environment-init.test.ts +183 -0
- package/src/env/environment-lifecycle.test.ts +516 -0
- package/src/env/environment-service.test.ts +332 -0
- package/src/env/environment.handle-query.test.ts +96 -0
- package/src/env/environment.test.ts +232 -0
- package/src/env/environment.ts +708 -0
- package/src/env/errors.test.ts +165 -0
- package/src/env/errors.ts +157 -0
- package/src/env/event-source/event-source-agent-handler.test.ts +193 -0
- package/src/env/event-source/event-source-agent-handler.ts +111 -0
- package/src/env/event-source/event-source-component.process-cleanup.test.ts +236 -0
- package/src/env/event-source/event-source-component.stop.test.ts +346 -0
- package/src/env/event-source/event-source-component.test.ts +1207 -0
- package/src/env/event-source/event-source-component.ts +1379 -0
- package/src/env/event-source/event-source-config-registration.test.ts +242 -0
- package/src/env/event-source/event-source-config-registration.ts +37 -0
- package/src/env/event-source/event-source-integration.test.ts +320 -0
- package/src/env/event-source/event-source-platform.test.ts +630 -0
- package/src/env/event-source/types.ts +298 -0
- package/src/env/hook/global-hook-manager.ts +162 -0
- package/src/env/hook/hook-manager.test.ts +374 -0
- package/src/env/hook/hook-manager.ts +309 -0
- package/src/env/hook/index.ts +38 -0
- package/src/env/hook/types.ts +138 -0
- package/src/env/index.ts +144 -0
- package/src/env/interface.ts +203 -0
- package/src/env/llm/hooks.test.ts +293 -0
- package/src/env/llm/hooks.ts +316 -0
- package/src/env/llm/index.ts +61 -0
- package/src/env/llm/invoke-threshold-check.test.ts +88 -0
- package/src/env/llm/invoke-timeout.test.ts +54 -0
- package/src/env/llm/invoke.test.ts +71 -0
- package/src/env/llm/invoke.ts +1039 -0
- package/src/env/llm/llm-config.test.ts +523 -0
- package/src/env/llm/llm.test.ts +233 -0
- package/src/env/llm/llm.ts +568 -0
- package/src/env/llm/provider.test.ts +182 -0
- package/src/env/llm/provider.ts +108 -0
- package/src/env/llm/transform.test.ts +251 -0
- package/src/env/llm/transform.ts +286 -0
- package/src/env/llm/types.test.ts +580 -0
- package/src/env/llm/types.ts +424 -0
- package/src/env/log-trace/decorator-otel.test.ts +182 -0
- package/src/env/log-trace/decorator.ts +230 -0
- package/src/env/log-trace/index.ts +79 -0
- package/src/env/log-trace/log-trace-component.test.ts +242 -0
- package/src/env/log-trace/log-trace-component.ts +497 -0
- package/src/env/log-trace/log-trace-config-registration.test.ts +348 -0
- package/src/env/log-trace/log-trace-config-registration.ts +45 -0
- package/src/env/log-trace/logger.test.ts +149 -0
- package/src/env/log-trace/logger.ts +522 -0
- package/src/env/log-trace/opentelemetry/cli-propagation.test.ts +147 -0
- package/src/env/log-trace/opentelemetry/cli-propagation.ts +194 -0
- package/src/env/log-trace/opentelemetry/integration.test.ts +668 -0
- package/src/env/log-trace/opentelemetry/mod.ts +25 -0
- package/src/env/log-trace/opentelemetry/propagation-env.test.ts +181 -0
- package/src/env/log-trace/opentelemetry/propagation-env.ts +136 -0
- package/src/env/log-trace/opentelemetry/propagation.test.ts +259 -0
- package/src/env/log-trace/opentelemetry/propagation.ts +215 -0
- package/src/env/log-trace/opentelemetry/tracer-provider-context.test.ts +166 -0
- package/src/env/log-trace/opentelemetry/tracer-provider.test.ts +379 -0
- package/src/env/log-trace/opentelemetry/tracer-provider.ts +612 -0
- package/src/env/log-trace/span-storage.test.ts +145 -0
- package/src/env/log-trace/span-storage.ts +230 -0
- package/src/env/log-trace/trace-context.test.ts +187 -0
- package/src/env/log-trace/trace-context.ts +162 -0
- package/src/env/log-trace/types.test.ts +63 -0
- package/src/env/log-trace/types.ts +172 -0
- package/src/env/mcp/README.md +244 -0
- package/src/env/mcp/__integration__/mcp-component.integration.test.ts +373 -0
- package/src/env/mcp/config.test.ts +74 -0
- package/src/env/mcp/config.ts +116 -0
- package/src/env/mcp/index.ts +41 -0
- package/src/env/mcp/loader.test.ts +161 -0
- package/src/env/mcp/loader.ts +209 -0
- package/src/env/mcp/mcp-component.test.ts +111 -0
- package/src/env/mcp/mcp-component.ts +358 -0
- package/src/env/mcp/mcp-config-registration.test.ts +304 -0
- package/src/env/mcp/mcp-config-registration.ts +50 -0
- package/src/env/mcp/scanner.test.ts +170 -0
- package/src/env/mcp/scanner.ts +246 -0
- package/src/env/mcp/tool/adapter.test.ts +520 -0
- package/src/env/mcp/tool/adapter.ts +521 -0
- package/src/env/mcp/tool/index.ts +5 -0
- package/src/env/mcp/types.test.ts +171 -0
- package/src/env/mcp/types.ts +79 -0
- package/src/env/memory/README.md +177 -0
- package/src/env/memory/built-in/index.ts +59 -0
- package/src/env/memory/built-in/recall-memory.ts +103 -0
- package/src/env/memory/built-in/record-memory.ts +148 -0
- package/src/env/memory/index.ts +20 -0
- package/src/env/memory/memory-component.test.ts +239 -0
- package/src/env/memory/memory-component.ts +503 -0
- package/src/env/memory/memory-config-registration.test.ts +67 -0
- package/src/env/memory/memory-config-registration.ts +48 -0
- package/src/env/memory/memory-config.ts +45 -0
- package/src/env/memory/memory-file.test.ts +268 -0
- package/src/env/memory/plugin/index.ts +48 -0
- package/src/env/memory/plugin/memory-agent.test.ts +249 -0
- package/src/env/memory/plugin/memory-agent.ts +365 -0
- package/src/env/memory/plugin/memory-manager.ts +198 -0
- package/src/env/memory/plugin/memory-plugin-agent.test.ts +145 -0
- package/src/env/memory/plugin/memory-plugin.ts +210 -0
- package/src/env/memory/plugin/plugin-simplified.test.ts +51 -0
- package/src/env/memory/plugin/recall-memory.test.ts +106 -0
- package/src/env/memory/plugin/recall-memory.ts +53 -0
- package/src/env/memory/plugin/types.ts +101 -0
- package/src/env/memory/tools/memory-agent-tools.ts +228 -0
- package/src/env/memory/types.ts +85 -0
- package/src/env/paths.ts +118 -0
- package/src/env/prompt/index.ts +18 -0
- package/src/env/prompt/memory-prompts.test.ts +91 -0
- package/src/env/prompt/prompt-component.test.ts +491 -0
- package/src/env/prompt/prompt-component.ts +619 -0
- package/src/env/prompt/prompt-config-registration.test.ts +213 -0
- package/src/env/prompt/prompt-config-registration.ts +39 -0
- package/src/env/prompt/prompts-index.ts +504 -0
- package/src/env/prompt/renderer.ts +67 -0
- package/src/env/prompt/types.ts +136 -0
- package/src/env/session/hooks.ts +18 -0
- package/src/env/session/index.ts +37 -0
- package/src/env/session/search-query-parser.test.ts +425 -0
- package/src/env/session/search-query-parser.ts +171 -0
- package/src/env/session/session-checkpoint.test.ts +523 -0
- package/src/env/session/session-component.extract-recent-messages.test.ts +209 -0
- package/src/env/session/session-component.test.ts +132 -0
- package/src/env/session/session-component.ts +1249 -0
- package/src/env/session/session-config-registration.test.ts +138 -0
- package/src/env/session/session-config-registration.ts +52 -0
- package/src/env/session/session-message-converter.test.ts +763 -0
- package/src/env/session/session-message-converter.ts +415 -0
- package/src/env/session/session-message-e2e.test.ts +448 -0
- package/src/env/session/session-search.test.ts +391 -0
- package/src/env/session/session-store.test.ts +362 -0
- package/src/env/session/session-store.ts +141 -0
- package/src/env/session/storage/index.ts +6 -0
- package/src/env/session/storage/memory.ts +502 -0
- package/src/env/session/storage/sqlite.ts +794 -0
- package/src/env/session/types.ts +742 -0
- package/src/env/skill/config.ts +39 -0
- package/src/env/skill/index.ts +6 -0
- package/src/env/skill/parser.test.ts +116 -0
- package/src/env/skill/parser.ts +77 -0
- package/src/env/skill/scanner.test.ts +211 -0
- package/src/env/skill/scanner.ts +119 -0
- package/src/env/skill/skill-component.test.ts +234 -0
- package/src/env/skill/skill-component.ts +352 -0
- package/src/env/skill/skill-config-registration.test.ts +60 -0
- package/src/env/skill/skill-config-registration.ts +43 -0
- package/src/env/skill/tool/index.ts +1 -0
- package/src/env/skill/tool/skill-tool.test.ts +100 -0
- package/src/env/skill/tool/skill-tool.ts +72 -0
- package/src/env/skill/types.ts +64 -0
- package/src/env/task/delegate/delegate-tool.test.ts +498 -0
- package/src/env/task/delegate/delegate-tool.ts +1014 -0
- package/src/env/task/delegate/index.ts +18 -0
- package/src/env/task/delegate/stop-tool.test.ts +140 -0
- package/src/env/task/delegate/stop-tool.ts +119 -0
- package/src/env/task/delegate/task-events.test.ts +178 -0
- package/src/env/task/delegate/task-events.ts +143 -0
- package/src/env/task/hooks/contexts.test.ts +92 -0
- package/src/env/task/hooks/contexts.ts +192 -0
- package/src/env/task/hooks/index.ts +23 -0
- package/src/env/task/hooks/task-hook-points.test.ts +32 -0
- package/src/env/task/hooks/task-hook-points.ts +54 -0
- package/src/env/task/index.ts +7 -0
- package/src/env/task/plugins/index.ts +13 -0
- package/src/env/task/plugins/task-plugin.test.ts +74 -0
- package/src/env/task/plugins/task-plugin.ts +89 -0
- package/src/env/task/plugins/task-tag-plugin.test.ts +377 -0
- package/src/env/task/plugins/task-tag-plugin.ts +319 -0
- package/src/env/task/plugins/task-workflow-extractor.integration.test.ts +226 -0
- package/src/env/task/plugins/workflow-extractor-agent.test.ts +107 -0
- package/src/env/task/plugins/workflow-extractor-agent.ts +225 -0
- package/src/env/task/storage/index.ts +6 -0
- package/src/env/task/storage/sqlite-task-store.test.ts +283 -0
- package/src/env/task/storage/sqlite-task-store.ts +903 -0
- package/src/env/task/storage/task-search.test.ts +291 -0
- package/src/env/task/tag-service.test.ts +198 -0
- package/src/env/task/tag-service.ts +264 -0
- package/src/env/task/task-component.test.ts +193 -0
- package/src/env/task/task-component.ts +658 -0
- package/src/env/task/task-config-registration.test.ts +57 -0
- package/src/env/task/task-config-registration.ts +37 -0
- package/src/env/task/task-types.test.ts +137 -0
- package/src/env/task/tools/complete-tool.ts +44 -0
- package/src/env/task/tools/create-tool.ts +49 -0
- package/src/env/task/tools/delete-tool.ts +43 -0
- package/src/env/task/tools/get-tool.ts +59 -0
- package/src/env/task/tools/index.ts +10 -0
- package/src/env/task/tools/list-tool.ts +40 -0
- package/src/env/task/tools/operation/create-tool.ts +48 -0
- package/src/env/task/tools/operation/delete-tool.ts +43 -0
- package/src/env/task/tools/operation/get-tool.ts +43 -0
- package/src/env/task/tools/operation/index.ts +9 -0
- package/src/env/task/tools/operation/list-tool.ts +40 -0
- package/src/env/task/tools/operation/operation-tools.test.ts +274 -0
- package/src/env/task/tools/operation/operation-types.ts +75 -0
- package/src/env/task/tools/operation/update-tool.ts +47 -0
- package/src/env/task/tools/task-tools.test.ts +203 -0
- package/src/env/task/tools/task-types.test.ts +75 -0
- package/src/env/task/tools/task-types.ts +68 -0
- package/src/env/task/tools/update-tool.ts +70 -0
- package/src/env/task/types.ts +160 -0
- package/src/env/tool/built-in/bash.ts +201 -0
- package/src/env/tool/built-in/echo.ts +29 -0
- package/src/env/tool/built-in/edit-file.test.ts +136 -0
- package/src/env/tool/built-in/edit-file.ts +92 -0
- package/src/env/tool/built-in/glob.test.ts +94 -0
- package/src/env/tool/built-in/glob.ts +65 -0
- package/src/env/tool/built-in/grep.test.ts +122 -0
- package/src/env/tool/built-in/grep.ts +108 -0
- package/src/env/tool/built-in/index.ts +44 -0
- package/src/env/tool/built-in/read-file.test.ts +84 -0
- package/src/env/tool/built-in/read-file.ts +75 -0
- package/src/env/tool/built-in/write-file.test.ts +119 -0
- package/src/env/tool/built-in/write-file.ts +68 -0
- package/src/env/tool/index.ts +24 -0
- package/src/env/tool/registry.test.ts +257 -0
- package/src/env/tool/registry.ts +167 -0
- package/src/env/tool/tool-component.test.ts +559 -0
- package/src/env/tool/tool-component.ts +563 -0
- package/src/env/tool/tool-config-registration.test.ts +249 -0
- package/src/env/tool/tool-config-registration.ts +46 -0
- package/src/env/tool/types.ts +267 -0
- package/src/env/tool/validator.test.ts +143 -0
- package/src/env/tool/validator.ts +44 -0
- package/src/env/types.ts +180 -0
- package/src/env/workflow/ask-user-tool-registration.test.ts +216 -0
- package/src/env/workflow/complex-workflow.integration.test.ts +1900 -0
- package/src/env/workflow/decorators/decorator-node.ts +229 -0
- package/src/env/workflow/decorators/decorator.test.ts +196 -0
- package/src/env/workflow/decorators/edge.ts +82 -0
- package/src/env/workflow/decorators/index.ts +31 -0
- package/src/env/workflow/decorators/node-as.ts +98 -0
- package/src/env/workflow/decorators/workflow.ts +54 -0
- package/src/env/workflow/engine/dag-manager.test.ts +570 -0
- package/src/env/workflow/engine/dag-manager.ts +594 -0
- package/src/env/workflow/engine/engine.ts +1422 -0
- package/src/env/workflow/engine/event-bus.test.ts +359 -0
- package/src/env/workflow/engine/event-bus.ts +156 -0
- package/src/env/workflow/engine/executor-agent-session.test.ts +84 -0
- package/src/env/workflow/engine/executor.test.ts +619 -0
- package/src/env/workflow/engine/executor.ts +593 -0
- package/src/env/workflow/engine/index.ts +24 -0
- package/src/env/workflow/engine/node-registry.test.ts +560 -0
- package/src/env/workflow/engine/node-registry.ts +289 -0
- package/src/env/workflow/engine/resume-removed.test.ts +22 -0
- package/src/env/workflow/engine/scheduler.test.ts +715 -0
- package/src/env/workflow/engine/scheduler.ts +318 -0
- package/src/env/workflow/engine/workflow-engine.test.ts +815 -0
- package/src/env/workflow/extractor/workflow-converter.ts +306 -0
- package/src/env/workflow/fixtures.ts +380 -0
- package/src/env/workflow/index.ts +38 -0
- package/src/env/workflow/integration/run-resume-unified.test.ts +186 -0
- package/src/env/workflow/integration/service-integration.test.ts +267 -0
- package/src/env/workflow/metadata/keys.ts +12 -0
- package/src/env/workflow/nodes/agent-component-adapter.test.ts +318 -0
- package/src/env/workflow/nodes/agent-component-adapter.ts +448 -0
- package/src/env/workflow/nodes/agent-node.test.ts +371 -0
- package/src/env/workflow/nodes/agent-node.ts +598 -0
- package/src/env/workflow/nodes/ask-user-node.ts +113 -0
- package/src/env/workflow/nodes/condition-node.ts +200 -0
- package/src/env/workflow/nodes/index.ts +9 -0
- package/src/env/workflow/nodes/merge-node.ts +141 -0
- package/src/env/workflow/nodes/skill-node.test.ts +253 -0
- package/src/env/workflow/nodes/skill-node.ts +393 -0
- package/src/env/workflow/nodes/tool-node.test.ts +251 -0
- package/src/env/workflow/nodes/tool-node.ts +493 -0
- package/src/env/workflow/nodes/workflow-llm-history.test.ts +455 -0
- package/src/env/workflow/nodes/workflow-node.test.ts +315 -0
- package/src/env/workflow/nodes/workflow-node.ts +311 -0
- package/src/env/workflow/service/index.ts +27 -0
- package/src/env/workflow/service/registry.test.ts +133 -0
- package/src/env/workflow/service/registry.ts +71 -0
- package/src/env/workflow/service/workflow-service.test.ts +310 -0
- package/src/env/workflow/service/workflow-service.ts +393 -0
- package/src/env/workflow/storage/index.ts +28 -0
- package/src/env/workflow/storage/mock-repositories.ts +385 -0
- package/src/env/workflow/storage/sqlite.test.ts +179 -0
- package/src/env/workflow/storage/sqlite.ts +163 -0
- package/src/env/workflow/storage/workflow-repo.test.ts +780 -0
- package/src/env/workflow/storage/workflow-repo.ts +342 -0
- package/src/env/workflow/tools/ask-user-tool.ts +82 -0
- package/src/env/workflow/tools/index.ts +26 -0
- package/src/env/workflow/tools/run-workflow.test.ts +352 -0
- package/src/env/workflow/tools/run-workflow.ts +214 -0
- package/src/env/workflow/types/context.ts +18 -0
- package/src/env/workflow/types/decorators-types.ts +198 -0
- package/src/env/workflow/types/event.test.ts +515 -0
- package/src/env/workflow/types/event.ts +193 -0
- package/src/env/workflow/types/index.ts +49 -0
- package/src/env/workflow/types/run.test.ts +437 -0
- package/src/env/workflow/types/run.ts +173 -0
- package/src/env/workflow/types/workflow-hil.ts +114 -0
- package/src/env/workflow/types/workflow-message.test.ts +138 -0
- package/src/env/workflow/types/workflow-message.ts +196 -0
- package/src/env/workflow/types/workflow-session.test.ts +95 -0
- package/src/env/workflow/types/workflow-session.ts +59 -0
- package/src/env/workflow/types/workflow.test.ts +495 -0
- package/src/env/workflow/types/workflow.ts +195 -0
- package/src/env/workflow/types_compat.ts +51 -0
- package/src/env/workflow/utils/create-workflow.ts +47 -0
- package/src/env/workflow/utils/execution-state.ts +245 -0
- package/src/env/workflow/utils/index.ts +18 -0
- package/src/env/workflow/utils/node-registry-helper.ts +58 -0
- package/src/env/workflow/utils/recovery-validator.test.ts +460 -0
- package/src/env/workflow/utils/recovery-validator.ts +377 -0
- package/src/env/workflow/utils/session-parser.test.ts +111 -0
- package/src/env/workflow/utils/session-parser.ts +94 -0
- package/src/env/workflow/utils/session-recovery.test.ts +334 -0
- package/src/env/workflow/utils/session-recovery.ts +188 -0
- package/src/env/workflow/utils/template-resolver.test.ts +258 -0
- package/src/env/workflow/utils/template-resolver.ts +436 -0
- package/src/env/workflow/utils/validation-rules.ts +149 -0
- package/src/env/workflow/workflow-component.ts +544 -0
- package/src/index.ts +422 -0
- package/src/utils/id.ts +21 -0
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview TaskTagPlugin Tests
|
|
3
|
+
*
|
|
4
|
+
* 测试覆盖(简化版):
|
|
5
|
+
* 1. Hook 注册和执行
|
|
6
|
+
* 2. delegateBefore: 类似任务信息注入(仅 ID、描述、目标)
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
import { describe, test, expect, vi, beforeEach } from "bun:test";
|
|
10
|
+
import { TaskTagPlugin } from "./task-tag-plugin";
|
|
11
|
+
import { TaskHookPoints } from "../hooks";
|
|
12
|
+
import type { HookContext } from "../../hook/types";
|
|
13
|
+
import type { TaskDelegateContext } from "../hooks/contexts";
|
|
14
|
+
|
|
15
|
+
// Mock logger
|
|
16
|
+
vi.mock("../../log-trace/logger", () => ({
|
|
17
|
+
createLogger: () => ({
|
|
18
|
+
debug: vi.fn(),
|
|
19
|
+
info: vi.fn(),
|
|
20
|
+
warn: vi.fn(),
|
|
21
|
+
}),
|
|
22
|
+
}));
|
|
23
|
+
|
|
24
|
+
describe("TaskTagPlugin", () => {
|
|
25
|
+
let plugin: TaskTagPlugin;
|
|
26
|
+
let mockTagService: any;
|
|
27
|
+
let mockTaskComponent: any;
|
|
28
|
+
|
|
29
|
+
beforeEach(() => {
|
|
30
|
+
plugin = new TaskTagPlugin();
|
|
31
|
+
|
|
32
|
+
mockTagService = {
|
|
33
|
+
findSimilarTasksByKeywords: vi.fn().mockResolvedValue([]),
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
mockTaskComponent = {
|
|
37
|
+
getTask: vi.fn(),
|
|
38
|
+
listOperations: vi.fn().mockResolvedValue([]),
|
|
39
|
+
createOperation: vi.fn(),
|
|
40
|
+
env: {
|
|
41
|
+
getComponent: vi.fn().mockReturnValue(null),
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
|
|
45
|
+
plugin.setComponents(null, mockTaskComponent);
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
// ========================================================================
|
|
49
|
+
// Hook 注册测试
|
|
50
|
+
// ========================================================================
|
|
51
|
+
|
|
52
|
+
test("should have correct name and hooks", () => {
|
|
53
|
+
expect(plugin.name).toBe("TaskTagPlugin");
|
|
54
|
+
expect(plugin.hooks).toHaveLength(2);
|
|
55
|
+
expect(plugin.hooks.map(h => h.point)).toContain(TaskHookPoints.DELEGATE_BEFORE);
|
|
56
|
+
expect(plugin.hooks.map(h => h.point)).toContain(TaskHookPoints.OPERATION_AFTER_CREATE);
|
|
57
|
+
});
|
|
58
|
+
|
|
59
|
+
test("should have static getRequiredAgents method", () => {
|
|
60
|
+
expect(typeof (TaskTagPlugin as any).getRequiredAgents).toBe("function");
|
|
61
|
+
const agents = (TaskTagPlugin as any).getRequiredAgents();
|
|
62
|
+
expect(agents).toHaveLength(1);
|
|
63
|
+
expect(agents[0].name).toBe("workflow-extractor");
|
|
64
|
+
});
|
|
65
|
+
|
|
66
|
+
test("should skip execution when disabled", async () => {
|
|
67
|
+
const disabledPlugin = new TaskTagPlugin({ enabled: false });
|
|
68
|
+
disabledPlugin.setComponents(null, mockTaskComponent);
|
|
69
|
+
|
|
70
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
71
|
+
component: { name: "task", version: "1.0.0" },
|
|
72
|
+
data: {
|
|
73
|
+
taskId: 123,
|
|
74
|
+
prompt: "Test prompt",
|
|
75
|
+
subagentType: "general",
|
|
76
|
+
background: false,
|
|
77
|
+
tagService: mockTagService,
|
|
78
|
+
},
|
|
79
|
+
metadata: {},
|
|
80
|
+
phase: "before",
|
|
81
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
82
|
+
};
|
|
83
|
+
|
|
84
|
+
await disabledPlugin.execute(ctx);
|
|
85
|
+
|
|
86
|
+
expect(mockTaskComponent.getTask).not.toHaveBeenCalled();
|
|
87
|
+
});
|
|
88
|
+
|
|
89
|
+
// ========================================================================
|
|
90
|
+
// delegateBefore 类似任务注入测试
|
|
91
|
+
// ========================================================================
|
|
92
|
+
|
|
93
|
+
test("should skip when no taskId", async () => {
|
|
94
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
95
|
+
component: { name: "task", version: "1.0.0" },
|
|
96
|
+
data: {
|
|
97
|
+
taskId: undefined,
|
|
98
|
+
prompt: "Test prompt",
|
|
99
|
+
tagService: mockTagService,
|
|
100
|
+
},
|
|
101
|
+
metadata: {},
|
|
102
|
+
phase: "before",
|
|
103
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
104
|
+
};
|
|
105
|
+
|
|
106
|
+
await plugin.execute(ctx);
|
|
107
|
+
|
|
108
|
+
expect(mockTaskComponent.getTask).not.toHaveBeenCalled();
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
test("should skip when task not found", async () => {
|
|
112
|
+
mockTaskComponent.getTask.mockResolvedValue(undefined);
|
|
113
|
+
|
|
114
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
115
|
+
component: { name: "task", version: "1.0.0" },
|
|
116
|
+
data: {
|
|
117
|
+
taskId: 123,
|
|
118
|
+
prompt: "Test prompt",
|
|
119
|
+
tagService: mockTagService,
|
|
120
|
+
},
|
|
121
|
+
metadata: {},
|
|
122
|
+
phase: "before",
|
|
123
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
await plugin.execute(ctx);
|
|
127
|
+
|
|
128
|
+
expect(mockTagService.findSimilarTasksByKeywords).not.toHaveBeenCalled();
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
test("should skip when no keywords available", async () => {
|
|
132
|
+
mockTaskComponent.getTask.mockResolvedValue({
|
|
133
|
+
id: 123,
|
|
134
|
+
title: "123",
|
|
135
|
+
tags: undefined,
|
|
136
|
+
});
|
|
137
|
+
|
|
138
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
139
|
+
component: { name: "task", version: "1.0.0" },
|
|
140
|
+
data: {
|
|
141
|
+
taskId: 123,
|
|
142
|
+
prompt: "Test prompt",
|
|
143
|
+
tagService: mockTagService,
|
|
144
|
+
},
|
|
145
|
+
metadata: {},
|
|
146
|
+
phase: "before",
|
|
147
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
await plugin.execute(ctx);
|
|
151
|
+
|
|
152
|
+
expect(mockTagService.findSimilarTasksByKeywords).not.toHaveBeenCalled();
|
|
153
|
+
});
|
|
154
|
+
|
|
155
|
+
test("should search using tags as keywords", async () => {
|
|
156
|
+
mockTaskComponent.getTask.mockResolvedValue({
|
|
157
|
+
id: 123,
|
|
158
|
+
title: "Fix login bug",
|
|
159
|
+
tags: ["bug", "authentication"],
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
163
|
+
component: { name: "task", version: "1.0.0" },
|
|
164
|
+
data: {
|
|
165
|
+
taskId: 123,
|
|
166
|
+
prompt: "Test prompt",
|
|
167
|
+
tagService: mockTagService,
|
|
168
|
+
},
|
|
169
|
+
metadata: {},
|
|
170
|
+
phase: "before",
|
|
171
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
await plugin.execute(ctx);
|
|
175
|
+
|
|
176
|
+
expect(mockTagService.findSimilarTasksByKeywords).toHaveBeenCalledWith(
|
|
177
|
+
expect.arrayContaining(["bug", "authentication"]),
|
|
178
|
+
{ limit: 5, excludeTaskId: 123 }
|
|
179
|
+
);
|
|
180
|
+
});
|
|
181
|
+
|
|
182
|
+
test("should search using title words as keywords", async () => {
|
|
183
|
+
mockTaskComponent.getTask.mockResolvedValue({
|
|
184
|
+
id: 123,
|
|
185
|
+
title: "Fix login bug",
|
|
186
|
+
tags: [],
|
|
187
|
+
});
|
|
188
|
+
|
|
189
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
190
|
+
component: { name: "task", version: "1.0.0" },
|
|
191
|
+
data: {
|
|
192
|
+
taskId: 123,
|
|
193
|
+
prompt: "Test prompt",
|
|
194
|
+
tagService: mockTagService,
|
|
195
|
+
},
|
|
196
|
+
metadata: {},
|
|
197
|
+
phase: "before",
|
|
198
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
199
|
+
};
|
|
200
|
+
|
|
201
|
+
await plugin.execute(ctx);
|
|
202
|
+
|
|
203
|
+
expect(mockTagService.findSimilarTasksByKeywords).toHaveBeenCalledWith(
|
|
204
|
+
expect.arrayContaining(["login", "bug"]),
|
|
205
|
+
{ limit: 5, excludeTaskId: 123 }
|
|
206
|
+
);
|
|
207
|
+
});
|
|
208
|
+
|
|
209
|
+
test("should skip when no similar tasks found", async () => {
|
|
210
|
+
mockTaskComponent.getTask.mockResolvedValue({
|
|
211
|
+
id: 123,
|
|
212
|
+
title: "Fix bug",
|
|
213
|
+
tags: ["bug"],
|
|
214
|
+
});
|
|
215
|
+
|
|
216
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
217
|
+
component: { name: "task", version: "1.0.0" },
|
|
218
|
+
data: {
|
|
219
|
+
taskId: 123,
|
|
220
|
+
prompt: "Test prompt",
|
|
221
|
+
tagService: mockTagService,
|
|
222
|
+
},
|
|
223
|
+
metadata: {},
|
|
224
|
+
phase: "before",
|
|
225
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
226
|
+
};
|
|
227
|
+
|
|
228
|
+
await plugin.execute(ctx);
|
|
229
|
+
|
|
230
|
+
expect(ctx.data.prompt).toBe("Test prompt");
|
|
231
|
+
});
|
|
232
|
+
|
|
233
|
+
test("should inject similar tasks info (simplified)", async () => {
|
|
234
|
+
const similarTasks = [
|
|
235
|
+
{ id: 10, title: "Fix similar bug #1", description: "Bug description", goals_and_expected_deliverables: "Goal 1" },
|
|
236
|
+
{ id: 11, title: "Fix similar bug #2", description: "Another bug" },
|
|
237
|
+
];
|
|
238
|
+
mockTaskComponent.getTask.mockResolvedValue({
|
|
239
|
+
id: 123,
|
|
240
|
+
title: "Fix bug",
|
|
241
|
+
tags: ["bug"],
|
|
242
|
+
});
|
|
243
|
+
mockTagService.findSimilarTasksByKeywords.mockResolvedValue(similarTasks);
|
|
244
|
+
|
|
245
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
246
|
+
component: { name: "task", version: "1.0.0" },
|
|
247
|
+
data: {
|
|
248
|
+
taskId: 123,
|
|
249
|
+
prompt: "Fix this bug",
|
|
250
|
+
subagentType: "general",
|
|
251
|
+
background: false,
|
|
252
|
+
tagService: mockTagService,
|
|
253
|
+
},
|
|
254
|
+
metadata: {},
|
|
255
|
+
phase: "before",
|
|
256
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
257
|
+
};
|
|
258
|
+
|
|
259
|
+
await plugin.execute(ctx);
|
|
260
|
+
|
|
261
|
+
// 验证 prompt 被修改,包含类似任务信息
|
|
262
|
+
expect(ctx.data.prompt).toContain("类似任务参考");
|
|
263
|
+
expect(ctx.data.prompt).toContain("Task #10");
|
|
264
|
+
expect(ctx.data.prompt).toContain("Task #11");
|
|
265
|
+
expect(ctx.data.prompt).toContain("Description");
|
|
266
|
+
expect(ctx.data.prompt).toContain("Goal");
|
|
267
|
+
expect(ctx.data.prompt).toContain("task_operation_list"); // 提醒获取操作记录
|
|
268
|
+
expect(ctx.data.prompt).toContain("Fix this bug"); // 原 prompt 保留
|
|
269
|
+
});
|
|
270
|
+
|
|
271
|
+
// ========================================================================
|
|
272
|
+
// 关键词提取测试
|
|
273
|
+
// ========================================================================
|
|
274
|
+
|
|
275
|
+
test("should combine tags and title words", async () => {
|
|
276
|
+
mockTaskComponent.getTask.mockResolvedValue({
|
|
277
|
+
id: 123,
|
|
278
|
+
title: "Implement user authentication",
|
|
279
|
+
tags: ["backend", "security"],
|
|
280
|
+
});
|
|
281
|
+
|
|
282
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
283
|
+
component: { name: "task", version: "1.0.0" },
|
|
284
|
+
data: {
|
|
285
|
+
taskId: 123,
|
|
286
|
+
prompt: "Test prompt",
|
|
287
|
+
tagService: mockTagService,
|
|
288
|
+
},
|
|
289
|
+
metadata: {},
|
|
290
|
+
phase: "before",
|
|
291
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
292
|
+
};
|
|
293
|
+
|
|
294
|
+
await plugin.execute(ctx);
|
|
295
|
+
|
|
296
|
+
const calledKeywords = mockTagService.findSimilarTasksByKeywords.mock.calls[0][0];
|
|
297
|
+
expect(calledKeywords).toContain("backend");
|
|
298
|
+
expect(calledKeywords).toContain("security");
|
|
299
|
+
expect(calledKeywords).toContain("user");
|
|
300
|
+
expect(calledKeywords).toContain("authentication");
|
|
301
|
+
});
|
|
302
|
+
|
|
303
|
+
test("should filter numeric-only title words", async () => {
|
|
304
|
+
mockTaskComponent.getTask.mockResolvedValue({
|
|
305
|
+
id: 123,
|
|
306
|
+
title: "Fix issue #1234",
|
|
307
|
+
tags: ["bug"],
|
|
308
|
+
});
|
|
309
|
+
|
|
310
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
311
|
+
component: { name: "task", version: "1.0.0" },
|
|
312
|
+
data: {
|
|
313
|
+
taskId: 123,
|
|
314
|
+
prompt: "Test prompt",
|
|
315
|
+
tagService: mockTagService,
|
|
316
|
+
},
|
|
317
|
+
metadata: {},
|
|
318
|
+
phase: "before",
|
|
319
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
320
|
+
};
|
|
321
|
+
|
|
322
|
+
await plugin.execute(ctx);
|
|
323
|
+
|
|
324
|
+
const calledKeywords = mockTagService.findSimilarTasksByKeywords.mock.calls[0][0];
|
|
325
|
+
expect(calledKeywords).not.toContain("1234");
|
|
326
|
+
expect(calledKeywords).toContain("bug");
|
|
327
|
+
});
|
|
328
|
+
|
|
329
|
+
// ========================================================================
|
|
330
|
+
// 错误处理测试
|
|
331
|
+
// ========================================================================
|
|
332
|
+
|
|
333
|
+
test("should handle getTask error gracefully", async () => {
|
|
334
|
+
mockTaskComponent.getTask.mockRejectedValue(new Error("DB error"));
|
|
335
|
+
|
|
336
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
337
|
+
component: { name: "task", version: "1.0.0" },
|
|
338
|
+
data: {
|
|
339
|
+
taskId: 123,
|
|
340
|
+
prompt: "Test prompt",
|
|
341
|
+
tagService: mockTagService,
|
|
342
|
+
},
|
|
343
|
+
metadata: {},
|
|
344
|
+
phase: "before",
|
|
345
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
346
|
+
};
|
|
347
|
+
|
|
348
|
+
await plugin.execute(ctx);
|
|
349
|
+
|
|
350
|
+
expect(ctx.data.prompt).toBe("Test prompt");
|
|
351
|
+
});
|
|
352
|
+
|
|
353
|
+
test("should handle search error gracefully", async () => {
|
|
354
|
+
mockTaskComponent.getTask.mockResolvedValue({
|
|
355
|
+
id: 123,
|
|
356
|
+
title: "Fix bug",
|
|
357
|
+
tags: ["bug"],
|
|
358
|
+
});
|
|
359
|
+
mockTagService.findSimilarTasksByKeywords.mockRejectedValue(new Error("Search error"));
|
|
360
|
+
|
|
361
|
+
const ctx: HookContext<TaskDelegateContext> = {
|
|
362
|
+
component: { name: "task", version: "1.0.0" },
|
|
363
|
+
data: {
|
|
364
|
+
taskId: 123,
|
|
365
|
+
prompt: "Test prompt",
|
|
366
|
+
tagService: mockTagService,
|
|
367
|
+
},
|
|
368
|
+
metadata: {},
|
|
369
|
+
phase: "before",
|
|
370
|
+
hookPoint: TaskHookPoints.DELEGATE_BEFORE,
|
|
371
|
+
};
|
|
372
|
+
|
|
373
|
+
await plugin.execute(ctx);
|
|
374
|
+
|
|
375
|
+
expect(ctx.data.prompt).toBe("Test prompt");
|
|
376
|
+
});
|
|
377
|
+
});
|
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview TaskTagPlugin - 类似任务信息注入
|
|
3
|
+
*
|
|
4
|
+
* Hook 逻辑实现:
|
|
5
|
+
* - delegateBefore: 注入类似任务信息(使用 keywords 检索,最多 5 个)
|
|
6
|
+
* - operationAfterCreate: 任务完成时提取 Workflow
|
|
7
|
+
*
|
|
8
|
+
* 改造说明:
|
|
9
|
+
* - 移除 beforeCreate hook 中的 tag 替换逻辑
|
|
10
|
+
* - 移除 afterCreate hook 中的 tag 同步逻辑
|
|
11
|
+
* - 简化 delegateBefore:只注入任务 ID、描述和目标,不注入操作记录
|
|
12
|
+
* - 提示可通过 task_get 命令获取详细信息
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { TaskPlugin, type TaskPluginConfig } from "./task-plugin";
|
|
16
|
+
import type { HookContext } from "../../hook/types";
|
|
17
|
+
import { TaskHookPoints } from "../hooks";
|
|
18
|
+
import type {
|
|
19
|
+
TaskDelegateContext,
|
|
20
|
+
TaskOperationCreateResultContext
|
|
21
|
+
} from "../hooks/contexts";
|
|
22
|
+
import { createLogger } from "../../log-trace/logger";
|
|
23
|
+
import type { AgentComponent } from "../../agent/agent-component";
|
|
24
|
+
import type { SessionComponent } from "../../session/session-component";
|
|
25
|
+
import {
|
|
26
|
+
createWorkflowExtractorAgent,
|
|
27
|
+
formatExtractorInput,
|
|
28
|
+
parseExtractorOutput,
|
|
29
|
+
} from "./workflow-extractor-agent";
|
|
30
|
+
import type { Task } from "../types";
|
|
31
|
+
|
|
32
|
+
const logger = createLogger("task:plugin:tag");
|
|
33
|
+
|
|
34
|
+
// ========================================================================
|
|
35
|
+
// 接口定义
|
|
36
|
+
// ========================================================================
|
|
37
|
+
|
|
38
|
+
interface TaskComponentLike {
|
|
39
|
+
getTask(id: number): Promise<Task | undefined>;
|
|
40
|
+
listOperations(options: { taskId: number; limit?: number }): Promise<Array<{
|
|
41
|
+
id: number;
|
|
42
|
+
taskId: number;
|
|
43
|
+
actionType: string;
|
|
44
|
+
actionTitle: string;
|
|
45
|
+
actionDescription: string;
|
|
46
|
+
}>>;
|
|
47
|
+
createOperation(options: any): Promise<any>;
|
|
48
|
+
env?: {
|
|
49
|
+
getComponent(name: string): unknown;
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
interface TagServiceLike {
|
|
54
|
+
findSimilarTasksByKeywords(keywords: string[], options?: { limit?: number; excludeTaskId?: number }): Promise<Task[]>;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// ========================================================================
|
|
58
|
+
// TaskTagPlugin
|
|
59
|
+
// ========================================================================
|
|
60
|
+
|
|
61
|
+
export class TaskTagPlugin extends TaskPlugin {
|
|
62
|
+
readonly name = "TaskTagPlugin";
|
|
63
|
+
readonly hooks = [
|
|
64
|
+
{ point: TaskHookPoints.DELEGATE_BEFORE, priority: 20 },
|
|
65
|
+
{ point: TaskHookPoints.OPERATION_AFTER_CREATE, priority: 10 },
|
|
66
|
+
];
|
|
67
|
+
|
|
68
|
+
private taskComponent: TaskComponentLike | null = null;
|
|
69
|
+
private agentComponent: AgentComponent | null = null;
|
|
70
|
+
|
|
71
|
+
constructor(config: TaskPluginConfig = {}) {
|
|
72
|
+
super({ enabled: true, priority: 0, ...config });
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
static getRequiredAgents() {
|
|
76
|
+
return [createWorkflowExtractorAgent()];
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
setComponents(_llmComponent: unknown, taskComponent: TaskComponentLike | null): void {
|
|
80
|
+
this.taskComponent = taskComponent;
|
|
81
|
+
if (taskComponent?.env) {
|
|
82
|
+
this.agentComponent = taskComponent.env.getComponent("agent") as AgentComponent | null;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
async execute(ctx: any): Promise<void> {
|
|
87
|
+
if (!this.config.enabled) return;
|
|
88
|
+
|
|
89
|
+
switch (ctx.hookPoint) {
|
|
90
|
+
case TaskHookPoints.DELEGATE_BEFORE:
|
|
91
|
+
await this.onDelegateBefore(ctx as HookContext<TaskDelegateContext>);
|
|
92
|
+
break;
|
|
93
|
+
case TaskHookPoints.OPERATION_AFTER_CREATE:
|
|
94
|
+
await this.onOperationAfterCreate(ctx as HookContext<TaskOperationCreateResultContext>);
|
|
95
|
+
break;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// ========================================================================
|
|
100
|
+
// delegateBefore: 注入类似任务信息(简洁版)
|
|
101
|
+
// ========================================================================
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* 委派前:注入类似任务信息
|
|
105
|
+
*
|
|
106
|
+
* 1. 从 task.tags 和 title 提取关键词
|
|
107
|
+
* 2. 检索最多 5 个类似任务
|
|
108
|
+
* 3. 只注入任务 ID、描述和目标
|
|
109
|
+
* 4. 提示可通过 task_get 获取详细信息
|
|
110
|
+
*/
|
|
111
|
+
private async onDelegateBefore(ctx: HookContext<TaskDelegateContext>): Promise<void> {
|
|
112
|
+
const { taskId, tagService, prompt } = ctx.data as any;
|
|
113
|
+
|
|
114
|
+
if (!taskId || !this.taskComponent) {
|
|
115
|
+
return;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
try {
|
|
119
|
+
// 1. 获取当前 task
|
|
120
|
+
const currentTask = await this.taskComponent.getTask(taskId);
|
|
121
|
+
if (!currentTask) return;
|
|
122
|
+
|
|
123
|
+
// 2. 提取关键词
|
|
124
|
+
const keywords = this.extractKeywords(currentTask);
|
|
125
|
+
if (keywords.length === 0) return;
|
|
126
|
+
|
|
127
|
+
// 3. 检索类似任务(最多 5 个)
|
|
128
|
+
const tagServiceForSearch = tagService as TagServiceLike;
|
|
129
|
+
const similarTasks = await tagServiceForSearch?.findSimilarTasksByKeywords?.(keywords, {
|
|
130
|
+
limit: 5,
|
|
131
|
+
excludeTaskId: taskId,
|
|
132
|
+
}) ?? [];
|
|
133
|
+
|
|
134
|
+
if (similarTasks.length === 0) return;
|
|
135
|
+
|
|
136
|
+
// 4. 构建提示
|
|
137
|
+
const hint = this.formatSimilarTasks(similarTasks);
|
|
138
|
+
|
|
139
|
+
// 5. 修改 prompt - 类似任务在前,用户指令在后
|
|
140
|
+
(ctx.data as any).prompt = `${hint}
|
|
141
|
+
|
|
142
|
+
---
|
|
143
|
+
|
|
144
|
+
## 用户指令
|
|
145
|
+
|
|
146
|
+
${prompt}`;
|
|
147
|
+
|
|
148
|
+
logger.info(`[TaskTagPlugin] Injected ${similarTasks.length} similar tasks`);
|
|
149
|
+
} catch (error) {
|
|
150
|
+
logger.warn(`[TaskTagPlugin] Similar tasks injection failed: ${error}`);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* 从 task 提取关键词
|
|
156
|
+
*/
|
|
157
|
+
private extractKeywords(task: Task): string[] {
|
|
158
|
+
const keywords: string[] = [];
|
|
159
|
+
|
|
160
|
+
// 添加 tags
|
|
161
|
+
if (task.tags?.length) {
|
|
162
|
+
keywords.push(...task.tags);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// 从 title 提取有意义的词
|
|
166
|
+
if (task.title) {
|
|
167
|
+
const words = task.title
|
|
168
|
+
.split(/[\s\-_,,。、#]+/)
|
|
169
|
+
.filter(w => w.length > 2 && !/^\d+$/.test(w))
|
|
170
|
+
.slice(0, 5);
|
|
171
|
+
keywords.push(...words);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
return keywords;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/**
|
|
178
|
+
* 格式化类似任务(简洁版)
|
|
179
|
+
*
|
|
180
|
+
* 注入格式:
|
|
181
|
+
* - Task ID: 用于引用和检索
|
|
182
|
+
* - Title: 任务标题
|
|
183
|
+
* - Description: 任务描述(截断至 100 字符)
|
|
184
|
+
* - Goal: 目标(截断至 100 字符)
|
|
185
|
+
* - 提醒:通过 task_get 和 task_operation_list 获取详细信息
|
|
186
|
+
*/
|
|
187
|
+
private formatSimilarTasks(tasks: Task[]): string {
|
|
188
|
+
const lines = [
|
|
189
|
+
"## 🔍 类似任务参考",
|
|
190
|
+
"",
|
|
191
|
+
"_提示:可通过 `task_get <id>` 获取详情,`task_operation_list <id>` 获取操作记录_",
|
|
192
|
+
"",
|
|
193
|
+
];
|
|
194
|
+
|
|
195
|
+
for (const task of tasks) {
|
|
196
|
+
lines.push(`### Task #${task.id}`);
|
|
197
|
+
lines.push(`**Title**: ${task.title}`);
|
|
198
|
+
|
|
199
|
+
if (task.description) {
|
|
200
|
+
const desc = task.description.slice(0, 100);
|
|
201
|
+
lines.push(`**Description**: ${desc}${task.description.length > 100 ? "..." : ""}`);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
if (task.goals_and_expected_deliverables) {
|
|
205
|
+
const goal = task.goals_and_expected_deliverables.slice(0, 100);
|
|
206
|
+
lines.push(`**Goal**: ${goal}${task.goals_and_expected_deliverables.length > 100 ? "..." : ""}`);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
lines.push("");
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
return lines.join("\n");
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
// ========================================================================
|
|
216
|
+
// operationAfterCreate: 任务完成时提取 Workflow
|
|
217
|
+
// ========================================================================
|
|
218
|
+
|
|
219
|
+
private async onOperationAfterCreate(ctx: HookContext<TaskOperationCreateResultContext>): Promise<void> {
|
|
220
|
+
const data = ctx.data as any;
|
|
221
|
+
const operation = data?.operation ?? data?.data?.operation;
|
|
222
|
+
|
|
223
|
+
if (!operation || operation?.actionType !== "completed") return;
|
|
224
|
+
|
|
225
|
+
await this.extractWorkflow(operation.taskId, operation.sessionId);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
private async extractWorkflow(taskId: number, sessionId?: string): Promise<void> {
|
|
229
|
+
try {
|
|
230
|
+
const task = await this.taskComponent?.getTask(taskId);
|
|
231
|
+
if (!task) return;
|
|
232
|
+
|
|
233
|
+
const operations = await this.taskComponent?.listOperations({ taskId }) ?? [];
|
|
234
|
+
const allSessionIds = [...new Set([sessionId, ...operations.map((op: any) => op.sessionId).filter(Boolean)])];
|
|
235
|
+
|
|
236
|
+
const sessionComponent = this.taskComponent?.env?.getComponent("session") as SessionComponent | undefined;
|
|
237
|
+
const allMessages: any[] = [];
|
|
238
|
+
|
|
239
|
+
for (const sid of allSessionIds) {
|
|
240
|
+
try {
|
|
241
|
+
const ctx = await sessionComponent?.getContext(sid, { fullHistory: false, minUserMessages: 200 });
|
|
242
|
+
if (ctx?.messages) allMessages.push(...ctx.messages);
|
|
243
|
+
} catch { /* skip */ }
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
if (!this.agentComponent) return;
|
|
247
|
+
|
|
248
|
+
const input = formatExtractorInput({ task, operations: operations as any, messages: allMessages });
|
|
249
|
+
const result = await this.agentComponent.run("workflow-extractor", input);
|
|
250
|
+
const workflowDef = await parseExtractorOutput(result.finalText || "");
|
|
251
|
+
|
|
252
|
+
if (!workflowDef) return;
|
|
253
|
+
|
|
254
|
+
const workflowRepo = await this.getWorkflowRepository();
|
|
255
|
+
if (!workflowRepo) return;
|
|
256
|
+
|
|
257
|
+
let version = workflowDef.version || "1.0";
|
|
258
|
+
const existingWf = workflowRepo.getByName(workflowDef.name);
|
|
259
|
+
if (existingWf) {
|
|
260
|
+
const parts = existingWf.version?.split(".") ?? ["1", "0"];
|
|
261
|
+
version = `${parts[0]}.${parseInt(parts[1] || "0") + 1}`;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
const workflow = workflowRepo.create({
|
|
265
|
+
name: workflowDef.name,
|
|
266
|
+
version,
|
|
267
|
+
description: workflowDef.description,
|
|
268
|
+
definition: workflowDef,
|
|
269
|
+
config: workflowDef.config || {},
|
|
270
|
+
metadata: { author: "workflow-extractor", created_at: new Date().toISOString() },
|
|
271
|
+
tags: [`task:${taskId}`],
|
|
272
|
+
});
|
|
273
|
+
|
|
274
|
+
await this.taskComponent?.createOperation({
|
|
275
|
+
taskId,
|
|
276
|
+
sessionId,
|
|
277
|
+
actionType: "workflow_extracted",
|
|
278
|
+
actionTitle: `Workflow extracted: ${workflow.name}`,
|
|
279
|
+
actionDescription: workflow.id,
|
|
280
|
+
});
|
|
281
|
+
|
|
282
|
+
logger.info(`Workflow extracted: ${workflow.id}`);
|
|
283
|
+
} catch (error) {
|
|
284
|
+
logger.warn(`Workflow extraction failed: ${error}`);
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
private async getWorkflowRepository(): Promise<any> {
|
|
289
|
+
const workflowComponent = this.taskComponent?.env?.getComponent("workflow") as any;
|
|
290
|
+
if (workflowComponent?.workflowService?.workflowRepository) {
|
|
291
|
+
return workflowComponent.workflowService.workflowRepository;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
if (!this._workflowRepo) {
|
|
295
|
+
try {
|
|
296
|
+
const sqlite = await import("../../workflow/storage/sqlite");
|
|
297
|
+
this.ensureDataDir();
|
|
298
|
+
const db = sqlite.getDatabase();
|
|
299
|
+
sqlite.initializeTables();
|
|
300
|
+
const { WorkflowRepository } = await import("../../workflow/storage/workflow-repo");
|
|
301
|
+
this._workflowRepo = new WorkflowRepository(db);
|
|
302
|
+
return this._workflowRepo;
|
|
303
|
+
} catch {
|
|
304
|
+
return null;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
return this._workflowRepo;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
private ensureDataDir(): void {
|
|
311
|
+
const { join } = require("path");
|
|
312
|
+
const { mkdirSync, existsSync } = require("fs");
|
|
313
|
+
const home = process.env.HOME || process.env.USERPROFILE || "/tmp";
|
|
314
|
+
const dataDir = join(home, ".local", "share", "roy-agent");
|
|
315
|
+
if (!existsSync(dataDir)) mkdirSync(dataDir, { recursive: true });
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
private _workflowRepo: any = null;
|
|
319
|
+
}
|