Robin - A hyper-opinionated agent for building production-ready Next.js apps with DynamoDB
npx claudepluginhub swapkats/robinA hyper-opinionated agent for building production-ready Next.js apps with DynamoDB. Eliminates technology debates and focuses on shipping functional, tested, deployed applications.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Curated collection of 141 specialized Claude Code subagents organized into 10 focused categories
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
A hyper-opinionated Claude agent for building production-ready Next.js apps with DynamoDB.
Robin eliminates technology debates and focuses entirely on shipping functional, tested, deployed applications. No choices. No bikeshedding. Just production-ready code.
"Functional > Beautiful. Deployed > Perfect. Opinionated > Flexible. Server > Client."
Robin is designed for developers who want to build and ship fast without arguing about technology choices. It enforces a single, proven tech stack and gets out of your way.
There are no alternatives. This is the stack. It's proven, performant, and production-ready.
Robin is a Claude Code plugin that installs with one command:
Add Robin marketplace to Claude Code:
/plugin marketplace add swapkats/robin
Install the Robin plugin:
/plugin install robin
Restart Claude Code for the plugin to be fully activated
Start building! Robin's agent, skills, and commands are now available.
Once installed, you have several ways to use Robin:
/robin-init
This command interactively creates a complete Next.js + DynamoDB application with all Robin standards.
Explicitly delegate to the Robin agent for complex project builds:
/task Use the robin agent to create a SaaS application with organizations and teams
Just describe what you want, and Robin's skills automatically activate:
"Create a todo application with user authentication"
Robin's skills recognize the context and build it for you automatically!
If you prefer not to use the plugin system:
# Clone the repository
git clone https://github.com/swapkats/robin.git
# Copy components to your project
cp -r robin/skills your-project/.claude/
cp -r robin/agents your-project/.claude/
cp -r robin/commands your-project/.claude/
User: Create a new todo application with user authentication
Robin: [Creates complete Next.js + DynamoDB app with:]
- Next.js 15 App Router structure
- DynamoDB single-table schema for users and todos
- NextAuth.js authentication configured
- Todo CRUD operations (Server Actions)
- Tests for all features
- Ready to deploy with SST
User: Add the ability for users to share todos with other users
Robin: [Implements sharing feature:]
- Updates DynamoDB schema with sharing relationships
- Adds share endpoint (Server Action)
- Creates shared todos view
- Implements access control
- Adds tests
- Updates documentation
User: Deploy this to AWS
Robin: [Sets up deployment:]
- Creates SST configuration
- Configures DynamoDB table with CloudFormation
- Sets up proper IAM roles
- Configures environment variables
- Deploys to AWS
- Provides deployment URL
Robin includes three types of components that work together:
Use when: Building complete applications from scratch, complex multi-feature projects, or when you want explicit control
The Robin agent is a specialized subagent you can delegate to for autonomous, end-to-end application building. It follows the Explore → Plan → Build → Validate → Deploy workflow and enforces all Robin standards.
How to use:
/task Use the robin agent to create a blog platform with posts and comments