소스 정보
- 저장소
- jmagly/aiwg
- 최근 소스 활동
- 2026년 5월 10일 06:16
- 감지된 SKILL.md 언어
- 영어
- 스타
- 178
- 포크
- 26
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/jmagly/aiwg --skill verify-citations명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
WCAG accessibility analysis for color palettes including contrast ratios, compliance checking, and remediation suggestions. Use when user needs to verify colors meet accessibility standards.
Generate, analyze, compare, export, and suggest color palettes using color theory. Use when user asks about colors, palettes, color schemes, or needs help choosing colors for a project.
Research current color trends from Pantone, architecture, film, and design. Use when user asks about trending colors, popular palettes, or wants research-backed color inspiration.
SOC 직업 분류 기준
SKILL.md 표시 중
| namespace | aiwg |
| name | verify-citations |
| platforms | ["all"] |
| description | Verify all citations in a document against the research corpus |
| commandHint | {"category":"research-quality"} |
Validate that all citations, references, and factual claims are backed by actual sources in the research corpus.
When invoked, perform systematic citation verification:
Parse Target File
@.aiwg/research/sources/* references@.aiwg/research/findings/* referencesREF-XXX inline references10.XXXX/...)Author et al., YYYY)[<artifact_id>@<content_hash>, L<n>-<n>] and path-only fallback [<artifact_id>, L<n>-<n>]Verify Each Citation
content_hash present, recompute current hash and compare (see RLM Citation Verification below)Detect Hallucinations
Check GRADE Compliance
Generate Report
Auto-Fix Mode (--fix)
[STALE: hash mismatch]; do not auto-rewrite (the agent that emitted them must decide whether the new content still supports the claim)When the target file contains RLM-format citations (#1205, #1223), verify-citations validates them against the current state of the cited artifacts.
The skill recognizes two inline forms (matching the schema at agentic/code/addons/rlm/schemas/citation-tuple.json):
[<artifact_id>@<content_hash>, <lines>] — full provenance with content hash
[src/auth/login.ts@a8f9c2d4e5f60718, L42-58][<artifact_id>, <lines>] — citation without content hash (artifact wasn't in the index when emitted)
[src/legacy/auth.py, L88]The lines field is optional in both forms.
For versioned RLM citations:
<artifact_id> to a project-relative file pathsrc/artifacts/index-builder.ts:243)content_hash:
--strict)For path-only fallback RLM citations:
<artifact_id> to a project-relative file path--strict)Stale verdict means the file content has changed since the citation was emitted — the claim may no longer be supported by the cited region. The simple hash-mismatch heuristic doesn't distinguish whitespace edits from semantic changes; richer semantic-drift detection is the responsibility of aiwg index doctor --rlm-audit (#1208).
The hash routine MUST match the index implementation exactly so citations emitted by rlm-batch round-trip cleanly:
sha256(file_contents).hexdigest()[0:16]
See src/artifacts/index-builder.ts:243 for the canonical implementation. Any verification logic that diverges from this convention will produce false stale verdicts.
When RLM citations are present, the report adds a new section:
RLM Citations: 12 total
✓ Fresh: 9
⚠ Stale: 2
⚠ Un-versioned: 1
✗ Missing: 0
STALE citations:
- [src/auth/login.ts@a8f9c2d4e5f60718, L42-58]
Current hash: f3b2c1d4e5a60718
File modified since citation emitted
UN-VERSIONED citations:
- [src/legacy/auth.py, L88]
File exists but no content hash; consider running through aiwg index
--rlm: opt-in to RLM-only mode — skip @-mention research-corpus checks. Useful when verifying RLM-aggregated outputs in CI without research-corpus context.--strict: existing flag — STALE and UN-VERSIONED RLM citations escalate from warnings to errors and produce non-zero exit.[file-path] - File to verify (default: all .md files in current directory)--strict - Treat warnings as errors (including STALE and UN-VERSIONED RLM citations)--fix - Automatically fix GRADE violations and remove hallucinated citations (does not rewrite RLM citations — see #6 above)--report - Save report to .aiwg/reports/citation-verification.md--corpus-only - Only check @-mention references, skip author-year patterns--rlm (#1225) - Verify RLM citations only; skip research-corpus checks