/ Verzeichnis / Playground / Claude Starter
● Community raintree-technology ⚡ Sofort

Claude Starter

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

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

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

Installieren

Wählen Sie Ihren 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
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.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 nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die 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
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "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
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

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

Continue nutzt ein Array von Serverobjekten statt einer 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"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

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

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: Claude Starter

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

👤 Engineers starting a greenfield project ⏱ ~15 min intermediate

Wann einsetzen: Day 1 of a new project, before Claude habits set in.

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

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

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

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
See provider docs for rate limits
Tokens pro Aufruf
Varies by tool
Kosten in €
See repo README for pricing details
Tipp
Cache tool results and avoid repeated identical calls.

Sicherheit

Rechte, Secrets, Reichweite

Credential-Speicherung: Use environment variables; never commit secrets
Datenabfluss: Tool calls go to the provider's API as documented

Fehlerbehebung

Häufige Fehler und Lösungen

create-claude-starter not found

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

Prüfen: 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.

Prüfen: ls .claude/ | grep toon

Alternativen

Claude Starter vs. andere

AlternativeWann stattdessenKompromiss
anthropics/claude-codeYou want a minimal startBare; you build everything yourself

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen