feat(acp): add Zed ACP Registry launcher package - #88578
Open
1xxalexx1 wants to merge 2 commits into
Open
Conversation
Author
|
Prepared the companion ACP Registry manifest in draft PR agentclientprotocol/registry#529. That registry PR is intentionally draft until this launcher is published as @nousresearch/hermes-agent@0.20.2; the registry validator correctly rejects the unpublished npm package today. |
Author
|
Aligned the launcher package and companion registry manifest with current upstream Hermes 0.20.3. Local tarball install plus ACP smoke test passed: agent version 0.20.3, terminal auth advertised, 350 models, 3 modes. Registry PR remains draft only because the npm package is not published yet. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
@nousresearch/hermes-agentnpm launcher used by Zed's ACP Registryhermes-acplauncher so Hermes keeps its existing config, credentials, skills, memory, and model cataloguvx --from hermes-agent[acp] hermes-acpon POSIX systemsWhy
Zed's ACP Registry requires the package executable and the package name to line up. The existing Hermes PyPI distribution exposes
hermes-acpas a secondary console script, so a registryuvxentry cannot launch it directly. This npm package provides the executable shape expected by the registry and leaves the ACP implementation in Hermes itself.The package is intentionally a launcher, not a second Hermes runtime. Model enumeration, provider selection, authentication, tools, memory, and session behavior remain owned by Hermes ACP.
Validation
npm test— passednode bin/hermes-agent.js --version— passed against Hermes0.20.2npm pack --dry-run— passedPublishing the package to npm and adding the corresponding ACP Registry entry are the follow-up release steps after this package is reviewed.