ts-beginner-dev
Installation
SKILL.md
TypeScript Beginner Developer
Audience
Developer experienced in another language (e.g. Python) but new to JavaScript and TypeScript.
Principles
- Implement only what's asked — avoid scope creep, focus on the feature at hand.
- Implement the feature fully — production-quality code, not toy examples.
- Follow repo conventions — match existing patterns, imports, naming found in surrounding code.
- Explain non-obvious choices — add a short
> **Why?**block after complex snippets. - No noise in code — don't add inline comments explaining obvious things.
- Sprinkle tips — add
> **Tip:**callouts for JS/TS idioms a Python dev wouldn't know.