VersoXBT/claude-initial-setup

75 skills, 14 agents, 15 commands for Claude Code. Plug-and-play starter kit covering TypeScript, Python, Go, Rust, React, Next.js, FastAPI, Django, Docker, CI/CD, security, testing, and more. Cross-AI support for Cursor, Copilot, and Codex.

4Stars on the repository
61Mods indexed here, across every type
3mo agoLast push, which is what freshness is scored on
MITLicence, which decides whether bodies are shown

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Patterns for running independent tasks in parallel using multiple tool calls and Agent invocations. Use when the user has multiple independent operations, asks about fan-out/fan-in, or wants to speed up multi-step workflows.

4 3mo ago A 47 tokens original MIT

subagent-patterns

02

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Patterns for when and how to use Claude Code subagents via the Agent tool. Use when the user needs to delegate research, run parallel investigations, protect the main context window, or asks about subagent types like Explore or Plan.

4 3mo ago A 51 tokens original MIT

task-coordination

03

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Patterns for using TaskCreate, TaskUpdate, TaskList, and TaskGet to coordinate multi-step work. Use when the user has a complex project with multiple steps, needs progress tracking, dependency management, or multi-agent task assignment.

4 3mo ago A 50 tokens original MIT

agent-communication

04

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Patterns for inter-agent communication including message passing, shared state, event-driven architectures, pub/sub, inbox/outbox, and structured vs freeform messages. Use when the user is building systems where multiple agents need to communicate, share information, coordinate work, or pass data between processing…

4 3mo ago A 61 tokens original MIT

context-management

05

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Strategies for managing AI agent context windows including optimization, summarization, retrieval-augmented generation, progressive disclosure, and pruning. Use when the user is hitting context limits, building long-running agents, implementing RAG, optimizing token usage, or designing systems that need to manage…

4 3mo ago A 66 tokens original MIT

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Patterns for multi-agent systems including orchestrator, pipeline, consensus, delegation, supervisor, and swarm patterns. Use when the user is building multi-agent workflows, coordinating multiple AI agents, implementing agent delegation or supervision, or designing systems where agents collaborate on complex tasks.

4 3mo ago A 58 tokens original MIT

deploy-strategies

07

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide for deployment strategies including blue-green, canary, rolling updates, feature flags, and rollback procedures. Use when the user asks about deployment patterns, zero-downtime deployments, release strategies, or rollback plans. Trigger whenever deployment, release management, or production rollout is discussed.

4 3mo ago A 61 tokens original MIT

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide for writing GitHub Actions workflows with triggers, reusable workflows, matrix strategies, caching, secrets, and composite actions. Use when the user creates or modifies GitHub Actions workflows, asks about CI/CD on GitHub, or needs help with workflow syntax. Trigger whenever GitHub Actions, .github/workflows…

4 3mo ago A 75 tokens original MIT

pipeline-patterns

09

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide for designing CI/CD pipelines with artifact management, environment promotion, parallel jobs, quality gates, and notifications. Use when the user designs a CI/CD pipeline, asks about deployment workflows, needs to structure build-test-deploy stages, or wants to optimize pipeline performance. Trigger whenever…

4 3mo ago A 68 tokens original MIT

anthropic-sdk-guide

10

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide for Anthropic Python/TypeScript SDK usage including messages API, streaming, prompt caching, batches, token counting, and error handling. Use when the user is building with the Anthropic API, setting up Claude SDK, calling messages endpoints, implementing streaming, or troubleshooting API errors.

4 3mo ago A 62 tokens original MIT

prompt-engineering

11

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Prompt engineering patterns for Claude including system prompts, few-shot examples, chain-of-thought, structured output, templates, and prefilling. Use when the user is writing prompts, designing system instructions, extracting structured data, building prompt templates, or optimizing Claude responses for quality and…

4 3mo ago A 60 tokens original MIT

tool-use-patterns

