Skip to content

Everything Claude Code

Everything Claude Code (ecc.tools) - The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

해커톤 우승자의 AI 개발 팀 레시피

핵심 내용

  • context rot의 정체 - Claude Code가 갑자기 멍청해지는 4가지 구조적 원인
  • settings.json 세 줄로 비용 80% 절감
    • model: sonnet (60% 절감)
    • MAX_THINKING_TOKENS: 10000 (70% 절감)
    • CLAUDE_CODE_SUBAGENT_MODEL: haiku (80% 절감)
  • /clear vs /compact - 컨텍스트 다이어트 워크플로
  • MCP 함정 - 200K 컨텍스트가 70K로 줄어드는 이유
  • Continuous Learning v2 - 메모리 학습 시스템 (instinct → skill 자동 승격)
  • AgentShield - npx 한 줄로 Claude Code 설정 보안 스캔

누적 비용 절감 효과

네 가지 설정을 모두 적용하면 기본 설정 대비 80% 이상의 비용 절감이 가능합니다.

설정 항목

기본값

권장값

절감 효과

model

opus

sonnet

~60% 비용 절감

MAX_THINKING_TOKENS

31,999

10,000

~70% 숨은 생각 비용 절감

CLAUDE_AUTOCOMPACT_PCT_OVERRIDE

95

50

긴 세션에서 품질 유지

CLAUDE_CODE_SUBAGENT_MODEL

opus

haiku

서브 에이전트 비용 대폭 절감

everything-claude-code 안에 들어 있는 것

  • 38 specialized agents (planner, architect, tdd-guide, security-reviewer 등)
  • 156 skills (필요할 때만 로드)
  • 72 commands, 34 rules, 14 MCP server configs
  • 1,282 tests / 98% coverage
  • Claude Code, Cursor, Codex, OpenCode, Antigravity, Gemini 모두 동일 설정으로 동작

설치 방법

settings.json 세 줄 (오늘 당장):

{
  "model": "sonnet",
  "env": {
    "MAX_THINKING_TOKENS": "10000",
    "CLAUDE_AUTOCOMPACT_PCT_OVERRIDE": "50",
    "CLAUDE_CODE_SUBAGENT_MODEL": "haiku"
  }
}

플러그인 설치:

/plugin marketplace add https://github.com/affaan-m/everythin...
/plugin install ecc@ecc

rules 별도 설치:

git clone https://github.com/affaan-m/everythin...
cd everything-claude-code
./install.sh --profile full

사용된 명령어

  • /clear - 무관한 작업 사이 컨텍스트 리셋
  • /compact - 마일스톤 사이 컨텍스트 압축
  • /cost - 토큰 비용 모니터링
  • /model opus - 깊은 추론 필요할 때 일시 전환
  • /plugin marketplace add - 플러그인 마켓플레이스 추가
  • /plugin install - 플러그인 설치
  • /security-scan - AgentShield 보안 스캔
  • /evolve - instinct 3개 이상을 skill로 승격
  • /instinct-export, /instinct-import - 학습 결과 팀 공유
  • npx ecc-agentshield scan - 설치 없이 보안 스캔

See also

Favorite site