GitHub
Skills harvested from GitHub repositories
14810 skills availablebug-capture
Turn a conversation into an issue that still reads correctly after a major refactor. Let the user describe the problem i...
cost-tracker
Monitor and optimize Claude Code session costs. Use when: Checking session costs Setting budget alerts Optimizing token ...
batch-orchestration
The /batch command pattern for large-scale parallel changes. /batch <instruction> ├── 1. Research: scan repo, understand...
agent-teams
Coordinate multiple Claude Code sessions working on the same codebase simultaneously. export CLAUDECODEEXPERIMENTALAGENT...
compact-guard
Protect important context through compaction cycles. Based on Claude Code internals: compaction restores max 5 files wit...
context-optimizer
Manage your context window and token budget effectively. Run /context to check current usage If > 70% → compact now befo...
context-engineering
Four operations control everything about how context flows through an AI coding session. Master them and you control the...
safe-mode
Three levels of protection against destructive operations during AI coding sessions. Note: These hooks are skill-scoped ...
wrap-up
End your coding session with intention. Use when ending a session, saying "wrap up", "done for now", or before closing t...
auto-setup
Detect project type and configure pro-workflow quality gates automatically. Use when: Starting work on a new project Onb...
plan-interrogate
Drive a plan from sketch to commitment by resolving every open decision before any code is written. Restate the plan in ...
permission-tuner
Reduce permission prompt fatigue by analyzing denial patterns and suggesting targeted rules. Use when: Permission prompt...
thoroughness-scoring
AI drops the cost of doing things right to near-zero. Stop picking the quick hack when the thorough option takes the sam...
smart-commit
Use when saying "commit", "save changes", or ready to commit after making changes. Check current state and identify what...
testing-strategies
describe("OrderService", () => { describe("createOrder", () => { it("creates an order with valid items and returns order...
python-best-practices
def processitems(items: list[str]) -> dict[str, int]: return {item: len(item) for item in items} def finduser(userid: in...
manage-skills
You can manage skills and rules for all major AI coding tools directly from the terminal. This skill teaches you the dir...
graphql-design
type Query { user(id: ID!): User users(filter: UserFilter, first: Int = 20, after: String): UserConnection! type Mutatio...
golang-idioms
// Return errors, never panic in library code func LoadConfig(path string) (Config, error) { data, err := os.ReadFile(pa...
ci-cd-pipelines
name: CI on: push: branches: [main] pullrequest: branches: [main] concurrency: group: ${{ github.workflow }}-${{ github....
devops-automation
name: CI/CD on: push: branches: [main] pullrequest: branches: [main] concurrency: group: ${{ github.workflow }}-${{ gith...
security-hardening
Validate all input at the boundary. Never trust client-side validation alone. import { z } from 'zod'; const CreateUserS...
monitoring-observability
import { NodeSDK } from "@opentelemetry/sdk-node"; import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp...
frontend-excellence
Server Components run on the server and send rendered HTML to the client. They can directly access databases, filesystem...