project-standards
Installation
SKILL.md
Project Standards
This skill provides the foundational coding standards that apply to ALL projects regardless of tech stack.
When to Use
- Use this skill for ANY coding task
- This skill is the foundation that other stack-specific skills build upon
- Always read this skill FIRST before reading stack-specific skills
Instructions
1. Analyze Environment First
Before applying any rules, READ the dependency files:
package.json(Node/TS projects)composer.json(PHP/Laravel)go.mod(Go projects)requirements.txt/pyproject.toml(Python)
Principle: Respect legacy. If the project already uses a specific library, USE IT.