소스 정보
- 저장소
- thewoolleyman/livespec-overseer
- 최근 소스 활동
- 2026년 8월 20일 06:03
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/thewoolleyman/livespec-overseer --skill grooming명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | grooming |
| description | Run the bounded livespec grooming drain pass. Invoked as livespec-overseer:grooming. |
Thin Codex binding for the grooming operation of the
livespec-overseer plugin. The behavior lives in the plugin-owned prose
artifact at prose/grooming.md; this binding only resolves the plugin root and
reads that contract.
$PLUGIN_ROOT)Codex does NOT textually substitute a plugin-root token into SKILL prose, so resolve it explicitly, once, in this order:
LIVESPEC_OVERSEER_PLUGIN_ROOT is set and non-empty, use it (explicit
override for nonstandard dev setups)../.claude-plugin/prose exists under the cwd AND ./.claude-plugin
validates as this overseer plugin checkout (matching plugin manifest name),
use $(pwd)/.claude-plugin.$HOME/.codex/plugins/cache/livespec-overseer/livespec-overseer/<version>.source.path from
codex plugin list --json -m livespec-overseer using a robust executable
lookup (command -v codex, $HOME/.local/bin/codex, then
$HOME/.bun/bin/codex).PLUGIN_ROOT="${LIVESPEC_OVERSEER_PLUGIN_ROOT:-}"
PLUGIN_ROOT_DIAGNOSTICS=""
if [ -z "$PLUGIN_ROOT" ] && [ -d "./.claude-plugin/prose" ]; then
CANDIDATE_PLUGIN_ROOT="$(pwd)/.claude-plugin"
if [ -f "$CANDIDATE_PLUGIN_ROOT/plugin.json" ] && python3 - "$CANDIDATE_PLUGIN_ROOT/plugin.json" <<'PY'
import json
import sys
try:
with open(sys.argv[1], encoding="utf-8") as f:
data = json.load(f)
except Exception:
sys.exit(1)
sys.exit(0 if data.get("name") == "livespec-overseer" else 1)
PY
then
PLUGIN_ROOT="$CANDIDATE_PLUGIN_ROOT"
fi
fi
if [ -z "$PLUGIN_ROOT" ]; then
CODEX_CACHE_PARENT="$HOME/.codex/plugins/cache/livespec-overseer/livespec-overseer"
if [ -d "$CODEX_CACHE_PARENT" ]; then
CANDIDATE_PLUGIN_ROOT="$(find "$CODEX_CACHE_PARENT" -mindepth 1 -maxdepth 1 -type d | sort -V | tail -n 1)"
if [ -n "$CANDIDATE_PLUGIN_ROOT" ] && [ -f "$CANDIDATE_PLUGIN_ROOT/prose/grooming.md" ]; then
PLUGIN_ROOT="$CANDIDATE_PLUGIN_ROOT"
else
PLUGIN_ROOT_DIAGNOSTICS="$PLUGIN_ROOT_DIAGNOSTICS
cache root not found: no valid version under $CODEX_CACHE_PARENT"
fi
else
PLUGIN_ROOT_DIAGNOSTICS="$PLUGIN_ROOT_DIAGNOSTICS
cache root not found: $CODEX_CACHE_PARENT"
fi
fi
if [ -z "$PLUGIN_ROOT" ]; then
CODEX_BIN=""
CODEX_TRIED="command -v codex, $HOME/.local/bin/codex, $HOME/.bun/bin/codex"
if command -v codex >/dev/null 2>&1; then
CODEX_BIN="$(command -v codex)"
elif [ -x "$HOME/.local/bin/codex" ]; then
CODEX_BIN="$HOME/.local/bin/codex"
elif [ -x "$HOME/.bun/bin/codex" ]; then
CODEX_BIN="$HOME/.bun/bin/codex"
else
PLUGIN_ROOT_DIAGNOSTICS="$PLUGIN_ROOT_DIAGNOSTICS
codex executable not found; tried: $CODEX_TRIED"
fi
if [ -n "$CODEX_BIN" ]; then
PLUGIN_ROOT="$("$CODEX_BIN" plugin list --json -m livespec-overseer 2>/tmp/livespec-overseer-codex-plugin-list.err | python3 -c 'import json, sys
try:
data = json.load(sys.stdin)
except Exception:
sys.exit(0)
for plugin in data.get("installed", []):
if plugin.get("pluginId") == "livespec-overseer@livespec-overseer":
sys.stdout.write(plugin.get("source", {}).get("path", ""))
break' 2>/dev/null || true)"
if [ -z "$PLUGIN_ROOT" ]; then
PLUGIN_ROOT_DIAGNOSTICS="$PLUGIN_ROOT_DIAGNOSTICS
plugin not installed according to: $CODEX_BIN plugin list --json -m livespec-overseer"
if [ -s /tmp/livespec-overseer-codex-plugin-list.err ]; then
PLUGIN_ROOT_DIAGNOSTICS="$PLUGIN_ROOT_DIAGNOSTICS
codex plugin list stderr: $(cat /tmp/livespec-overseer-codex-plugin-list.err)"
fi
fi
fi
fi
if [ -z "$PLUGIN_ROOT" ] || [ ! -f "$PLUGIN_ROOT/prose/grooming.md" ]; then
echo "livespec-overseer plugin root not found." >&2
if [ -n "$PLUGIN_ROOT_DIAGNOSTICS" ]; then
printf "%b\n" "$PLUGIN_ROOT_DIAGNOSTICS" >&2
fi
echo "Install it first:" >&2
echo " codex plugin marketplace add thewoolleyman/livespec-overseer" >&2
echo " codex plugin add livespec-overseer@livespec-overseer" >&2
exit 1
fi
If resolution fails, STOP and surface those install instructions rather than improvising paths.
Read $PLUGIN_ROOT/prose/grooming.md in full, then execute it end-to-end.
cat "$PLUGIN_ROOT/prose/grooming.md"
This binding adds NO operation behavior of its own; the drain-pass contract lives in the prose.