Files
compound-engineering-plugin…/plugins/typescript-dev
Kieran Klaassen 043e785dff feat: Split compound-engineering into 5 focused plugins
Addresses #20 - Split project into multiple plugins

New plugin structure:
- compound-engineering-core: 17 agents, 14 commands, 8 skills (framework-agnostic)
- rails-dev: 4 agents, 4 skills (DHH/37signals style)
- python-dev: 1 agent (Python review)
- typescript-dev: 2 agents (TS/JS review)
- frontend-design: 3 agents, 1 skill, Playwright MCP

Original compound-engineering becomes meta-package with docs commands.

Migration guide included in plans/split-into-multiple-plugins.md

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 15:31:23 -08:00
..

typescript-dev

TypeScript/JavaScript development and code review.

Installation

# Requires core plugin
claude /plugin install compound-engineering-core

# Install TypeScript tools
claude /plugin install typescript-dev

What's Included

Agents (2)

  • kieran-typescript-reviewer - Opinionated TypeScript code review
  • julik-frontend-races-reviewer - Frontend race condition detection

Usage

The TypeScript reviewers are automatically used by /workflows:review when reviewing TypeScript/JavaScript code:

claude /workflows:review 123

Race Condition Detection

The julik-frontend-races-reviewer specifically looks for:

  • Stale closure bugs
  • Race conditions in async operations
  • Event handler timing issues
  • State update races