skills/entwurf-peek/SKILL.md
sync entwurf 자식을 들여다보는 손. 호출자가 'Mattering...'에 묶여있을 때 자식 분신이 무엇을 하는지 확인. entwurf_peers는 control socket 있는 세션만 보여주는데, 이 스킬은 자식 entwurf 세션(이름 태그 entwurf)까지 합쳐서 본다. 트리거: 'entwurf-peek', '분신 들여다보기', '진행 중 세션', 'sync entwurf 안에서', 'peek session', 'live session map', '분신 추적'.
npx skillsauth add junghan0611/agent-config entwurf-peekInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
세 개의 서브커맨드. live control socket probe + 세션 JSONL header/name 스캔만으로 동작. pi-shell-acp 새 surface 없음. session-recap의 JSONL 파서 패턴 재사용.
python3 {baseDir}/scripts/entwurf-peek.py <subcommand> [options]
| Subcommand | Purpose | Example |
|------------|---------|---------|
| peek <id> | 세션 안 마지막 메시지 + 활성 여부 + caller + model/state | peek 9858a7 |
| map | 살아있는 세션 전체 지도 (sockets + 최근 entwurf 파일 + child caller + compact model/state) | map -p abductcli |
| trace <parent> | 부모가 던진 자식 entwurf 추적 + child compact model/state | trace 20260604T094303-842ded |
| Flag | Where | Description |
|------|-------|-------------|
| --plain | global | ASCII fallback ([ACTIVE]/[IDLE]/[DONE] 대신 🔴🟡⚫) |
peek <id|file>| Flag | Default | Description |
|------|---------|-------------|
| -m, --messages N | 4 | 마지막 N개 user/assistant 메시지 |
| -t, --tools N | 5 | 최근 N개 inline tool 흔적 |
| -c, --chars N | 200 | 요소당 최대 글자 |
| --thinking | off | 최근 thinking 블록 1개 포함 |
<id>는 session selector다. canonical target 은 JSONL header id 이며, garden sessionId 전체(20260604T094309-9858a7)나 6-hex 접미사(9858a7), legacy full UUID(019dddb0-...), 직접 파일 경로를 받을 수 있다. 0.9.0부터 entwurf-xxx 같은 옛 filename/task species 는 identity authority 가 아니다.
map| Flag | Default | Description |
|------|---------|-------------|
| -p, --project NAME | all | cwd 디렉토리명 부분 매치 (e.g. abductcli, agent-config) |
| --since SEC | 3600 | 최근 N초 이내 활동한 세션. control socket 있는 세션은 강제 포함 |
| -a, --all | off | done 상태도 포함 |
활성도: <30s → 🔴 active · <5m → 🟡 idle · 5m+ → ⚫ done. 🔌 = connect() 성공한 live control socket.
trace <parent-id|file>| Flag | Default | Description |
|------|---------|-------------|
| --heuristic | off | declared 매치 외 시간 인접 자식도 포함 (±2h) |
자식 매칭은 부모 JSONL의 entwurf spawn 결과 Session ID: <YYYYMMDDTHHMMSS-xxxxxx> 텍스트에서 추출 (0.9.0: 옛 Task ID: <hex> 폐기). 이게 1차 시그널.
기본 trace는 heuristic 자식을 자동 포함하지 않지만, 숨겨진 nearby candidate 개수는 보여준다.
# 진행 중 자식 분신 들여다보기 (garden 6-hex suffix)
python3 {baseDir}/scripts/entwurf-peek.py peek 9858a7
# full garden sessionId로 thinking까지 보기
python3 {baseDir}/scripts/entwurf-peek.py peek 20260604T094309-9858a7 --thinking
# 지금 살아있는 세션 전부
python3 {baseDir}/scripts/entwurf-peek.py map
# 특정 cwd만 (abductcli 부모-자식 묶어서 보기)
python3 {baseDir}/scripts/entwurf-peek.py map -p abductcli -a --since 7200
# 부모 full sessionId로 자식 entwurf 트리
python3 {baseDir}/scripts/entwurf-peek.py trace 20260604T094303-842ded
Step 1: map → 살아있는 세션 그림 잡기
Step 2: trace <my-session-id> → 내 자식들 식별
Step 3: peek <child-id> → 자식 마지막 활동 확인
Step 4: 활성도가 ⚫ DONE이면 결과 회수, 🟡 IDLE이면 잠시 대기, 🔴 ACTIVE이면 진행 중
Sync entwurf로 호출자가 "Mattering..."에 묶여있을 때, 다른 세션에서 이 스킬을 돌려 자식의 실시간 상태를 확인한다. peers MCP는 control socket이 있는 세션만 보여주지만, 자식 entwurf 세션(이름 태그 entwurf)은 socket이 없어 peers에 안 잡힌다 — 이걸 메우는 도구. (0.9.0: 자식 판별 = 파일명이 아니라 session_info name 의 entwurf 태그.)
═══ {icon} {kind}-{short_id} ({age}) ═══ 형식 — 무엇을 보고 있는지 고정entwurf) 는 가능하면 caller: <kind>-<short> [declared|time_adjacent] 를 함께 보여준다 (caller 는 보통 control/plain 세션)peek 는 가능하면 model: provider/model + state: tool running | awaiting assistant reply | waiting for user 를 함께 보여준다map / trace 는 child row 끝에 · model / state compact suffix를 붙인다--chars로 자르고, 줄바꿈은 공백으로 치환 (한 줄 압축)[tool:start]/[tool:done] 텍스트는 🔧 recent tools 섹션에 별도 분리plain 으로 분류된다 (legacy uuid 세션 포함). entwurf/control 태그가 박힌 뒤에야 그 종류로 보인다.--heuristic은 시간 인접만 보므로 같은 cwd에서 다른 부모가 던진 entwurf와 섞일 수 있음tool running, tool result면 awaiting assistant reply, assistant text면 waiting for user. 오래된 orphan toolCall은 무시한다. provider별 JSONL shape가 다르면 정확도는 떨어질 수 있음| 작업 | Context | 대안 |
|------|---------|------|
| peek | ~2KB | raw JSONL read ~50KB |
| map | ~1KB | 수동 ls+stat 조합 5+ 호출 |
| trace | ~1KB | 수동 grep+ls 조합 |
documentation
Cut an OpenClaw-style CalVer tag for a repo — gather commits, refresh CHANGELOG, promote, tag, push, stamp. Use when the user says '태그 박자', '릴리즈 컷', 'changelog 정리', 'cut a release/tag', or wants a vYYYY.M.D[-suffix] snapshot.
development
멀티하네스용 /recall 래퍼. native custom command surface가 없는 하네스(예: Antigravity, Codex)에서도 /recall에 해당하는 다축 맥락 복원을 skill로 호출한다. session-recap, NEXT.md·ROADMAP.md, git status/log, semantic-memory를 조합해 어제/오늘의 작업축을 되살린다.
tools
포지(forge) — 셀프호스팅 Forgejo 이슈/PR/라벨/코멘트 작업면. 힣 에이전트가 코드 면에서 일하는 공유 손. botment의 자식 패턴(가든 댓글면 → 코드 댓글면 endpoint swap). 'forge', 'forgejo', '포지', 'issue', 'pull request', '이슈', '풀리퀘', '코드 댓글', '라벨'.
tools
Read this skill before making git commits