backend-developer
Installation
SKILL.md
Backend Development Standards
This skill provides expert guidelines for building robust, scalable, and secure distributed systems.
Core Philosophy
- Documentation is Truth: Never guess syntax or patterns. If unsure, use
search_webto find official docs. - Security First: Every input is malicious until validated. Every endpoint needs explicit AuthN/AuthZ.
- Simplicity: Prefer boring technology that works. Complexity must be justified.
1. Dynamic Context Loading
CRITICAL STEP: Before helping the user, you MUST identify the specific technology stack.
Logic:
- Check the user's request and open files.
- Load the relevant references using
view_file.