lit-rescue — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited lit-rescue (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.
When to invoke this skill:
Rule: If there is >20% chance the answer could be fabricated or outdated → invoke this skill first.
Identify the query type before formulating search queries:
| Type | Keywords | Primary MCP |
|---|---|---|
| METHOD | "which algorithm", "best approach for", "how to compute X" | Perplexity → bioRxiv |
| PARAM | "what value for", "typical hyperparameters", "threshold for" | Perplexity → PubMed |
| BUG | "why does X fail", "unexpected behavior", "error in library" | Perplexity only |
| THEORY | "physical basis of", "why does X work", "derivation" | PubMed → bioRxiv |
| PROTOCOL | "standard procedure", "step-by-step for", "pipeline for" | bioRxiv → PubMed |
| BENCHMARK | "comparison of methods", "state of the art for", "which is better" | bioRxiv → PubMed |
| DOMAIN | highly specialized jargon or niche subfield | Perplexity → PubMed |
Multiple types can apply — activate each relevant search.
Load `references/perplexity-prompts.md` if Perplexity MCP is available.
Otherwise, construct queries following these principles:
Run MCPs in this order (stop when sufficient evidence found):
Check if mcp__perplexity tools are accessible. If yes, use the prompts from references/perplexity-prompts.md.
Perplexity covers: documentation, GitHub issues, StackOverflow, technical blogs, and papers. Best for BUG and METHOD types.
bioRxiv.search_preprints(
query="[core concept] [method/tool] [domain]",
date_range="2022-2026", # recency matters for methods
limit=10
)Use for: recent methods papers, benchmarks, protocols, negative results.
Refine with category filter if domain is clear (e.g., category="bioinformatics" or "biochemistry").
For a promising hit, fetch full abstract + DOI:
bioRxiv.get_preprint(doi="10.1101/XXXX")PubMed.search_articles(
query="[concept] [method] [organism/domain]",
max_results=10,
sort="relevance" # or "date" for recent work
)
PubMed.get_article_metadata(pmid="XXXXXXXX")Use for: established methods, clinical/biological protocols, theoretical foundations.
For methods specifically: add "protocol" OR "method" OR "algorithm" to the query.
For benchmarks: add "comparison" OR "benchmark" OR "evaluation" to the query.
After collecting hits, apply this synthesis protocol:
State the answer as found in literature. Do not infer beyond what the sources say.
Every claim derived from literature must carry a citation:
[Author et al., YEAR] — DOI: 10.XXXX/XXXXX
or
[bioRxiv YEAR-MM-DD] — DOI: 10.1101/XXXXNever cite URLs. Always use DOIs when available.
★★★ — Multiple independent peer-reviewed sources agree
★★☆ — One peer-reviewed source or multiple preprints
★☆☆ — Single preprint or indirect evidence
☆☆☆ — No direct source found (see Step 5)Note explicitly:
If evidence is found (★★☆ or better): Present the answer with citations. Note any caveats.
If evidence is partial (★☆☆): Present what was found, state clearly that evidence is thin, and describe what would be needed to confirm.
If no evidence found (☆☆☆):
⚠️ LIT-RESCUE NEGATIVE RESULT
Searched: [list of queries and MCPs used]
Result: No peer-reviewed or preprint source found for [specific question].
Options:
1. Reformulate the question — the concept may use different terminology
2. Consult domain-specific documentation directly (package docs, official manual)
3. Run an empirical test (write a minimal script to probe the behavior)
4. Ask a domain expert or post to the relevant community forum
I will NOT speculate without a source.This negative result is itself valuable — it tells the user that this is an open question or requires empirical investigation.
Problem encountered
│
├─ Is the answer confidently known from verified knowledge?
│ └─ Yes → answer directly (don't invoke this skill)
│ └─ Uncertain → continue
│
├─ Classify type (Step 1)
│
├─ Is it a BUG/implementation question?
│ └─ Yes → Perplexity first (broader web coverage)
│ └─ No → bioRxiv + PubMed first
│
├─ Is the field fast-moving (ML, comp bio, cheminformatics)?
│ └─ Yes → bioRxiv (preprints = 6–18 months ahead of journals)
│ └─ No → PubMed (peer-reviewed = more reliable for established fields)
│
└─ Synthesize (Step 4) → Report honestly (Step 5)chem-brainstorm — for comp chem problems, run this before lit-rescue to check local toolsscientific-skills:literature-review — for systematic multi-paper literature analysisscientific-skills:pubmed-database — for complex PubMed query strategiesscientific-skills:biorxiv-database — for preprint-focused searches~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.