macro-agent 0.0.11 → 0.0.13
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/.macro-agent/teams/self-driving/prompts/grinder.md +27 -0
- package/.macro-agent/teams/self-driving/prompts/judge.md +27 -0
- package/.macro-agent/teams/self-driving/prompts/planner.md +33 -0
- package/.macro-agent/teams/self-driving/roles/grinder.yaml +17 -0
- package/.macro-agent/teams/self-driving/roles/judge.yaml +24 -0
- package/.macro-agent/teams/self-driving/roles/planner.yaml +18 -0
- package/.macro-agent/teams/self-driving/team.yaml +103 -0
- package/.macro-agent/teams/structured/prompts/developer.md +26 -0
- package/.macro-agent/teams/structured/prompts/lead.md +25 -0
- package/.macro-agent/teams/structured/prompts/reviewer.md +24 -0
- package/.macro-agent/teams/structured/roles/developer.yaml +12 -0
- package/.macro-agent/teams/structured/roles/lead.yaml +11 -0
- package/.macro-agent/teams/structured/roles/reviewer.yaml +19 -0
- package/.macro-agent/teams/structured/team.yaml +89 -0
- package/.sudocode/issues.jsonl +6 -0
- package/.sudocode/specs.jsonl +7 -0
- package/CLAUDE.md +110 -30
- package/README.md +60 -3
- package/dist/acp/macro-agent.d.ts +4 -0
- package/dist/acp/macro-agent.d.ts.map +1 -1
- package/dist/acp/macro-agent.js +50 -4
- package/dist/acp/macro-agent.js.map +1 -1
- package/dist/acp/session-mapper.d.ts +20 -1
- package/dist/acp/session-mapper.d.ts.map +1 -1
- package/dist/acp/session-mapper.js +90 -1
- package/dist/acp/session-mapper.js.map +1 -1
- package/dist/acp/types.d.ts +24 -1
- package/dist/acp/types.d.ts.map +1 -1
- package/dist/acp/types.js.map +1 -1
- package/dist/agent/agent-manager.d.ts +25 -1
- package/dist/agent/agent-manager.d.ts.map +1 -1
- package/dist/agent/agent-manager.js +93 -7
- package/dist/agent/agent-manager.js.map +1 -1
- package/dist/agent/types.d.ts +22 -0
- package/dist/agent/types.d.ts.map +1 -1
- package/dist/agent/types.js.map +1 -1
- package/dist/agent-detection/command-builder.d.ts +30 -0
- package/dist/agent-detection/command-builder.d.ts.map +1 -0
- package/dist/agent-detection/command-builder.js +71 -0
- package/dist/agent-detection/command-builder.js.map +1 -0
- package/dist/agent-detection/detector.d.ts +84 -0
- package/dist/agent-detection/detector.d.ts.map +1 -0
- package/dist/agent-detection/detector.js +240 -0
- package/dist/agent-detection/detector.js.map +1 -0
- package/dist/agent-detection/index.d.ts +12 -0
- package/dist/agent-detection/index.d.ts.map +1 -0
- package/dist/agent-detection/index.js +14 -0
- package/dist/agent-detection/index.js.map +1 -0
- package/dist/agent-detection/registry.d.ts +53 -0
- package/dist/agent-detection/registry.d.ts.map +1 -0
- package/dist/agent-detection/registry.js +177 -0
- package/dist/agent-detection/registry.js.map +1 -0
- package/dist/agent-detection/types.d.ts +121 -0
- package/dist/agent-detection/types.d.ts.map +1 -0
- package/dist/agent-detection/types.js +20 -0
- package/dist/agent-detection/types.js.map +1 -0
- package/dist/api/server.d.ts.map +1 -1
- package/dist/api/server.js +95 -0
- package/dist/api/server.js.map +1 -1
- package/dist/cli/index.js +29 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/mcp.js +38 -0
- package/dist/cli/mcp.js.map +1 -1
- package/dist/config/index.d.ts +2 -0
- package/dist/config/index.d.ts.map +1 -0
- package/dist/config/index.js +2 -0
- package/dist/config/index.js.map +1 -0
- package/dist/config/project-config.d.ts +46 -0
- package/dist/config/project-config.d.ts.map +1 -0
- package/dist/config/project-config.js +68 -0
- package/dist/config/project-config.js.map +1 -0
- package/dist/lifecycle/cascade.d.ts +1 -1
- package/dist/lifecycle/cascade.d.ts.map +1 -1
- package/dist/lifecycle/handlers/index.d.ts +4 -0
- package/dist/lifecycle/handlers/index.d.ts.map +1 -1
- package/dist/lifecycle/handlers/index.js +2 -0
- package/dist/lifecycle/handlers/index.js.map +1 -1
- package/dist/lifecycle/handlers/worker.d.ts +4 -0
- package/dist/lifecycle/handlers/worker.d.ts.map +1 -1
- package/dist/lifecycle/handlers/worker.js +35 -3
- package/dist/lifecycle/handlers/worker.js.map +1 -1
- package/dist/map/adapter/acp-over-map.d.ts.map +1 -1
- package/dist/map/adapter/acp-over-map.js +32 -2
- package/dist/map/adapter/acp-over-map.js.map +1 -1
- package/dist/map/adapter/event-translator.d.ts.map +1 -1
- package/dist/map/adapter/event-translator.js +1 -0
- package/dist/map/adapter/event-translator.js.map +1 -1
- package/dist/map/adapter/extensions/agent-detection.d.ts +49 -0
- package/dist/map/adapter/extensions/agent-detection.d.ts.map +1 -0
- package/dist/map/adapter/extensions/agent-detection.js +91 -0
- package/dist/map/adapter/extensions/agent-detection.js.map +1 -0
- package/dist/map/adapter/extensions/index.d.ts +10 -1
- package/dist/map/adapter/extensions/index.d.ts.map +1 -1
- package/dist/map/adapter/extensions/index.js +39 -0
- package/dist/map/adapter/extensions/index.js.map +1 -1
- package/dist/map/adapter/extensions/resume.d.ts +47 -0
- package/dist/map/adapter/extensions/resume.d.ts.map +1 -0
- package/dist/map/adapter/extensions/resume.js +59 -0
- package/dist/map/adapter/extensions/resume.js.map +1 -0
- package/dist/map/adapter/extensions/workspace-files.d.ts +42 -0
- package/dist/map/adapter/extensions/workspace-files.d.ts.map +1 -0
- package/dist/map/adapter/extensions/workspace-files.js +338 -0
- package/dist/map/adapter/extensions/workspace-files.js.map +1 -0
- package/dist/mcp/mcp-server.d.ts +6 -0
- package/dist/mcp/mcp-server.d.ts.map +1 -1
- package/dist/mcp/mcp-server.js +45 -0
- package/dist/mcp/mcp-server.js.map +1 -1
- package/dist/mcp/tools/claim_task.d.ts +35 -0
- package/dist/mcp/tools/claim_task.d.ts.map +1 -0
- package/dist/mcp/tools/claim_task.js +58 -0
- package/dist/mcp/tools/claim_task.js.map +1 -0
- package/dist/mcp/tools/done.d.ts +11 -2
- package/dist/mcp/tools/done.d.ts.map +1 -1
- package/dist/mcp/tools/done.js +15 -10
- package/dist/mcp/tools/done.js.map +1 -1
- package/dist/mcp/tools/list_claimable_tasks.d.ts +38 -0
- package/dist/mcp/tools/list_claimable_tasks.d.ts.map +1 -0
- package/dist/mcp/tools/list_claimable_tasks.js +63 -0
- package/dist/mcp/tools/list_claimable_tasks.js.map +1 -0
- package/dist/mcp/tools/unclaim_task.d.ts +31 -0
- package/dist/mcp/tools/unclaim_task.d.ts.map +1 -0
- package/dist/mcp/tools/unclaim_task.js +47 -0
- package/dist/mcp/tools/unclaim_task.js.map +1 -0
- package/dist/metrics/index.d.ts +2 -0
- package/dist/metrics/index.d.ts.map +1 -0
- package/dist/metrics/index.js +2 -0
- package/dist/metrics/index.js.map +1 -0
- package/dist/metrics/metrics.d.ts +79 -0
- package/dist/metrics/metrics.d.ts.map +1 -0
- package/dist/metrics/metrics.js +166 -0
- package/dist/metrics/metrics.js.map +1 -0
- package/dist/roles/capabilities.d.ts +1 -0
- package/dist/roles/capabilities.d.ts.map +1 -1
- package/dist/roles/capabilities.js +3 -0
- package/dist/roles/capabilities.js.map +1 -1
- package/dist/roles/types.d.ts +1 -1
- package/dist/roles/types.d.ts.map +1 -1
- package/dist/router/message-router.d.ts +41 -0
- package/dist/router/message-router.d.ts.map +1 -1
- package/dist/router/message-router.js +136 -5
- package/dist/router/message-router.js.map +1 -1
- package/dist/store/event-store.d.ts +8 -1
- package/dist/store/event-store.d.ts.map +1 -1
- package/dist/store/event-store.js +120 -4
- package/dist/store/event-store.js.map +1 -1
- package/dist/store/types/agents.d.ts +1 -1
- package/dist/store/types/agents.d.ts.map +1 -1
- package/dist/store/types/events.d.ts +1 -1
- package/dist/store/types/events.d.ts.map +1 -1
- package/dist/store/types/events.js.map +1 -1
- package/dist/store/types/index.d.ts +1 -0
- package/dist/store/types/index.d.ts.map +1 -1
- package/dist/store/types/index.js +1 -0
- package/dist/store/types/index.js.map +1 -1
- package/dist/store/types/sessions.d.ts +44 -0
- package/dist/store/types/sessions.d.ts.map +1 -0
- package/dist/store/types/sessions.js +9 -0
- package/dist/store/types/sessions.js.map +1 -0
- package/dist/store/types/tasks.d.ts +2 -0
- package/dist/store/types/tasks.d.ts.map +1 -1
- package/dist/task/backend/memory.d.ts +4 -1
- package/dist/task/backend/memory.d.ts.map +1 -1
- package/dist/task/backend/memory.js +81 -0
- package/dist/task/backend/memory.js.map +1 -1
- package/dist/task/backend/types.d.ts +30 -0
- package/dist/task/backend/types.d.ts.map +1 -1
- package/dist/task/backend/types.js.map +1 -1
- package/dist/teams/index.d.ts +4 -0
- package/dist/teams/index.d.ts.map +1 -0
- package/dist/teams/index.js +4 -0
- package/dist/teams/index.js.map +1 -0
- package/dist/teams/team-loader.d.ts +20 -0
- package/dist/teams/team-loader.d.ts.map +1 -0
- package/dist/teams/team-loader.js +293 -0
- package/dist/teams/team-loader.js.map +1 -0
- package/dist/teams/team-runtime.d.ts +139 -0
- package/dist/teams/team-runtime.d.ts.map +1 -0
- package/dist/teams/team-runtime.js +613 -0
- package/dist/teams/team-runtime.js.map +1 -0
- package/dist/teams/types.d.ts +266 -0
- package/dist/teams/types.d.ts.map +1 -0
- package/dist/teams/types.js +20 -0
- package/dist/teams/types.js.map +1 -0
- package/dist/workspace/dataplane-adapter.d.ts +1 -1
- package/dist/workspace/dataplane-adapter.d.ts.map +1 -1
- package/dist/workspace/dataplane-adapter.js +1 -1
- package/dist/workspace/dataplane-adapter.js.map +1 -1
- package/dist/workspace/index.d.ts +1 -1
- package/dist/workspace/index.d.ts.map +1 -1
- package/dist/workspace/strategies/index.d.ts +6 -0
- package/dist/workspace/strategies/index.d.ts.map +1 -0
- package/dist/workspace/strategies/index.js +5 -0
- package/dist/workspace/strategies/index.js.map +1 -0
- package/dist/workspace/strategies/optimistic.d.ts +26 -0
- package/dist/workspace/strategies/optimistic.d.ts.map +1 -0
- package/dist/workspace/strategies/optimistic.js +121 -0
- package/dist/workspace/strategies/optimistic.js.map +1 -0
- package/dist/workspace/strategies/queue.d.ts +26 -0
- package/dist/workspace/strategies/queue.d.ts.map +1 -0
- package/dist/workspace/strategies/queue.js +67 -0
- package/dist/workspace/strategies/queue.js.map +1 -0
- package/dist/workspace/strategies/registry.d.ts +37 -0
- package/dist/workspace/strategies/registry.d.ts.map +1 -0
- package/dist/workspace/strategies/registry.js +63 -0
- package/dist/workspace/strategies/registry.js.map +1 -0
- package/dist/workspace/strategies/trunk.d.ts +20 -0
- package/dist/workspace/strategies/trunk.d.ts.map +1 -0
- package/dist/workspace/strategies/trunk.js +108 -0
- package/dist/workspace/strategies/trunk.js.map +1 -0
- package/dist/workspace/strategies/types.d.ts +104 -0
- package/dist/workspace/strategies/types.d.ts.map +1 -0
- package/dist/workspace/strategies/types.js +11 -0
- package/dist/workspace/strategies/types.js.map +1 -0
- package/dist/workspace/types.d.ts +1 -1
- package/dist/workspace/types.d.ts.map +1 -1
- package/dist/workspace/workspace-manager.d.ts +1 -1
- package/dist/workspace/workspace-manager.d.ts.map +1 -1
- package/docs/implementation-details.md +1127 -0
- package/docs/implementation-summary.md +448 -0
- package/docs/plan-self-driving-support.md +433 -0
- package/docs/spec-self-driving-support.md +462 -0
- package/docs/team-templates.md +860 -0
- package/docs/teams.md +233 -0
- package/package.json +5 -3
- package/src/acp/__tests__/integration.test.ts +161 -1
- package/src/acp/__tests__/macro-agent.test.ts +95 -0
- package/src/acp/__tests__/session-persistence.test.ts +276 -0
- package/src/acp/macro-agent.ts +79 -7
- package/src/acp/session-mapper.ts +108 -1
- package/src/acp/types.ts +33 -1
- package/src/agent/agent-manager.ts +158 -6
- package/src/agent/types.ts +27 -0
- package/src/agent-detection/__tests__/command-builder.test.ts +336 -0
- package/src/agent-detection/__tests__/detector.test.ts +768 -0
- package/src/agent-detection/__tests__/registry.test.ts +254 -0
- package/src/agent-detection/command-builder.ts +90 -0
- package/src/agent-detection/detector.ts +307 -0
- package/src/agent-detection/index.ts +36 -0
- package/src/agent-detection/registry.ts +200 -0
- package/src/agent-detection/types.ts +184 -0
- package/src/api/server.ts +110 -0
- package/src/cli/index.ts +44 -0
- package/src/cli/mcp.ts +47 -0
- package/src/config/index.ts +9 -0
- package/src/config/project-config.ts +107 -0
- package/src/lifecycle/cascade.ts +1 -1
- package/src/lifecycle/handlers/index.ts +8 -0
- package/src/lifecycle/handlers/worker.ts +48 -3
- package/src/map/adapter/__tests__/extensions.test.ts +359 -0
- package/src/map/adapter/__tests__/workspace-files.test.ts +673 -0
- package/src/map/adapter/acp-over-map.ts +45 -2
- package/src/map/adapter/event-translator.ts +1 -0
- package/src/map/adapter/extensions/agent-detection.ts +201 -0
- package/src/map/adapter/extensions/index.ts +63 -0
- package/src/map/adapter/extensions/resume.ts +114 -0
- package/src/map/adapter/extensions/workspace-files.ts +449 -0
- package/src/mcp/mcp-server.ts +67 -0
- package/src/mcp/tools/claim_task.ts +86 -0
- package/src/mcp/tools/done.ts +24 -10
- package/src/mcp/tools/list_claimable_tasks.ts +93 -0
- package/src/mcp/tools/unclaim_task.ts +71 -0
- package/src/metrics/index.ts +9 -0
- package/src/metrics/metrics.ts +280 -0
- package/src/roles/capabilities.ts +3 -0
- package/src/roles/types.ts +2 -1
- package/src/router/__tests__/message-router.test.ts +561 -0
- package/src/router/message-router.ts +223 -6
- package/src/store/event-store.ts +151 -3
- package/src/store/types/agents.ts +1 -1
- package/src/store/types/events.ts +2 -1
- package/src/store/types/index.ts +1 -0
- package/src/store/types/sessions.ts +53 -0
- package/src/store/types/tasks.ts +3 -0
- package/src/task/backend/memory.ts +116 -0
- package/src/task/backend/types.ts +43 -0
- package/src/teams/__tests__/cross-subsystem.integration.test.ts +983 -0
- package/src/teams/__tests__/e2e/team-runtime.e2e.test.ts +553 -0
- package/src/teams/__tests__/team-system.test.ts +1280 -0
- package/src/teams/index.ts +13 -0
- package/src/teams/team-loader.ts +434 -0
- package/src/teams/team-runtime.ts +727 -0
- package/src/teams/types.ts +377 -0
- package/src/workspace/dataplane-adapter.ts +1 -1
- package/src/workspace/index.ts +1 -1
- package/src/workspace/strategies/index.ts +18 -0
- package/src/workspace/strategies/optimistic.ts +136 -0
- package/src/workspace/strategies/queue.ts +81 -0
- package/src/workspace/strategies/registry.ts +89 -0
- package/src/workspace/strategies/trunk.ts +123 -0
- package/src/workspace/strategies/types.ts +145 -0
- package/src/workspace/types.ts +1 -1
- package/src/workspace/workspace-manager.ts +1 -1
- package/.claude/settings.local.json +0 -59
- package/dist/map/utils/address-translation.d.ts +0 -99
- package/dist/map/utils/address-translation.d.ts.map +0 -1
- package/dist/map/utils/address-translation.js +0 -285
- package/dist/map/utils/address-translation.js.map +0 -1
- package/dist/map/utils/index.d.ts +0 -7
- package/dist/map/utils/index.d.ts.map +0 -1
- package/dist/map/utils/index.js +0 -7
- package/dist/map/utils/index.js.map +0 -1
- package/references/acp-factory-ref/CHANGELOG.md +0 -33
- package/references/acp-factory-ref/LICENSE +0 -21
- package/references/acp-factory-ref/README.md +0 -341
- package/references/acp-factory-ref/package-lock.json +0 -3102
- package/references/acp-factory-ref/package.json +0 -96
- package/references/acp-factory-ref/python/CHANGELOG.md +0 -33
- package/references/acp-factory-ref/python/LICENSE +0 -21
- package/references/acp-factory-ref/python/Makefile +0 -57
- package/references/acp-factory-ref/python/README.md +0 -253
- package/references/acp-factory-ref/python/pyproject.toml +0 -73
- package/references/acp-factory-ref/python/tests/__init__.py +0 -0
- package/references/acp-factory-ref/python/tests/e2e/__init__.py +0 -1
- package/references/acp-factory-ref/python/tests/e2e/test_codex_e2e.py +0 -349
- package/references/acp-factory-ref/python/tests/e2e/test_gemini_e2e.py +0 -165
- package/references/acp-factory-ref/python/tests/e2e/test_opencode_e2e.py +0 -296
- package/references/acp-factory-ref/python/tests/test_client_handler.py +0 -543
- package/references/acp-factory-ref/python/tests/test_pushable.py +0 -199
- package/references/claude-code-acp/.github/workflows/ci.yml +0 -45
- package/references/claude-code-acp/.github/workflows/publish.yml +0 -34
- package/references/claude-code-acp/.prettierrc.json +0 -4
- package/references/claude-code-acp/CHANGELOG.md +0 -249
- package/references/claude-code-acp/LICENSE +0 -222
- package/references/claude-code-acp/README.md +0 -53
- package/references/claude-code-acp/docs/RELEASES.md +0 -24
- package/references/claude-code-acp/eslint.config.js +0 -48
- package/references/claude-code-acp/package-lock.json +0 -4570
- package/references/claude-code-acp/package.json +0 -88
- package/references/claude-code-acp/scripts/release.sh +0 -119
- package/references/claude-code-acp/src/acp-agent.ts +0 -2065
- package/references/claude-code-acp/src/index.ts +0 -26
- package/references/claude-code-acp/src/lib.ts +0 -38
- package/references/claude-code-acp/src/mcp-server.ts +0 -911
- package/references/claude-code-acp/src/settings.ts +0 -522
- package/references/claude-code-acp/src/tests/.claude/commands/quick-math.md +0 -5
- package/references/claude-code-acp/src/tests/.claude/commands/say-hello.md +0 -6
- package/references/claude-code-acp/src/tests/acp-agent-fork.test.ts +0 -479
- package/references/claude-code-acp/src/tests/acp-agent.test.ts +0 -1502
- package/references/claude-code-acp/src/tests/extract-lines.test.ts +0 -103
- package/references/claude-code-acp/src/tests/fork-session.test.ts +0 -335
- package/references/claude-code-acp/src/tests/replace-and-calculate-location.test.ts +0 -334
- package/references/claude-code-acp/src/tests/settings.test.ts +0 -617
- package/references/claude-code-acp/src/tests/skills-options.test.ts +0 -187
- package/references/claude-code-acp/src/tests/tools.test.ts +0 -318
- package/references/claude-code-acp/src/tests/typescript-declarations.test.ts +0 -558
- package/references/claude-code-acp/src/tools.ts +0 -819
- package/references/claude-code-acp/src/utils.ts +0 -171
- package/references/claude-code-acp/tsconfig.json +0 -18
- package/references/claude-code-acp/vitest.config.ts +0 -19
- package/references/multi-agent-protocol/.sudocode/issues.jsonl +0 -111
- package/references/multi-agent-protocol/.sudocode/specs.jsonl +0 -13
- package/references/multi-agent-protocol/LICENSE +0 -21
- package/references/multi-agent-protocol/README.md +0 -113
- package/references/multi-agent-protocol/docs/00-design-specification.md +0 -496
- package/references/multi-agent-protocol/docs/01-open-questions.md +0 -1050
- package/references/multi-agent-protocol/docs/02-wire-protocol.md +0 -296
- package/references/multi-agent-protocol/docs/03-streaming-semantics.md +0 -252
- package/references/multi-agent-protocol/docs/04-error-handling.md +0 -231
- package/references/multi-agent-protocol/docs/05-connection-model.md +0 -244
- package/references/multi-agent-protocol/docs/06-visibility-permissions.md +0 -243
- package/references/multi-agent-protocol/docs/07-federation.md +0 -259
- package/references/multi-agent-protocol/docs/08-macro-agent-migration.md +0 -253
- package/references/multi-agent-protocol/docs/09-authentication.md +0 -680
- package/references/multi-agent-protocol/docs/10-mail-protocol.md +0 -553
- package/references/multi-agent-protocol/docs/agent-iam-integration.md +0 -877
- package/references/multi-agent-protocol/docs/agentic-mesh-integration-draft.md +0 -459
- package/references/multi-agent-protocol/docs/git-transport-draft.md +0 -251
- package/references/multi-agent-protocol/docs-site/Gemfile +0 -22
- package/references/multi-agent-protocol/docs-site/README.md +0 -82
- package/references/multi-agent-protocol/docs-site/_config.yml +0 -91
- package/references/multi-agent-protocol/docs-site/_includes/head_custom.html +0 -20
- package/references/multi-agent-protocol/docs-site/_sass/color_schemes/map.scss +0 -42
- package/references/multi-agent-protocol/docs-site/_sass/custom/custom.scss +0 -34
- package/references/multi-agent-protocol/docs-site/examples/full-integration.md +0 -510
- package/references/multi-agent-protocol/docs-site/examples/index.md +0 -138
- package/references/multi-agent-protocol/docs-site/examples/simple-chat.md +0 -282
- package/references/multi-agent-protocol/docs-site/examples/task-queue.md +0 -399
- package/references/multi-agent-protocol/docs-site/getting-started/index.md +0 -98
- package/references/multi-agent-protocol/docs-site/getting-started/installation.md +0 -219
- package/references/multi-agent-protocol/docs-site/getting-started/overview.md +0 -172
- package/references/multi-agent-protocol/docs-site/getting-started/quickstart.md +0 -237
- package/references/multi-agent-protocol/docs-site/index.md +0 -136
- package/references/multi-agent-protocol/docs-site/protocol/authentication.md +0 -391
- package/references/multi-agent-protocol/docs-site/protocol/connection-model.md +0 -376
- package/references/multi-agent-protocol/docs-site/protocol/design.md +0 -284
- package/references/multi-agent-protocol/docs-site/protocol/error-handling.md +0 -312
- package/references/multi-agent-protocol/docs-site/protocol/federation.md +0 -449
- package/references/multi-agent-protocol/docs-site/protocol/index.md +0 -129
- package/references/multi-agent-protocol/docs-site/protocol/permissions.md +0 -398
- package/references/multi-agent-protocol/docs-site/protocol/streaming.md +0 -353
- package/references/multi-agent-protocol/docs-site/protocol/wire-protocol.md +0 -369
- package/references/multi-agent-protocol/docs-site/sdk/api/agent.md +0 -357
- package/references/multi-agent-protocol/docs-site/sdk/api/client.md +0 -380
- package/references/multi-agent-protocol/docs-site/sdk/api/index.md +0 -62
- package/references/multi-agent-protocol/docs-site/sdk/api/server.md +0 -453
- package/references/multi-agent-protocol/docs-site/sdk/api/types.md +0 -468
- package/references/multi-agent-protocol/docs-site/sdk/guides/agent.md +0 -375
- package/references/multi-agent-protocol/docs-site/sdk/guides/authentication.md +0 -405
- package/references/multi-agent-protocol/docs-site/sdk/guides/client.md +0 -352
- package/references/multi-agent-protocol/docs-site/sdk/guides/index.md +0 -89
- package/references/multi-agent-protocol/docs-site/sdk/guides/server.md +0 -360
- package/references/multi-agent-protocol/docs-site/sdk/guides/testing.md +0 -446
- package/references/multi-agent-protocol/docs-site/sdk/guides/transports.md +0 -363
- package/references/multi-agent-protocol/docs-site/sdk/index.md +0 -206
- package/references/multi-agent-protocol/package-lock.json +0 -3886
- package/references/multi-agent-protocol/package.json +0 -56
- package/references/multi-agent-protocol/schema/meta.json +0 -467
- package/references/multi-agent-protocol/schema/schema.json +0 -2558
|
@@ -1,199 +0,0 @@
|
|
|
1
|
-
"""Tests for Pushable async iterable."""
|
|
2
|
-
|
|
3
|
-
import asyncio
|
|
4
|
-
|
|
5
|
-
import pytest
|
|
6
|
-
|
|
7
|
-
from acp_factory.pushable import Pushable
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class TestPushable:
|
|
11
|
-
"""Tests for the Pushable class."""
|
|
12
|
-
|
|
13
|
-
@pytest.mark.asyncio
|
|
14
|
-
async def test_should_yield_pushed_items_in_order(self) -> None:
|
|
15
|
-
"""Items pushed before iteration are yielded in order."""
|
|
16
|
-
pushable: Pushable[int] = Pushable()
|
|
17
|
-
pushable.push(1)
|
|
18
|
-
pushable.push(2)
|
|
19
|
-
pushable.push(3)
|
|
20
|
-
pushable.end()
|
|
21
|
-
|
|
22
|
-
results: list[int] = []
|
|
23
|
-
async for item in pushable:
|
|
24
|
-
results.append(item)
|
|
25
|
-
|
|
26
|
-
assert results == [1, 2, 3]
|
|
27
|
-
|
|
28
|
-
@pytest.mark.asyncio
|
|
29
|
-
async def test_should_wait_for_items_when_queue_is_empty(self) -> None:
|
|
30
|
-
"""Awaiting on empty queue blocks until item pushed."""
|
|
31
|
-
pushable: Pushable[str] = Pushable()
|
|
32
|
-
|
|
33
|
-
# Start consuming in background
|
|
34
|
-
async def consume() -> list[str]:
|
|
35
|
-
results: list[str] = []
|
|
36
|
-
async for item in pushable:
|
|
37
|
-
results.append(item)
|
|
38
|
-
return results
|
|
39
|
-
|
|
40
|
-
consume_task = asyncio.create_task(consume())
|
|
41
|
-
|
|
42
|
-
# Give the consumer time to start waiting
|
|
43
|
-
await asyncio.sleep(0.01)
|
|
44
|
-
|
|
45
|
-
# Push items
|
|
46
|
-
pushable.push("a")
|
|
47
|
-
pushable.push("b")
|
|
48
|
-
pushable.end()
|
|
49
|
-
|
|
50
|
-
results = await consume_task
|
|
51
|
-
assert results == ["a", "b"]
|
|
52
|
-
|
|
53
|
-
@pytest.mark.asyncio
|
|
54
|
-
async def test_should_return_done_when_ended(self) -> None:
|
|
55
|
-
"""Iterator returns done when ended."""
|
|
56
|
-
pushable: Pushable[int] = Pushable()
|
|
57
|
-
pushable.end()
|
|
58
|
-
|
|
59
|
-
results: list[int] = []
|
|
60
|
-
async for item in pushable:
|
|
61
|
-
results.append(item)
|
|
62
|
-
|
|
63
|
-
assert results == []
|
|
64
|
-
|
|
65
|
-
@pytest.mark.asyncio
|
|
66
|
-
async def test_should_ignore_pushes_after_end(self) -> None:
|
|
67
|
-
"""Pushes after end() are ignored."""
|
|
68
|
-
pushable: Pushable[int] = Pushable()
|
|
69
|
-
pushable.push(1)
|
|
70
|
-
pushable.end()
|
|
71
|
-
pushable.push(2) # Should be ignored
|
|
72
|
-
|
|
73
|
-
results: list[int] = []
|
|
74
|
-
async for item in pushable:
|
|
75
|
-
results.append(item)
|
|
76
|
-
|
|
77
|
-
assert results == [1]
|
|
78
|
-
|
|
79
|
-
def test_should_report_is_done_correctly(self) -> None:
|
|
80
|
-
"""is_done() reflects state correctly."""
|
|
81
|
-
pushable: Pushable[int] = Pushable()
|
|
82
|
-
assert pushable.is_done() is False
|
|
83
|
-
pushable.end()
|
|
84
|
-
assert pushable.is_done() is True
|
|
85
|
-
|
|
86
|
-
@pytest.mark.asyncio
|
|
87
|
-
async def test_should_handle_multiple_waiters(self) -> None:
|
|
88
|
-
"""Multiple waiters receive items in order."""
|
|
89
|
-
pushable: Pushable[int] = Pushable()
|
|
90
|
-
|
|
91
|
-
async def get_next() -> int | None:
|
|
92
|
-
try:
|
|
93
|
-
return await pushable.__anext__()
|
|
94
|
-
except StopAsyncIteration:
|
|
95
|
-
return None
|
|
96
|
-
|
|
97
|
-
# Start multiple waiters
|
|
98
|
-
task1 = asyncio.create_task(get_next())
|
|
99
|
-
task2 = asyncio.create_task(get_next())
|
|
100
|
-
|
|
101
|
-
await asyncio.sleep(0.01)
|
|
102
|
-
|
|
103
|
-
# Push items
|
|
104
|
-
pushable.push(1)
|
|
105
|
-
pushable.push(2)
|
|
106
|
-
pushable.end()
|
|
107
|
-
|
|
108
|
-
result1 = await task1
|
|
109
|
-
result2 = await task2
|
|
110
|
-
|
|
111
|
-
assert result1 == 1
|
|
112
|
-
assert result2 == 2
|
|
113
|
-
|
|
114
|
-
@pytest.mark.asyncio
|
|
115
|
-
async def test_should_handle_interleaved_push_and_consume(self) -> None:
|
|
116
|
-
"""Items can be pushed and consumed in interleaved fashion."""
|
|
117
|
-
pushable: Pushable[str] = Pushable()
|
|
118
|
-
results: list[str] = []
|
|
119
|
-
|
|
120
|
-
async def consume() -> None:
|
|
121
|
-
async for item in pushable:
|
|
122
|
-
results.append(item)
|
|
123
|
-
|
|
124
|
-
consume_task = asyncio.create_task(consume())
|
|
125
|
-
|
|
126
|
-
await asyncio.sleep(0.01)
|
|
127
|
-
pushable.push("first")
|
|
128
|
-
|
|
129
|
-
await asyncio.sleep(0.01)
|
|
130
|
-
pushable.push("second")
|
|
131
|
-
|
|
132
|
-
await asyncio.sleep(0.01)
|
|
133
|
-
pushable.push("third")
|
|
134
|
-
pushable.end()
|
|
135
|
-
|
|
136
|
-
await consume_task
|
|
137
|
-
|
|
138
|
-
assert results == ["first", "second", "third"]
|
|
139
|
-
|
|
140
|
-
@pytest.mark.asyncio
|
|
141
|
-
async def test_should_cancel_waiters_on_end(self) -> None:
|
|
142
|
-
"""Waiters are properly cancelled when end() is called."""
|
|
143
|
-
pushable: Pushable[int] = Pushable()
|
|
144
|
-
|
|
145
|
-
async def wait_for_item() -> int | None:
|
|
146
|
-
try:
|
|
147
|
-
return await pushable.__anext__()
|
|
148
|
-
except StopAsyncIteration:
|
|
149
|
-
return None
|
|
150
|
-
|
|
151
|
-
# Start waiting
|
|
152
|
-
wait_task = asyncio.create_task(wait_for_item())
|
|
153
|
-
|
|
154
|
-
await asyncio.sleep(0.01)
|
|
155
|
-
|
|
156
|
-
# End without pushing anything
|
|
157
|
-
pushable.end()
|
|
158
|
-
|
|
159
|
-
result = await wait_task
|
|
160
|
-
assert result is None
|
|
161
|
-
|
|
162
|
-
@pytest.mark.asyncio
|
|
163
|
-
async def test_should_work_with_different_types(self) -> None:
|
|
164
|
-
"""Pushable works with different types."""
|
|
165
|
-
# Test with dict
|
|
166
|
-
pushable: Pushable[dict[str, int]] = Pushable()
|
|
167
|
-
pushable.push({"a": 1})
|
|
168
|
-
pushable.push({"b": 2})
|
|
169
|
-
pushable.end()
|
|
170
|
-
|
|
171
|
-
results: list[dict[str, int]] = []
|
|
172
|
-
async for item in pushable:
|
|
173
|
-
results.append(item)
|
|
174
|
-
|
|
175
|
-
assert results == [{"a": 1}, {"b": 2}]
|
|
176
|
-
|
|
177
|
-
@pytest.mark.asyncio
|
|
178
|
-
async def test_immediate_iteration_with_items(self) -> None:
|
|
179
|
-
"""Items already in queue are immediately available."""
|
|
180
|
-
pushable: Pushable[int] = Pushable()
|
|
181
|
-
pushable.push(1)
|
|
182
|
-
pushable.push(2)
|
|
183
|
-
|
|
184
|
-
# Get first item immediately
|
|
185
|
-
item1 = await pushable.__anext__()
|
|
186
|
-
assert item1 == 1
|
|
187
|
-
|
|
188
|
-
# Get second item immediately
|
|
189
|
-
item2 = await pushable.__anext__()
|
|
190
|
-
assert item2 == 2
|
|
191
|
-
|
|
192
|
-
# End and verify iteration stops
|
|
193
|
-
pushable.end()
|
|
194
|
-
|
|
195
|
-
results: list[int] = []
|
|
196
|
-
async for item in pushable:
|
|
197
|
-
results.append(item)
|
|
198
|
-
|
|
199
|
-
assert results == []
|
|
@@ -1,45 +0,0 @@
|
|
|
1
|
-
name: CI
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [main]
|
|
6
|
-
pull_request:
|
|
7
|
-
branches: [main]
|
|
8
|
-
workflow_dispatch:
|
|
9
|
-
|
|
10
|
-
permissions:
|
|
11
|
-
contents: read
|
|
12
|
-
|
|
13
|
-
concurrency:
|
|
14
|
-
group: "ci-${{ github.ref }}"
|
|
15
|
-
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
16
|
-
|
|
17
|
-
jobs:
|
|
18
|
-
build:
|
|
19
|
-
name: Build
|
|
20
|
-
runs-on: ubuntu-latest
|
|
21
|
-
timeout-minutes: 5
|
|
22
|
-
|
|
23
|
-
steps:
|
|
24
|
-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
|
25
|
-
|
|
26
|
-
- name: Use Node.js
|
|
27
|
-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
|
28
|
-
with:
|
|
29
|
-
node-version: latest
|
|
30
|
-
cache: "npm"
|
|
31
|
-
|
|
32
|
-
- name: Install dependencies
|
|
33
|
-
run: npm ci
|
|
34
|
-
|
|
35
|
-
- name: Check formatting
|
|
36
|
-
run: npm run format:check
|
|
37
|
-
|
|
38
|
-
- name: Run linter
|
|
39
|
-
run: npm run lint
|
|
40
|
-
|
|
41
|
-
- name: Build
|
|
42
|
-
run: npm run build
|
|
43
|
-
|
|
44
|
-
- name: Run tests
|
|
45
|
-
run: npm run test:run
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
name: Publish Package to npmjs
|
|
2
|
-
on:
|
|
3
|
-
push:
|
|
4
|
-
tags:
|
|
5
|
-
- "v*.*.*"
|
|
6
|
-
jobs:
|
|
7
|
-
publish-npm:
|
|
8
|
-
runs-on: ubuntu-latest
|
|
9
|
-
environment: release # Optional: for enhanced security
|
|
10
|
-
permissions:
|
|
11
|
-
contents: read
|
|
12
|
-
id-token: write
|
|
13
|
-
steps:
|
|
14
|
-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
|
15
|
-
# Setup .npmrc file to publish to npm
|
|
16
|
-
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020
|
|
17
|
-
with:
|
|
18
|
-
node-version: "lts/*"
|
|
19
|
-
registry-url: "https://registry.npmjs.org"
|
|
20
|
-
- name: Update npm
|
|
21
|
-
run: npm install -g npm@latest
|
|
22
|
-
- run: npm ci
|
|
23
|
-
- run: npm run build
|
|
24
|
-
- run: npm publish
|
|
25
|
-
release:
|
|
26
|
-
runs-on: ubuntu-latest
|
|
27
|
-
needs: [publish-npm]
|
|
28
|
-
permissions:
|
|
29
|
-
contents: write
|
|
30
|
-
steps:
|
|
31
|
-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8
|
|
32
|
-
- name: Create Release
|
|
33
|
-
id: create_release
|
|
34
|
-
uses: softprops/action-gh-release@6da8fa9354ddfdc4aeace5fc48d7f679b5214090
|
|
@@ -1,249 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## 0.13.2
|
|
4
|
-
|
|
5
|
-
- Update to @anthropic-ai/claude-agent-sdk@0.2.22
|
|
6
|
-
- Fix: return content from ACP write tool to help with issues with alternate providers.
|
|
7
|
-
|
|
8
|
-
## 0.13.1
|
|
9
|
-
|
|
10
|
-
- Update to @anthropic-ai/claude-agent-sdk@0.2.7
|
|
11
|
-
- Add TypeScript declaration files for library users
|
|
12
|
-
- Fixed error handling in custom ACP focused MCP tools
|
|
13
|
-
|
|
14
|
-
## 0.13.0
|
|
15
|
-
|
|
16
|
-
- Update to @anthropic-ai/claude-agent-sdk@0.2.6
|
|
17
|
-
- Update to @agentclientprotocol/sdk@0.13.0
|
|
18
|
-
|
|
19
|
-
## 0.12.6
|
|
20
|
-
|
|
21
|
-
- Fix model selection
|
|
22
|
-
|
|
23
|
-
## 0.12.5
|
|
24
|
-
|
|
25
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.70
|
|
26
|
-
- Unstable implementation of resuming sessions
|
|
27
|
-
|
|
28
|
-
## 0.12.4
|
|
29
|
-
|
|
30
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.67
|
|
31
|
-
- Better respect permissions specified in settings files
|
|
32
|
-
- Unstable implementation of forking
|
|
33
|
-
|
|
34
|
-
## 0.12.3
|
|
35
|
-
|
|
36
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.65
|
|
37
|
-
- Update to @agentclientprotocol/sdk@0.9.0
|
|
38
|
-
- Allow agent to write plans and todos to its config directory
|
|
39
|
-
- Fix experimental resume ids
|
|
40
|
-
|
|
41
|
-
## 0.12.2
|
|
42
|
-
|
|
43
|
-
- Fix duplicate tool use IDs error
|
|
44
|
-
|
|
45
|
-
## 0.12.1
|
|
46
|
-
|
|
47
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.61
|
|
48
|
-
- Update to @agentclientprotocol/sdk@0.8.0
|
|
49
|
-
|
|
50
|
-
## 0.12.0
|
|
51
|
-
|
|
52
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.59
|
|
53
|
-
- Brings Opus to Claude Pro plans
|
|
54
|
-
- Support "Don't Ask" profile
|
|
55
|
-
- Unify ACP + Claude Code session ids
|
|
56
|
-
|
|
57
|
-
## 0.11.0
|
|
58
|
-
|
|
59
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.57
|
|
60
|
-
- Removed dependency on @anthropic-ai/claude-code since this is no longer needed
|
|
61
|
-
|
|
62
|
-
## 0.10.10
|
|
63
|
-
|
|
64
|
-
- Update to @agentclientprotocol/sdk@0.7.0
|
|
65
|
-
|
|
66
|
-
## 0.10.9
|
|
67
|
-
|
|
68
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.55
|
|
69
|
-
- Allow defining a custom logger when used as a library
|
|
70
|
-
- Allow specifying custom options when used as a library
|
|
71
|
-
- Add `CLAUDECODE=1` to terminal invocations to match default Claude Code behavior
|
|
72
|
-
|
|
73
|
-
## 0.10.8
|
|
74
|
-
|
|
75
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.51 (adds support for Opus 4.5)
|
|
76
|
-
|
|
77
|
-
## 0.10.7
|
|
78
|
-
|
|
79
|
-
- Fix read/edit tool error handling so upstream errors surface
|
|
80
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.50
|
|
81
|
-
|
|
82
|
-
## 0.10.6
|
|
83
|
-
|
|
84
|
-
- Disable experimental terminal auth support for now, as it was causing issues on Windows. Will revisit with a fix later.
|
|
85
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.46
|
|
86
|
-
|
|
87
|
-
## 0.10.5
|
|
88
|
-
|
|
89
|
-
- Better error messages at end of turn if there were any
|
|
90
|
-
- Add experimental support for disabling built-in tools via \_meta flag
|
|
91
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.44
|
|
92
|
-
|
|
93
|
-
## 0.10.4
|
|
94
|
-
|
|
95
|
-
- Fix tool call titles not appearing during approval in some cases
|
|
96
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.42
|
|
97
|
-
|
|
98
|
-
## 0.10.3
|
|
99
|
-
|
|
100
|
-
- Fix for experimental terminal auth support
|
|
101
|
-
|
|
102
|
-
## 0.10.2
|
|
103
|
-
|
|
104
|
-
- Fix incorrect stop reason for tool call refusals
|
|
105
|
-
|
|
106
|
-
## 0.10.1
|
|
107
|
-
|
|
108
|
-
- Add additional structured metadata to tool calls
|
|
109
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.37
|
|
110
|
-
|
|
111
|
-
## 0.10.0
|
|
112
|
-
|
|
113
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.30
|
|
114
|
-
- Use `canUseTool` callback instead of launching an HTTP MCP server for permission checks.
|
|
115
|
-
|
|
116
|
-
## 0.9.0
|
|
117
|
-
|
|
118
|
-
- Support slash commands coming from MCP servers (Prompts)
|
|
119
|
-
|
|
120
|
-
## 0.8.0
|
|
121
|
-
|
|
122
|
-
- Revert changes to filename for cli entrypoint
|
|
123
|
-
- Provide library entrypoint via lib.ts
|
|
124
|
-
|
|
125
|
-
## 0.7.0
|
|
126
|
-
|
|
127
|
-
- Allow importing from this package as a library in addition to running it as a CLI. Allows for easier integration into existing node applications.
|
|
128
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.27
|
|
129
|
-
|
|
130
|
-
## 0.6.10
|
|
131
|
-
|
|
132
|
-
- Provide `agentInfo` on initialization response.
|
|
133
|
-
- Update to @agentclientprotocol/sdk@0.5.1
|
|
134
|
-
- Fix crash when receiving a hook_response event
|
|
135
|
-
- Fix for invalid locations when read call has no path
|
|
136
|
-
|
|
137
|
-
## 0.6.9
|
|
138
|
-
|
|
139
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.26
|
|
140
|
-
- Update to @agentclientprotocol/sdk@0.5.0
|
|
141
|
-
|
|
142
|
-
## 0.6.8
|
|
143
|
-
|
|
144
|
-
- Fix for duplicate tokens appearing in thread with streaming enabled
|
|
145
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.23
|
|
146
|
-
- Update to @agentclientprotocol/sdk@0.4.9
|
|
147
|
-
|
|
148
|
-
## 0.6.7
|
|
149
|
-
|
|
150
|
-
- Fix for invalid plan input from the model introduced in latest agent-sdk
|
|
151
|
-
|
|
152
|
-
## 0.6.6
|
|
153
|
-
|
|
154
|
-
- Do not enable bypassPermissions mode if in root/sudo mode, because Claude Code will not start
|
|
155
|
-
|
|
156
|
-
## 0.6.5
|
|
157
|
-
|
|
158
|
-
- Fix for duplicated text content after streaming
|
|
159
|
-
|
|
160
|
-
## 0.6.4
|
|
161
|
-
|
|
162
|
-
- Support streaming partial messages!
|
|
163
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.21
|
|
164
|
-
|
|
165
|
-
## 0.6.3
|
|
166
|
-
|
|
167
|
-
- Fix issue where slash commands were loaded before initialization was complete.
|
|
168
|
-
|
|
169
|
-
## 0.6.2
|
|
170
|
-
|
|
171
|
-
- Fix bug where mode selection would sometimes fire before initialization was complete.
|
|
172
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.19
|
|
173
|
-
|
|
174
|
-
## 0.6.1
|
|
175
|
-
|
|
176
|
-
- Fix to allow bypassPermissions mode to be selected (it wasn't permitted previously)
|
|
177
|
-
|
|
178
|
-
## 0.6.0
|
|
179
|
-
|
|
180
|
-
- Provide a model selector. We use the "default" model by default, and the user can change it via the client.
|
|
181
|
-
- Make sure writes require permissions when necessary: https://github.com/zed-industries/claude-code-acp/pull/92
|
|
182
|
-
- Add support for appending or overriding the system prompt: https://github.com/zed-industries/claude-code-acp/pull/91
|
|
183
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.15
|
|
184
|
-
- Update to @agentclientprotocol/sdk@0.4.8
|
|
185
|
-
|
|
186
|
-
## 0.5.5
|
|
187
|
-
|
|
188
|
-
- Migrate to @agentclientprotocol/sdk@0.4.5
|
|
189
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.13
|
|
190
|
-
|
|
191
|
-
## 0.5.4
|
|
192
|
-
|
|
193
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.11
|
|
194
|
-
- Enable setting CLAUDE_CODE_EXECUTABLE to override the executable used by the SDK https://github.com/zed-industries/claude-code-acp/pull/86
|
|
195
|
-
|
|
196
|
-
## 0.5.3
|
|
197
|
-
|
|
198
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.8
|
|
199
|
-
- Update to @zed-industries/agent-client-protocol@v0.4.5
|
|
200
|
-
|
|
201
|
-
## 0.5.2
|
|
202
|
-
|
|
203
|
-
- Add back @anthropic-ai/claude-code@2.0.1 as runtime dependency
|
|
204
|
-
|
|
205
|
-
## 0.5.1
|
|
206
|
-
|
|
207
|
-
- Update to @anthropic-ai/claude-agent-sdk@v0.1.1
|
|
208
|
-
- Make improvements to ACP tools provided to the model
|
|
209
|
-
|
|
210
|
-
## 0.5.0
|
|
211
|
-
|
|
212
|
-
- Migrate to @anthropic-ai/claude-agent-sdk@v0.1.0
|
|
213
|
-
|
|
214
|
-
## v0.4.7
|
|
215
|
-
|
|
216
|
-
- More efficient file reads from the client.
|
|
217
|
-
|
|
218
|
-
## v0.4.6
|
|
219
|
-
|
|
220
|
-
- Update to @anthropic-ai/claude-code@v1.0.128
|
|
221
|
-
|
|
222
|
-
## v0.4.5
|
|
223
|
-
|
|
224
|
-
- Update to @anthropic-ai/claude-code@v1.0.124
|
|
225
|
-
- Update to @zed-industries/agent-client-protocol@v0.4.3
|
|
226
|
-
|
|
227
|
-
## v0.4.4
|
|
228
|
-
|
|
229
|
-
- Update to @anthropic-ai/claude-code@v1.0.123
|
|
230
|
-
- Update to @zed-industries/agent-client-protocol@v0.4.2
|
|
231
|
-
|
|
232
|
-
## v0.4.3
|
|
233
|
-
|
|
234
|
-
- Move ACP tools over MCP from an "http" MCP server to an "sdk" one so more tool calls can stay in-memory.
|
|
235
|
-
- Update to @anthropic-ai/claude-code@v1.0.119
|
|
236
|
-
- Update to @zed-industries/agent-client-protocol@v0.4.0
|
|
237
|
-
|
|
238
|
-
## v0.4.2
|
|
239
|
-
|
|
240
|
-
- Fix missing package.json metadata
|
|
241
|
-
|
|
242
|
-
## v0.4.1
|
|
243
|
-
|
|
244
|
-
- Add support for /compact command [ecfd36a](https://github.com/zed-industries/claude-code-acp/commit/ecfd36afa6c4e31f12e1daf9b8a2bdc12dda1794)
|
|
245
|
-
- Add default limits to read tool [7bd1638](https://github.com/zed-industries/claude-code-acp/commit/7bd163818bb959b11fd2c933eff73ad83c57abb8)
|
|
246
|
-
- Better rendering of Tool errors [491efe3](https://github.com/zed-industries/claude-code-acp/commit/491efe32e8547075842e448d873fc01b2ffabf3a)
|
|
247
|
-
- Load managed-settings.json [f691024](https://github.com/zed-industries/claude-code-acp/commit/f691024350362858e00b97248ac68e356d2331c2)
|
|
248
|
-
- Update to @anthropic-ai/claude-code@v1.0.113
|
|
249
|
-
- Update to @zed-industries/agent-client-protocol@v0.3.1
|