Patterns
Project code patterns and conventions. Auto-loads when implementing,
Biome V2
>
Update Documentation
>
Standalone Skill
A standalone test skill for use in integration tests.
Zod V4
>
Smol Toml
Reference for smol-toml TOML parser/serializer. Use this skill whenever reading, writing, or manipulating TOML files, especially config.toml. Covers parse, stringify, TomlDate, TomlError, and the TOML-to-JavaScript type mapping. Use this for packages/core/src/config.ts or any code touching config.toml.
Code Review
Code review skill from tap plugin
Citty
Reference for the citty CLI framework (UnJS). Use this skill whenever writing CLI commands, defining arguments/options, creating subcommands, or working with any file in packages/cli/. This covers defineCommand, runMain, argument definitions, subcommands, lifecycle hooks, and all citty patterns used in this project.
Bun
Reference for Bun runtime APIs used in this project. Use this skill whenever writing code that runs shell commands (Bun.$ or Bun.spawn), reading/writing files (Bun.file/Bun.write), running tests (bun test), or configuring the monorepo (workspaces, bunfig.toml). Prefer Bun APIs over Node.js equivalents — use Bun.$ instead of child_process, Bun.file() instead of fs.readFile, bun:test instead of jes…
Update Completions
>
Helper
A helper skill
Linter
Lints code
Clack Prompts
Reference for @clack/prompts terminal UI library. Use this skill whenever building interactive CLI prompts, spinners, select menus, confirmation dialogs, or any terminal UI. Covers text, password, confirm, select, multiselect, spinner, group flows, tasks, logging, and cancel handling. Use this for any file in packages/cli/src/ui/ or any command that needs user interaction.
Malicious Skill
A test fixture containing synthetic security patterns for scanner testing.
Skill A
First skill in a multi-skill repository.
Claude Code Marketplace
Research findings on Claude Code marketplace, plugin structure, and distribution. Auto-loads
Skill B
Second skill in a multi-skill repository.