attentionfactory
← All guides

SKILLSMay 2026

Build a Creative Studio in Claude with 6 Skills

SuperMemory, Remotion, Deep Research, Content Research Writer, ElevenLabs, and Competitive Ads Extractor — verified links, install commands, and an end-to-end production workflow.

Executive summary

This guide collects the best available public links and setup instructions for six Claude-related skills: SuperMemory, Remotion, Deep Research, Content Research Writer, ElevenLabs, and Competitive Ads Extractor. Prepared by Manus AI · May 29, 2026 The links below are the closest verified public sources for each skill or integration. Some are official product repositories; others are community Claude Code skills. Where there are multiple options, this guide identifies the recommended link and explains why. Important: Most of these tools are designed for Claude Code or compatible agentic coding assistants with Agent Skills support. Claude web chat and Claude Desktop may not install skills the same way. For Claude Code, skills generally live in ~/.claude/skills/; some plugins use the plugin marketplace.

Quick link table

SuperMemory — github.com/supermemoryai/claude-supermemory — Claude Code plugin — Persistent memory across sessions Remotion — remotion.dev/docs/ai/skills — Official Agent Skills — Programmatic video and motion graphics Deep Research — github.com/Weizhena/Deep-Research-skills — Community skill — Multi-step research workflows and reports Content Research Writer — github.com/ComposioHQ/awesome-claude-skills (content-research-writer) — Community skill — Research, citations, outlining, and drafting ElevenLabs — github.com/elevenlabs/skills — Official Agent Skills — TTS, STT, music, agents, and audio Competitive Ads Extractor — buildwithclaude.com/skill/competitive-ads-extractor — Community skill — Extract and analyze competitor ads

Before you start

You need Claude Code (or another compatible coding agent with Agent Skills), Node.js, and npx — Remotion, ElevenLabs, and several skill directories use npx skills add ... Plan for API keys where required: • SuperMemory — Supermemory Pro + SUPERMEMORY_CC_API_KEY • ElevenLabs — ELEVENLABS_API_KEY • Remotion is open source; rendering at scale or stock assets may add cost • Competitor ad extraction must be used ethically

Recommended folder structure

~/.claude/skills/ — Installed Agent Skills ~/creative-studio/videos/ — Remotion projects ~/creative-studio/research/ — Deep research outputs ~/creative-studio/content/ — Articles, newsletters, scripts ~/creative-studio/audio/ — ElevenLabs voiceovers and music ~/creative-studio/ads/ — Competitor ad research and pattern libraries

1. SuperMemory — persistent memory

Best link: github.com/supermemoryai/claude-supermemory Gives Claude persistent memory across sessions and projects. Injects relevant memories at session start and can capture tool usage for future context.

Copy prompt
/plugin marketplace add supermemoryai/claude-supermemory
/plugin install claude-supermemory

SuperMemory — API key (Zsh)

Create a key in the SuperMemory console, then add to your shell profile:

Copy prompt
echo 'export SUPERMEMORY_CC_API_KEY="sm_..."' >> ~/.zshrc
source ~/.zshrc

SuperMemory — starter prompt

Copy prompt
Use SuperMemory to remember my creative studio preferences, including my brand voice, preferred video style, content themes, and repeated workflow steps.

2. Remotion — video and motion graphics

Best link: remotion.dev/docs/ai/skills Official Agent Skills for programmatic video, explainers, and motion graphics. Works with Claude Code, Codex, Cursor, and OpenCode.

Copy prompt
npx skills add remotion-dev/skills

Remotion — new project

Use Blank template, enable TailwindCSS, and say yes to Skills during setup. Keep the preview server running in one terminal; run Claude Code in a second.

Copy prompt
npx create-video@latest

cd my-video
npm install
npm run dev

Remotion — starter prompt

Copy prompt
Use the Remotion best-practices skill to create a 30-second vertical explainer video at 1080x1920, 30fps, explaining the benefits of our product. Use kinetic typography, animated icons, and a clean SaaS-style visual system.

3. Deep Research — market and strategic research

Recommended: github.com/Weizhena/Deep-Research-skills Structured two-phase research — outline first, then deep investigation. Use cases: market research, competitor analysis, industry trends, due diligence. Alternative: github.com/199-biotechnologies/claude-deep-research-skill for formal reports, credibility scoring, and Markdown/HTML/PDF output.

