/using-dev-team
Selecting and dispatching the right Ring developer specialist agent (backend Go/TS, frontend, UI designer/engineer, Helm, frontend QA, prompt reviewer) for a technology task. Use when you need deep stack expertise and must decide which agent to invoke via the Task tool,
$ npx -y skills add LerianStudio/ring --skill using-dev-team --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/using-dev-team
Context preview
The summary Claude sees to decide when to auto-load this skill.
Selecting and dispatching the right Ring developer specialist agent (backend Go/TS, frontend, UI designer/engineer, Helm, frontend QA, prompt reviewer) for a technology task. Use when you need deep stack expertise and must decide which agent to invoke via the Task tool,
SKILL.md
using-dev-team.SKILL.mdname: ring:using-dev-team
description: "Selecting and dispatching the right Ring developer specialist agent (backend Go/TS, frontend, UI designer/engineer, Helm, frontend QA, prompt reviewer) for a technology task. Use when you need deep stack expertise and must decide which agent to invoke via the Task tool, including parallel dispatch of independent work. Skip for general code review (use ring:reviewing-code)."
Using Ring Developer Specialists
When to use
- Need deep expertise for specific technology (Go, TypeScript)
- Backend local runtime / docker-compose → ring:backend-go or ring:backend-ts
- Frontend with design focus → ring:ui-designer
- Frontend UI development (React/Next.js) → ring:frontend
- Frontend from product-designer specs → ring:ui-engineer
- Helm chart creation/maintenance → ring:helm
- Backend tests / coverage / TDD → ring:backend-go or ring:backend-ts
- Frontend test strategy → ring:qa-frontend
- Backend health/logging/tracing → ring:backend-go or ring:backend-ts
- Agent/prompt quality evaluation → ring:prompt-reviewer
- Migrating deprecated lib-commons observability shims to lib-observability → ring:migrating-to-lib-observability
Skip when
- General code review → use `ring:reviewing-code` with dev-team reviewer agents
- Debugging → trace from logs / metrics / telemetry
Related
**Similar:** ring:using-ring
Developer specialist agents. Dispatch via `Task tool with subagent_type:`.
Runtime Version Resolution
Always resolve lib-commons to latest v5.x at runtime:
gh api repos/LerianStudio/lib-commons/releases/latest --jq '.tag_name'
Do NOT hardcode specific patch versions.
Specialists
| Agent | Specializations | Use When | |-------|----------------|----------| | `ring:backend-go` | Go microservices, PostgreSQL/MongoDB, RabbitMQ, OAuth2/JWT, gRPC, concurrency | Go services, DB optimization, auth/authz, concurrency | | `ring:backend-ts` | TypeScript/Node.js, Express/Fastify/NestJS, Prisma/TypeORM, Jest/Vitest | TS backends, NestJS design, JS→TS migration | | `ring:bff-ts` | Next.js BFF, Clean/Hexagonal Architecture, DDD patterns, Inversify DI | BFF layer, Clean Architecture, DDD domains, API orchestration | | `ring:ui-designer` | Bold typography, color systems, animations, unexpected layouts | Landing pages, portfolios, design systems | | `ring:frontend` | React/Next.js, App Router, Server Components, accessibility, performance | Financial dashboards, enterprise apps, modern React | | `ring:helm` | Helm charts, Lerian conventions, chart structure, security, operational patterns | Creating/maintaining Helm charts, platform deployments | | `ring:ui-engineer` | Wireframe-to-code, Design System compliance, UI states implementation | Implementing from product-designer specs | | `ring:prompt-reviewer` | Agent quality analysis, prompt deficiency detection, quality scoring | Evaluating agent executions, identifying prompt gaps | | `ring:qa-frontend` | Vitest, Testing Library, axe-core, Playwright, Lighthouse, snapshot testing | Frontend test planning, accessibility, E2E, performance |
Dispatch Template
Task:
subagent_type: "ring:{agent-name}"
description: "{Brief task description}"
prompt: |
{Your specific request with full context}Frontend Agent Selection Guide
| Need | Agent | |------|-------| | Visual aesthetics, design specs (no code) | `ring:ui-designer` | | React/Next.js UI development | `ring:frontend` | | Business logic, BFF, Clean Architecture | `ring:bff-ts` | | Implementing from wireframes/ux-criteria | `ring:ui-engineer` |
Parallelization
When tasks are independent, dispatch multiple agents in ONE message:
# All in one Task call block
Task 1: ring:backend-go - implement X with TDD, coverage, and local runtime
Task 2: ring:backend-ts - implement Y with TDD, coverage, and local runtime
Task 3: ring:helm - update Helm chart
Sequential dispatch triples execution time for the same cost.
Example
Task:
subagent_type: "ring:backend-go"
description: "Implement multi-tenant repository for accounts"
prompt: |
Implement a multi-tenant PostgreSQL repository for the accounts domain.
Standards: Load golang.md and multi-tenant.md via WebFetch.
Project rules: docs/PROJECT_RULES.md
Requirements:
- Use tmcore.GetPGContext(ctx) for tenant context resolution
- Table: accounts, tenant isolation via schema-per-tenant
- TDD: write failing test first, then implement
Output: files created, test results, acceptance criteria checklistRead more
name: ring:using-dev-team description: "Selecting and dispatching the right Ring developer specialist agent (backend Go/TS, frontend, UI designer/engineer, Helm, frontend QA, prompt reviewer) for a technology task. Use when you need deep stack expertise and must decide which agent to invoke via the Task tool, including parallel dispatch of independent work. Skip for general code review (use ring:reviewing-code)."
Using Ring Developer Specialists
When to use
- Need deep expertise for specific technology (Go, TypeScript)
- Backend local runtime / docker-compose → ring:backend-go or ring:backend-ts
- Frontend with design focus → ring:ui-designer
- Frontend UI development (React/Next.js) → ring:frontend
- Frontend from product-designer specs → ring:ui-engineer
- Helm chart creation/maintenance → ring:helm
- Backend tests / coverage / TDD → ring:backend-go or ring:backend-ts
- Frontend test strategy → ring:qa-frontend
- Backend health/logging/tracing → ring:backend-go or ring:backend-ts
- Agent/prompt quality evaluation → ring:prompt-reviewer
- Migrating deprecated lib-commons observability shims to lib-observability → ring:migrating-to-lib-observability
Skip when
- General code review → use `ring:reviewing-code` with dev-team reviewer agents
- Debugging → trace from logs / metrics / telemetry
Related
**Similar:** ring:using-ring
Developer specialist agents. Dispatch via `Task tool with subagent_type:`.
Runtime Version Resolution
Always resolve lib-commons to latest v5.x at runtime:
gh api repos/LerianStudio/lib-commons/releases/latest --jq '.tag_name'
Do NOT hardcode specific patch versions.
Specialists
| Agent | Specializations | Use When | |-------|----------------|----------| | `ring:backend-go` | Go microservices, PostgreSQL/MongoDB, RabbitMQ, OAuth2/JWT, gRPC, concurrency | Go services, DB optimization, auth/authz, concurrency | | `ring:backend-ts` | TypeScript/Node.js, Express/Fastify/NestJS, Prisma/TypeORM, Jest/Vitest | TS backends, NestJS design, JS→TS migration | | `ring:bff-ts` | Next.js BFF, Clean/Hexagonal Architecture, DDD patterns, Inversify DI | BFF layer, Clean Architecture, DDD domains, API orchestration | | `ring:ui-designer` | Bold typography, color systems, animations, unexpected layouts | Landing pages, portfolios, design systems | | `ring:frontend` | React/Next.js, App Router, Server Components, accessibility, performance | Financial dashboards, enterprise apps, modern React | | `ring:helm` | Helm charts, Lerian conventions, chart structure, security, operational patterns | Creating/maintaining Helm charts, platform deployments | | `ring:ui-engineer` | Wireframe-to-code, Design System compliance, UI states implementation | Implementing from product-designer specs | | `ring:prompt-reviewer` | Agent quality analysis, prompt deficiency detection, quality scoring | Evaluating agent executions, identifying prompt gaps | | `ring:qa-frontend` | Vitest, Testing Library, axe-core, Playwright, Lighthouse, snapshot testing | Frontend test planning, accessibility, E2E, performance |
Dispatch Template
Task:
subagent_type: "ring:{agent-name}"
description: "{Brief task description}"
prompt: |
{Your specific request with full context}Frontend Agent Selection Guide
| Need | Agent | |------|-------| | Visual aesthetics, design specs (no code) | `ring:ui-designer` | | React/Next.js UI development | `ring:frontend` | | Business logic, BFF, Clean Architecture | `ring:bff-ts` | | Implementing from wireframes/ux-criteria | `ring:ui-engineer` |
Parallelization
When tasks are independent, dispatch multiple agents in ONE message:
# All in one Task call block Task 1: ring:backend-go - implement X with TDD, coverage, and local runtime Task 2: ring:backend-ts - implement Y with TDD, coverage, and local runtime Task 3: ring:helm - update Helm chart
Sequential dispatch triples execution time for the same cost.
Example
Task:
subagent_type: "ring:backend-go"
description: "Implement multi-tenant repository for accounts"
prompt: |
Implement a multi-tenant PostgreSQL repository for the accounts domain.
Standards: Load golang.md and multi-tenant.md via WebFetch.
Project rules: docs/PROJECT_RULES.md
Requirements:
- Use tmcore.GetPGContext(ctx) for tenant context resolution
- Table: accounts, tenant isolation via schema-per-tenant
- TDD: write failing test first, then implement
Output: files created, test results, acceptance criteria checklistProven engineering practices, enforced through skills. Ring is a comprehensive skills library and workflow system for AI agents that transforms how AI assistants approach software development.
Repo: LerianStudio/ring
Other skills on ring.
- /analyzing-options
Analyzing different approaches for a task or problem with structured comparisons, effort estimates, and recommendations. Use when facing strategic decisions, architecture choices, or multiple viable approaches. Skip when there's an obvious single approach or the decision is
Open skill - /auditing-production-readiness
Auditing a service's production readiness against Ring engineering standards across base dimensions plus a conditional multi-tenant dimension, then emitting a scored report and an HTML dashboard. Use before production deploy, periodic review, onboarding, or a major release. Skip
Open skill - /cleaning-comments
Cleaning redundant and obvious comments following clean code principles while preserving meaningful documentation. Supports git scope filtering (staged, unstaged, branch, commit-range). Use when code has excessive comments, during code review, or post-refactor cleanup. Skip when
Open skill - /committing-changes
Commit changes with scope allowlist enforcement, atomic grouping, GPG-signed conventional commits, and trailer management. Detects the repo's PR-validation scope policy before proposing any message. Use when the user asks to commit or has changes ready to record. Skip when the
Open skill - /creating-handoffs
Creating a handoff document that captures session state (completed work, decisions, open items, next steps) and delivering it via Plan Mode so the user gets the native 'clear context and continue implementing' resume option. Use when ending a session, when context grows large,
Open skill - /creating-worktrees
Creating an isolated git worktree for parallel branch work: selects the directory by priority order, verifies/adds .gitignore safety, auto-installs the detected toolchain's dependencies, runs a baseline test, and reports readiness. Use before a feature that needs isolation from
Open skill

