qlogicagent 2.0.0 → 2.2.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 +8 -8
- package/dist/agent.js +8 -8
- package/dist/cli.js +250 -203
- package/dist/contracts.js +1 -1
- package/dist/index.js +249 -202
- package/dist/orchestration.js +6 -6
- package/dist/types/agent/types.d.ts +3 -1
- package/dist/types/cli/stdio-server.d.ts +27 -8
- package/dist/types/cli/tool-bootstrap.d.ts +8 -0
- package/dist/types/contracts/hooks.d.ts +3 -0
- package/dist/types/contracts/index.d.ts +0 -1
- package/dist/types/contracts/todo.d.ts +8 -21
- package/dist/types/llm/adapters/aliyun-oss-file-upload-adapter.d.ts +44 -0
- package/dist/types/llm/adapters/gemini-file-upload-adapter.d.ts +26 -0
- package/dist/types/llm/adapters/hub-oss-file-upload-adapter.d.ts +29 -0
- package/dist/types/llm/adapters/index.d.ts +10 -0
- package/dist/types/llm/adapters/openai-file-upload-adapter.d.ts +38 -0
- package/dist/types/llm/adapters/volcengine-file-upload-adapter.d.ts +24 -0
- package/dist/types/llm/file-upload-service.d.ts +68 -0
- package/dist/types/llm/transports/anthropic-messages.d.ts +4 -0
- package/dist/types/llm/transports/gemini-generatecontent.d.ts +4 -0
- package/dist/types/llm/transports/media-resolve.d.ts +50 -0
- package/dist/types/llm/transports/openai-chat.d.ts +4 -0
- package/dist/types/llm/transports/openai-responses.d.ts +3 -0
- package/dist/types/llm/transports/volcengine-responses.d.ts +4 -0
- package/dist/types/orchestration/tool-loop/tool-schema.d.ts +1 -0
- package/dist/types/protocol/methods.d.ts +70 -0
- package/dist/types/protocol/notifications.d.ts +42 -0
- package/dist/types/runtime/execution/dream-agent.d.ts +2 -0
- package/dist/types/runtime/execution/dream-category-context.d.ts +47 -0
- package/dist/types/runtime/execution/dream-category-context.test.d.ts +1 -0
- package/dist/types/runtime/execution/index.d.ts +1 -0
- package/dist/types/runtime/execution/memory-decay.d.ts +57 -0
- package/dist/types/runtime/execution/memory-decay.test.d.ts +1 -0
- package/dist/types/runtime/hooks/index.d.ts +1 -0
- package/dist/types/runtime/hooks/memory-hooks.d.ts +20 -0
- package/dist/types/runtime/hooks/skill-recall-hooks.d.ts +36 -0
- package/dist/types/runtime/infra/agent-paths.d.ts +20 -2
- package/dist/types/runtime/infra/disk-storage.d.ts +0 -16
- package/dist/types/runtime/infra/index.d.ts +4 -2
- package/dist/types/runtime/infra/media-persistence.d.ts +71 -0
- package/dist/types/runtime/infra/project-instructions-store.d.ts +30 -0
- package/dist/types/runtime/infra/project-plan-store.d.ts +27 -0
- package/dist/types/runtime/infra/project-store.d.ts +30 -0
- package/dist/types/runtime/session/session-persistence.d.ts +3 -1
- package/dist/types/skills/index.d.ts +7 -9
- package/dist/types/skills/memory/categories.d.ts +5 -0
- package/dist/types/skills/memory/find-relevant-memories.d.ts +70 -0
- package/dist/types/skills/memory/memdir.d.ts +85 -0
- package/dist/types/skills/memory/memory-tool.d.ts +16 -44
- package/dist/types/skills/memory/qmemory-adapter.d.ts +12 -0
- package/dist/types/skills/memory/recall-category-filter.d.ts +54 -0
- package/dist/types/skills/permissions/group-security-policy.d.ts +15 -0
- package/dist/types/skills/permissions/index.d.ts +1 -0
- package/dist/types/skills/plugins/plugin-loader.d.ts +5 -0
- package/dist/types/skills/portable-tool.d.ts +13 -2
- package/dist/types/skills/tools/plan-mode-tool.d.ts +1 -1
- package/dist/types/skills/tools/read-tool.d.ts +2 -2
- package/dist/types/skills/tools/skill-tool.d.ts +16 -3
- package/dist/types/skills/tools/task-tool.d.ts +64 -75
- package/package.json +1 -1
- package/dist/types/contracts/planner.d.ts +0 -35
- package/dist/types/orchestration/error-handling/failover-error.d.ts +0 -33
- package/dist/types/skills/memory/memory-store.d.ts +0 -86
- package/dist/types/skills/todo-tool.d.ts +0 -72
- package/dist/types/skills/tools/skill-invoke-tool.d.ts +0 -46
- package/dist/types/skills/tools/skill-list-tool.d.ts +0 -33
- package/dist/types/skills/tools/skill-manage-tool.d.ts +0 -73
- package/dist/types/skills/tools/skill-view-tool.d.ts +0 -37
package/dist/contracts.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var
|
|
1
|
+
var i=["create","update","delete","list","get"];var r={type:"object",properties:{action:{type:"string",enum:[...i],description:"create \u2014 add a new task (auto-assigns id). update \u2014 modify a task by id (partial, supports dependency wiring). delete \u2014 remove a task by id (cascades block refs). list \u2014 read current task list with summary. get \u2014 get a single task by id."},id:{type:"number",description:"[update|delete|get] Task id to operate on."},title:{type:"string",description:"[create|update] Task title (3-7 words, imperative form)."},description:{type:"string",description:"[create|update] Detailed task description."},status:{type:"string",enum:["not-started","in-progress","completed"],description:"[create|update] Task status. create defaults to not-started."},owner:{type:"string",description:"[create|update] Owner agent/subagent identifier."},addBlocks:{type:"array",items:{type:"number"},description:"[update] Task IDs that this task should block (they depend on this task)."},addBlockedBy:{type:"array",items:{type:"number"},description:"[update] Task IDs that should block this task (this task depends on them)."}},required:["action"]};function s(e){let o=new Set(e.filter(t=>t.status==="completed").map(t=>t.id));return{total:e.length,completed:e.filter(t=>t.status==="completed").length,inProgress:e.filter(t=>t.status==="in-progress").length,notStarted:e.filter(t=>t.status==="not-started").length,blocked:e.filter(t=>t.status!=="completed"&&t.blockedBy?.some(n=>!o.has(n))).length}}var l=["not-started","in-progress","completed"],c=s;export{l as TODO_ITEM_STATUS_VALUES,c as summarizeTodoList};
|