Official HackMD agent skills for Claude Code, Cursor, Codex, and compatible harnesses.
Each subdirectory is a self-contained skill (with SKILL.md). Install by copying the folder into your harness skills directory, or clone this repo and symlink/copy individual skills.
| Skill | Description |
|---|---|
agentic-work-log/ |
Incrementally sync cross-agent session prompts into a HackMD work log (append or new note; supports scheduling). |
push-to-hackmd/ |
Publish or back up plans, Markdown, HTML, or files to HackMD (personal or team workspace). |
visualize-hmd/ |
Turn plans and trade-offs into HTML/CSS visualizations and publish to HackMD. |
git clone https://github.com/hackmd-product/hackmd-skills.git /tmp/hackmd-skills
cp -R /tmp/hackmd-skills/push-to-hackmd ~/.cursor/skills/
# Claude Code: ~/.claude/skills/ or ~/.agents/skills/git clone https://github.com/hackmd-product/hackmd-skills.git /tmp/hackmd-skills
for skill in agentic-work-log push-to-hackmd visualize-hmd; do
cp -R "/tmp/hackmd-skills/$skill" ~/.cursor/skills/
done- hackmd-cli (
hackmd-cli login) for most publish flows - Python 3 for
agentic-work-logcollection andvisualize-hmdbuild script
hackmd-skills/
├── README.md
├── shared/ # safe-sync, resolve-note, API reference
│ ├── README.md
│ ├── references/api.md
│ └── scripts/
├── agentic-work-log/
├── push-to-hackmd/
└── visualize-hmd/
Cross-skill contracts (anti-clobber updates, destination policy): shared/README.md.
The visualize-hmd skill previously lived at hackmd-product/visualize-hmd. Use hackmd-skills/visualize-hmd/ going forward; the standalone repo can be archived after you update local installs.
Maintained by the HackMD product team.