llm-wiki-research — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited llm-wiki-research (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Sub-skill of llm-wiki-pm. Handles research sprints, competitive deep dives, and auto-enrichment of stub entities. Delegates all URL fetching to worker-source-fetcher so privacy filtering and raw/ logging happen correctly.
WebFetch note: WebFetch is listed in allowed-tools for quick page previews (e.g., confirming a URL before delegation). For source capture (saving to raw/), always delegate to worker-source-fetcher. Never call WebFetch directly for source saving — privacy filtering and raw/ logging won't happen.
Orient per AGENTS.md before any writes:
$WIKI/SCHEMA.md$WIKI/index.md$WIKI/log.md$WIKI/overview.mdResearch sprints may create many pages. Get user confirmation before creating 5+ pages.
WIKI=$(cat .wiki-path 2>/dev/null | tr -d '[:space:]')
WIKI=${WIKI:-${CLAUDE_PLUGIN_OPTION_wiki_path:-${WIKI_PATH:-$(pwd)}}}This skill uses worker-source-fetcher for all URL fetching. Never call WebFetch directly for source capture — always invoke the worker:
"Use worker-source-fetcher to fetch [URL]"
This ensures privacy filtering and raw/ logging happen correctly. The worker returns: "OK: saved to raw/<subdir>/<slug>.md" — use that path for synthesis.
Trigger: "research sprint on [topic]", "deep research on [topic]"
① Define scope
Confirm with user:
② Wiki-first
grep -r "<topic>" $WIKI --include="*.md" -lRead all relevant pages. Surface: "Wiki has N relevant pages. Here's what we already know: [...]. Gaps: [...]."
③ Research plan
Present 3-5 specific sources to fetch — name each, why it's relevant, what question it answers. Typical: analyst reports, company pages, recent press, whitepapers, industry forums. Get user confirmation before fetching.
④ Delegate fetching
For each confirmed source: "Use worker-source-fetcher to fetch [URL]"
If a fetch fails (404, paywall, timeout), note it and continue. Collect all raw/ paths before writing.
⑤ Synthesize
Read all fetched raw files. Extract entities, claims, data points. Cross-reference against existing wiki pages. Distinguish:
⑥ File findings
Create/update wiki pages per core ingest discipline: inline provenance, coverage markers, confidence levels, min 2 outbound wikilinks, backlink audit.
Produce a synthesis page at queries/research-<topic>-<YYYY-MM-DD>/README.md:
---
title: "Research Sprint: <Topic>"
created: YYYY-MM-DD
type: query
tags: [<relevant tags>]
sources: [<raw slugs fetched>]
---
## Scope
Question: [...] Depth: [...] Sources: N
## What We Knew
[Pre-sprint wiki state summary]
## What We Learned
[Net-new findings with inline citations]
## Confirmations
[Claims now corroborated by 2+ sources]
## Contradictions
[Conflicts with existing wiki pages — cite both sides]
## Still Unknown
[Gaps that fetching didn't resolve]
## Pages Created/Updated
- [[slug]]: [brief note]⑦ Surface delta
What did we learn that we didn't know? What did it confirm? What's still unknown? Any contradictions with the wiki?
⑧ Log
## [YYYY-MM-DD] research-sprint | topic: <X> | sources: N | pages created/updated: NTrigger: "competitive deep dive on [company]", "full competitive analysis of [company]"
① Read existing coverage
Read $WIKI/entities/<company>.md and related comparisons/ pages. If coverage: comprehensive, ask: "Already marked comprehensive — update pass or fresh deep dive?"
② Research plan
Standard source set:
Get user confirmation before fetching.
③ Delegate fetching
"Use worker-source-fetcher to fetch [URL]" for each confirmed source.
④ Update entity page
Apply diff discipline (core §4): snapshot to _archive/<company>-<date>.md first, show diff before writing, update inline provenance on revised facts, sweep stale variants.
⑤ Update comparison pages
Update existing comparisons/ pages. Offer to create a new comparison page if the deep dive reveals strong differentiation.
⑥ Flag confidence by source
| Source type | Confidence |
|---|---|
| Official website, press releases | verified |
| Analyst reports, G2 reviews | likely |
| Forums, social media, unofficial blogs | rumor |
⑦ Log
## [YYYY-MM-DD] competitive-deep-dive | entity: <company> | sources: N | pages updated: NTrigger: "auto-research [entity]", "enrich [entity]", "fill in [entity] page"
For entity pages with coverage: stub. Fast enrichment pass. This is factual/web enrichment. If the user wants relationship/CRM context (tier, touchpoint, feature asks) rather than facts, route to llm-wiki-crm's enrich instead.
① Read the stub — what do we already know? What's in gaps:?
② Search
WebSearch: "[entity name]" recent news
WebSearch: "[entity name]" official website
WebSearch: "[entity name]" [primary domain, e.g. pricing / funding / product]③ Extract — description, key facts, relationships to other wiki entities, recent events.
④ Update stub page with inline provenance [source: url, date]. Bump coverage: stub → partial if meaningful data found. Update gaps: and sources: frontmatter. Bump updated:.
Do NOT fabricate. If search returns nothing useful, say so. Leave coverage: stub.
⑤ Log
## [YYYY-MM-DD] auto-research | entity: <X> | coverage: stub→partial | sources: N
# or if nothing found:
## [YYYY-MM-DD] auto-research | entity: <X> | no public data found | coverage: stub (unchanged)Trigger: "research our gaps", "fill coverage gaps", "research stubs"
① Scan for stubs
grep -r "coverage: stub" $WIKI --include="*.md" -l
grep -rL "coverage:" $WIKI/entities $WIKI/concepts --include="*.md"② Present list — ask user which to prioritize.
③ Run Operation 3 on each selected stub in sequence. Surface result before moving to next: "Enriched [[entity]] — stub → partial. Found: [key facts]. Continue?"
④ Report
Gap research complete:
- N pages enriched (stub → partial)
- N pages still stub (insufficient public data)
- N pages skipped⑤ Log
## [YYYY-MM-DD] gap-research | stubs scanned: N | enriched: N | still-stub: Nworker-source-fetcher — never WebFetch directly for source saving.[source: slug, location].coverage: after meaningful enrichment._archive/<slug>-<date>.md before deep dive overwrites.private: true.queries/research-<topic>-<date>/README.md.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.