- AI Agent Instructions

Instructions for AI agents (Claude Code, GitHub Copilot, etc.) working on this module.

Module Context

Key Files

FilePurpose
src/<Module>/__Libraries/StellaOps.<Module>.Core/Core business logic
src/<Module>/StellaOps.<Module>.WebService/Program.csService entry point
src/<Module>/__Tests/Test projects

Common Tasks

Adding a New Feature

  1. Start with the interface in *.Core
  2. Implement in the appropriate layer
  3. Add tests in the corresponding *.Tests project
  4. Update API contracts if WebService

Fixing a Bug

  1. Write a failing test first
  2. Fix the implementation
  3. Verify all related tests pass

Patterns to Follow

Anti-Patterns to Avoid

Testing Requirements