opencode-agent-kit
Version:
Multi-stack OpenCode agent toolkit — 33+ specialized AI agents, 200+ skills, 46 commands, 8 MCP servers (Nuxt, React, Node.js, Laravel, CI3, Android, Flutter, DevOps, SEO, SonarQube, and more)
50 lines (34 loc) • 1.3 kB
Markdown
# Backend Agent Quick Start (Enterprise)
This guide is portable across services that share the same backend stack style.
## Agent Name
- `node-developer`
## Activate the Agent
```text
@node-developer Analyze this backend service and align implementation with existing DTO, route, middleware, and controller patterns.
```
## High-Value Prompt Templates
```text
@node-developer Add endpoint <METHOD> <path> with request/response DTOs, validation middleware, and standardized error handling.
```
```text
@node-developer Implement transaction-safe <business operation> with audit logging and predictable response mapping.
```
```text
@node-developer Review this module for auth boundary, tenant scoping, validation, and API contract consistency.
```
```text
@node-developer Refactor this controller to reduce complexity while preserving behavior and response shape.
```
## What the agent is optimized for
- Node.js + TypeScript + Express + Prisma services
- DTO-driven validation and response mapping
- Consistent route/middleware layering
- Transaction-safe data mutations
- Security and tenant/ownership boundaries
## Recommended verification commands
```bash
npm run type-check
npm run lint
npm run test:run
```
If command names differ in a service, use that service's equivalents.