qlogicagent 2.10.34 → 2.10.35
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/package.json +3 -2
- package/dist/types/agent/memory-recall-context.test.d.ts +0 -1
- package/dist/types/agent/tool-loop.contract.test.d.ts +0 -1
- package/dist/types/cli/acp-extended-host-adapter.test.d.ts +0 -1
- package/dist/types/cli/acp-session-handlers.test.d.ts +0 -1
- package/dist/types/cli/agent-status-notifier.test.d.ts +0 -1
- package/dist/types/cli/cli-acp-request-handler.test.d.ts +0 -1
- package/dist/types/cli/community-skill-installer.test.d.ts +0 -1
- package/dist/types/cli/core-tools/cron-workflow-service.test.d.ts +0 -1
- package/dist/types/cli/dev-tools/repl-lsp-tool-services.test.d.ts +0 -1
- package/dist/types/cli/handlers/community-handler.test.d.ts +0 -1
- package/dist/types/cli/handlers/config-handler.test.d.ts +0 -1
- package/dist/types/cli/handlers/config-handler.tools-list.test.d.ts +0 -1
- package/dist/types/cli/handlers/files-handler.instructions.test.d.ts +0 -1
- package/dist/types/cli/handlers/media-handler.test.d.ts +0 -1
- package/dist/types/cli/handlers/pet-handler.test.d.ts +0 -1
- package/dist/types/cli/handlers/session-handler.resume.test.d.ts +0 -1
- package/dist/types/cli/handlers/settings-handler.remote-catalog.test.d.ts +0 -1
- package/dist/types/cli/handlers/skills-handler.profile.test.d.ts +0 -1
- package/dist/types/cli/handlers/turn-handler.approval.test.d.ts +0 -1
- package/dist/types/cli/handlers/workflow-handler.events.test.d.ts +0 -1
- package/dist/types/cli/idle-dream-coordinator.test.d.ts +0 -1
- package/dist/types/cli/mcp-plugin-bootstrap.test.d.ts +0 -1
- package/dist/types/cli/media-file-api-service.test.d.ts +0 -1
- package/dist/types/cli/multi-agent-handler-host.test.d.ts +0 -1
- package/dist/types/cli/permission-bootstrap.test.d.ts +0 -1
- package/dist/types/cli/permission-settings-store.test.d.ts +0 -1
- package/dist/types/cli/pet-confirm-coordinator.test.d.ts +0 -1
- package/dist/types/cli/pet-runtime.test.d.ts +0 -1
- package/dist/types/cli/session-coordinator.test.d.ts +0 -1
- package/dist/types/cli/session-history-coordinator.test.d.ts +0 -1
- package/dist/types/cli/skill-meta-tool-bootstrap.test.d.ts +0 -1
- package/dist/types/cli/stdio-server.contract.test.d.ts +0 -1
- package/dist/types/cli/tool-bootstrap.instructions.test.d.ts +0 -1
- package/dist/types/cli/tool-bootstrap.media-provider-alias.test.d.ts +0 -1
- package/dist/types/cli/tool-registration-modules.contract.test.d.ts +0 -1
- package/dist/types/cli/turn-lifecycle.test.d.ts +0 -1
- package/dist/types/cli/turn-media-setup.test.d.ts +0 -1
- package/dist/types/cli/turn-permission-sync.test.d.ts +0 -1
- package/dist/types/cli/turn-project-router.test.d.ts +0 -1
- package/dist/types/cli/turn-skill-autopersist.test.d.ts +0 -1
- package/dist/types/permissions.public-api.test.d.ts +0 -1
- package/dist/types/protocol/wire/gateway-contract.test.d.ts +0 -1
- package/dist/types/runtime/community/community-consent-client.test.d.ts +0 -1
- package/dist/types/runtime/community/community-desensitization-red-team-cli.test.d.ts +0 -1
- package/dist/types/runtime/community/community-desensitization.test.d.ts +0 -1
- package/dist/types/runtime/execution/tool-eligibility.test.d.ts +0 -1
- package/dist/types/runtime/infra/agent-paths.test.d.ts +0 -1
- package/dist/types/runtime/infra/model-registry.test.d.ts +0 -1
- package/dist/types/runtime/infra/profile-storage.test.d.ts +0 -1
- package/dist/types/runtime/infra/skill-injector.test.d.ts +0 -1
- package/dist/types/runtime/pet/pet-growth-engine.test.d.ts +0 -1
- package/dist/types/runtime/pet/pet-reaction-service.test.d.ts +0 -1
- package/dist/types/runtime/pet/pet-soul-service.test.d.ts +0 -1
- package/dist/types/runtime/prompt/environment-context.test.d.ts +0 -1
- package/dist/types/runtime/prompt/fresh-workspace-evidence.test.d.ts +0 -1
- package/dist/types/runtime/prompt/instruction-loader.test.d.ts +0 -1
- package/dist/types/runtime/session/session-persistence.test.d.ts +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qlogicagent",
|
|
3
|
-
"version": "2.10.
|
|
3
|
+
"version": "2.10.35",
|
|
4
4
|
"description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -61,13 +61,14 @@
|
|
|
61
61
|
"build:tsc": "tsc --noCheck",
|
|
62
62
|
"start": "node dist/cli.js",
|
|
63
63
|
"test": "vitest run",
|
|
64
|
-
"check": "tsc --noEmit && pnpm test && pnpm run check:architecture-boundaries && pnpm run check:provider-core-boundary && pnpm run check:workspace-hygiene",
|
|
64
|
+
"check": "tsc --noEmit && pnpm test && pnpm run check:architecture-boundaries && pnpm run check:provider-core-boundary && pnpm run check:workspace-hygiene && pnpm run check:package-artifact",
|
|
65
65
|
"test:watch": "vitest",
|
|
66
66
|
"lint": "oxlint .",
|
|
67
67
|
"check:architecture-boundaries": "node scripts/check-architecture-boundaries.mjs",
|
|
68
68
|
"check:provider-core-boundary": "node scripts/check-provider-core-boundary.mjs",
|
|
69
69
|
"check:workspace-hygiene": "node scripts/check-workspace-hygiene.mjs",
|
|
70
70
|
"check:workspace-hygiene:strict": "node scripts/check-workspace-hygiene.mjs --strict",
|
|
71
|
+
"check:package-artifact": "npm run build && node scripts/check-package-artifact.mjs",
|
|
71
72
|
"redteam:community-desensitization": "tsx src/runtime/community/community-desensitization-red-team-cli.ts",
|
|
72
73
|
"redteam:community-sandbox": "tsx src/skills/permissions/community-sandbox-red-team-cli.ts",
|
|
73
74
|
"clean:workspace-hygiene": "node scripts/clean-workspace-hygiene.mjs",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|