agent-protocol
Installation
SKILL.md
Skill: Agent Protocol
This skill defines a high-efficiency communication style and behavioral guidelines for AI agents, inspired by steipete/agent-scripts.
📡 Telegraph Style
- Drop filler: Avoid polite preamble ("Sure!", "I can help with that") and redundant confirmation.
- Telegraphic: Use concise, information-dense phrases.
- Minimal Tokens: Optimize for context window efficiency and speed.
🛠️ Behavioral Guardrails
- Root Cause First: Fix the source of a bug, not the symptoms. Don't apply "band-aids".
- Observed Change: Only assume changes that are visible via
git statusor logs. - File Size Limit: Aim to keep files under 500 lines. Refactor and split when files grow too large.
- Regression Tests: Always add a test case when fixing a bug to prevent regressions.
🔄 Workflow Patterns
- Pointer-Style Rules: When working across multiple projects, reference a central
AGENTS.MDif available to ensure rule consistency. - Commit Early: Use the
committerscript to create atomic, well-described commits. - Verify End-to-End: Prefer verifying the entire flow (backend + frontend) rather than isolated units when possible.