Modular Clipboard

Modular Clipboard

Reusable code snippets

A VS Code extension that lets you create, manage, and quickly copy reusable text and code snippets through a sidebar interface. Built to eliminate the friction of copying the same code repeatedly across projects. Available on the VS Code Marketplace.

  • Click any box title to instantly copy its contents to your clipboard without leaving the editor
  • Create unlimited clipboard boxes that automatically save and persist across sessions
  • Edit box contents directly in VS Code with full syntax highlighting
  • Always visible in the sidebar so your snippets are one click away
Analyze

Analyze

Finding the right problem

The idea came from needing to quickly copy terminal commands I used constantly. I'm a visual person, so having commands visible and one click away was much easier than memorizing them or searching through history.

  • I kept copying the same terminal commands, API keys, and prompts across different projects and applications
  • Marketing work made it worse: I needed the same email templates and form inputs dozens of times
  • VS Code's built-in snippets require config files and prefix memorization, which felt like overkill
  • External clipboard managers don't integrate with the editor and require constant window switching

Complexity isn't always better.

Create

Create

Building and shipping

I built this as my first VS Code extension, learning the platform while solving a real workflow problem. The MVP scope was intentionally minimal: create boxes, edit content, click to copy.

  • The sidebar placement was deliberate since snippets need to be visible and accessible, not hidden in menus
  • I chose workspace-level storage so teams could share project-specific snippets through version control
  • Editing opens in VS Code's native editor rather than a custom modal, keeping the experience familiar
  • Auto-save removes friction since nobody wants to think about saving a snippet
  • I intentionally avoided folders, tags, or categories to keep the interface simple and fast

The design prioritized simplicity over feature competition.

Evaluate

Evaluate

Learning and iterating

User feedback validated the core hypothesis: developers wanted simple, visible, one-click access to frequently-used text. The extension fills a gap between complex snippet systems and external clipboard managers.

  • Users requested rename functionality after creating boxes with placeholder names, which I added in v1.1.0
  • Feedback showed that icon-only actions weren't discoverable, so I expanded the right-click menu
  • Several users asked for folder organization, but I kept the flat structure to preserve simplicity
  • The most common use case turned out to be API keys and environment variables, not code snippets

CLI power users storing terminal commands became the core audience I never expected.