Ccstart banner
vichannnnn vichannnnn

Ccstart

Development community

Description

Quick setup for projects or repositories using Claude Code with built-in agents, ticket system, and planning tools.

Installation

This entry records only its repository, not the path inside it, so there is no exact command to give. Open the source below and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

README

ccstart

[![npm version](https://img.shields.io/npm/v/ccstart.svg)](https://www.npmjs.com/package/ccstart) [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/vichannnnn/claude-code/pulls) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm downloads](https://img.shields.io/npm/dm/ccstart.svg)](https://www.npmjs.com/package/ccstart)

Quick setup for Claude Code projects with built-in agents, skills, hooks, and ticket tracking.

Why ccstart?

Setting up new projects or repositories and plugging in Claude Code into it requires more than just generating a CLAUDE.md for most developers who wants a more customized workflow such as manual creation of agents, skills, hooks, and project structure.

There isn't a standardized approach, leading to inconsistent setups and repeated boilerplate work across projects. We already have boilerplate for our codebase to build CRUD and stuff, having one for something heavily customized like Claude seems like the obvious solution.

ccstart provides a complete, opinionated scaffolding with basic agents, skills, and workflows out of the box so that we can focus on immediately prompting and building while trying to keep context bloat and overengineering as low as possible.

Quick Start Installation

# To set up in a specific directory
npx ccstart 

# Setup in current directory
npx ccstart .

# Install globally (optional)
npm install -g ccstart
ccstart 

What You Get

my-project/
├── CLAUDE.md                        # Project instructions for Claude
├── claude/
│   └── tickets/
│       ├── README.md                # Ticket format and structure guide
│       └── ticket-list.md           # Centralized ticket index
└── .claude/
    ├── agents/
    │   ├── planner.md               # Strategic planning
    │   ├── checker.md               # QA and code review
    │   ├── ba