/stats
code-forge 사용량 통계. ~/.code-forge/usage.jsonl을 파싱하여 에이전트/스킬 사용 빈도 top 5와 요약을 터미널에 출력.
$ npx -y skills add ggombee/code-forge --skill stats --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/stats
Context preview
The summary Claude sees to decide when to auto-load this skill.
code-forge 사용량 통계. ~/.code-forge/usage.jsonl을 파싱하여 에이전트/스킬 사용 빈도 top 5와 요약을 터미널에 출력.
SKILL.md
stats.SKILL.mdname: stats
description: code-forge 사용량 통계. ~/.code-forge/usage.jsonl을 파싱하여 에이전트/스킬 사용 빈도 top 5와 요약을 터미널에 출력.
category: utility
user-invocable: false
/stats — Bellows 사용량 통계
usage.jsonl 로그를 분석하여 에이전트/스킬 사용 통계를 보여준다.
**[즉시 실행]** 아래 절차를 따라 통계를 출력하세요.
**입력**: $ARGUMENTS
---
옵션
| 옵션 | 설명 | 예시 | |------|------|------| | (없음) | 전체 통계 | `/stats` | | `--week` | 최근 7일 | `/stats --week` | | `--month` | 최근 30일 | `/stats --month` | | `--project` | 현재 프로젝트만 | `/stats --project` |
---
실행 절차
Step 1: 로그 파일 확인
LOG_FILE="$HOME/.code-forge/usage.jsonl"
파일이 없으면:
사용 기록이 없습니다. 에이전트나 스킬을 사용하면 자동으로 기록됩니다.
Step 2: 통계 파싱
Bash로 usage.jsonl을 파싱한다.
**기간 필터링:**
- `--week`: 최근 7일의 타임스탬프만 필터
- `--month`: 최근 30일
- `--project`: `"project":"현재디렉토리명"`만 필터
- (없음): 전체
**파싱 방법:**
jq가 있으면 jq 사용:
# 에이전트 Top 5
jq -r 'select(.type=="agent") | .name' "$LOG_FILE" | sort | uniq -c | sort -rn | head -5
# 스킬 Top 5
jq -r 'select(.type=="skill") | .name' "$LOG_FILE" | sort | uniq -c | sort -rn | head -5
jq 없으면 grep/awk 폴백:
# 에이전트 Top 5
grep '"type":"agent"' "$LOG_FILE" | grep -o '"name":"[^"]*"' | sed 's/"name":"//;s/"//' | sort | uniq -c | sort -rn | head -5
# 스킬 Top 5
grep '"type":"skill"' "$LOG_FILE" | grep -o '"name":"[^"]*"' | sed 's/"name":"//;s/"//' | sort | uniq -c | sort -rn | head -5
Step 3: 출력 형식
## code-forge 사용 통계
**기간:** {시작일} ~ {종료일} ({총 N일})
**총 호출:** {총 횟수}회
### 에이전트 Top 5
| # | 에이전트 | 호출 | 비율 |
|---|---------|------|------|
| 1 | {name} | {count} | {%} |
| 2 | {name} | {count} | {%} |
| 3 | {name} | {count} | {%} |
| 4 | {name} | {count} | {%} |
| 5 | {name} | {count} | {%} |
### 스킬 Top 5
| # | 스킬 | 호출 | 비율 |
|---|------|------|------|
| 1 | {name} | {count} | {%} |
| 2 | {name} | {count} | {%} |
| 3 | {name} | {count} | {%} |
| 4 | {name} | {count} | {%} |
| 5 | {name} | {count} | {%} |
### 프로젝트별
| 프로젝트 | 에이전트 | 스킬 | 합계 |
|---------|---------|------|------|
| {name} | {count} | {count} | {total} |
### 일별 추이 (최근 7일)
{날짜}: {"█" * count} {count}데이터가 적으면 (10건 미만) 간략 형식으로:
## code-forge 사용 통계
총 {N}회 사용 ({에이전트 X회, 스킬 Y회})
가장 많이 사용: {name} ({count}회)Read more
name: stats description: code-forge 사용량 통계. ~/.code-forge/usage.jsonl을 파싱하여 에이전트/스킬 사용 빈도 top 5와 요약을 터미널에 출력. category: utility user-invocable: false
/stats — Bellows 사용량 통계
usage.jsonl 로그를 분석하여 에이전트/스킬 사용 통계를 보여준다.
**[즉시 실행]** 아래 절차를 따라 통계를 출력하세요.
**입력**: $ARGUMENTS
---
옵션
| 옵션 | 설명 | 예시 | |------|------|------| | (없음) | 전체 통계 | `/stats` | | `--week` | 최근 7일 | `/stats --week` | | `--month` | 최근 30일 | `/stats --month` | | `--project` | 현재 프로젝트만 | `/stats --project` |
---
실행 절차
Step 1: 로그 파일 확인
LOG_FILE="$HOME/.code-forge/usage.jsonl"
파일이 없으면:
사용 기록이 없습니다. 에이전트나 스킬을 사용하면 자동으로 기록됩니다.
Step 2: 통계 파싱
Bash로 usage.jsonl을 파싱한다.
**기간 필터링:**
- `--week`: 최근 7일의 타임스탬프만 필터
- `--month`: 최근 30일
- `--project`: `"project":"현재디렉토리명"`만 필터
- (없음): 전체
**파싱 방법:**
jq가 있으면 jq 사용:
# 에이전트 Top 5 jq -r 'select(.type=="agent") | .name' "$LOG_FILE" | sort | uniq -c | sort -rn | head -5 # 스킬 Top 5 jq -r 'select(.type=="skill") | .name' "$LOG_FILE" | sort | uniq -c | sort -rn | head -5
jq 없으면 grep/awk 폴백:
# 에이전트 Top 5 grep '"type":"agent"' "$LOG_FILE" | grep -o '"name":"[^"]*"' | sed 's/"name":"//;s/"//' | sort | uniq -c | sort -rn | head -5 # 스킬 Top 5 grep '"type":"skill"' "$LOG_FILE" | grep -o '"name":"[^"]*"' | sed 's/"name":"//;s/"//' | sort | uniq -c | sort -rn | head -5
Step 3: 출력 형식
## code-forge 사용 통계
**기간:** {시작일} ~ {종료일} ({총 N일})
**총 호출:** {총 횟수}회
### 에이전트 Top 5
| # | 에이전트 | 호출 | 비율 |
|---|---------|------|------|
| 1 | {name} | {count} | {%} |
| 2 | {name} | {count} | {%} |
| 3 | {name} | {count} | {%} |
| 4 | {name} | {count} | {%} |
| 5 | {name} | {count} | {%} |
### 스킬 Top 5
| # | 스킬 | 호출 | 비율 |
|---|------|------|------|
| 1 | {name} | {count} | {%} |
| 2 | {name} | {count} | {%} |
| 3 | {name} | {count} | {%} |
| 4 | {name} | {count} | {%} |
| 5 | {name} | {count} | {%} |
### 프로젝트별
| 프로젝트 | 에이전트 | 스킬 | 합계 |
|---------|---------|------|------|
| {name} | {count} | {count} | {total} |
### 일별 추이 (최근 7일)
{날짜}: {"█" * count} {count}데이터가 적으면 (10건 미만) 간략 형식으로:
## code-forge 사용 통계
총 {N}회 사용 ({에이전트 X회, 스킬 Y회})
가장 많이 사용: {name} ({count}회)설치하면 Claude Code가 더 잘 동작합니다. 전문 에이전트, 슬래시 스킬, 스택 모듈을 제공하는 Claude Code 플러그인. 검증된 사고모델(GROUND→APPLY→VERIFY→ADAPT)이 모든 작업의 품질을 일관되게 유지합니다. (에이전트/스킬 개수는 디스크가 진실 — ls agents/.md | wc -l, ls skills//SKILL.md | wc -l) 현재 상태: 개인 GitHub 운영 중 (마켓플레이스 배포 4.10.0).
Repo: ggombee/code-forge
Other skills on code-forge.
debate
교차 모델 토론. Agent Teams / Codex CLI / self-debate 모드 선택. 설계 결정, 아키텍처 선택 시 활용. "어느 쪽이 나을까", "설계 비교해줘", "토론시켜줘", "교차 검증해줘" 등의 요청에 사용.

