/ Directorio / Playground / Claude Starter
● Comunidad raintree-technology ⚡ Instantáneo

Claude Starter

por raintree-technology · raintree-technology/claude-starter

Bootstrap a Claude Code project with 40+ skills, meta-commands, TOON format.

npx create-claude-starter@latest scaffolds a Claude Code project with 40+ pre-configured skills, meta-commands, workflow automation, and the TOON tokenization format that saves 30–60% tokens on structured outputs.

Por qué usarlo

Características clave

Demo en vivo

Cómo se ve en la práctica

claude-starter-skill.replay ▶ listo
0/0

Instalar

Elige tu cliente

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-starter-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/raintree-technology/claude-starter",
        "~/.claude/skills/claude-starter"
      ],
      "_inferred": true
    }
  }
}

Abre Claude Desktop → Settings → Developer → Edit Config. Reinicia después de guardar.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-starter-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/raintree-technology/claude-starter",
        "~/.claude/skills/claude-starter"
      ],
      "_inferred": true
    }
  }
}

Cursor usa el mismo esquema mcpServers que Claude Desktop. La configuración del proyecto prevalece sobre la global.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-starter-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/raintree-technology/claude-starter",
        "~/.claude/skills/claude-starter"
      ],
      "_inferred": true
    }
  }
}

Haz clic en el icono MCP Servers de la barra lateral de Cline y luego en "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-starter-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/raintree-technology/claude-starter",
        "~/.claude/skills/claude-starter"
      ],
      "_inferred": true
    }
  }
}

Mismo formato que Claude Desktop. Reinicia Windsurf para aplicar.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-starter-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/raintree-technology/claude-starter",
        "~/.claude/skills/claude-starter"
      ]
    }
  ]
}

Continue usa un array de objetos de servidor en lugar de un mapa.

~/.config/zed/settings.json
{
  "context_servers": {
    "claude-starter-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/raintree-technology/claude-starter",
          "~/.claude/skills/claude-starter"
        ]
      }
    }
  }
}

Añádelo a context_servers. Zed recarga en caliente al guardar.

claude mcp add claude-starter-skill -- git clone https://github.com/raintree-technology/claude-starter ~/.claude/skills/claude-starter

Un solo comando. Verifica con claude mcp list. Quita con claude mcp remove.

Casos de uso

Usos del mundo real: Claude Starter

Start a new repo with a sane Claude Code config from day one

👤 Engineers starting a greenfield project ⏱ ~15 min intermediate

Cuándo usarlo: Day 1 of a new project, before Claude habits set in.

Requisitos previos
  • Server/skill installed and authenticated — See repo README
Flujo
  1. Bootstrap
    Run npx create-claude-starter@latest in /repos/.✓ Copiado
    → Repo with .claude/, skills/, agents/ scaffolded
  2. Use
    Open Claude Code in the new repo. Try /plan or /audit.✓ Copiado
    → Meta-commands work out of the box

Resultado: A repo where Claude Code is configured well from minute one.

Errores comunes
  • 40 skills is a lot. Prune what you don't use — 40 skills is a lot. Prune what you don't use — every loaded skill is context.

Coste y límites

Lo que cuesta ejecutarlo

Cuota de API
See provider docs for rate limits
Tokens por llamada
Varies by tool
Monetario
See repo README for pricing details
Consejo
Cache tool results and avoid repeated identical calls.

Seguridad

Permisos, secretos, alcance

Almacenamiento de credenciales: Use environment variables; never commit secrets
Salida de datos: Tool calls go to the provider's API as documented

Resolución de problemas

Errores comunes y soluciones

create-claude-starter not found

Use the @latest tag explicitly: npx create-claude-starter@latest.

Verificar: npm view create-claude-starter
TOON format unrecognized

TOON is a custom output format; the starter installs a parser. Re-run setup if not present.

Verificar: ls .claude/ | grep toon

Alternativas

Claude Starter vs otros

AlternativaCuándo usarlaContrapartida
anthropics/claude-codeYou want a minimal startBare; you build everything yourself

Más

Recursos

📖 Lee el README oficial en GitHub

🐙 Ver issues abiertas

🔍 Ver todos los 400+ servidores MCP y Skills