multiAI Summary Pending
typescript-write
Write TypeScript and JavaScript code following Metabase coding standards and best practices. Use when developing or refactoring TypeScript/JavaScript code.
231 stars
Installation
Claude Code / Cursor / Codex
$curl -o ~/.claude/skills/typescript-write/SKILL.md --create-dirs "https://raw.githubusercontent.com/aiskillstore/marketplace/main/skills/metabase/typescript-write/SKILL.md"
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/typescript-write/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How typescript-write Compares
| Feature / Agent | typescript-write | Standard Approach |
|---|---|---|
| Platform Support | multi | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Write TypeScript and JavaScript code following Metabase coding standards and best practices. Use when developing or refactoring TypeScript/JavaScript code.
Which AI agents support this skill?
This skill is compatible with multi.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# TypeScript/JavaScript Development Skill # Autonomous Development Workflow - Do not attempt to read or edit files outside the project folder - Add failing tests first, then fix them - Work autonomously in small, testable increments - Run targeted tests, and lint continuously during development - Prioritize understanding existing patterns before implementing - Don't commit changes, leave it for the user to review and make commits ## Linting and Formatting - **Lint:** `yarn lint-eslint-pure` - Run ESLint on the codebase - **Format:** `yarn prettier` - Format code using Prettier - **Type Check:** `yarn type-check-pure` - Run TypeScript type checking ## Testing ### JavaScript/TypeScript Tests - **Test a specific file:** `yarn test-unit-keep-cljs path/to/file.unit.spec.js` - **Test by pattern:** `yarn test-unit-keep-cljs -t "pattern"` - Runs tests matching the given pattern ### ClojureScript Tests - **Test ClojureScript:** `yarn test-cljs` - Run ClojureScript tests