ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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