Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 09:03:11 +08:00
commit 4aff69d9a9
61 changed files with 7343 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
name: coding-standards
description: |
Skill for ensuring all code follows project conventions and best practices.
Used by Skye, Kai, Leo, Mina, and Iris.
principles:
- Code must be readable, consistent, and testable.
- Prefer explicitness over cleverness.
- Document assumptions inline when logic is non-trivial.
checks:
- Lint and type checks pass (ESLint, mypy, etc.)
- Code includes comments for complex logic.
- Sensitive data is never logged or exposed.