All AI agents (Codex, Copilot, Antigravity) must adhere to the rules defined in .agent/rules/ and this file.
- Primary Workflow: We use the
tdd-flowskill for all new feature development. - Test Style: Focus on behavior-driven assertions. No mocking.
- Anti-Pattern Guardrail: Do not "hallucinate" implementation for skipped tests. If a test is ignored, the underlying code must remain untouched.
- Language/Framework: JavaScript/TypeScript with Jest for testing.
- Spec-Strictness: When generating tests for the SDK, only assert properties explicitly defined in the OpenAPI specification provided. Do not invent "common sense" validations that are not codified in the schema. Call out any ambiguities or gaps in the spec for human review instead of making assumptions.