Use with Cursor
Cursor doesn't read ~/.claude/ directly, but you can wire HeroPrompt content in through Cursor Rules — and the same pattern works for any agent that supports a rules / system-prompt file.
Cursor Rules
Cursor reads .cursor/rules/*.mdc files (project-scoped) or ~/.cursor/rules/*.mdc (global). HeroPrompt prompts and skills both render to markdown that Cursor accepts.
Sync pattern
Sync prompts into your project's rules folder:
mkdir -p .cursor/rules
heroprompt sync category developer --out .cursor/rulesOr symlink your installed packs:
ln -s ~/.claude/skills/heroprompt-developer .cursor/rules/heroprompt-developerCursor picks them up on the next chat. The description field still drives auto-activation.
Paste as system prompt
For one-off use, open a prompt or skill in the web UI, copy its full template, and paste it into Cursor's Rules editor under Settings → Rules → User Rules. This is the simplest path if you only need one or two skills.
Other agents
Most modern agents support some form of "rules" or "system prompt" file. The flow is the same:
- Sync the markdown locally (
heroprompt syncorheroprompt pack install). - Point the agent's rules folder at the synced content (copy, symlink, or paste).
If your agent isn't covered here, the markdown is portable — any LLM can consume it.