Quick Start
This guide walks you through generating your first skill using the Smidge web app. The entire process takes under 2 minutes.
Web App
Sign up for an account
Head to smdg.app/login and sign up with GitHub, Google, or a magic link email. You'll get 2 free credits immediately — no credit card required.
Upload your source materials
Drag and drop files or paste URLs into the upload area. Accepted formats include PDF, DOCX, audio files, YouTube URLs, web pages, and more.
You can upload multiple sources — Smidge will fuse them into a single cohesive skill.
Configure your skill
Give your skill a name, description, and category. Smidge will attempt to prefill these from your source content. Choose a skill type:
- •Coding — for frameworks, libraries, architecture patterns
- •Writing — for brand voice, style guides, content standards
- •Task — for checklists, review processes, workflows
Generate
Hit Generate and watch the pipeline work in real time. Smidge ingests your sources, translates the expert knowledge into structured SKILL.md format, and saves to your library — all streamed live.
If multiple distinct topics are detected, you'll be prompted to select topics for a Skill Catalogue or merge everything into one skill.
Install your skill
Download the SKILL.md file (or zip if it includes references) and copy it to your agent's skills directory:
- •Claude Code:
~/.claude/skills/ - •Claude.ai: add via project settings
- •Cursor:
~/.cursor/skills/ - •OpenAI Codex CLI:
~/.codex/skills/ - •GitHub Copilot:
.github/skills/ - •Gemini CLI:
~/.gemini/skills/
Or use the CLI: smdg install --platform claude
CLI Quick Start
Prefer the command line? Generate a skill in three commands:
# Install the CLI globally
npm install -g smdg-cli
# Authenticate with your Smidge account
smdg login
# Generate a skill from a local file
smdg generate --source ./my-docs.pdf --name my-skill
# Or from a YouTube video
smdg generate --source "https://youtube.com/watch?v=..." --name yt-skill
# Install directly to your platform
smdg generate --source ./guide.pdf --name my-guide --install claude
smdg generate --source ./guide.pdf --name my-guide --install cursorsmdg generate --source doc.pdf --source "https://youtube.com/..."API Quick Start
Generate skills programmatically with the REST API. Create an API key from your Account page, then make a single request:
curl -X POST https://smdg.app/api/v1/generate \
-H "Authorization: Bearer smidge_sk_..." \
-F "source=https://youtube.com/watch?v=..." \
-F "name=my-skill"The response includes the full SKILL.md content, metadata, and your remaining credit balance. See the API docs for all endpoints.