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.
claude mcp add spartan-ai-toolkit-skill -- git clone https://github.com/spartan-stratos/spartan-ai-toolkit ~/.claude/skills/spartan-ai-toolkit
한 줄 명령. claude mcp list로 확인, claude mcp remove로 제거.
사용 사례
실전 활용법: Spartan AI Toolkit
Force a coding agent into actual TDD discipline
👤 Teams whose agents skip tests⏱ ~15 minintermediate
언제 쓸까: Your agent keeps writing code first and tests later (or never).
사전 조건
Server/skill installed and authenticated — See repo README
흐름
Enable the gate
Activate spartan-ai-toolkit. Set the TDD gate to strict.✓ 복사됨
→ Gate registered
Try to skip
Add a new feature without a test first.✓ 복사됨
→ Gate refuses; demands a failing test
결과: Real TDD instead of theater.
함정
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.
비용 및 제한
운영 비용
API 쿼터
See provider docs for rate limits
호출당 토큰
Varies by tool
금액
See repo README for pricing details
팁
Cache tool results and avoid repeated identical calls.
보안
권한, 시크릿, 파급범위
자격 증명 저장: Use environment variables; never commit secrets
데이터 외부 송신: Tool calls go to the provider's API as documented
문제 해결
자주 발생하는 오류와 해결
gate flags an unrelated change as missing tests
Tune gate scope in spartan.config — exclude refactors with no semantic change.
확인: Re-run with scope changes
quality gate too slow
Profile which step is slow (usually type-check on big repos). Cache or skip locally.