Market Standard · snippets

Save, tag, version, and share code snippets.

A code snippet manager built for the AI-agent era. Save from VS Code selection, tag + search, auto-version every edit, share via signed URL, and insert into FloodG8 Plan Editor with [[snippet:abc]] references.

VSIX save-from-selection. Highlight code in VS Code → "Save as snippet" command → it's in your dashboard, tagged + versioned.

VSIX
save from selection
Auto
version history
[[snippet:]]
Plan Editor insert
Snippet manager

// debounce.ts

export function debounce<T>(
  fn: T, ms: number
) {
  let t: ReturnType<typeof setTimeout>;
  return (...a: Parameters<T>) => {
    clearTimeout(t);
    t = setTimeout(() => fn(...a), ms);
  };
}
#typescript#utility#react
Versions
auto
Share
signed URL
Mission

Snippets that flow into your plan editor.

Standard Snippets is a code snippet manager with sharing, tagging, and versioning — designed to embed into your existing dev loop. Save snippets from VS Code selection, auto-version every edit, share via signed URL, and insert them into FloodG8 Plan Editor with [[snippet:abc123]] references that always resolve to the latest version.

Capabilities

Built for the workflow you already have.

01

VSIX save-from-selection

Highlight code in VS Code → run the 'Save as snippet' command → it's in your dashboard with language auto-detected.

02

Auto-versioning

Every edit to a snippet body creates a new version row. Restore any prior version with one click.

03

Tag + search

Tag snippets (#typescript, #utility, #react) and filter the dashboard by tag. Full-text search coming.

04

Signed share URLs

Mint a /s/<slug> URL to share a snippet publicly without auth. Optional expiry. Revoke by deleting the share.

05

FloodG8 Plan Editor insert

Paste [[snippet:abc123]] into any FloodG8 plan — the editor resolves it to the latest version body on render.

06

SyncDevTime heartbeat

Time spent editing a snippet is tracked via SyncDevTime heartbeat (snippet_id sent in payload).

How it works

Save your first snippet in 30 seconds.

  1. 01Open the dashboard and click 'New snippet'.
  2. 02Paste your code, set language + tags.
  3. 03Save — an initial version is created automatically.
  4. 04Edit later to auto-create new versions.
  5. 05Mint a share URL or copy the [[snippet:id]] reference.
Pricing

Free to start. Pro when you need it.

Start free. Upgrade when you outgrow limits or want to remove the powered-by badge.

Free
$0

25 snippets · 1 user

Starter
$9/mo

500 snippets + sharing

Why Market Standard

Snippets that compound.

Three focused products, one portfolio. Each app is built to spread your brand while solving one job extremely well.

Open Dashboard
VSIX save-from-selection
Auto-versioning on every edit
Signed share URLs with expiry
FloodG8 Plan Editor [[snippet:]] refs
Compare

How Market Standard compares

FeatureSpreadsheetsGeneric SaaSMarket Standard
Market Standard
Purpose-built for the workflowNoPartialYes
Free tier with no credit cardSometimesYes
Open schema (Postgres + Drizzle)NoNoYes
Viral powered-by badge on free tierNoNoYes
Cross-sells into the rest of the suiteNoNoYes
Self-hostable source-available codeNoNoYes
FAQ

Common questions

Everything you need to know before signing up.

Is there a free tier?
Yes. Every Market Standard app ships with a usable free tier so you can validate the workflow before paying. Upgrade when you outgrow limits or want to remove the powered-by badge.
Do I need to install anything?
No. Each app is a standalone web service. Sign in with email magic link, connect your integrations, and start using the dashboard immediately.
How does the powered-by badge work?
Free-tier artifacts (poll messages, embed widgets, short-link redirects) carry a small 'Powered by Market Standard' badge. Upgrading removes the badge and unlocks higher limits.
Can I use this with the rest of the Market Standard suite?
Yes. Every app cross-links to its siblings — Standard Polls surfaces Standard Standup, Standard Metrics deep-links to Standard Links, and so on. Sign in once with the same email.
Where is my data stored?
Postgres on Supabase, encrypted at rest. Each app exposes a privacy page detailing what is stored and for how long. You can export or delete your data at any time.
Standard Snippets — Code Snippet Manager by Market Standard