docs: add Hermes Tweet skill example#569
Conversation
bcd0c17 to
49add74
Compare
Signed-off-by: Burak Bayır <burakbayir1@gmail.com>
49add74 to
4b770d6
Compare
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: bcd0c17e5c
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| --name hermes-tweet \ | ||
| --version 0.1.6 \ | ||
| --description "Hermes Agent skill for X/Twitter research, reading, and gated actions" \ | ||
| --tags hermes,x-twitter,social-media,automation |
There was a problem hiding this comment.
Remove unsupported publish metadata flags
The native CLI does not expose these metadata flags: publish is registered only with --namespace, --visibility, --dry-run, --registry, --token, and --json in cli/src/index.ts (also reflected by cli/src/commands/help.ts). In this Hermes example, users following the command cannot set name, version, description, or tags via the CLI, so the documented metadata either needs to live in the package SKILL.md or the example should use supported flags.
Useful? React with 👍 / 👎.
|
|
||
| ```bash | ||
| skillhub search hermes-tweet | ||
| skillhub install hermes-tweet --agent hermes |
There was a problem hiding this comment.
Use a supported install target for Hermes
--agent hermes is not one of the built-in SkillHub CLI profiles listed in cli/src/agents/detector.ts, and cli/src/agents/resolver.ts throws unknown agent when the requested profile is absent, with a hint to pass --dir. As written, this install command fails for Hermes Agent users instead of installing the skill; the example should either document the Hermes skills directory with --dir or add a supported hermes profile.
Useful? React with 👍 / 👎.
Summary
Validation