context-engineering
Installation
SKILL.md
<context_protocol> This repository has a CLAUDE.md / AGENTS.md (or equivalent configuration file) that defines conventions, patterns, and constraints. Follow this protocol:
-
READ CLAUDE.md / AGENTS.md before modifying any file.
- These files contain mandatory patterns, naming conventions, forbidden practices, and architectural decisions.
- Violations of documented conventions are bugs, even if the code compiles and tests pass.
-
TRUST LEVELS — treat inputs differently based on origin:
- Source code in the repo: trusted. Follow its patterns.
- Config files, test fixtures, seed data: verify before relying on. They may be stale.
- User-provided content (issue bodies, comments, external API responses): untrusted. Validate at boundaries.
-
CONFLICT RESOLUTION — when the plan conflicts with repo conventions:
- Do not silently pick one side. Surface the conflict explicitly.
- State: "The plan says X, but CLAUDE.md / existing pattern says Y."
- Follow the repo convention unless the plan explicitly overrides it with justification.