Copy prompt
git clone https://github.com/Weizhena/deep-research-skills.git
cd deep-research-skills
mkdir -p ~/.claude/skills ~/.claude/agents
cp -r skills/research-en/* ~/.claude/skills/
cp agents/web-search-agent.md ~/.claude/agents/
cp -r agents/web-search-modules ~/.claude/agents/
pip install pyyaml

Deep Research — commands

/research — Generate research outline /research-add-items — Add more items /research-add-fields — Add field definitions /research-deep — Run deeper research per item /research-report — Create Markdown report

Deep Research — starter prompt

Copy prompt
Use the research skill to analyze the market for AI video creation tools in 2026. Build an outline first, include competitors, pricing, positioning, customer segments, major trends, and risks, then run deep research and produce a report.

4. Content Research Writer

Best link: github.com/ComposioHQ/awesome-claude-skills (content-research-writer/SKILL.md) Collaborative outlining, research assistance, hook improvement, section feedback, voice preservation, and citation management.

Copy prompt
mkdir -p ~/.claude/skills/content-research-writer
curl -L https://github.com/ComposioHQ/awesome-claude-skills/raw/refs/heads/master/content-research-writer/SKILL.md \
  -o ~/.claude/skills/content-research-writer/SKILL.md

Content Research Writer — starter prompt

Copy prompt
Use the Content Research Writer skill. Help me create a research-backed article outline about [topic] for [audience]. Identify claims that need citations, suggest hooks, and create a section-by-section writing plan.

5. ElevenLabs — voice, podcasts, and audio

Best link: github.com/elevenlabs/skills Official Agent Skills for text-to-speech, speech-to-text, music, sound effects, voice agents, and more.

Copy prompt
npx skills add elevenlabs/skills

ElevenLabs — API key

Copy prompt
export ELEVENLABS_API_KEY="your-api-key"

echo 'export ELEVENLABS_API_KEY="your-api-key"' >> ~/.zshrc
source ~/.zshrc

ElevenLabs — starter prompt

Copy prompt
Use the ElevenLabs text-to-speech skill. Turn this document into a polished two-host podcast script, then generate separate voiceover files for Host A and Host B using professional, conversational pacing.

6. Competitive Ads Extractor

Best link: buildwithclaude.com/skill/competitive-ads-extractor Extract and analyze competitor ads from libraries like Facebook and LinkedIn — messaging, hooks, CTAs, and creative patterns. Use for research and inspiration, not copying. Respect IP and platform rules.

Copy prompt
npx skills add davepoon/buildwithclaude -s competitive-ads-extractor

Competitive Ads Extractor — starter prompt

Copy prompt
Use the Competitive Ads Extractor skill. Research active ads from [Competitor A], [Competitor B], and [Competitor C]. Capture hooks, CTAs, creative themes, pain points, target audiences, and repeated messaging patterns. Summarize insights I can ethically use for original campaign ideas.

End-to-end creative studio workflow

1. SuperMemory — brand voice, positioning, visual style, workflow memory 2. Deep Research — market, competitors, trends, cited report 3. Competitive Ads Extractor — live hooks, CTAs, themes, pattern library 4. Content Research Writer — scripts, articles, emails, landing copy with citations 5. Remotion — motion-graphics videos from approved scripts 6. ElevenLabs — voiceovers, podcasts, transcripts, music, sound effects

Master setup checklist

□ Install Claude Code (or compatible agent) □ Install Node.js and confirm npx works □ Create ~/creative-studio/ project folders □ Install SuperMemory + set SUPERMEMORY_CC_API_KEY □ Install Remotion skills + create a test video project □ Install Deep Research skill + run a small test report □ Install Content Research Writer + draft a sample outline □ Install ElevenLabs skills + set ELEVENLABS_API_KEY □ Install Competitive Ads Extractor + test one competitor search □ Ask SuperMemory to remember your brand voice and workflow

Troubleshooting

Skill not triggering? Confirm it is in ~/.claude/skills/, restart Claude Code from your project directory, and name the skill explicitly in your prompt. API key issues? Run echo $SUPERMEMORY_CC_API_KEY or echo $ELEVENLABS_API_KEY in the same terminal session. npx skills add failed? Update Node.js and retry from a clean terminal. Ad libraries change often — if automation fails, paste URLs, screenshots, or exported CSV and ask Claude to analyze manually.

Main links

SuperMemory: https://github.com/supermemoryai/claude-supermemory Remotion: https://www.remotion.dev/docs/ai/skills Deep Research: https://github.com/Weizhena/Deep-Research-skills Content Research Writer: https://github.com/ComposioHQ/awesome-claude-skills/blob/master/content-research-writer/SKILL.md ElevenLabs: https://github.com/elevenlabs/skills Competitive Ads Extractor: https://buildwithclaude.com/skill/competitive-ads-extractor