You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add AI coding agent guidelines and enhance coding standards (#14)
Implements comprehensive guidelines for AI coding assistants to ensure
consistent code quality and adherence to project standards.
Changes:
- Add AICodingAgent.md with mandatory workflow for AI assistants
- Enhance CODING_STANDARDS.md with "Simplicity First" principle
- Add "Code Smells and Anti-Patterns to Avoid" section
- Reference existing documentation rather than duplicating content
The guidelines emphasize reading all dev-notes documentation, running
quality checks before commits, and following established conventions.
Fixes#8
-**Using `type: ignore` Without Justification** - Fix type issues properly or provide clear reasoning
403
+
404
+
**When uncertain about any change, ask for clarification before proceeding.**
405
+
406
+
---
407
+
357
408
## Summary
358
409
359
410
This coding standards document references established Python best practices (PEPs and community guidelines) and defines project-specific conventions for:
360
411
412
+
-**Simplicity First**: Prefer simple solutions over complex ones
361
413
-**String Formatting**: Exclusive use of f-strings
362
414
-**Type Safety**: Comprehensive type hints with modern syntax
0 commit comments