mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-26 01:01:40 +00:00
43 lines
1.7 KiB
Markdown
43 lines
1.7 KiB
Markdown
# Port Notes — baoyu-infographic
|
|
|
|
Ported from [JimLiu/baoyu-skills](https://github.com/JimLiu/baoyu-skills) v1.56.1.
|
|
|
|
## Changes from upstream
|
|
|
|
Only `SKILL.md` was modified. All 45 reference files are verbatim copies.
|
|
|
|
### SKILL.md adaptations
|
|
|
|
| Change | Upstream | Hermes |
|
|
|--------|----------|--------|
|
|
| Metadata namespace | `openclaw` | `hermes` |
|
|
| Trigger | `/baoyu-infographic` slash command | Natural language skill matching |
|
|
| User config | EXTEND.md file (project/user/XDG paths) | Removed — not part of Hermes infra |
|
|
| User prompts | `AskUserQuestion` (batched) | `clarify` tool (one at a time) |
|
|
| Image generation | baoyu-imagine (Bun/TypeScript) | `image_generate` tool |
|
|
| Platform support | Linux/macOS/Windows/WSL/PowerShell | Linux/macOS only |
|
|
| File operations | Bash commands | Hermes file tools (write_file, read_file) |
|
|
|
|
### What was preserved
|
|
|
|
- All layout definitions (21 files)
|
|
- All style definitions (21 files)
|
|
- Core reference files (analysis-framework, base-prompt, structured-content-template)
|
|
- Recommended combinations table
|
|
- Keyword shortcuts table
|
|
- Core principles and workflow structure
|
|
- Author, version, homepage attribution
|
|
|
|
## Syncing with upstream
|
|
|
|
To pull upstream updates:
|
|
```bash
|
|
# Compare versions
|
|
curl -sL https://raw.githubusercontent.com/JimLiu/baoyu-skills/main/skills/baoyu-infographic/SKILL.md | head -5
|
|
# Look for version: line
|
|
|
|
# Diff reference files
|
|
diff <(curl -sL https://raw.githubusercontent.com/.../references/layouts/bento-grid.md) references/layouts/bento-grid.md
|
|
```
|
|
|
|
Reference files can be overwritten directly (they're unchanged from upstream). SKILL.md must be manually merged since it contains Hermes-specific adaptations.
|