feat(cli): add openclaw, hermes, kiro, kilo, droid, trae, zed targets - #129
Merged
Conversation
Add seven Agent targets with project and global Skill paths and environment detection signals. Accept `--agent all` for every known target and `-g` as the short form of `--global`. Claude-Session: https://claude.ai/code/session_018T67Ndp8FAjnHWthXABbJW
Contributor
🤖 MERGED
GitHub merged this pull request. No further automated Review will run. |
harlan-zw
added a commit
that referenced
this pull request
Sep 1, 2026
The merge with main brought in the openclaw target test from #129, which compared the install result with plain names. The result now carries author and source per Skill. Claude-Session: https://claude.ai/code/session_018T67Ndp8FAjnHWthXABbJW
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.
❓ Type of change
📚 Description
The
vercel-labs/skillstable lists 76 agents; skilld knew 12. Anyone on OpenClaw, Hermes, Kiro CLI, Kilo Code, Droid, Trae, or Zed had to pick a foreign target and copy files by hand. This adds those seven targets,--agent allfor people who run several agents, and-gas the short form of--global.Paths, each checked against the agent's own docs where I could reach them:
openclawskills~/.openclaw/skillsOPENCLAW_SHELL,OPENCLAW_CLI,OPENCLAW_STATE_DIRhermes.hermes/skills~/.hermes/skillsHERMES_AGENT,HERMES_SESSION_ID,HERMES_HOMEkiro.kiro/skills~/.kiro/skillsKIRO_HOME,AGENT_CONTEXT_OUTkilo.kilo/skills~/.kilo/skillsKILO_RUN_ID,KILO_PIDdroid.factory/skills~/.factory/skillstrae.trae/skills~/.trae/skillszed.agents/skills~/.agents/skillsZED_TERMReference table: https://github.com/vercel-labs/skills (README and
src/agents.ts).Two places I diverged from the vercel table:
.kilocode/skills; Kilo's own docs say.kilo/skillsand never mention.kilocode. I followed Kilo..factory,.trae) and home dir only. Same shape as Codex today.Open questions:
skills/at the workspace root (both OpenClaw docs and vercel agree). In a repository like this one that already has askills/directory,--agent openclawat project scope writes next to our own Skills. Fine? It also reads.agents/skills, which would be the safer pick..agents/skillswith Codex and Amp, soskilld outdated --allnow groups it as(amp, codex, zed). Expected, but it changes that output.-gis onlist,view,remove, andupdatetoo, not onlyinstall, so the flag means one thing everywhere.skilld install --helpnow reads:https://claude.ai/code/session_018T67Ndp8FAjnHWthXABbJW