🎯

prisma-patterns

🎯Skill

from ashchupliak/dream-team

VibeIndex|
What it does

prisma-patterns skill from ashchupliak/dream-team

πŸ“¦

Part of

ashchupliak/dream-team(13 items)

prisma-patterns

Installation

git cloneClone repository
git clone https://github.com/ashchupliak/dream-team.git
Shell ScriptRun shell script
./install.sh
πŸ“– Extracted from docs: ashchupliak/dream-team
11Installs
1
-
Last UpdatedDec 8, 2025

Skill Details

SKILL.md

Overview

# Dream Team v3.0

Effective Claude workflows based on official Anthropic patterns and real-world feedback.

Philosophy

> "A single-threaded linear agent maintains continuous context. This simple approach will get you very far." - [Cognition (Devin team)](https://cognition.ai/blog/dont-build-multi-agents)

Less ceremony, more results. Claude works best when it can:

  • Build context itself
  • Ask questions only when genuinely needed
  • Work incrementally
  • Self-review before presenting

---

Quick Start

Installation

```bash

# Option 1: Plugin (Recommended)

claude plugins add https://github.com/ashchupliak/dream-team

# Option 2: Manual

git clone https://github.com/ashchupliak/dream-team.git

cd dream-team

./install.sh

```

Usage

```bash

# For 90% of tasks - use /solo

/solo Fix the login bug

/solo Add rate limiting to the API

/solo Why are the tests failing?

# For complex features needing multiple perspectives

/team Add OAuth with Google and GitHub

```

---

Commands

`/solo` - Primary Workflow (Recommended)

The main command for most tasks. Claude will:

  1. Build context automatically - Read CLAUDE.md, explore codebase, find patterns
  2. Assess confidence - Determine if it has enough info to proceed
  3. Ask only when needed - No forced questions, no ceremonies
  4. Work incrementally - Small steps that compile and work
  5. Self-review - Check own work before presenting

```bash

/solo Fix the login bug

/solo Add rate limiting to the API

/solo Why are the tests failing?

/solo Review my changes in the auth module

/solo Refactor the user service

```

`/team` - Multi-Agent Workflow

For genuinely complex features where you want:

  • Multiple architecture options presented
  • Parallel exploration of different aspects
  • Explicit user checkpoints

Based on [Anthropic's feature-dev plugin](https://github.com/anthropics/claude-code/tree/main/plugins/feature-dev).

7-phase workflow: Discovery β†’ Exploration β†’ Questions β†’ Architecture β†’ Implementation β†’ Review β†’ Summary

```bash

/team Add OAuth authentication with Google and GitHub

/team Implement real-time notifications system

```

Legacy Commands

| Command | Description |

|---------|-------------|

| /team-a | Original 5-agent with health checks |

| /team-b | Original 5-agent standard |

| /team-c | Original 3-agent fast |

Kept for comparison. Use /solo instead for most tasks.

---

When To Use What

| Task | Use | Why |

|------|-----|-----|

| Bug fix | /solo | Single context, no overhead |

| Small feature | /solo | Find patterns, implement, verify |

| Investigation | /solo | Explore and report |

| Code review | /solo | Read and analyze |

| Refactoring | /solo | Incremental changes |

| Complex feature | /team | Need multiple architecture options |

| Architecture decisions | /team | Want parallel exploration |

Rule of thumb: Start with /solo. Use /team only when you genuinely need multiple perspectives.

---

Skills

Specialized knowledge Claude can invoke on demand:

| Skill | Domain |

|-------|--------|

| kotlin-patterns | Kotlin idioms and patterns |

| kotlin-spring-boot | Spring Boot 3.x |

| nextjs-patterns | Next.js 15 App Router |

| prisma-patterns | Prisma ORM |

| tanstack-query | React Query |

| jooq-patterns | JOOQ type-safe SQL |

| flyway-migrations | Database migrations |

| api-design | REST API design |

| grpc-protobuf | gRPC and Protocol Buffers |

| k8s-helm | Kubernetes and Helm |

| opentelemetry | Distributed tracing |

| systematic-planning | Feature planning |

| codex | Codex CLI delegation |

Just mention the domain in your request.

---

Agents

Available for /team workflows:

| Agent | Role | Model |

|-------|------|-------|

| analyst | Requirements, research | Sonnet |

| architect | Design, APIs, blueprints | Sonnet |

| developer | Implementation | Sonnet |

| qa | Testing, review | Sonnet |

| devops | Infrastructure | Sonnet |

| `code-reviewe