/ Annuaire / Playground / Claude Starter
● Communauté raintree-technology ⚡ Instantané

Claude Starter

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

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

claude-starter-skill.replay ▶ prêt
0/0

Installer

Choisissez votre client

~/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
    }
  }
}

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

~/.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 utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la globale.

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

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "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
    }
  }
}

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

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

Continue utilise un tableau d'objets serveur plutôt qu'une 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"
        ]
      }
    }
  }
}

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

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

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : Claude Starter

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

👤 Engineers starting a greenfield project ⏱ ~15 min intermediate

Quand l'utiliser : Day 1 of a new project, before Claude habits set in.

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

Résultat : A repo where Claude Code is configured well from minute one.

Pièges
  • 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.

Coût et limites

Coût d'exécution

Quota d'API
See provider docs for rate limits
Tokens par appel
Varies by tool
Monétaire
See repo README for pricing details
Astuce
Cache tool results and avoid repeated identical calls.

Sécurité

Permissions, secrets, portée

Stockage des identifiants : Use environment variables; never commit secrets
Sortie de données : Tool calls go to the provider's API as documented

Dépannage

Erreurs courantes et correctifs

create-claude-starter not found

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

Vérifier : 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.

Vérifier : ls .claude/ | grep toon

Alternatives

Claude Starter vs autres

AlternativeQuand l'utiliserCompromis
anthropics/claude-codeYou want a minimal startBare; you build everything yourself

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills