AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Explore

skill-darkroomengineering-cc-settings-explore · by darkroomengineering

Read-only codebase investigation via Explore agent; also handles upward-zoom for unfamiliar code regions. Triggers "how does X work", "where is X", "find X", "understand X", "navigate codebase", "zoom out", "bigger picture", "where does this fit".

No reviews yet
0 installs
2 views
0.0% view→install

Install

$ agentstack add skill-darkroomengineering-cc-settings-explore

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-darkroomengineering-cc-settings-explore)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Explore? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Codebase Exploration

Delegates to the Explore agent for fast, read-only investigation of the codebase.

Current State

  • Directory: !pwd 2>/dev/null
  • Project: !basename "$(pwd)" 2>/dev/null
  • Stack: !ls package.json Cargo.toml go.mod pyproject.toml 2>/dev/null || echo "unknown"
  • Git root: !git rev-parse --show-toplevel 2>/dev/null || echo "not a git repo"

Two modes — pick by what the user asked

Broad investigation mode (default)

Use when the user is asking "how does X work" / "where is X" / "what handles Y" — finding code without a known starting point.

  1. Start broad - Use tldr semantic or Glob to find relevant files
  2. Narrow down - Read specific files to understand implementation
  3. Trace connections - Use tldr impact to find callers/dependencies
  4. Summarize findings - Return clear, actionable summary

Upward-zoom mode

Use when the user is staring at a known function or module and needs to know how it fits — triggers like "zoom out", "bigger picture", "where does this fit", onboarding unfamiliar code.

  1. Follow [../context-doc/DOMAIN-AWARENESS.md](../context-doc/DOMAIN-AWARENESS.md) — read CONTEXT.md and any relevant ADRs first if they exist.
  2. Identify the symbol or file the user is asking about.
  3. Use TLDR for the structural answer:

``bash tldr context --depth 3 --project . tldr impact --project . ``

  1. Synthesize a map: list immediate callers, the modules they live in, and where this area sits in the system. Use CONTEXT.md vocabulary when naming concepts.
  2. Stop at one layer up. The user can ask for another zoom-out if they need it.

Upward-zoom output shape:

{Symbol/file in question}
  ↑ called by: {module A}, {module B}
  ↓ depends on: {module C}, {module D}

Where this fits:
{1–2 sentence narrative using CONTEXT.md terms}

Related ADRs:
- ADR-NNNN ({title}) — relevant because…

Keep it short. The point is orientation, not exhaustive coverage.

Output Format (broad mode)

Return a concise summary:

  • Location: Key files and their paths
  • How it works: Brief explanation of the flow
  • Key functions/components: Entry points
  • Dependencies: What it relies on
  • Suggestions: If the user needs to modify something

Remember

  • You are READ-ONLY - do not modify files
  • Return summaries, not raw file contents
  • Be specific with file paths and line numbers

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.