npx claudepluginhub chogos/claude-skillsClaude Code skills for infrastructure, languages, and development best practices.
Claude Code skills for infrastructure, languages, and development best practices.
# Add the marketplace
claude plugin marketplace add Chogos/claude-skills
# Install the plugin
claude plugin install chogos@chogos-skills
# Update to latest
claude plugin marketplace update chogos-skills
claude plugin update chogos@chogos-skills
Once installed, skills are available as slash commands:
/writing-python
/developing-backend-services
| Skill | Description |
|---|---|
developing-backend-services | API design, database patterns, observability, 12-factor |
developing-frontend-apps | Component architecture, performance, accessibility |
developing-helm-charts | Helm chart conventions, security, values design |
managing-k8s-operators | K8s operators: Strimzi, Keycloak, Prometheus, certs |
writing-aws-infrastructure | IAM, CloudFormation/CDK, VPC, Lambda, ECS, cost |
writing-dockerfiles | Dockerfile conventions, multi-stage builds, security |
writing-golang | Go project layout, error handling, concurrency, testing |
writing-python | Python project structure, type hints, pytest, async |
writing-rego-policies | OPA/Rego policy rules, testing, Kubernetes admission |
writing-rust | Rust ownership, error handling, async, traits, testing |
writing-shell-scripts | Bash scripting, CLI tools, deployment scripts |
writing-postgres | Schema design, queries, migrations — PostgreSQL |
writing-sqlite | Schema design, queries, migrations — SQLite |
Each skill uses progressive disclosure — SKILL.md is the overview loaded on trigger, with deeper reference files loaded only when needed:
skills/
└── <skill>/
├── SKILL.md # Overview + conventions (loaded on trigger)
├── patterns/ # Full examples by use case (loaded on demand)
│ ├── <pattern>.md
│ └── ...
└── <reference>.md # Cheatsheets, matrices (loaded on demand)
Skill directories use gerund form: <verb>ing-<noun> (e.g., developing-helm-charts).
Full reference: Skill authoring best practices — Claude API Docs
patterns/*.md): 100–250 lines each. Full examples organized by use case.*.md at skill root): Cheatsheets, matrices, lookup tables.name: Lowercase letters, numbers, hyphens only. Max 64 chars. Gerund form preferred (writing-python, developing-helm-charts).description: Max 1024 chars. Third person. Include both what the skill does and when to use it. Be specific — Claude uses this to pick the right skill from 100+ candidates.<details> for deprecated approaches.Official prompts.chat marketplace - AI prompts, skills, and tools for Claude Code
Open Design — local-first design app exposed to coding agents over MCP. Install once with your agent's plugin command and projects/files/skills are reachable through stdio.
Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations