Reduce unnecessary context usage by identifying the minimum relevant file set for the current task before any broad repository reads occur.
From claude-dev-ecosystemnpx claudepluginhub oiranca/claude-dev-ecosystemThis skill is limited to using the following tools:
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides implementation of event-driven hooks in Claude Code plugins using prompt-based validation and bash commands for PreToolUse, Stop, and session events.
Use this skill to identify the smallest relevant set of files and directories for the current task before delegating to any implementation, analysis, or validation agent.
This skill reduces wasted reads and keeps multi-agent cycles efficient by enforcing context isolation.
Prevent agents from performing broad repository reads when only a narrow surface is relevant to the active task.
Specific problems this skill solves:
src/ directories when only one module matters.node_modules, .git, dist, build, or vendor directories.For each of the following, check whether the file exists and estimate whether it is likely fresh:
docs/STACK_PROFILE.mddocs/INVENTORY.mddocs/ARCHITECTURE.mddocs/DECISIONS.mdAlso check .agent-cache/artifact_freshness.json when present to verify ownership and timestamps.
Based on the task description and any available stack signals, identify the most likely directories:
Use targeted searches via code-search to find files related to the task:
Explicitly identify directories and file patterns that are not relevant to the current task and should be excluded from downstream reads.
Return a ranked reading plan with the most relevant files first and a skip list of irrelevant surfaces.
The result of this skill serves as the "Context" payload for the Shared Task List.
Short description of what the task requires.
| Artifact | Path | Status |
|---|---|---|
| Stack Profile | docs/STACK_PROFILE.md | fresh / stale / missing |
| Inventory | docs/INVENTORY.md | fresh / stale / missing |
| Architecture | docs/ARCHITECTURE.md | fresh / stale / missing |
| Priority | File or Pattern | Reason |
|---|
| Path or Pattern | Reason to Skip |
|---|
Short guidance for the downstream agent (e.g., software-engineer or qa-engineer).
docs/DECISIONS.md when that file is present.