/ Diretório / Playground / Claude Starter
● Comunidade 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 que usar

Principais recursos

Demo ao vivo

Como fica na prática

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

Instalar

Escolha seu 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
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

~/.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 o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a 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
    }
  }
}

Clique no ícone MCP Servers na barra lateral do Cline, depois "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
    }
  }
}

Mesmo formato do Claude Desktop. Reinicie o 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"
      ]
    }
  ]
}

O Continue usa um array de objetos de servidor em vez de um map.

~/.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"
        ]
      }
    }
  }
}

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do 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

Quando usar: Day 1 of a new project, before Claude habits set in.

Pré-requisitos
  • Server/skill installed and authenticated — See repo README
Fluxo
  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.

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

Custo e limites

O que custa rodar

Cota de API
See provider docs for rate limits
Tokens por chamada
Varies by tool
Monetário
See repo README for pricing details
Dica
Cache tool results and avoid repeated identical calls.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: Use environment variables; never commit secrets
Saída de dados: Tool calls go to the provider's API as documented

Solução de problemas

Erros comuns e correções

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

AlternativaQuando usarTroca
anthropics/claude-codeYou want a minimal startBare; you build everything yourself

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills