researcher — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited researcher (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.
A structured research workflow that searches the web for solutions to a problem, organizes findings into a dedicated directory, tests each candidate solution, and documents results.
After completing each step, pause and ask the user to confirm before proceeding to the next step.
mkdir <problem_name>_problem/Use snake_case. Keep it short and descriptive.
→ Confirm with user before proceeding.
Dispatch multiple subagents (model: claude-sonnet-4-6) — one per search angle. Each subagent:
Present the list of solutions found to the user.
→ Confirm with user before proceeding (user may exclude solutions).
For each candidate solution, create:
<problem_name>_problem/
solution_<solution_name>/
README.md
documentation/For each solution, dispatch one subagent (model: claude-sonnet-4-6) per source category in parallel:
For each document found, create a file inside documentation/:
documentation/
<doc_topic>.mdEach <doc_topic>.md contains:
# <Document Title>
## Source
- URL: <url>
- Page section / heading: "<where on page>"
## Summary
Key information found on this page relevant to the solution.Each README.md contains:
# Solution: <Solution Name>
## Summary
One-paragraph description of the approach.
## Sources
- [Title](URL) — section: "heading or paragraph where found"
## Pros
- ...
## Cons
- ...→ Ask the user: "Do you want to test each solution, or compare them based on documentation only?"
Spawn one subagent (model: claude-sonnet-4-6) per solution — sequentially, one at a time. Each subagent independently attempts an implementation or reproduction of its assigned solution, then writes test_results_<solution_name>.md. Wait for each subagent to complete before spawning the next.
# Test Results: <Solution Name>
## Test Description
What was tested and how.
## Steps Taken
1. ...
2. ...
## Outcome
- [ ] Works as documented
- [ ] Partially works (describe limitations)
- [ ] Failed (describe errors)
## Errors / Issues Encountered
Paste relevant error messages or unexpected behavior.
## Verdict
Short assessment: recommended / conditional / avoid — and why.After all solutions are tested, create decision/ inside the problem directory:
<problem_name>_problem/
solution_<name_a>/
README.md
documentation/
<doc_topic>.md
test_results_<name_a>.md
solution_<name_b>/
README.md
documentation/
<doc_topic>.md
test_results_<name_b>.md
decision/
DECISION.mdBefore writing DECISION.md, define:
1. Decision Aspects — derive from the problem context. Examples:
2. Scoring Method — score each aspect per solution:
| Score | Meaning |
|---|---|
| 3 | Excellent |
| 2 | Good |
| 1 | Poor |
| 0 | Fails / N/A |
Each aspect may have a weight (1–3) reflecting its importance for this problem. Weighted score = score × weight.
DECISION.md contains:
# Decision: <Problem Name>
## Scoring Aspects & Weights
| Aspect | Weight |
|--------|--------|
| Ease of implementation | 2 |
| Performance | 3 |
| Documentation quality | 2 |
| Test result | 3 |
| Community support | 1 |
| ... | ... |
## Scoring Table
| Aspect (weight) | solution_a | solution_b | solution_c |
|-----------------|-----------|-----------|-----------|
| Ease of impl. (×2) | 3 → 6 | 2 → 4 | 1 → 2 |
| Performance (×3) | 2 → 6 | 3 → 9 | 1 → 3 |
| Test result (×3) | 3 → 9 | 2 → 6 | 0 → 0 |
| Community (×1) | 2 → 2 | 3 → 3 | 2 → 2 |
| **TOTAL** | **23** | **22** | **7** |
## Solutions Overview
| Solution | Works? | Pros | Cons |
|----------|--------|------|------|
| solution_a | ✅ Yes | ... | ... |
| solution_b | ⚠️ Partial | ... | ... |
| solution_c | ❌ No | ... | ... |
## Final Decision
**Chosen solution:** `solution_a` (score: 23/max)
### Why
Explanation covering score breakdown, trade-offs, and fit for the problem.
### How to Apply
Brief guidance on using the chosen solution.→ Present the decision and scoring table to the user and confirm.
| Step | Action | Model | Confirm? |
|---|---|---|---|
| 1 | mkdir <problem>_problem/ | — | Yes |
| 2 | Parallel subagents — search (docs, tutorials, GitHub, Medium, Reddit, SO) | Sonnet | Yes (user may exclude) |
| 3 | mkdir solution_<name>/ + documentation/ per solution | — | — |
| 4 | Parallel subagents — gather docs into documentation/<topic>.md | Sonnet | — |
| 5 | Write README.md with summary, sources, pros/cons | — | Yes |
| 6 | Sequential subagents — test each solution, write test_results_<name>.md | Sonnet | — |
| 7 | Create decision/DECISION.md with comparison table and final decision | Opus | Yes |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.