Add antianqi/openclaw-acp-bridge v0.1.3 - peer collaboration Bridge for MiniMax Code - #3
Open
antianqi wants to merge 1 commit into
Open
Add antianqi/openclaw-acp-bridge v0.1.3 - peer collaboration Bridge for MiniMax Code#3antianqi wants to merge 1 commit into
antianqi wants to merge 1 commit into
Conversation
…0.1.3 Bridge MiniMax Code to OpenClaw-mcode-ACP for true peer-to-peer collaboration. Includes: - plugin.json (name=openclaw-acp-bridge, version=0.1.3, license=Apache-2.0) - README.md (overview + smoke test + authentication + SDK contract) - LICENSE (Apache-2.0) - scripts/smoke.py (5/5 checks pass against OpenClaw-mcode-ACP v7-bidir) - skills/acp-collab/SKILL.md (peer inbox: read/push/ask/answer) - skills/acp-task-dispatch/SKILL.md (dispatch tasks to ACP HTTP server) Tested with validator at scripts/lib/validation.mjs: - YAML frontmatter present and valid - plugin.json has \ + name + license - skill name matches directory name - README.md and LICENSE non-empty - no TODO placeholders, no symlinks Replaces v0.1.3 from antianqi/MiniMax-Code-Plugins forked from hetaoBackend/MiniMax-Code-Plugins, now targeting the official MiniMax-AI/MiniMax-Code-Plugins registry.
Author
|
@codesmith-bot 这个 PR 的 codesmith check 报 skipped (is not active on this PR),能不能 review 一下给点反馈?plugin 是 openclaw-acp-bridge v0.1.3,validator 本地过了 ( |
|
Hi @antianqi! [code]smith requires write access to this repository. You currently have read-only access to |
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
Adds
plugins/antianqi/openclaw-acp-bridge— a Bridge that lets MiniMax Code sessions collaborate peer-to-peer with the OpenClaw-mcode-ACP inbox protocol instead of one-shot master/slave task calls.MiniMax Code can now:
inbox_read)inbox_write)inbox_ask/inbox_answer)peer_greet)Two Skills ship in the Plugin:
acp-collab— peer-to-peer inbox collaborationacp-task-dispatch— dispatch self-contained tasks to the ACP HTTP serverWhat's inside
plugin.json—$schema=agent-plugins.org/schemas/1.0.0/plugin.schema.json, name=openclaw-acp-bridge, version=0.1.3, license=Apache-2.0README.md— overview, Supported platforms table, Authentication, SDK compatibility contract, smoke test, Data and network, Test evidenceLICENSE— Apache-2.0 (full text)scripts/smoke.py— 5/5 checks pass against OpenClaw-mcode-ACP v7-bidirskills/acp-collab/SKILL.md— peer inbox protocol (frontmatter present, YAML valid)skills/acp-task-dispatch/SKILL.md— task dispatch Skill (frontmatter present, YAML valid)Validation
Ran
npm run validatefrom this fork's main. The new hosted Plugin passes:(Preexisting failures in
plugins/{Fectivnfy112357, hetaoBackend, HopeYin, Hylouis233}/*are not caused by this PR — those Plugins were merged without YAML frontmatter on their SKILL.md. Flagging them here so the maintainer can triage.)SDK / runtime contract
This Plugin assumes
acp_tools.pyserver v7-bidir+ with these functions:create_task,get_task,list_history,inbox_read,inbox_write,inbox_ask,inbox_answer,peer_greet.The token is read at call time from
$ACP_TOKENor<ACP_HOME>/.acp_token. It is sent only tohttp://localhost:9999/acp/*(HTTP loopback). Never logged, never echoed.Test evidence
(InboxStore self-test: 6/6 assertions pass; all 5 HTTP inbox endpoint tests pass:
/acp/inbox/write,/read,/ask,/answer,/sessions.)Compatibility
No hardcoded absolute paths anywhere. The Plugin uses forward slashes internally (
posixpath) and only resolves paths through$ACP_HOME.Replaces v0.1.3 in hetaoBackend/MiniMax-Code-Plugins
This Plugin already lives at hetaoBackend/MiniMax-Code-Plugins under the earlier PR. With the move of the community registry to this organization, this PR re-hosts the same v0.1.3 content under the new namespace. The earlier PR can be closed once this one merges.