exploring-in-parallel — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited exploring-in-parallel (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.
Parallelize exploration aggressively. When researching or exploring, launch multiple subagents simultaneously instead of sequential searches. This reduces wall-clock time proportionally to the number of parallel agents.
Use the Task tool with subagent_type=Explore. The key is to send multiple Task calls in a single message — this launches them concurrently.
Each subagent gets:
subagent_type: "Explore" for codebase searches, "general-purpose" for web researchdescription: Short label (3-5 words)prompt: Detailed, self-contained search instructionsExample — investigating how auth works:
Send in ONE message:
Task 1: { subagent_type: "Explore", description: "Find auth middleware", prompt: "Search for authentication middleware, auth guards, session validation..." }
Task 2: { subagent_type: "Explore", description: "Find login endpoints", prompt: "Search for login routes, /auth endpoints, credential handling..." }
Task 3: { subagent_type: "Explore", description: "Find auth config", prompt: "Search for JWT config, OAuth settings, auth environment variables..." }All three run simultaneously. When results return, synthesize findings into a coherent answer.
| Situation | Action |
|---|---|
| Searching for multiple patterns | One subagent per pattern |
| Exploring different directories | One subagent per area |
| Investigating related questions | One subagent per question |
| Checking multiple files (>3) | Parallel reads |
| Web research on multiple topics | One subagent per topic |
Read directlyGrep directlyGlob/Read directly| Thought | Action |
|---|---|
| "Let me search for X first, then Y" | Launch both simultaneously |
| "I'll check this file, then that one" | Parallel reads if >3 files |
| "First explore area A, then B" | Parallel subagents per area |
| "Let me see what this returns before..." | Usually can parallelize anyway |
Don't just dump raw results. Synthesize:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.