feat: add Qoder CLI and pi extension support - #15
Open
weisanju wants to merge 2 commits into
Open
Conversation
Add Qoder coding agent support with skill installation and SessionStart hook integration. - skills/qoder/SKILL.md: Qoder skill instructions for agent-memory CLI - src/core.ts: add Qoder to installSkills targets - src/hooks.ts: add Qoder hook install/uninstall (SessionStart via ~/.qoder/settings.json) - scripts/install-skills.sh: add Qoder skill install path Signed-off-by: 肖佳权 <1259103745@qq.com>
Add pi coding agent support via the native extension API: - skills/pi/extension.ts: pi extension that subscribes to session_start and calls agent-memory context via pi.exec() - src/hooks.ts: fix pi from unsupported to supported, add installPiExtension / uninstallPiExtension (embeds extension source) - src/core.ts: add pi extension to installSkills targets - scripts/install-skills.sh: add pi extension install/uninstall Signed-off-by: 肖佳权 <1259103745@qq.com>
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
Add Qoder CLI support with skill installation and SessionStart hook integration.
Changes
skills/qoder/SKILL.md: Qoder skill instructions for theagent-memoryCLI, adapted from the Claude Code SKILL.mdsrc/core.ts: add Qoder toinstallSkillstargets (~/.qoder/skills/agent-memory/)src/hooks.ts: add Qoder as a supported hook agent withSessionStarthook via~/.qoder/settings.json(JSON config, same marker-based idempotent install/uninstall as Claude Code)scripts/install-skills.sh: add Qoder skill install pathWhy Qoder
Qoder CLI has a native hook system supporting
SessionStartevents via~/.qoder/settings.json, making it the first coding agent besides Claude Code that supports automatic memory context injection at session start. Qoder also has a skills system compatible with the SKILL.md pattern.Test plan
npx tsc --noEmit)biome check)