Documentation Index
Fetch the complete documentation index at: https://docs.slideless.ai/llms.txt
Use this file to discover all available pages before exploring further.
What this is
Theslideless-ai/plugin repo is an Open Plugin v1-conformant plugin. Once installed, every slideless-* skill is available in any compatible agent session (Claude Code, Cursor, …). The agent can generate decks, push them, share them, pull them on another machine, invite collaborators, list them, and export them — all by name.
Install
For any Open-Plugin-compatible agent:plugins CLI auto-detects which agent tools are installed and installs to all of them.
Claude Code also supports its native marketplace flow:
/slideless:* skills.
The publish-side skills (push-presentation, pull-presentation, share-presentation, unshare-presentation, delete-presentation, invite-collaborator, uninvite-collaborator, list-presentations, get-presentation, setup-slideless) are thin wrappers around the slideless CLI. They shell out to commands like slideless push ./my-deck --json and parse the structured output. The CLI is the canonical interface; the skills make it ergonomic for the agent to use.
The local-only skills (generate-presentation, export-presentation-pdf) don’t touch the backend at all.
Prerequisites
Install the CLI on the machine running the agent:setup-slideless once to authenticate. The skill prefers the OTP flow (slideless auth signup-request / signup-complete, or the login variants for a returning user) and falls back to pasting a dashboard key if you already have one. See cli/auth for the flow it runs.
The skills
| Skill | Purpose | Wraps |
|---|---|---|
setup-slideless | Bootstrap the CLI. Three branches: OTP signup for a fresh account, OTP login for an existing one, or paste a dashboard key as fallback. Run once per machine. | slideless auth signup-request / signup-complete, login-request / login-complete, or slideless login |
generate-presentation | Generate an HTML presentation in a curated style (slim-tabbed for workshop content, full-deck for cinematic slides). Output is either a single .html or a folder with sibling assets, depending on whether the deck needs images/video/3D. | None, purely local |
push-presentation | Upload a deck (folder OR single HTML file). First push creates a new presentation and writes slideless.json at the deck root; subsequent pushes from the same folder re-publish to the same presentationId. | slideless push <path> |
pull-presentation | Download a deck to a local folder (writes slideless.json so a subsequent push re-publishes in place). Works for owners on another machine and for invited dev collaborators. | slideless pull <presentationId> |
share-presentation | Mint a public viewer URL for an existing deck. Trigger phrases: “share a link”, “get a public URL”. Owner-only. | slideless share <presentationId> |
unshare-presentation | Revoke viewer URLs — every token, or one with --token. The deck stays editable. Owner-only. | slideless unshare <presentationId> |
delete-presentation | Hard-delete a deck: Firestore doc, every version, every asset, every collaborator row. Irreversible. Owner-only. | slideless delete <presentationId> --yes |
invite-collaborator | Invite a dev collaborator by email. They gain push + pull access once they have a Slideless account. Owner-only. | slideless invite <presentationId> --email <addr> |
uninvite-collaborator | Revoke a dev collaborator. Owner-only. | slideless uninvite <presentationId> <collabId> |
share-presentation-email | Email an existing shared presentation to 1–20 recipients. Mints a unique tracked link per recipient by default. Trigger phrase: “send this deck to alice@…”. | slideless share-email <presentationId> --to <email> |
list-presentations | List every deck you can access — owned plus shared-with-you. Each row includes a role column so the agent knows which decks it can edit. | slideless list --json |
get-presentation | Fetch full metadata for one presentation, including each share token’s individual access count, last-accessed time, and (for owners) the collaborator list. | slideless get <presentationId> --json |
export-presentation-pdf | Convert a local HTML deck to a landscape PDF via a bundled Puppeteer runner. Auto-injects print CSS. | None, purely local |
publish-to-marketplace | Publish the linked deck as a marketplace listing — a remixable presentation, app, or plan. Run from inside a linked deck folder; the key needs the marketplace:publish scope. Owner-only. | slideless publish --kind <presentation|app|plan> --description "…" |
browse-marketplace | Search the public marketplace catalog by topic, kind, tag, or category. No API key needed. | slideless search [query] --json |
remix-template | Remix a marketplace listing into a fresh local folder (no slideless.json), ready to push as your own deck. No API key needed to remix. | slideless remix <slug> |
A typical session
Skill source code
Each skill lives in its own folder in the plugin repo with aSKILL.md describing inputs, prerequisites, and steps. Read the canonical source if you want to know exactly what a skill does:
setup-slideless/SKILL.mdgenerate-presentation/SKILL.mdpush-presentation/SKILL.mdpull-presentation/SKILL.mdshare-presentation/SKILL.mdunshare-presentation/SKILL.mddelete-presentation/SKILL.mdinvite-collaborator/SKILL.mduninvite-collaborator/SKILL.mdshare-presentation-email/SKILL.mdlist-presentations/SKILL.mdget-presentation/SKILL.mdexport-presentation-pdf/SKILL.mdpublish-to-marketplace/SKILL.mdbrowse-marketplace/SKILL.mdremix-template/SKILL.md
Generation styles
Thegenerate-presentation skill ships two styles, each with a worked example:
Each style has a
README.md (when to pick it), how-to-build.md (how to author it), and example.html (production reference). When in doubt about a CSS or JS pattern, the example.html is the source of truth.
Next
- CLI overview — The interface skills delegate to.
- Use Slideless with Claude — Step-by-step walkthrough of running the loop interactively.
- Use Slideless in Claude Desktop — The non-CLI alternative for browser / desktop Claude users (MCP custom connector).
- Advanced: HTTP API — The endpoints the CLI calls.