Skip to content

Skills

Skills are markdown files in skills/ that define behavioral prompts for the AI assistant. They're not code — they describe workflows, trigger patterns, and integration logic that Claude loads on demand.

Core Skills

SkillFilePurpose
Superpowerssuperpowers.mdMaster routing — maps user intent to skills and tools
Memory Managementmemory-management.mdWhen and how to store/recall memories
Research Pipelineresearch-pipeline.mdResearch workflow with citations and verification
Session Contextsession-context.mdSession start/end protocols
Plan & Reviewplan-review.mdCheckpoint-based planning for multi-step tasks
Reflectionreflection.mdSession friction analysis and improvement proposals
Skill Writingskill-writing.mdDynamic skill creation and improvement
i18ni18n.mdMultilingual output adaptation

Platform Skills

SkillFilePurpose
Crow Contextcrow-context.mdCross-platform behavioral context (crow.md) management
Blogblog.mdBlog creation, publishing, theming, and export
Storagestorage.mdFile storage management and quota tracking
Sharingsharing.mdP2P encrypted sharing workflows (invite, share, inbox)
Socialsocial.mdMessaging and social interactions via Nostr
Peer Networkpeer-network.mdPeer management, relay config, identity, blocking
Onboardingonboarding.mdFirst-run sharing setup and device migration
Onboarding Touronboarding-tour.mdFirst-run platform tour for new users
Add-onsadd-ons.mdAdd-on browsing, installation, and removal
Network Setupnetwork-setup.mdTailscale remote access guidance
Bug Reportbug-report.mdBug and feature reporting

Integration Skills

SkillFilePurpose
Web Searchweb-search.mdBrave Search workflows with citation
Google Workspacegoogle-workspace.mdGmail, Calendar, Drive, Docs, Sheets
Google Chatgoogle-chat.mdGoogle Chat spaces and messages
GitHubgithub.mdRepos, issues, PRs, code search
Slackslack.mdTeam messaging workflows
Discorddiscord.mdServer and channel management
Microsoft Teamsmicrosoft-teams.mdTeams messaging workflows
Notionnotion.mdWiki pages and databases
Project Managementproject-management.mdTrello and Canvas LMS workflows
Filesystemfilesystem.mdFile management operations
Mobile Accessmobile-access.mdGateway and remote access workflows

How Skills Work

  1. Trigger: The superpowers.md skill has a trigger table that maps user intent phrases to skill activations
  2. Activate: When a match is found, the relevant skill file is loaded
  3. Execute: The skill defines the workflow — which tools to use, in what order, and how to handle results
  4. Surface: Skill activations are shown to the user: [crow: activated skill — research-pipeline.md]

Compound Workflows

Skills can combine to handle complex requests:

  • "Daily briefing" → Gmail + Calendar + Slack + Trello + Memory
  • "Start research on X" → Memory + Research + Brave Search + arXiv + Zotero
  • "Prepare for meeting" → Calendar + Gmail + Memory + Research + Slack
  • "Publish my research" → Research + Blog + Storage (upload images)
  • "Set up file sharing" → Storage + Sharing + Peer Network

Creating New Skills

Skills are plain markdown. To add a new one:

  1. Create skills/your-skill.md with description, triggers, and workflow
  2. Add a row to the trigger table in skills/superpowers.md
  3. The skill will be available immediately — no build step needed

Released under the MIT License.