Find the perfect skill
Agent Builder and Validator
Development
Create, validate, or audit agent Markdown definitions. This skill scaffolds agent files with proper frontmatter and PascalCase naming, and checks existing agents against forge conventions. Use when building a new agent or ensuring consistency across a collection of agents.
Database Reset & Seed
Development
This skill resets a database to a clean state and optionally seeds it with test data. It supports MongoDB and PostgreSQL projects, performing backup, drop, migration, and seeding steps. Use it when you need a fresh database for development or testing after running migrations.
Skill Creation and Configuration
Documentation
This skill explains how to create and configure AI coding skills using the SKILL.md format, including required frontmatter fields (name, description) and when to invoke the skill. Use it when working with examples, tutorials, or skill documentation, or when creating or configuring a new skill.
Bayesian Inference for Geospatial Data
Data & AI
Performs Bayesian inference and probabilistic modeling for geospatial data. Use it to build hierarchical models, compute posteriors via MCMC or variational methods (PyMC/TFP), compare models (LOO/WAIC/DIC), or implement spatial Gaussian processes with Cholesky decomposition.
Fireflies SDK - Main Hub
Data & AI
Main entry point for the Fireflies.ai SDK. It provides commands to list and analyze meeting transcripts, perform full-text search, aggregate meeting analytics, and stream live transcriptions. Use this skill whenever you need to interact with meeting data through the CLI or TypeScript SDK.
Release Management
Development
Automates the release process: determines release type (patch, minor, major), updates version in package.json, adds changelog entries, and checks for pending database migrations. Helps streamline creating new versions and ensuring consistency across releases.
Recursive Language Model (RLM)
Development
Processes large inputs that exceed single-pass capacity by decomposing tasks into manageable chunks, spawning parallel Haiku sub-agents to process each chunk, and synthesizing results into a unified output. Uses a Sonnet supervisor for decomposition and synthesis, while Haiku workers handle chunk processing in parallel, reducing costs and improving speed.
Create Slash Command Guide
Development
Provides a structured guide for creating custom slash commands in Claude Code. Covers file locations (project and personal), argument handling (no args, $ARGUMENTS, positional $1/$2/$3), and optional frontmatter configuration for tools and model. Useful when you need to design reusable prompts invoked with /command-name syntax.
Eiffel Test Generation and Verification
Testing
Generates test suites derived from Eiffel contracts and runs them. Helps verify postconditions and edge cases by automatically translating contracts into executable tests. Includes AI-driven coverage gap analysis to identify untested contracts.
Session Handoff
Development
Captures the current session context before ending or auto-compaction, generating a handoff document summarizing decisions, code changes, and next steps. Helps maintain continuity across work sessions, especially after automatic context compaction.
Automate Zeebe BPMN Process
Development
This skill generates hexagonal-architecture glue-code for automating a Zeebe BPMN process, creating job workers, a process out-adapter, inbound/outbound port interfaces, and application service stubs. It accepts a ProcessApi file, BPMN model, or plain description, and skips existing files. Use it when you need to scaffold workers and adapters for a BPMN process.
Code Explainer
Development
Provides plain-English explanations of code, breaking down logic into simple steps and analogies. Helps developers quickly understand unfamiliar code or review their own work.