- CODING_GUIDELINES.md: tighten parity rule wording to match Mike's intent: "add feature X" means Windows + Linux + macOS in the same commit - memory: add feedback_gururmm_agent_parity for future session enforcement Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
904 B
904 B
name: feedback_gururmm_agent_parity
description: "Add feature X to the agent" means all three platforms (Windows + Linux + macOS) in the same change — no exceptions
metadata:
type: feedback
"Add feature X to the agent" means Windows + Linux + macOS. All three in the same change.
Why: Mike stated this explicitly 2026-05-15. Delivering Windows-only and leaving Linux/macOS for later is not acceptable — it's the same as not finishing the task.
How to apply: When implementing any agent feature:
- If the implementation differs by platform, write all three variants.
- If a real implementation is not feasible on a platform yet, add a working stub +
// TODO(platform): <os> — <reason>in the same commit. - A silent no-op without a stub and TODO is treated as a bug.
- See
.claude/CODING_GUIDELINES.md"GuruRMM Agent — Platform Parity" for the full matrix and known gaps.