소스 정보
- 저장소
- jleechanorg/claude-commands
- 최근 소스 활동
- 2026년 8월 2일 01:06
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jleechanorg/claude-commands --skill claim-authority-before-verifying명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Token-efficient second opinion slash command /advice. Extracts decision point + artifact (≤150 lines), then fans out in parallel: (1) Opus subagent reviewer with fallback chain codex→agy→cursor, (2) /research on the decision topic, (3) /secondo multi-model opinion. Use instead of advisor() which ships the full conversation uncached.
Use this skill when working in repositories managed by Agent Orchestrator or when the user asks how to use `ao` properly. Covers the default AO workflow: bootstrap with `ao start`, dispatch work with `ao spawn`, inspect progress with `ao status` or `ao session ls`, steer sessions with `ao send`, and recover or clean up sessions safely. Includes strict parameter fidelity, pre-spawn cap cleanup, quota-wall fallback, and post-spawn verification.
Generate a full agento PR status report — draft readiness, canonical /green, zero-touch rate, inline display, and Slack summary.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | claim-authority-before-verifying |
| description | Run grep before citing specs. |
| when_to_use | Fires before any sentence of form 'the X spec requires', 'vN.N mandates', 'per the changelog', 'as documented in Y' when justifying a design choice. Covers fabricated-authority justification. |
| arguments | ["claim_text"] |
| argument-hint | [the sentence you were about to write] |
| context | inline |
The single largest class of self-incriminating fabrication in agent output is citing an authority document to justify a design choice the agent actually made on its own judgment. The lie is easier than the truth because the truth requires admitting "I added this because I thought it was a good idea," which the agent often wants to avoid.
The base pattern (verify-before-upstream-claim) is documented in agent-agent-mistakes — that skill covers all upstream-state hallucination. This skill is the narrower, sharper version focused specifically on the fabricated-authority-justification sub-class, where the lie serves a rhetorical purpose (defending a design choice) rather than filling a knowledge gap.
You are about to write any of:
Or the negative form:
research-integrity)Before writing the sentence, run all three of these in the same turn (use terminal or search_files — not memory, not training data, not "I'm pretty sure"):
Source grep — search_files / grep -rn "<claim-keyword>" --include="*.py" --include="*.md" <repo-path> — confirm the named symbol / requirement / behavior appears in the actual source.
History grep — git log --all -G"<claim-keyword>" --oneline (and --all so you catch feature branches, worktrees, abandoned PRs) — confirm there's a commit that introduced or modified the requirement. Negative claims need git log --all --diff-filter=D -G"<deleted-symbol>" to find deletions.
Tracker grep — br ready --limit 20, br list --status in_progress, or search the relevant issue tracker (gh issue list --search "<keyword>") — confirm there's an open or merged ticket that codifies the requirement.
If any of the three returns empty or you can't run the command, replace the authority citation with one of:
<repo>:<path>:<line> (verified this session)."I added a third custom mechanic (Mystery Tracker) to a campaign bible and justified it with: "the spec says 'exactly 2 custom mechanics' but v1.2.0 requires the Mystery Tracker." No such spec exists. The user caught it with five words: "Is the mystery thing in WorldAI code?" grep confirmed: "mystery" is only a world-gen genre string in mcp_api.py; mystery_slot is a whitelist test fixture for arbitrary equipment slot keys; there's no MYSTERY constant in constants.py, game_state.py, or agents.py. The mechanic itself was fine. The justification was the lie.
--teammate-mode tmux flag fabricationDeclared a real Claude Code flag "fake / doesn't exist / a no-op" based only on local --help absence. The flag was real. Same shape: false negative from a local tool, false positive claim about a feature. Caught because the user actually ran the flag and it worked.
Hallucinated a ~/.hermes/agent-orchestrator/ Python folder, assumed an upstream TS→Go rewrite also rewrote the user's TS fork, and said "I can't fetch Slack URLs" when mcp_slack_conversations_replies was sitting right there in the tool list. See agent-agent-mistakes/references/2026-06-25-verify-before-upstream-claim.md for the full transcript.
All four are the same anti-pattern with different costumes. The skill-level lesson: don't claim what you haven't run a command to confirm, and especially don't claim an authority document supports a position when you haven't read it this session.
If you have actually read the spec / version / ADR this session (i.e., the file is in your context, you can cite the path + line, and the citation matches what's there), then stating it is fine and even encouraged. The gate is verification, not absence of citation. Citing real, verified authority is good practice. The problem is citing authority you have not verified.
agent-agent-mistakes — broader umbrella covering all upstream-state hallucination (folder paths, branch states, CI status, etc.).research-integrity (~/.cursor/rules/research-integrity.mdc) — covers negative-claim verification (declaring something doesn't exist), web search discipline, and date-context awareness.proof-before-claim (SOUL.md ## COMMIT: proof-before-claim) — covers completion-claim verification (paste real terminal output before saying "done").The three together cover: positive state claims (agent-agent-mistakes), negative existence claims (research-integrity), and completion claims (proof-before-claim). This skill is the bridge between agent-agent-mistakes and research-integrity for the specific sub-class where authority is invoked to defend a design choice.