Action-specific checklists to ensure consistency across the codebase.
- BEFORE starting → Read the relevant checklist
- WHILE working → Follow the checklist steps
- BEFORE delivering → Verify ALL checklist items are done
| Checklist | When to Use |
|---|---|
| cross-platform-compatibility.md | MASTER REF - Ensuring features work on Claude/OpenCode/Codex |
| release.md | Preparing a new version release |
| new-command.md | Adding a new slash command |
| new-agent.md | Adding a new specialist agent |
| new-skill.md | Adding a new skill (Agent Skills Open Standard) |
| new-lib-module.md | Adding a new library module |
| update-opencode-plugin.md | Updating native OpenCode plugin |
| repo-map.md | Repo-intel plugin changes |
All checklists now include these common steps:
- Cross-platform compatibility verification
- Quality validation (
/enhance,npm test) - Platform-specific requirements (OpenCode labels, Codex triggers)
These checklists reference best practices from:
| Document | Topics |
|---|---|
agent-docs/PROMPT-ENGINEERING-REFERENCE.md |
Cross-model prompt design |
agent-docs/FUNCTION-CALLING-TOOL-USE-REFERENCE.md |
MCP tool patterns |
agent-docs/MULTI-AGENT-SYSTEMS-REFERENCE.md |
Agent orchestration |
agent-docs/CONTEXT-OPTIMIZATION-REFERENCE.md |
Token efficiency |
lib/cross-platform/RESEARCH.md |
Platform comparison |
Quick reference for which files need updating:
| Action | Files to Update |
|---|---|
| Release | package.json, CHANGELOG.md, README.md, all plugin.json files |
| New Command | plugin commands/, plugin.json, ARCHITECTURE.md, bin/cli.js |
| New Agent | plugin agents/, workflow.md, next-task.md |
| New Skill | plugin skills/{skill-name}/SKILL.md, agent tools if agent-invoked |
| New Lib Module | lib/, lib/index.js, sync to plugins/, tests |