qlogicagent 2.23.4 → 2.23.6
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 +1 -1
- package/dist/agent.js +43 -43
- package/dist/cli.js +7 -7
- package/dist/index.js +307 -309
- package/dist/types/agent/tool-loop.d.ts +2 -0
- package/dist/types/agent/types.d.ts +5 -2
- package/dist/types/cli/acp-session-handlers.d.ts +2 -2
- package/dist/types/cli/acp-session-host.d.ts +1 -0
- package/dist/types/cli/handlers/turn-handler.d.ts +2 -14
- package/dist/types/cli/stdio-server.d.ts +1 -1
- package/dist/types/cli/turn-core.d.ts +2 -0
- package/dist/types/contracts/tool-schema-load.d.ts +6 -0
- package/dist/types/protocol/wire/acp-protocol.d.ts +12 -0
- package/dist/types/protocol/wire/index.d.ts +1 -1
- package/dist/types/runtime/infra/context-ledger.d.ts +27 -0
- package/dist/types/runtime/prompt/capability-schema-directory.d.ts +17 -0
- package/dist/types/runtime/prompt/environment-context.d.ts +3 -87
- package/dist/types/runtime/prompt/prompt-policy.d.ts +1 -1
- package/dist/types/runtime/prompt/system-prompt-sections.d.ts +1 -1
- package/dist/types/skills/permissions/hook-runner.d.ts +3 -0
- package/dist/types/skills/permissions/operation-classifier.d.ts +2 -0
- package/dist/types/skills/tools/tool-schema-load-tool.d.ts +6 -0
- package/dist/types/skills/tools.d.ts +3 -2
- package/dist/types/transport/acp-server.d.ts +2 -2
- package/package.json +1 -1
- package/dist/types/runtime/prompt/task-domain.d.ts +0 -20
package/README.md
CHANGED
|
@@ -183,7 +183,7 @@ src/
|
|
|
183
183
|
│ ├── session/ # session-state / session-persistence / session-memory / locator
|
|
184
184
|
│ ├── hooks/ # hook-registry / memory-hooks / 上下文压缩 hooks
|
|
185
185
|
│ ├── execution/ # forked-agent / streaming-tool-executor
|
|
186
|
-
│ ├── prompt/ # instruction-loader / system-prompt-sections /
|
|
186
|
+
│ ├── prompt/ # instruction-loader / system-prompt-sections / capability-schema-directory
|
|
187
187
|
│ ├── infra/ # model-registry / task-runtime / background-tasks / agent-paths
|
|
188
188
|
│ ├── ports/ # 端口契约 (memory / model-transport / permission ...)
|
|
189
189
|
│ └── config/ # tunable-defaults 等运行时配置
|