agentsclimarketplace

Explore

Skill arndvs/ctrlshft/skills/explore

The system your AI agents are missing — synced instructions, workflow skills, hardened secrets, and autonomous loops across every machine.

Install
npx -y skills add arndvs/ctrlshft --skill explore

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Deep codebase exploration using parallel subagents. Use when asked to 'explore', 'understand', 'investigate', 'map out', 'how does X work', or 'audit' a part of the codebase.

SKILL.md

2.6 KB, as published. Nobody here has run it

Explore

If running interactively (human present), output "Read Explore skill." to acknowledge. If running with --dangerously-skip-permissions (AFK/unattended), skip acknowledgement and proceed directly.

When tasked with understanding, auditing, or investigating any part of a codebase, spawn multiple sub-agents using the explore verb to maximize file coverage and depth. Use the search_subagent tool with explore in the prompt to trigger deep traversal mode, allowing the agent to recursively search through directories and files for relevant information.

When to Use This

Trigger this approach when asked to:

  • Understand how a feature works
  • Audit or review a codebase
  • Investigate a bug or behavior
  • Map out data flow or architecture
  • Prepare before building a new feature

How to Execute

  1. HUD event — emit a start event so the HUD tracks this exploration:
    source ~/dotfiles/bin/write-hud-state.sh
    write_hud_event "info" "explore: started — $TOPIC"
    
    Emit again at synthesis (explore: completed — N sub-agents, M files covered).
  2. Decompose the topic into distinct areas of concern
  3. Spawn a dedicated sub-agent for each area using the explore keyword in the sub-agent prompt
  4. Synthesize the results from all sub-agents into a single cohesive summary

Example decomposition for "How does authentication work?":

  • Explore how sessions are created and stored
  • Explore how middleware protects routes
  • Explore how tokens are issued and validated
  • Explore how logout and expiry are handled

Rules

  • Always use the search_subagent tool and the word explore when spawning sub-agents — this triggers deep file traversal mode to run MULTIPLE sub-agents in PARALLEL, maximizing coverage and depth
  • Each sub-agent should have a narrow, specific focus — avoid broad prompts per agent
  • Do not rely on a single agent to cover the full topic
  • After all sub-agents complete, produce a unified summary with cross-references between areas
  • If a sub-agent surfaces something unexpected, spawn an additional agent to follow up

Why This Matters

A single agent pass typically reads 6–10 files. A dedicated explore sub-agent will aggressively search the repo, calling 20–30+ tools and covering far more ground. For any non-trivial exploration task, a single pass will produce an incomplete picture.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.