Skip to content
OpenSmartRoute
Skillv1.0.0

context-map

Scope the real change surface before editing. Use when planning a feature, bugfix, refactor, or review and you need a concrete map of likely touch points, dependencies, tests, and nearby risks.

by practicalswan(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from practicalswan/agent-skills (context-map/SKILL.md). Install upstream with npx skills add practicalswan/agent-skills --skill context-map. Copyright stays with the author.

Context Map

Build a task-focused map of the codebase before changing files.

  • Leverage native parallel subagent dispatch and 200k+ context windows where available.

When to Use

Use symptom -> action triggers: when one matches, apply this skill and verify with the protocol below.

  • A request spans more than one file and the impact is not obvious yet.
  • You need to identify the minimum safe edit set before implementation.
  • You are debugging a bug or regression and need to trace nearby code paths.
  • You want a review-quality summary of likely code, test, config, and documentation touch points.

Core Workflow

  1. Restate the change in one sentence.
  2. Search for obvious entry points by feature name, route, symbol, command, or error text.
  3. Expand outward into direct dependencies, tests, docs, config, schemas, and scripts.
  4. Separate likely edit targets from read-only reference patterns.
  5. Call out risk multipliers such as public APIs, migrations, auth, secrets, environment variables, or generated artifacts.
  6. Produce a compact context map before implementation.

Search Order

1. Primary Targets

Look for the files most likely to hold the requested behavior:

  • route handlers, commands, services, jobs, or pages
  • components, helpers, validators, and serializers
  • feature-specific configs, manifests, templates, and generated sources

2. Direct Dependencies

Trace the files that import, export, call, or configure the primary targets:

  • imports and exports
  • DI registration and factory wiring
  • schema or model definitions
  • build or deployment hooks

3. Verification Surface

Find the evidence paths that should move with the change:

  • unit, integration, E2E, and snapshot tests
  • fixtures, golden files, and sample payloads
  • README, usage docs, changelogs, and migration notes

4. Reference Patterns

Find nearby examples that show the house style for the same kind of work:

  • similar endpoints or handlers
  • related UI components
  • existing test patterns
  • prior migrations or config changes

Output Format

Use this structure unless the user asked for a different format:

## Context Map

### Likely Edit Targets
| File | Why it matters | Expected change |
|------|----------------|-----------------|
| path/to/file | Main entry point | Update logic |

### Nearby Dependencies
| File | Relationship |
|------|--------------|
| path/to/file | Imported by the main target |

### Verification Files
| File | Coverage |
|------|----------|
| path/to/test | Existing tests for the feature |

### Reference Patterns
| File | Pattern to reuse |
|------|------------------|
| path/to/example | Similar implementation shape |

### Risks
- Public API or contract may change
- Config, env vars, or generated files may need updates
- Docs or changelog may need to move with the code

Heuristics

  • Prefer the smallest edit set that can fully implement the task.
  • Include tests and docs whenever the behavior or setup might move.
  • Treat migrations, auth, secrets, caching, build scripts, and generated artifacts as high-risk neighbors.
  • If multiple subsystems are involved, split the map by subsystem instead of producing one giant table.
  • Revise the map after discovery if the real scope is materially different from the initial request.

Anti-Patterns

  • Delegating or evaluating without a scoped success condition: The output becomes hard to review and easy to overbuild.
  • Skipping the evidence step: A workflow that cannot be re-checked quickly is not ready for handoff.
  • Bundling unrelated subtasks together: It creates noisy prompts, weaker ownership, and avoidable integration risk.

Verification Protocol

Before claiming "skill applied successfully":

  1. Pass/fail: The Context Map workflow names the agent boundary, delegated scope, and expected return artifact.
  2. Pass/fail: Context passed to helpers is minimal, task-local, and free of hidden expected answers.
  3. Pass/fail: Results are integrated only after evidence, diffs, or citations are checked by the controller.
  4. Pressure-test scenario: Run the workflow on two similar tasks that must not share assumptions or leaked context.
  5. Success metric: Zero context leakage; every delegated output is independently reviewable.

Scripts And References

Cross-Client Portability

This skill is written to stay usable across GitHub Copilot, Claude Code, and Codex.

  • GitHub Copilot: keep the folder in a Copilot-visible skill path or wrap the workflow in project instructions when folder discovery is unavailable.
  • Claude Code: keep the folder in a local skills directory or a compatible plugin source.
  • Codex: install or sync the folder into $CODEX_HOME/skills/context-map and restart Codex after major changes.

MCP Availability And Fallback

Preferred MCP Server: None required

  • Fallback prompt: "Use the Context Map skill without MCP. Rely on the local SKILL.md, bundled references or scripts, and manual verification. Show the exact commands, evidence, and final checks you used before concluding."
  • If the current host does not expose a matching server, use the bundled references, scripts, native toolchain, and manual workflow already described in this skill.
  • Treat direct local verification, rendered output, logs, tests, or screenshots as the fallback evidence path before completion.

Related Skills

  • agent-task-mapping: Use it when the workflow also needs task-to-agent routing decisions.
  • custom-agent-usage: Use it when the workflow also needs loading and invoking custom agent definitions safely.
  • subagent-delegation: Use it when the workflow also needs safe, scoped delegation to helper agents.
  • subagent-driven-development: Use it when the workflow also needs plan-driven implementation with reviewer loops.

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/practicalswan-agent-skills-context-map/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

practicalswan-agent-skills-context-map.ocm.jsonjson
{
  "ocm": "1",
  "id": "practicalswan-agent-skills-context-map",
  "kind": "skill",
  "name": "context-map",
  "description": "Scope the real change surface before editing. Use when planning a feature, bugfix, refactor, or review and you need a concrete map of likely touch points, dependencies, tests, and nearby risks.",
  "publisher": "practicalswan",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "context",
      "map",
      "agents",
      "delegation",
      "workflow",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Scope the real change surface before editing. Use when planning a feature, bugfix, refactor, or review and you need a concrete map of likely touch points, dependencies, tests, and nearby risks."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/practicalswan/agent-skills",
      "path": "context-map/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/practicalswan/agent-skills/blob/HEAD/context-map/SKILL.md",
      "key": "practicalswan/agent-skills/context-map/SKILL.md"
    }
  },
  "instructions": "# Context Map\n\nBuild a task-focused map of the codebase before changing files.\n\n- Leverage native parallel subagent dispatch and 200k+ context windows where available.\n\n\n## When to Use\n\nUse symptom -> action triggers: when one matches, apply this skill and verify with the protocol below.\n\n- A request spans more than one file and the impact is not obvious yet.\n- You need to identify the minimum safe edit set before implementation.\n- You are debugging a bug or regression and need to trace nearby code paths.\n- You want a review-quality summary of likely code, test, config, and documentation touch",
  "cost": {
    "context_tokens": 1540
  }
}

Fetch it by URL: GET /api/v1/registry/practicalswan-agent-skills-context-map/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.