Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 830 Bytes

File metadata and controls

9 lines (7 loc) · 830 Bytes

All AI agents (Codex, Copilot, Antigravity) must adhere to the rules defined in .agent/rules/ and this file.

Project Standards & Agent Behavior

  • Primary Workflow: We use the tdd-flow skill 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.