A Claude Code plugin marketplace for JavaScript/TypeScript development workflows.
Forked from compound-engineering-plugin by Every Inc.
Create .claude/settings.json in your project root:
{
"extraKnownMarketplaces": {
"insyd-plugins": {
"source": {
"source": "git",
"url": "https://github.com/insyd-ai/compound-engineering-plugin.git"
}
}
},
"enabledPlugins": {
"insyd-engineering@insyd-plugins": true
}
}claude/workflows:plan # Plan implementation
/workflows:review # Review code
/self-check # Run all checks
That's it! See the Setup Guide for detailed instructions.
Plan → Work → Review → Compound → Repeat
| Command | Purpose |
|---|---|
/workflows:plan |
Turn feature ideas into detailed implementation plans |
/workflows:work |
Execute plans with worktrees and task tracking |
/workflows:review |
Multi-agent code review before merging |
/workflows:compound |
Document learnings to make future work easier |
- Backend: Convex
- Frontend: Next.js, Astro, React, Vite
- Languages: TypeScript, JavaScript
| Type | Count |
|---|---|
| Agents | 22 |
| Commands | 20 |
| Skills | 11 |
| MCP Servers | 6 |
- Spec Writing - PRD and TDD specifications
- Functional Tests - Define success criteria
- Code Writing - Frontend and backend development
- Test Execution - Unit, integration, and E2E tests
- Code Refactoring - Simplify and improve code
- Codebase Understanding - Analyze large codebases
- Self Checks - Security, performance, architecture
- PR Reviews - Comprehensive code review
- Setup Guide - Complete setup and usage instructions
- Plugin Reference - Full component reference
- Changelog - Version history
- MCP Setup - MCP server configuration
compound-engineering-plugin/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── plugins/
│ ├── insyd-engineering/ # Main plugin
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ ├── agents/ # 22 specialized agents
│ │ ├── commands/ # 20 slash commands
│ │ ├── skills/ # 11 skills
│ │ └── docs/
│ ├── claude-mem/ # Memory plugin (external)
│ └── plannotator/ # Plan annotation (external)
└── docs/
└── SETUP-GUIDE.md # This setup guide
Enable more plugins from this marketplace:
{
"enabledPlugins": {
"insyd-engineering@insyd-plugins": true,
"claude-mem@insyd-plugins": true,
"plannotator@insyd-plugins": true
}
}For stability, pin to a specific version:
{
"extraKnownMarketplaces": {
"insyd-plugins": {
"source": {
"source": "git",
"url": "https://github.com/insyd-ai/compound-engineering-plugin.git",
"ref": "v2.1.0"
}
}
}
}Forked from compound-engineering-plugin originally created by Kieran Klaassen at Every Inc.