SKILL.md
Drop-in skill that teaches a coding agent to publish to Floggy with the CLI and CMS.
Grab this skill
Drop it into .claude/skills/floggy/SKILL.md.
A ready-made skill that teaches a coding agent (Claude Code, Codex, Cursor, and friends) how to publish to and read from a Floggy blog with the floggy CLI and the @floggy/cms library. Install it once and your agent knows how to create posts, upload media, and pull your content into a site.
Install this skill
Skills live in a skills/<name>/ folder under your agent's config directory, each with its own SKILL.md. Create one for Floggy:
# Claude Code / Claude agents
mkdir -p ~/.claude/skills/floggy
# Other agents (adjust the config dir to your tool, e.g. ~/.agents)
mkdir -p ~/.agents/skills/floggy
Then click Copy skill above and paste into a new SKILL.md inside that folder:
~/.claude/skills/floggy/
└── SKILL.md
That is it. Your agent loads it as the floggy skill on the next run. Prefer a project-local skill? Put the same folder under your repo's .claude/skills/floggy/ instead.
What the skill teaches
floggyCLI - publish and manage posts, notes, tasks, uploads, and profile from the terminal. Read commands support--jsonfor piping.@floggy/cms- a thin, fully typed library to read your published content (posts, tags, SEO, feeds) into any site.- Where to look things up - it points the agent at the machine-readable docs below so it fetches exact commands instead of guessing.
Every action is scoped by an API key you create in the dashboard (Settings > Developer), so a key only ever has the access you grant it.
Machine-readable docs
Feed these to any agent for full context. Every docs page is also available as raw markdown by appending .md to its URL.
- Everything, in one file:
/docs/llms-full.txt- the entire documentation set concatenated for LLM ingestion. - Index:
/docs/llms.txt- a short table of contents linking every page. - Any page as markdown: e.g.
/docs/cli/posts.md,/docs/cms/sdk.md.
Where to go deeper
- Getting started - the product, end to end.
- CLI overview - install, keys, scopes, every command.
- CMS overview - the library, config, and feeds.
- Authentication - keys, scopes, and safety.