con un clic
brainstorming
**MANDATORY:** Use for complex/vague requests, new features, updates.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
**MANDATORY:** Use for complex/vague requests, new features, updates.
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Analyzes user's requests, determines tech stack, plans structure, and coordinates agents.
Apply consistent changes across many files at once. One pattern, many targets.
Reduce AI token usage by **6.8x average** (up to **49x** on monorepos) by giving the AI a structural map of your codebase instead of letting it read everything.
Keep sessions productive by compressing completed work while preserving key decisions.
Advanced multi-agent coordination with parallel dispatch and synthesis. Use for complex tasks requiring multiple specialist perspectives.
Distilled from production-proven coordinator patterns. Transforms sequential agent chains into intelligent parallel orchestration.
| name | brainstorming |
| description | **MANDATORY:** Use for complex/vague requests, new features, updates. |
MANDATORY: Use for complex/vague requests, new features, updates.
| Pattern | Action |
|---|---|
| "Build/Create/Make [thing]" without details | 🛑 ASK 3 questions |
| Complex feature or architecture | 🛑 Clarify before implementing |
| Update/change request | 🛑 Confirm scope |
| Vague requirements | 🛑 Ask purpose, users, constraints |
Before asking questions, check if past context exists:
0. CHECK MEMORY — Does .agent/memory/MEMORY.md exist?
→ YES: Read index. Apply relevant past decisions silently.
Skip questions already answered in memory.
→ NO: Proceed with standard Socratic Gate.
.agent/memory/ for past context on this topic/remember [decision]⛔ NEVER use static templates. Read dynamic-questioning.md for principles.
| Principle | Meaning |
|---|---|
| Questions Reveal Consequences | Each question connects to an architectural decision |
| Context Before Content | Understand greenfield/feature/refactor/debug context first |
| Minimum Viable Questions | Each question must eliminate implementation paths |
| Generate Data, Not Assumptions | Don't guess—ask with trade-offs |
1. Parse request → Extract domain, features, scale indicators
2. Identify decision points → Blocking vs. deferable
3. Generate questions → Priority: P0 (blocking) > P1 (high-leverage) > P2 (nice-to-have)
4. Format with trade-offs → What, Why, Options, Default
### [PRIORITY] **[DECISION POINT]**
**Question:** [Clear question]
**Why This Matters:**
- [Architectural consequence]
- [Affects: cost/complexity/timeline/scale]
**Options:**
| Option | Pros | Cons | Best For |
|--------|------|------|----------|
| A | [+] | [-] | [Use case] |
**If Not Specified:** [Default + rationale]
For detailed domain-specific question banks and algorithms, see: dynamic-questioning.md
PRINCIPLE: Transparency builds trust. Status must be visible and actionable.
| Agent | Status | Current Task | Progress |
|---|---|---|---|
| [Agent Name] | ✅🔄⏳❌⚠️ | [Task description] | [% or count] |
| Icon | Meaning | Usage |
|---|---|---|
| ✅ | Completed | Task finished successfully |
| 🔄 | Running | Currently executing |
| ⏳ | Waiting | Blocked, waiting for dependency |
| ❌ | Error | Failed, needs attention |
| ⚠️ | Warning | Potential issue, not blocking |
PRINCIPLE: Errors are opportunities for clear communication.
1. Acknowledge the error
2. Explain what happened (user-friendly)
3. Offer specific solutions with trade-offs
4. Ask user to choose or provide alternative
| Category | Response Strategy |
|---|---|
| Port Conflict | Offer alternative port or close existing |
| Dependency Missing | Auto-install or ask permission |
| Build Failure | Show specific error + suggested fix |
| Unclear Error | Ask for specifics: screenshot, console output |
PRINCIPLE: Celebrate success, guide next steps.
1. Success confirmation (celebrate briefly)
2. Summary of what was done (concrete)
3. How to verify/test (actionable)
4. Next steps suggestion (proactive)
| Principle | Implementation |
|---|---|
| Concise | No unnecessary details, get to point |
| Visual | Use emojis (✅🔄⏳❌) for quick scanning |
| Specific | "~2 minutes" not "wait a bit" |
| Alternatives | Offer multiple paths when stuck |
| Proactive | Suggest next step after completion |
| Anti-Pattern | Why |
|---|---|
| Jumping to solutions before understanding | Wastes time on wrong problem |
| Assuming requirements without asking | Creates wrong output |
| Over-engineering first version | Delays value delivery |
| Ignoring constraints | Creates unusable solutions |
| "I think" phrases | Uncertainty → Ask instead |
PRINCIPLE: Questions are not about gathering data—they are about revealing architectural consequences.
Every question must connect to a concrete implementation decision that affects cost, complexity, or timeline.
A good question is not "What color do you want?" but:
❌ BAD: "What authentication method?"
✅ GOOD: "Should users sign up with email/password or social login?
Impact:
- Email/Pass → Need password reset, hashing, 2FA infrastructure
- Social → OAuth providers, user profile mapping, less control
Trade-off: Security vs. Development time vs. User friction"
First understand where this request fits:
| Context | Question Focus |
|---|---|
| Greenfield (new project) | Foundation decisions: stack, hosting, scale |
| Feature Addition | Integration points, existing patterns, breaking changes |
| Refactor | Why refactor? Performance? Maintainability? What's broken? |
| Debug | Symptoms → Root cause → Reproduction path |
PRINCIPLE: Each question must eliminate a fork in the implementation road.
Before Question:
├── Path A: Do X (5 min)
├── Path B: Do Y (15 min)
└── Path C: Do Z (1 hour)
After Question:
└── Path Confirmed: Do X (5 min)
If a question doesn't reduce implementation paths → DELETE IT.
❌ ASSUMPTION: "User probably wants Stripe for payments"
✅ QUESTION: "Which payment provider fits your needs?
Stripe → Best documentation, 2.9% + $0.30, US-centric
LemonSqueezy → Merchant of Record, 5% + $0.50, global taxes
Paddle → Complex pricing, handles EU VAT, enterprise focus"
INPUT: User request + Context (greenfield/feature/refactor/debug)
│
├── STEP 1: Parse Request
│ ├── Extract domain (ecommerce, auth, realtime, cms, etc.)
│ ├── Extract features (explicit and implied)
│ └── Extract scale indicators (users, data volume, frequency)
│
├── STEP 2: Identify Decision Points
│ ├── What MUST be decided before coding? (blocking)
│ ├── What COULD be decided later? (deferable)
│ └── What has ARCHITECTURAL impact? (high-leverage)
│
├── STEP 3: Generate Questions (Priority Order)
│ ├── P0: Blocking decisions (cannot proceed without answer)
│ ├── P1: High-leverage (affects >30% of implementation)
│ ├── P2: Medium-leverage (affects specific features)
│ └── P3: Nice-to-have (edge cases, optimization)
│
└── STEP 4: Format Each Question
├── What: Clear question
├── Why: Impact on implementation
├── Options: Trade-offs (not just A vs B)
└── Default: What happens if user doesn't answer
| Question | Why It Matters | Trade-offs |
|---|---|---|
| Single or Multi-vendor? | Multi-vendor → Commission logic, vendor dashboards, split payments | +Revenue, -Complexity |
| Inventory Tracking? | Needs stock tables, reservation logic, low-stock alerts | +Accuracy, -Development time |
| Digital or Physical Products? | Digital → Download links, no shipping | Physical → Shipping APIs, tracking |
| Subscription or One-time? | Subscription → Recurring billing, dunning, proration | +Revenue, -Complexity |
| Question | Why It Matters | Trade-offs |
|---|---|---|
| Social Login Needed? | OAuth providers vs. password reset infrastructure | +UX, -Control |
| Role-Based Permissions? | RBAC tables, policy enforcement, admin UI | +Security, -Development time |
| 2FA Required? | TOTP/SMI infrastructure, backup codes, recovery flow | +Security, -UX friction |
| Email Verification? | Verification tokens, email service, resend logic | +Security, -Sign-up friction |
| Question | Why It Matters | Trade-offs |
|---|---|---|
| WebSocket or Polling? | WS → Server scaling, connection management | Polling → Simpler, higher latency |
| Expected Concurrent Users? | <100 → Single server, >1000 → Redis pub/sub, >10k → specialized infra | +Scale, -Complexity |
| Message Persistence? | History tables, storage costs, pagination | +UX, -Storage |
| Ephemeral or Durable? | Ephemeral → In-memory, Durable → Database write before emit | +Reliability, -Latency |
| Question | Why It Matters | Trade-offs |
|---|---|---|
| Rich Text or Markdown? | Rich Text → Sanitization, XSS risks | Markdown → Simple, no WYSIWYG |
| Draft/Publish Workflow? | Status field, scheduled jobs, versioning | +Control, -Complexity |
| Media Handling? | Upload endpoints, storage, optimization | +Features, -Development time |
| Multi-language? | i18n tables, translation UI, fallback logic | +Reach, -Complexity |
Based on your request for [DOMAIN] [FEATURE]:
## 🔴 CRITICAL (Blocking Decisions)
### 1. **[DECISION POINT]**
**Question:** [Clear, specific question]
**Why This Matters:**
- [Explain architectural consequence]
- [Affects: cost / complexity / timeline / scale]
**Options:**
| Option | Pros | Cons | Best For |
|--------|------|------|----------|
| A | [Advantage] | [Disadvantage] | [Use case] |
| B | [Advantage] | [Disadvantage] | [Use case] |
**If Not Specified:** [Default choice + rationale]
---
## 🟡 HIGH-LEVERAGE (Affects Implementation)
### 2. **[DECISION POINT]**
[Same format]
---
## 🟢 NICE-TO-HAVE (Edge Cases)
### 3. **[DECISION POINT]**
[Same format]
Focus on blocking decisions. Don't proceed without answers.
As patterns emerge, ask:
When functionality works:
USER REQUEST: "Build an Instagram clone"
STEP 1: Parse
├── Domain: Social Media
├── Features: Photo sharing, engagement (likes/comments), user profiles
├── Implied: Feed, following, authentication
└── Scale: Potentially high (social apps go viral)
STEP 2: Decision Points
├── Blocking: Storage strategy, authentication method, feed type
├── High-leverage: Real-time notifications, data model complexity
└── Deferable: Analytics, advanced search, reels/video
STEP 3: Generate Questions (Priority)
P0 (Blocking):
1. Storage Strategy → Affects architecture, cost, speed
2. Feed Algorithm → Affects database queries, complexity
3. Auth Method → Affects dev time, UX, security
P1 (High-leverage):
4. Real-time Notifications → WebSocket vs polling
5. Media Processing → Client-side vs server-side optimization
P2 (Deferable):
6. Story/Reels → Major feature creep, defer to v2
7. DM/Chat → Separate subsystem, defer to v2
STEP 4: Format Output
Based on your Instagram clone request:
## 🔴 CRITICAL DECISIONS (Cannot Proceed Without Answers)
### 1. **Photo Storage Strategy**
**Question:** Where will user photos be stored and served?
**Why This Matters:**
- Affects: Monthly hosting costs, page load speed, CDN complexity
- High-volume social apps: 1000 users × 10 photos × 2MB = 20GB storage
**Options:**
| Option | Cost | Speed | Complexity | Best For |
|--------|------|-------|------------|----------|
| **Cloudinary** | $89/mo (25GB) | Fast (CDN) | Low | MVP, rapid launch |
| **AWS S3 + CloudFront** | $0.023/GB | Fast (CDN) | Medium | Production, cost-optimized |
| **Supabase Storage** | Free tier 1GB | Medium | Low | Small scale, simple |
| **Local Storage** | Server cost | Slow | Low | Development only |
**If Not Specified:** Cloudinary (balanced for MVP)
---
### 2. **Feed Algorithm Choice**
**Question:** How should the main feed work?
**Why This Matters:**
- Affects: Database query complexity, caching strategy, development time
- Algorithmic feeds require ML infrastructure, ranking signals
**Options:**
| Option | Complexity | Database Impact | Best For |
|--------|------------|-----------------|----------|
| **Chronological** | Low | Simple query | Early stage, transparency |
| **Follow-Only** | Medium | JOIN with pagination | Most social apps |
| **Algorithmic** | High | Pre-computed feed tables | Instagram competitor |
**If Not Specified:** Follow-Only (balanced for social app)
---
### 3. **Authentication Approach**
**Question:** How do users sign up and login?
**Why This Matters:**
- Affects: Development time (2-5 hours), security posture, UX friction
**Options:**
| Option | Dev Time | Security | UX | Best For |
|--------|----------|----------|-----|----------|
| **Email/Password** | 4-5 hrs | High (if 2FA) | Medium | Full control needed |
| **Social Only** | 1-2 hrs | Provider-dependent | Smooth | B2C, rapid launch |
| **Magic Link** | 2-3 hrs | Medium | Very smooth | Security-focused |
| **Clerk/Auth0** | 1 hr | High | Smooth | Fastest to market |
**If Not Specified:** Clerk (fastest for MVP)
---
## 🟡 HIGH-LEVERAGE (Affects Architecture)
### 4. **Real-time Notifications**
**Question:** Do users need instant notifications for likes/comments?
**Why This Matters:**
- WebSocket adds infrastructure complexity (Redis pub/sub for scaling)
- Polling is simpler but higher latency
**Options:**
| Option | Complexity | Scale Cost | Best For |
|--------|------------|------------|----------|
| **WebSocket + Redis** | High | $10+/mo | >1000 concurrent users |
| **Polling (30s)** | Low | DB queries | <1000 users |
| **No Real-time** | None | None | MVP, validate first |
**If Not Specified:** Polling for MVP (defer WebSocket until validated)
---
## 🟢 NICE-TO-HAVE (Defer to v2)
### 5. **Video/Reels Support**
- Major complexity (video processing, streaming infrastructure)
- Recommendation: Launch with photos only, add video after validation
### 6. **Direct Messaging**
- Separate subsystem (chat infrastructure different from feed)
- Recommendation: Use Pusher/Stream for real-time or defer entirely
---
## 📋 Summary
| Decision | Recommendation | If Changed |
|----------|----------------|------------|
| Storage | Cloudinary | +3 hrs setup |
| Feed | Follow-only | +2 hrs query optimization |
| Auth | Clerk | -3 hrs dev time |
| Real-time | Polling | +5 hrs WebSocket setup |
| Video | Defer to v2 | N/A |
| DM | Defer to v2 | N/A |
**Total Estimated MVP Time:** 15-20 hours with recommendations above
Generated by Agent Bridge