Skip to content
OpenSmartRoute
Skillv1.0.0

context-engineering

Supplementary context protocol for agents executing in a repo that has a CLAUDE.md / AGENTS.md (or equivalent config). Use to make an execution agent read project conventions first, treat inputs by tr

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

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

See reviews

About

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

<context_protocol> This repository has a CLAUDE.md / AGENTS.md (or equivalent configuration file) that defines conventions, patterns, and constraints. Follow this protocol:

  1. 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.
  2. 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.
  3. 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.
  4. PATTERN DISCOVERY — before writing new code:

    • Search for 3+ existing examples of the same pattern in the codebase.
    • Reuse existing helpers, utilities, and abstractions.
    • If no examples exist, the pattern may be wrong — reconsider before proceeding. </context_protocol>

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/shipshitdev-skills-context-engineering/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.

shipshitdev-skills-context-engineering.ocm.jsonjson
{
  "ocm": "1",
  "id": "shipshitdev-skills-context-engineering",
  "kind": "skill",
  "name": "context-engineering",
  "description": "Supplementary context protocol for agents executing in a repo that has a CLAUDE.md / AGENTS.md (or equivalent config). Use to make an execution agent read project conventions first, treat inputs by trust level, surface plan-vs-convention conflicts instead of silently picking a side, and reuse existing patterns before writing new code.",
  "publisher": "shipshitdev",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "context",
      "conventions",
      "execution",
      "agents",
      "codebase-patterns",
      "trust-levels",
      "skills-sh"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "Supplementary context protocol for agents executing in a repo that has a CLAUDE.md / AGENTS.md (or equivalent config). Use to make an execution agent read project conventions first, treat inputs by trust level, surface plan-vs-convention conflicts instead of silently picking a side, and reuse existing patterns before writing new code."
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "skills.sh",
      "repository": "https://github.com/shipshitdev/skills",
      "path": "skills/context-engineering/SKILL.md",
      "ref": "HEAD",
      "url": "https://github.com/shipshitdev/skills/blob/HEAD/skills/context-engineering/SKILL.md",
      "key": "shipshitdev/skills/skills/context-engineering/SKILL.md"
    }
  },
  "instructions": "<context_protocol>\nThis repository has a CLAUDE.md / AGENTS.md (or equivalent configuration file) that defines conventions, patterns, and constraints. Follow this protocol:\n\n1. READ CLAUDE.md / AGENTS.md before modifying any file.\n   - These files contain mandatory patterns, naming conventions, forbidden practices, and architectural decisions.\n   - Violations of documented conventions are bugs, even if the code compiles and tests pass.\n\n2. TRUST LEVELS — treat inputs differently based on origin:\n   - Source code in the repo: trusted. Follow its patterns.\n   - Config files, test fixtures, seed ",
  "cost": {
    "context_tokens": 338
  }
}

Fetch it by URL: GET /api/v1/registry/shipshitdev-skills-context-engineering/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.