Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scripts/ingest/marketplaces.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const KNOWN_MARKETPLACES = [
"claude-world/director-mode-lite",
"Eliasjunit/vibestretch",
"Sting25/claude-code-handoff",
"mrieck/claude-plugins",
];

const MARKETPLACE_PATHS = [
Expand Down
30 changes: 30 additions & 0 deletions src/data/plugins/demoday.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { Plugin } from "@/lib/types";

export const demodayPlugin: Plugin = {
slug: "demoday",
title: "DemoDay",
description:
"Creates demo videos for your projects. Claude is given tools to drive the browser/cli, make recordings, and uses FAL.ai, ElevenLabs, and remotion to build a demo video with scene transitions. Supports both 16:9 promo/tutorial demos, and Short cut 9:16 listicle/cohost videos. Open source and MIT licensed.",
tags: ["demo-video", "ai video", "indie hacker tools", "eleven labs", "fal ai", "remotion", "screen-recording", "macos"],
featured: false,
dateAdded: "2026-08-25",
author: {
name: "Mark Rieck",
url: "https://github.com/mrieck",
},
repoUrl: "https://github.com/mrieck/demoday-claude-plugin",
installCommand:
"/plugin marketplace add mrieck/claude-plugins && /plugin install demoday@productive-mark",
config: `{
"enabledPlugins": {
"demoday@productive-mark": true
}
}`,
commands: [
{
name: "/demoday:create-demo-video",
description:
"Plan, rehearse, record, narrate and render a demo video of the current project (16:9 launch/tutorial/explainer styles, or a 9:16 Short cut from the same captures)",
},
],
};
2 changes: 2 additions & 0 deletions src/data/plugins/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ import { appversionPlugin } from "./appversion";
import { brothersbePlugin } from "./brothersbe";
// iOS development plugins
import { pragmaPlugin } from "./pragma";
import { demodayPlugin } from "./demoday";

const curatedPlugins: Plugin[] = [
// Featured plugins first
Expand Down Expand Up @@ -202,6 +203,7 @@ const curatedPlugins: Plugin[] = [
brothersbePlugin,
// iOS development plugins
pragmaPlugin,
demodayPlugin,
];

// Auto-ingested plugins from `.claude-plugin/marketplace.json` files across
Expand Down