engram-plugin-thin
Installation
SKILL.md
When to Use
Use this skill when:
- Editing plugin hooks/scripts/adapters
- Adding passive/active memory capture integrations
- Wiring agent-specific setup behavior
Boundary Rules
- Keep adapters thin: parse input, call API/tool, return.
- Put complex logic in Go core (
store/server/mcp). - Avoid extra runtime dependencies in plugin scripts.
- Reuse a shared contract across all supported agents.
Compatibility Checklist
Related skills