Skip to main content

TL;DR

remix downloads the listing’s files into a fresh folder. No account needed. The folder has no slideless.json — it’s a clean starting point. Run slideless push from it to create your own presentation.

What this does

  • slideless search queries the public marketplace catalog — no API key required.
  • slideless remix <slug> downloads the files of the listing’s pinned version into a new local folder, and increments the listing’s public remix count.
  • The remixed folder is not linked to any presentation — there is no slideless.json in it. It is yours to push as a new deck.
  • remix also drops a small .slideless-remix.json marker so that, if you later publish, your listing can credit the original. See The remix-lineage marker below.
Remixing is not collaboration. It produces a brand-new presentation that you own, with no link back to the original. See Remix is not collaboration.

Prerequisites

Step by step

1. Find a listing

search flags: Inspect a candidate before remixing — listing get needs no key:
Remixing works for all three kinds. A presentation is a deck whose value is the author’s content — remix it to make the message yours. An app is a self-contained tool meant to be run as-is — open it directly, and only remix it if you want to change the app itself. A plan is a build blueprint — remix it as the starting point for an agent-driven build.

2. Remix it

This writes the listing’s files into ./my-pitch. If you omit the path, the CLI creates a folder named after the slug. The destination must be empty (or new). The folder you get is a plain copy of the deck — index.html and any sibling assets — with no slideless.json. That is deliberate: the folder is not linked to the original listing or to any presentation. You are starting fresh. Alongside the files, remix writes one extra file: .slideless-remix.json, the remix-lineage marker (covered below).

3. Make it yours

Edit the files however you like, then push to create your own presentation:
That first push creates a new presentation in your organization and writes a fresh slideless.json. From here it behaves like any deck — share it, invite collaborators, and even publish your own listing.
Don’t run slideless push expecting it to update the original listing. A remixed folder has no link to the source — the first push always creates a separate, independent presentation.

The remix-lineage marker

slideless remix writes a small marker file, .slideless-remix.json, into the fresh folder. It is not a slideless.json — the folder stays unlinked. The marker only records where the files came from:
The marker is excluded from the uploaded deck — like slideless.json, it never becomes part of your presentation’s files.

How lineage flows: remix → push → publish

  1. slideless remix writes .slideless-remix.json into the new folder.
  2. The first slideless push from that folder reads the marker and sends the lineage to the backend. It is stored on the new presentation once, at creation time, and is immutable — every subsequent push keeps the same lineage.
  3. slideless publish from that presentation copies the lineage onto the listing. The published listing exposes remixedFromSlug / remixedFromTitle, and its marketplace page shows a “Remixed from <original>” link back to the source listing.
So a deck only needs to be remixed once for the credit to follow it all the way to a published listing — no flags, nothing to configure.

If you delete the marker

If you want a clean, uncredited copy, delete the marker before pushing. Otherwise leave it in place — it costs nothing and carries the attribution forward.

From the plugin (Claude Code / Cursor)

Two skills cover this flow:
  • browse-marketplace — wraps slideless search --json; ask for presentations, apps, or plans by topic, kind, or tag.
  • remix-template — wraps slideless remix --json; give it a slug and an optional destination path, and it reports the new folder.

From Claude Desktop (MCP)

Ask Claude: “Search the Slideless marketplace for a pricing-calculator app and remix it.” Claude uses slideless_search_marketplace, slideless_get_marketplace_listing, and slideless_remix_listing. See Claude Desktop (MCP).

Troubleshooting