Skills.
Give your AI a better way to work.
A skill is a set of written instructions that teaches an AI how to do one job the way it should be done: review a pull request, plan a migration, write the release notes.
Install one here and it travels with your account into Claude, Claude Code, Cursor and every other client you sign in with.
Category: Files & storage
4,446 results · page 79 of 149
- View details
hax-site-structureSkillFiles & storage
Read and navigate an existing HAXcms site from its portable files. Use when an agent lands on a HAXsite or HAXcms deployment and needs to understand site.json (JSON Outline Schema), resolve page content in pages/, find assets in files/, locate the theme, compute basePath, or discover the web compone
Ready to connect★ 129
- View details
roadtrip-navigatorSkillFiles & storage
Generate North American road-trip itineraries as a map-first, offline-friendly single-file HTML page. Plans around daily driving segments, overnight stops, fuel/EV-charging, national-park reservations (Recreation.gov / NPS), seasonal road closures, and timezone/border crossings — for executable, dec
Ready to connect★ 129
- View details
wjs-mining-articlesSkillFiles & storage
Use when the user has a video's SRT subtitle file — a 王建硕 monologue / 讲解, OR a 对谈 / 访谈 where 王建硕 is one of the speakers — and wants to mine it into multiple standalone 微信公众号 articles, one article per distinct topic. Triggers — "把这个视频写成文章", "从字幕里挖文章", "这个 SRT 能写几篇", "把对谈写成文章", "/wjs-mining-articles <
Ready to connect★ 129
- View details
wjs-publishing-hugoSkillFiles & storage
Used when the user wants to add or edit posts to their Hugo static blog (e.g., maggiacito.com), manage categories, upload images, and publish them live — a conversational back office where one sentence updates files, commits, pushes, and auto-deploys, with no CMS/server needed. Trigger words: 「发一篇博客
Ready to connect★ 129
- View details
wjs-syncing-multicamSkillFiles & storage
Use when the user has 2+ video / audio recordings of the same event captured by different devices (cameras, phones, separate audio recorders) and wants them aligned to a single common timeline. Outputs only a lightweight `.sync.json` sidecar per input — original files are never re-encoded. Triggers
Ready to connect★ 129
- View details
wjs-uploading-videoSkillFiles & storage
Upload one or many videos to YouTube. Use when the user wants to "上传到 YouTube", "发 YouTube", "批量上传", "upload to YouTube", "post videos to YouTube", or to publish a finished `final/` directory of MP4s. Reads per-video metadata (title / description / tags) from a sibling `UPLOAD_META.md` file when pre
Ready to connect★ 129
- View details
wjs-voicedrop-reading-aloudSkillFiles & storage
Use when the user wants text turned into an audiobook / read aloud — they give a passage, a file, a URL, or a VoiceDrop article and want an mp3 narration with expressive voices. Triggers — "做成有声书", "朗读出来", "读给我听", "念出来", "read aloud", "/wjs-voicedrop-reading-aloud".
Ready to connect★ 129
- View details
csv-data-analysisSkillFiles & storage
This skill should be used when users need to analyze CSV or Excel files, understand data patterns, generate statistical summaries, or create data visualizations. Trigger keywords include "analyze CSV", "analyze Excel", "data analysis", "CSV analysis", "Excel analysis", "data statistics", "generate c
Ready to connect★ 127
- View details
quicknodeSkillFiles & storage
Quicknode blockchain infrastructure for Solana — RPC endpoints, DAS API (Digital Asset Standard) for NFTs and compressed assets, Yellowstone gRPC streaming, Priority Fee API, Streams (real-time data pipelines), Webhooks, Metis Jupiter Swap integration, IPFS storage, Key-Value Store, Admin API, and x
Ready to connect★ 128
- View details
community-design-mdSkillFiles & storage
Author, validate, diff, and export DESIGN.md files — Google's
Ready to connect★ 126
- View details
proseSkillFiles & storage
OpenProse VM skill pack. Activate on any `prose` command, .prose files, or OpenProse mentions; orchestrates multi-agent workflows.
Ready to connect★ 126
- View details
homelab-adminSkillFiles & storage
Operate homelab infrastructure spanning networking, DNS, storage, NFS, reverse proxies, or multiple services. Use for cross-system work rather than an isolated host, application, or container problem.
Ready to connect★ 125
- View details
latchkeySkillFiles & storage
Interact with third-party or self-hosted services (Slack, Google Workspace, Dropbox, GitHub, Linear, Coolify...) using their HTTP APIs on the user's behalf.
Ready to connect★ 125
- View details
lsp-concurrency-auditSkillFiles & storage
Concurrency safety audit for a type or file. Maps all fields, traces which are accessed from concurrent contexts (goroutines, threads, async tasks), and flags fields that lack synchronization. Produces a field-level safety report. Language-agnostic across 4 concurrency families.
Ready to connect★ 125
- View details
lsp-dead-codeSkillFiles & storage
Enumerate exported symbols in a file and surface those with zero references across the workspace. Use when auditing for dead code, cleaning up APIs, or checking which exports are safe to remove.
Ready to connect★ 125
- View details
lsp-edit-symbolSkillFiles & storage
Edit a named symbol without knowing its file or position. Use when you want to change a function, type, or variable by name and don't have exact coordinates. Resolves the symbol to its definition, retrieves its full range, and applies the edit.
Ready to connect★ 125
- View details
lsp-fix-allSkillFiles & storage
Apply available quick-fix code actions for all current diagnostics in a file, one at a time with re-collection between each fix. Use to bulk-resolve errors and warnings the language server can fix automatically.
Ready to connect★ 125
- View details
lsp-format-codeSkillFiles & storage
Format a file or selection using the language server's formatter. Use before committing to apply consistent style, or after generating code to clean up indentation and spacing. Supports full-file and range-based formatting.
Ready to connect★ 125
- View details
lsp-impactSkillFiles & storage
Blast-radius analysis for a symbol or file — shows all callers, type supertypes/subtypes, and reference count before you change it. Use when refactoring, deleting, or changing the signature of any function, type, or method. Also accepts a file path to surface all exported-symbol impact in one shot.
Ready to connect★ 125
- View details
lsp-inspectSkillFiles & storage
Full code quality audit for a file, package, or directory. Supports batch mode (directory walk with --top ranking), comparison mode (--diff for branch-only issues), severity calibration by blast radius, fix suggestions, and confidence tiers. Applies a check taxonomy (dead symbols, silent failures, e
Ready to connect★ 125
- View details
lsp-safe-editSkillFiles & storage
Wrap any code edit with before/after diagnostic comparison. Speculatively previews the change first (preview_edit), then applies to disk only if the error delta is acceptable. If post-edit errors appear, surfaces code actions for quick fixes. Handles single and multi-file edits.
Ready to connect★ 125
- View details
lsp-simulateSkillFiles & storage
Speculative code editing session — simulate changes in memory before touching disk. Use when planning edits that might break things, exploring refactors across multiple files, or verifying an edit is safe before applying.
Ready to connect★ 125
- View details
lsp-test-correlationSkillFiles & storage
Find and run the tests that cover a source file. Use after editing a file to discover exactly which test files and test functions need to run — without running the entire test suite.
Ready to connect★ 125
- View details
lsp-understandSkillFiles & storage
Deep-dive exploration of unfamiliar code — given a symbol or file, builds a complete Code Map showing type info, implementations, call hierarchy (2-level depth limit), all references, and source. Broader than lsp-explore: accepts files, synthesizes multi-symbol relationships, and produces a navigabl
Ready to connect★ 125
- View details
stitch-design-mdSkillFiles & storage
Analyzes a Stitch project and generates a DESIGN.md file — documenting the design system in semantic, natural language to support consistent UI generation. Triggers on: Stitch, design system, DESIGN.md, Stitch design analysis. NOT for: React component conversion, code implementation.
Ready to connect★ 125
- View details
guideline-writingSkillFiles & storage
Guideline-authoring craft for instruction SoTs (.claude/ guides, CLAUDE.md, plan files) — operative rules vs recital, MUST/SHOULD/MAY force tiers, pruning, bloat control, blind review protocol, deliberation-narrative ban. Use when writing, editing, or reviewing an agent instruction file, policy, run
Ready to connect★ 124
- View details
inboxSkillFiles & storage
Email triage system that handles both one-time setup and recurring triage in a single skill. Auto-detects state: if no knowledge base exists at ${WORKSPACE}/Email/, runs an 8-section onboarding interview (grill-me discipline, one question at a time) to build a 7-file personalized KB, then offers to
Ready to connect★ 124
- View details
md-starterSkillFiles & storage
Generates a fully structured, project-specific CLAUDE.md by scanning the repo for signal files (package.json, Makefile, .github/workflows/, .env.example, etc.), inferring stack, commands, architecture, and conventions, then asking at most 3 targeted questions for what cannot be inferred. Use wheneve
Ready to connect★ 124
- View details
workflow-builderSkillFiles & storage
Lets your agent write and run multi-agent workflow scripts that split a big task across parallel sub-agents.
Ready to connect★ 124
- View details
writeSkillFiles & storage
Deliberately write or revise one complete curated memory file.
Ready to connect★ 124
What is a skill?
A skill is plain text, usually a SKILL.md file and the scripts it refers to, written for an AI rather than for a person. It carries the steps, the house rules and the examples a good answer needs, so you stop pasting the same briefing into every new chat.
54,764 of the 55,196 skills listed here can be served through ahel today, and they come from public repositories. Each one has its own page with the instructions themselves on it, so you can read what a skill will tell your AI to do before you install it.
Install one and every AI you use gets it
Installing a skill adds it to your gateway and turns it on in the same step. Claude Code surfaces it as a slash command; any client can read the full instructions with the skill_read tool.
Nothing is copied into a project folder. The instructions are served from your account, so the same skill is there in every AI you connect, and turning it off removes it from all of them at once.