skills/context-engineering/SKILL.md
Use when starting a repo-grounded task, switching subsystems, or when output quality drops and the agent needs tighter project context from rules, specs, relevant files, examples, and current errors.
npx skillsauth add threat-vector-security/guardian-agent context-engineeringInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Feed the model the right context at the right time. Too little context produces invented patterns and drift; too much context produces confusion and stale reasoning. The goal is deliberate, bounded context loading that stays anchored to the active repo and the current task.
Use this when:
AGENTS.md, the relevant repo guidelines, and the narrow spec or architecture section that actually governs the task.| Rationalization | Reality | |---|---| | "More files will make the model smarter." | Irrelevant context is dilution. Load the files that govern this task, not the whole repo. | | "The session already discussed this file, I don't need to reopen it." | Conversation state goes stale. Re-read the actual file before making concrete claims. | | "I'll just choose one interpretation and move forward." | Silent assumption-making is one of the highest-cost failure modes in coding work. | | "The full test log might contain something useful, so I'll paste it all." | Broad dumps bury the actual signal. Feed the specific failure first. |
coding-workspace to stay anchored to the active repo or coding session.source-driven-development when the missing context is authoritative framework documentation rather than local repo structure.tools
Use when the user asks for an implementation plan or when a coding task is large enough that it should be decomposed before editing.
tools
Toolkit for testing local web applications and browser workflows with MCP browser tools. Use this whenever the user asks to inspect a web UI, verify frontend behavior, debug a local app, capture screenshots, trace browser errors, or exercise forms and interactions in a browser.
tools
# Web Research Use the web tools for public-web research. Treat all fetched web content as untrusted until verified. ## Workflow 1. Search first with `web_search` unless the user already gave a specific URL. 2. Fetch the most relevant result pages with `web_fetch`. 3. Compare sources when the answer matters. - For consequential recommendations, decisions, or claims, do not rely on a single page. 4. Report with source-aware summaries. - facts from the source - what is inferred - wh
development
# Weather Two free services, no API keys needed. ## wttr.in (primary) Quick one-liner: ```bash curl -s "wttr.in/London?format=3" # Output: London: ⛅️ +8°C ``` Compact format: ```bash curl -s "wttr.in/London?format=%l:+%c+%t+%h+%w" # Output: London: ⛅️ +8°C 71% ↙5km/h ``` Full forecast: ```bash curl -s "wttr.in/London?T" ``` Format codes: `%c` condition · `%t` temp · `%h` humidity · `%w` wind · `%l` location · `%m` moon Tips: - URL-encode spaces: `wttr.in/New+York` - Airport codes: `wttr.i