/ Verzeichnis / Playground / Spartan AI Toolkit
● Community spartan-stratos ⚡ Sofort

Spartan AI Toolkit

von spartan-stratos · spartan-stratos/spartan-ai-toolkit

Engineering workflow commands with quality gates and TDD enforcement.

Spartan AI Toolkit is a no-nonsense skill bundle of engineering workflow commands: forced TDD red-green-refactor, quality gates (lint, test, type-check), and an opinionated agile loop. Built for teams that want discipline by default.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

spartan-ai-toolkit-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": {
    "spartan-ai-toolkit-skill": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/spartan-stratos/spartan-ai-toolkit",
        "~/.claude/skills/spartan-ai-toolkit"
      ],
      "_inferred": true
    }
  }
}

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

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

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

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

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

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

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

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "spartan-ai-toolkit-skill",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/spartan-stratos/spartan-ai-toolkit",
        "~/.claude/skills/spartan-ai-toolkit"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "spartan-ai-toolkit-skill": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/spartan-stratos/spartan-ai-toolkit",
          "~/.claude/skills/spartan-ai-toolkit"
        ]
      }
    }
  }
}

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

claude mcp add spartan-ai-toolkit-skill -- git clone https://github.com/spartan-stratos/spartan-ai-toolkit ~/.claude/skills/spartan-ai-toolkit

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

Anwendungsfälle

Praxisnahe Nutzung: Spartan AI Toolkit

Force a coding agent into actual TDD discipline

👤 Teams whose agents skip tests ⏱ ~15 min intermediate

Wann einsetzen: Your agent keeps writing code first and tests later (or never).

Voraussetzungen
  • Server/skill installed and authenticated — See repo README
Ablauf
  1. Enable the gate
    Activate spartan-ai-toolkit. Set the TDD gate to strict.✓ Kopiert
    → Gate registered
  2. Try to skip
    Add a new feature without a test first.✓ Kopiert
    → Gate refuses; demands a failing test

Ergebnis: Real TDD instead of theater.

Fallstricke
  • Hard gates can frustrate exploratory work. Toggle to 'soft' during spikes; 'strict' on main branches. — Hard gates can frustrate exploratory work. Toggle to 'soft' during spikes; 'strict' on main branches.

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

gate flags an unrelated change as missing tests

Tune gate scope in spartan.config — exclude refactors with no semantic change.

Prüfen: Re-run with scope changes
quality gate too slow

Profile which step is slow (usually type-check on big repos). Cache or skip locally.

Prüfen: Per-step timings printed

Alternativen

Spartan AI Toolkit vs. andere

AlternativeWann stattdessenKompromiss
agent-skill-tddYou want a lighter touchAdvisory, not enforcing

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen