ワンクリックで
source-evaluation
Evaluate reliability and relevance of information sources
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Evaluate reliability and relevance of information sources
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Discover team members, delegate tasks, and track progress to completion
Prepare structured meeting agendas and pre-reads from task board, artifacts, and team context
Classify, prioritize, and route incoming incidents based on severity, category, and affected components
Classify incoming requests and route to the appropriate specialist agent
How to communicate with other agents on the system. Use when you need to ask questions, share information, or coordinate.
Compare options against weighted criteria with scored matrix, sensitivity analysis, and quantified recommendation
| name | source-evaluation |
| description | Evaluate reliability and relevance of information sources |
Use this skill when you need to assess the reliability of information before including it in research, recommendations, or decisions.
Evaluate every source against these four dimensions:
| Criterion | Question | Indicators of High Quality | Indicators of Low Quality |
|---|---|---|---|
| Authority | Who created this? | Official docs, maintainer, known expert | Unknown author, no attribution |
| Currency | How recent is it? | Updated within 12 months, matches current version | Outdated version, no date |
| Accuracy | Can claims be verified? | Consistent with other sources, testable | Contradicts known facts, untestable |
| Scope | Does it cover what we need? | Directly addresses our question | Tangentially related, partial coverage |
Assign one of these confidence levels to each piece of information:
| Level | Definition | When to Use |
|---|---|---|
| High | Multiple authoritative sources agree | Official docs + verified by code inspection + confirmed by testing |
| Medium | Single credible source, uncontradicted | One official doc or one reliable source, no conflicting info |
| Low | Unverifiable or outdated | No authoritative source, or source is >2 years old for fast-moving tech |
| Conflicting | Sources disagree | Two or more sources make contradictory claims |
For each piece of information you have gathered, record its source:
cat > /tmp/source-eval.md <<'EOF'
| # | Source | Type | URL/Path | Date | Author/Org |
|---|--------|------|----------|------|------------|
| 1 | | | | | |
| 2 | | | | | |
EOF
Source types:
official-doc — Maintained documentation from the projectsource-code — Reading the actual implementationmanpage — System manual pagesconfig-file — Existing configuration in the projecttest-output — Empirical result from running codearticle — Blog post, tutorial, or third-party writeupcomment — Code comment or commit messageinference — Logical deduction from other factsFor each source, check:
SOURCE_PATH="/path/to/source"
# Currency: when was it last modified?
stat -c '%y' "$SOURCE_PATH" 2>/dev/null || stat -f '%Sm' "$SOURCE_PATH" 2>/dev/null
# Authority: who wrote/owns it?
git log --format='%an <%ae>' -1 -- "$SOURCE_PATH" 2>/dev/null
# Accuracy: does the code match what the doc says?
# (manually compare doc claims against actual implementation)
# Scope: does it address our specific question?
# (manually assess relevance)
For important claims, verify against multiple sources:
CLAIM="function accepts JSON input"
# Check source code
rg "JSON\.parse|json\.loads" ~/workspace/src/ --type-add 'code:*.{js,py,ts}' --type code
# Check tests
rg "JSON|json" ~/workspace/tests/ -l
# Check documentation
rg -i "json" ~/workspace/README.md ~/workspace/docs/ 2>/dev/null
For each source, produce a structured assessment:
### Source: [Name or path]
- **Type:** official-doc | source-code | article | ...
- **Confidence:** High | Medium | Low | Conflicting
- **Authority:** [Who created it, their relationship to the project]
- **Currency:** [Last updated date, version it covers]
- **Accuracy:** [Verified against N other sources / Unable to verify]
- **Scope:** [Directly relevant / Partially relevant / Tangential]
- **Notes:** [Any caveats, biases, or limitations]
When sources disagree:
### Conflicting Information
- **Claim:** [The disputed fact]
- **Source A says:** [claim] (confidence: Medium, official-doc from 2024)
- **Source B says:** [contradictory claim] (confidence: High, source-code current)
- **Resolution:** Source B (source code) takes precedence over outdated documentation