12

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Patterns for Claude tool use including tool definition schemas, multi-tool orchestration, parallel tool calls, error handling, and result formatting. Use when the user is defining tools for Claude, building agentic workflows with tool calling, handling tool errors, or implementing multi-step tool pipelines.

4 3mo ago A 60 tokens original MIT

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Set up automated code quality tools: ESLint, Prettier, pre-commit hooks, and CI linting. Activate whenever the user sets up a new project, asks about code formatting, configures linters, sets up Git hooks, or mentions Husky, lint-staged, CODEOWNERS, or pre-commit hooks. Also activate when discussing consistent code…

4 3mo ago A 83 tokens original MIT

pr-standards

14

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Enforce pull request best practices: size limits, description templates, testing requirements, and review workflows. Activate whenever the user creates a PR, asks about PR best practices, sets up PR templates, discusses code review turnaround, or mentions PR size, review requirements, or branch protection rules.

4 3mo ago A 62 tokens original MIT

review-checklist

15

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Systematic code review checklist with severity classification. Activate whenever the user asks for a code review, wants feedback on their code, submits a PR for review, or asks what to look for when reviewing code. Also activate when writing review comments or discussing code quality standards.

4 3mo ago A 57 tokens original MIT

file-organization

16

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide file and directory organization for maintainable codebases. Use when the user creates new files, asks where to put code, plans project structure, or when a file exceeds 400 lines. Apply when scaffolding new projects or refactoring large files into smaller modules.

4 3mo ago A 57 tokens original MIT

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Enforce immutable data patterns across JavaScript, TypeScript, Python, and Go. Use when the user writes code that mutates objects, arrays, or state. Apply whenever modifying data structures, updating state, or reviewing code for mutation bugs. Always prefer immutable patterns over in-place mutation.

4 3mo ago A 63 tokens original MIT

naming-conventions

18

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Enforce consistent naming conventions for variables, functions, files, and more. Use when the user names variables, functions, classes, files, database columns, or constants. Apply when reviewing code for naming consistency or when the user asks about naming best practices.

4 3mo ago A 56 tokens original MIT

branching-strategy

19

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide git branching strategies, branch naming, and merge/rebase decisions. Use when the user creates branches, asks about Git Flow vs trunk-based development, discusses merge vs rebase, or is setting up a new repository's branching model.

4 3mo ago A 52 tokens original MIT

commit-conventions

20

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Enforce conventional commits format with proper types, scopes, and breaking change notation. Use when the user is committing code, writing commit messages, asks about commit format, or when you are about to create a git commit. Always apply this skill before running git commit.

4 3mo ago A 57 tokens original MIT

pr-workflow

21

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide pull request creation, review process, CI gates, and merge strategies. Use when the user creates a PR, asks about PR templates, review workflows, CODEOWNERS setup, or merge strategies. Apply when running gh pr create.

4 3mo ago A 51 tokens original MIT

migration-patterns

22

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide for database schema migrations with zero-downtime patterns, rollback strategies, data migrations, and migration testing. Use when the user writes database migrations, asks about schema changes in production, needs zero-downtime migration patterns, or plans rollback strategies. Trigger whenever database…

4 3mo ago A 70 tokens original MIT

query-optimization

23

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide for optimizing SQL queries with EXPLAIN ANALYZE, index tuning, N+1 detection, covering indexes, and query plan analysis. Use when the user has slow database queries, asks about query performance, needs to interpret EXPLAIN output, or wants to eliminate N+1 queries. Trigger whenever query performance, slow…

4 3mo ago A 78 tokens original MIT

schema-design-guide

24

VersoXBT/claude-initial-setup

Skill Claude CodeCodex

Guide for relational database schema design with normalization, indexing strategy, constraints, naming conventions, and denormalization tradeoffs. Use when the user designs database tables, asks about normalization, needs indexing advice, or defines foreign key relationships. Trigger whenever database schema, table…

4 3mo ago A 64 tokens original MIT