Add ECA (Editor Code Assistant) harness support#1686
Open
lockie wants to merge 1 commit into
Open
Conversation
- Added .eca-plugin/ directory with marketplace.json, hooks, and skills - chatStart hook injects using-superpowers skill content at session start - session-start script updated to handle ECA's hook output format - SKILL.md updated with eca__skill tool and eca-tools.md reference - README.md updated with ECA quickstart section - Added docs/README.eca.md with detailed ECA installation/troubleshooting guide 🤖 Generated with [ECA](https://eca.dev) (zai-coding-plan/glm-5.1) Co-Authored-By: eca-agent <git@eca.dev>
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.
What problem are you trying to solve?
ECA (Editor Code Assistant) is an open-source AI pair programming tool (https://eca.dev) with a plugin system that supports skills, hooks, MCP servers, and agents. Users running ECA had no way to use Superpowers — the plugin system is compatible, but Superpowers lacked the
.eca-plugin/directory structure and hook definitions that ECA needs to discover and load the plugin.What does this PR change?
Adds ECA as a supported harness by introducing a
.eca-plugin/directory with marketplace metadata, achatStarthook that injects theusing-superpowersbootstrap skill content at session start, and symlinks to the existing skills directory. Also adds an ECA tool-mapping reference and install documentation.Is this change appropriate for the core library?
Yes. ECA is a general-purpose coding agent, not a project-specific or domain-specific tool. This adds a new harness integration using the same pattern as existing harnesses (Claude Code, Codex, Cursor, etc.). Skills, bootstrap injection, and tool mapping are general-purpose — they benefit anyone using ECA regardless of project type.
What alternatives did you consider?
plugins/superpowersentry with skills only (no hooks). Adding hooks there would be a separate process and wouldn't give users the full Superpowers experience (no bootstrap injection). Hosting the plugin from the Superpowers repo itself gives users the complete integration.config.jsonhooks section: Could work but would require every user to manually configure the hook, which is error-prone and doesn't match the install experience of other harnesses.Does this PR contain multiple unrelated changes?
No. All changes are part of a single new-harness integration.
Existing PRs
Environment tested
New harness support (required if this PR adds a new harness)
Clean-session transcript for "Let's make a react todo list"
Evaluation
Rigor
superpowers:writing-skillsand completed adversarial pressure testing (paste results below)No skills content was modified. Only infrastructure files were added/changed: plugin directory structure, hook definitions, tool mapping reference, and documentation.
Human review
Authoring environment disclosure
🤖 Generated with ECA (zai-coding-plan/glm-5.1)
Co-Authored-By: eca-agent git@eca.dev