bug-capture

Turn a conversation into an issue that still reads correctly after a major refactor. Let the user describe the problem i...

github

cost-tracker

Monitor and optimize Claude Code session costs. Use when: Checking session costs Setting budget alerts Optimizing token ...

github

batch-orchestration

The /batch command pattern for large-scale parallel changes. /batch <instruction> ├── 1. Research: scan repo, understand...

github

agent-teams

Coordinate multiple Claude Code sessions working on the same codebase simultaneously. export CLAUDECODEEXPERIMENTALAGENT...

github

compact-guard

Protect important context through compaction cycles. Based on Claude Code internals: compaction restores max 5 files wit...

github

context-optimizer

Manage your context window and token budget effectively. Run /context to check current usage If > 70% → compact now befo...

github

context-engineering

Four operations control everything about how context flows through an AI coding session. Master them and you control the...

github

safe-mode

Three levels of protection against destructive operations during AI coding sessions. Note: These hooks are skill-scoped ...

github

wrap-up

End your coding session with intention. Use when ending a session, saying "wrap up", "done for now", or before closing t...

github

auto-setup

Detect project type and configure pro-workflow quality gates automatically. Use when: Starting work on a new project Onb...

github

plan-interrogate

Drive a plan from sketch to commitment by resolving every open decision before any code is written. Restate the plan in ...

github

permission-tuner

Reduce permission prompt fatigue by analyzing denial patterns and suggesting targeted rules. Use when: Permission prompt...

github

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...

github

smart-commit

Use when saying "commit", "save changes", or ready to commit after making changes. Check current state and identify what...

github

testing-strategies

describe("OrderService", () => { describe("createOrder", () => { it("creates an order with valid items and returns order...

github

python-best-practices

def processitems(items: list[str]) -> dict[str, int]: return {item: len(item) for item in items} def finduser(userid: in...

github

manage-skills

You can manage skills and rules for all major AI coding tools directly from the terminal. This skill teaches you the dir...

github

graphql-design

type Query { user(id: ID!): User users(filter: UserFilter, first: Int = 20, after: String): UserConnection! type Mutatio...

github

golang-idioms

// Return errors, never panic in library code func LoadConfig(path string) (Config, error) { data, err := os.ReadFile(pa...

github

ci-cd-pipelines

name: CI on: push: branches: [main] pullrequest: branches: [main] concurrency: group: ${{ github.workflow }}-${{ github....

github

devops-automation

name: CI/CD on: push: branches: [main] pullrequest: branches: [main] concurrency: group: ${{ github.workflow }}-${{ gith...

github

security-hardening

Validate all input at the boundary. Never trust client-side validation alone. import { z } from 'zod'; const CreateUserS...

github

monitoring-observability

import { NodeSDK } from "@opentelemetry/sdk-node"; import { OTLPTraceExporter } from "@opentelemetry/exporter-trace-otlp...

github

frontend-excellence

Server Components run on the server and send rendered HTML to the client. They can directly access databases, filesystem...

github