Skill486 estrellas del repoactualizado yesterday
agents-md-protocol
The agents-md-protocol skill guides creation or refinement of an `AGENTS.md` file that serves as a durable operating contract for coding agents working in a repository. It establishes concrete procedures for documenting dev environment setup, testing, build commands, code style, security boundaries, and PR expectations in a concise, runnable format designed to load consistently across agent sessions without relying on chat history.
Instalar en Claude Code
Copiargit clone --depth 1 https://github.com/stevesolun/ctx /tmp/agents-md-protocol && cp -r /tmp/agents-md-protocol/imported-skills/agents-md/skills/agents-md-protocol ~/.claude/skills/agents-md-protocolDespués abre una sesión nueva de Claude Code; el skill carga automáticamente.
Definición
SKILL.md
# AGENTS.md Protocol ## Purpose Create or tighten a repository-level `AGENTS.md` contract for coding agents. Treat it as durable operating context, not a chat prompt. ## When to Use - Repo has no `AGENTS.md`, `CLAUDE.md`, or equivalent agent instructions. - Existing instructions are stale, vague, or missing test commands. - A custom/API/local harness needs stable context it can load every run. - A multi-agent workflow needs explicit handoff and review rules. ## Procedure 1. Inspect repo layout, package managers, CI files, and test commands. 2. Capture only durable facts and team rules. 3. Keep commands exact and runnable from the documented directory. 4. Add security and destructive-operation boundaries. 5. Add PR/review expectations and required verification. 6. Keep the file short enough to load every session. ## Recommended Sections - `Dev environment tips` - `Testing instructions` - `Build and lint` - `Code style` - `Security boundaries` - `PR instructions` - `Agent handoff notes` ## Quality Bar - Every command has a working directory or clear scope. - No secrets, tokens, or private URLs. - No vague rules such as "be careful" without a concrete check. - No roadmap or marketing text. - Instructions match current CI and package metadata. ## Harness Attachment For non-Claude-Code harnesses, load `AGENTS.md` as outer-loop project context. The harness should also keep explicit task state outside conversation history.
Del mismo repositorio