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

Orc Scout

skill-qgolem-orc-orc-scout · by qGolem

Phase-scoped codebase discovery and cross-phase context bridge.

— No reviews yet
0 installs
34 views
0.0% view→install

Install

$ agentstack add skill-qgolem-orc-orc-scout

✓ 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-qgolem-orc-orc-scout)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ 6mo 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 Orc Scout? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Orc Scout

Phase-scoped codebase discovery that runs forked (non-interactive). Explores files referenced in PLAN.md and their surrounding code. For phases > 1, reads prior phase artifacts for cross-phase awareness.

Input

  • $ARGUMENTS — {slug} {phase-num} (e.g., my-feature 2)

Template

See [templates/SCOUT.md](templates/SCOUT.md) for output format.

Process

Step 1: Parse Arguments and Locate Phase

slug = first word of $ARGUMENTS
phase_num = second word of $ARGUMENTS

Find phase directory:

Glob .claude/plans/{slug}/phases/0{phase_num}-*/PLAN.md

Read the matched PLAN.md.

Step 2: Extract Target Files

From PLAN.md, collect all target files:

  • files_modified from frontmatter
  • must_haves.artifacts paths
  • `` sections from each task

Deduplicate into a single list.

Step 3: Analyze Each Target File

For each target file:

Existence & size:

Glob for the file path
Bash: wc -l {file}

Imports (what it depends on):

Grep: import.*from in the file

Imported by (what depends on it):

Grep: import.*{filename} across src/

Related tests:

Glob: **/{basename}.test.* and **/{basename}.spec.*

Dependency graph:

Bash: madge --depends {file}

Step 4: Analyze Target Directories

For each unique directory containing target files:

Bash: tree -L 2 -P '*.ts' {target-dir}

Step 5: Discover Conventions

From the target files and their neighbors, document:

  • Naming conventions (files, exports, variables)
  • Error handling patterns
  • Testing patterns (framework, mocking, location)
  • Import organization

Include file:line references for each convention.

Step 6: Cross-Phase Context (phase > 1 only)

If phase_num > 1, read prior phase artifacts:

Glob .claude/plans/{slug}/phases/0{prior}-*/PROGRESS-*.md  → Read each match
Glob .claude/plans/{slug}/phases/0{prior}-*/SUMMARY-*.md   → Read each match
Glob .claude/plans/{slug}/phases/0{prior}-*/IMPL-VERIFICATION.md  → Read if exists

Fallback: If PROGRESS-*.md not found, try reading PROGRESS.md (single-executor phases)
Fallback: If SUMMARY-*.md not found, try reading SUMMARY.md (single-executor phases)

For each prior phase:

  • Extract deliverables and key files modified
  • Identify files that overlap with current phase targets
  • Note patterns established by prior phases

Step 7: Write SCOUT.md

Write .claude/plans/{slug}/phases/0{N}-{name}/SCOUT.md using the template.

Fill all sections. For phase 1, omit the "Prior Phases" section.

Constraint

Cannot use AskUserQuestion — forked context is non-interactive.

Completion Criteria

  • [ ] All target files from PLAN.md analyzed (existence, size, imports, importers, tests)
  • [ ] madge --depends run on key files
  • [ ] tree run on target directories
  • [ ] Conventions documented with file:line references
  • [ ] Cross-phase context included (if phase > 1)
  • [ ] SCOUT.md written to phase directory

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.