Export prompts in formats optimized for different tools and workflows.
Export formats
JeffreysPrompts supports several export formats:
- Plain text — Just the prompt content
- Markdown — Prompt with title, description, and metadata
- Claude Code Skill — SKILL.md format for Claude Code
- JSON — Machine-readable with all metadata
Exporting a single prompt
When viewing a prompt, click the Export button and choose your format. The file will download to your computer.
Exporting multiple prompts
To export multiple prompts at once:
- Add prompts to your basket
- Open your basket
- Click "Export all"
- Choose your format
When exporting multiple prompts, you'll get a ZIP file containing one file per prompt.
Claude Code Skills format
Claude Code is Anthropic's CLI coding agent. It supports custom Skills defined in SKILL.md files.
When you export a prompt as a Claude Code Skill:
- The file is named
SKILL.md - It includes YAML frontmatter with name and description
- The prompt content is formatted for Claude Code
- Usage instructions and examples are included
Installing a Skill
To use an exported Skill with Claude Code:
- Create a directory for your skill (e.g.,
~/.claude/skills/my-skill/) - Move the SKILL.md file into that directory
- The skill is now available in Claude Code
Skill file structure
--- name: code-reviewer description: Reviews code for bugs, style, and best practices --- # Code Reviewer [Prompt content here] ## When to Use - Before submitting a PR - When reviewing someone else's code ## Examples - "Review this function for potential bugs"
Markdown format
Markdown exports include:
- Title as H1
- Description and metadata
- The prompt content in a code block
- Usage tips and examples
This format works well for documentation, note-taking apps, or sharing prompts in Git repositories.
Using exports with other tools
- Cursor — Use Markdown exports as Cursor rules
- ChatGPT — Copy plain text into Custom Instructions
- Notion/Obsidian — Import Markdown files directly
CLI exports
You can also export prompts using the jfp CLI:
# Export as Skill jfp export --format skill "code-reviewer" # Export as Markdown jfp export --format md "code-reviewer" # Export as JSON jfp show "code-reviewer" --json > prompt.json