Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问clear审计通过

bmad-method巴德法

Agent Skill

bmad-method 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

29,480

周安装

746

GitHub Stars

26

下载量

8,882
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bmad-method(巴德法)
来源仓库:https://github.com/daffy0208/ai-dev-standards
仓库路径:skills/bmad-method
安装命令:
npx skills add https://github.com/daffy0208/ai-dev-standards --skill 'BMAD Method'
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/daffy0208/ai-dev-standards --skill 'BMAD Method'

简介

连接商业战略与技术架构的方法论框架,确保技术决策支持业务可持续性。

  • 适用于新产品启动、重大架构 redesign或规模挑战与商业模式交叉的场景。
  • 核心理念是将架构视为业务模型的代码实现形式。
  • 帮助评估自建vs采购核心能力的决策,支持从MVP向规模化过渡。
  • 需要同时考虑短期功能交付和长期业务目标的平衡关系。

SKILL.md

BMAD Method (Business Model and Architecture Design)

Overview

The BMAD Method bridges business strategy and technical architecture. It ensures your technical decisions support long-term business sustainability, not just immediate feature delivery.

Core Insight: Your architecture IS your business model in code form.

When to Use This Skill

Use BMAD when:

  • Starting a new product or major architectural redesign
  • Technical decisions have direct revenue/cost implications
  • Scaling challenges intersect with business model constraints
  • Evaluating build vs. buy for core capabilities
  • Transitioning from MVP to sustainable growth
  • Business model changes require architectural shifts

Key Capabilities

  • Map business model to technical architecture decisions
  • Identify architectural implications of revenue models
  • Design for cost sustainability at scale
  • Align technology investments with business value
  • Evaluate infrastructure costs vs. revenue potential
  • Plan architecture evolution alongside business growth

Workflow

Step 1: Business Model Analysis

Understand the Revenue Engine:

  • How does money flow? (One-time, subscription, usage-based, marketplace, advertising)
  • What's the unit economics? (CAC, LTV, gross margin, payback period)
  • What are the scale expectations? (10 users? 10k? 10M?)
  • What's the competitive moat? (Network effects, data, tech, brand)

Key Questions:

  • Is this B2B or B2C?
  • What's the pricing model?
  • What drives costs? (Infrastructure, support, sales, dev)
  • What's the target gross margin?

Step 2: Architecture Alignment

Map Business Model to Architecture:

Subscription SaaS (B2B):

  • Multi-tenancy architecture
  • Pay-as-you-grow infrastructure (starts cheap)
  • Enterprise features (SSO, RBAC, audit logs)
  • 99.9%+ uptime SLA requirements
  • Data isolation and security compliance

Usage-Based (API/Platform):

  • Serverless/metered infrastructure
  • Rate limiting and quota management
  • Detailed usage tracking and billing
  • Developer experience (docs, SDKs)
  • Predictable per-request costs

Marketplace/Network:

  • Support dual-sided interactions (buyers/sellers)
  • Transaction processing and escrow
  • Search, matching, and discovery algorithms
  • Trust and safety systems
  • Commission-based cost structure

Freemium/Consumer:

  • Scales to millions of users efficiently
  • Clear free vs. paid feature boundaries
  • Low marginal cost per user
  • Conversion funnel optimization
  • Viral/growth mechanics

Step 3: Cost Modeling

Infrastructure Cost Analysis:

Calculate Unit Economics:

  • Cost per user/month
  • Cost per transaction
  • Cost per API call
  • Infrastructure overhead vs. variable costs

Example (SaaS):

Target: $20/user/month subscription

Acceptable costs:
- Infrastructure: <$2/user/month (10% COGS)
- Support: <$4/user/month (20%)
- Sales/Marketing: <$60 CAC (3-month payback)

Architecture decisions:
- Shared infrastructure (not dedicated per customer)
- Self-service onboarding (reduce sales cost)
- In-app support tools (reduce support tickets)
- Efficient database design (reduce storage costs)

Step 4: Scalability Planning

Design for Growth Stages:

Stage 1: MVP (0-100 users)

  • Goal: Validate product-market fit
  • Architecture: Simple, monolithic, managed services
  • Cost: Fixed low monthly ($100-500/month)
  • Trade-off: Speed over scalability

Stage 2: Growth (100-10k users)

  • Goal: Prove unit economics work
  • Architecture: Modular monolith, scale vertically first
  • Cost: Linear with users ($0.50-5/user/month)
  • Trade-off: Optimize for margin over features

Stage 3: Scale (10k-1M users)

  • Goal: Efficient scaling without rewrites
  • Architecture: Microservices for bottlenecks, caching, CDN
  • Cost: Sublinear growth ($0.10-1/user/month)
  • Trade-off: Operational complexity vs. efficiency

Stage 4: Enterprise (1M+ users)

  • Goal: Dominant market position
  • Architecture: Multi-region, custom infra, dedicated teams
  • Cost: Economies of scale (<$0.10/user/month)
  • Trade-off: Long-term investment over short-term agility

Step 5: Build vs. Buy Framework

Evaluate Core vs. Context:

Build when:

  • It's your competitive differentiator
  • You need specific customization
  • Recurring costs exceed build cost
  • You have expertise in-house
  • Control/security is critical

Buy/Use SaaS when:

  • It's commodity functionality
  • Time-to-market is critical
  • You lack expertise
  • Maintenance burden is high
  • Cost predictability matters

Examples:

CapabilityDecisionRationale
Payment processingBuy (Stripe)Commodity, compliance heavy
Core algorithmBuildCompetitive moat
Email deliveryBuy (SendGrid)Commodity infrastructure
AnalyticsBuy (Mixpanel)Faster than building
Custom AI modelBuildUnique to your data
Auth infrastructureBuy (Auth0) initiallyBuild later at scale

Step 6: Business Constraints Documentation

Capture Non-Negotiable Requirements:

Regulatory/Compliance:

  • GDPR, HIPAA, SOC2, PCI-DSS
  • Data residency requirements
  • Audit trail and retention policies

Business Commitments:

  • SLA commitments (uptime, response time)
  • Data portability guarantees
  • Security certifications required
  • Integration promises to customers

Financial Constraints:

  • Burn rate and runway
  • Target gross margin
  • Pricing commitments made
  • Investor expectations

Examples

Example 1: B2B SaaS Analytics Platform

Business Model:

  • $99-$499/month subscription
  • Target: 1,000 customers = $1.5M ARR
  • Target gross margin: 80%
  • Max COGS: $3/customer/month

Architecture Decisions:

  • Multi-tenant database (shared PostgreSQL)
  • Serverless data processing (AWS Lambda)
  • Managed infrastructure (AWS RDS, S3, CloudFront)
  • No dedicated resources per customer (kills margin)

Build vs. Buy:

  • Build: Core analytics engine (differentiator)
  • Buy: Auth (Auth0), Email (SendGrid), Support (Intercom)

Outcome: $2.50/customer/month COGS, 83% margin


Example 2: Usage-Based API Platform

Business Model:

  • $0.01/API call pricing
  • Target: 10M calls/month = $100k MRR
  • Target gross margin: 70%
  • Max COGS: $0.003/call

Architecture Decisions:

  • Serverless architecture (AWS Lambda + API Gateway)
  • Pay-per-use infrastructure (no idle costs)
  • Aggressive caching (CloudFlare + Redis)
  • Efficient algorithms (cost per call matters)

Build vs. Buy:

  • Build: Core API logic (differentiator)
  • Buy: API gateway (AWS), CDN (CloudFlare), Monitoring (Datadog)

Outcome: $0.0025/call COGS, 75% margin


Example 3: Consumer Marketplace

Business Model:

  • 10% commission on transactions
  • Target: $1M GMV/month = $100k revenue
  • Target gross margin: 60%
  • Max COGS: $40k/month

Architecture Decisions:

  • Scalable to millions of users (serverless + CDN)
  • Transaction processing (Stripe Connect)
  • Search and matching (Algolia or Elasticsearch)
  • Low marginal cost per user (<$0.01/user/month)

Build vs. Buy:

  • Build: Matching algorithm (differentiator)
  • Buy: Payments (Stripe), Search (Algolia), Chat (Stream)

Outcome: Scales to 100k users at <$35k/month


Best Practices

1. Start with Business Model, Not Tech Stack

Don't choose React/Node/AWS first. Choose after understanding:

  • Revenue model
  • User scale
  • Unit economics
  • Margin targets

2. Design for Current Stage +1

Build for where you are now, but don't lock yourself out of next stage.

Bad: Hard-coded single-tenant that can't scale Good: Multi-tenant from day 1 (even at 10 users)

3. Measure Infrastructure Cost Per User

If you can't calculate cost per user, you can't predict profitability.

Track monthly:

  • AWS/GCP/Azure spend
  • Third-party SaaS costs
  • Divide by active users

4. Align Architectural Investments with Revenue

If feature doesn't drive revenue/retention, defer expensive architecture.

Example: Don't build multi-region before proving PMF.

5. Plan for Architectural Pivot Points

Know when you'll need to refactor:

  • 1,000 users → Optimize database queries
  • 10,000 users → Add caching layer
  • 100,000 users → Microservices for bottlenecks
  • 1M users → Multi-region, custom infra

Common Pitfalls

1. Over-Engineering for Scale You Don't Have

Building for 1M users when you have 100 wastes time and money.

Antipattern: Microservices + Kubernetes at MVP stage Better: Monolith on Railway/Heroku, scale later

2. Under-Engineering for Business Model

Not building multi-tenancy in B2B SaaS kills margins at scale.

Antipattern: Dedicated database per customer Better: Multi-tenant architecture from day 1

3. Ignoring Unit Economics

Not tracking cost per user means surprises at scale.

Antipattern: "We'll figure out costs later" Better: Model costs before building

4. Building Everything In-House

Commodities don't need custom solutions.

Antipattern: Build custom auth, payments, email Better: Buy Stripe, Auth0, SendGrid; build differentiation

5. Misaligned Tech Investments

Spending on features that don't drive business value.

Antipattern: Perfect CI/CD before proving PMF Better: Ship fast, optimize later


Related Skills

  • mvp-builder - Rapid MVP development (BMAD guides what to build)
  • product-strategist - Product-market fit validation (BMAD aligns architecture)
  • deployment-advisor - Infrastructure and CI/CD (BMAD sets cost targets)
  • api-designer - API design (BMAD determines pricing model)
  • performance-optimizer - Optimize costs at scale (BMAD identifies when to optimize)

Deliverables

When using BMAD Method, produce:

  1. Business Model Canvas

- Revenue streams, cost structure, value proposition - Unit economics (CAC, LTV, margin)

  1. Architecture Alignment Document

- How architecture supports business model - Cost per user calculations - Scalability plan for growth stages

  1. Build vs. Buy Decision Matrix

- Core capabilities to build - Context capabilities to buy - Cost-benefit analysis

  1. Architectural Roadmap

- Current stage architecture - Planned refactors at scale milestones - Investment priorities


Success Metrics

You've successfully applied BMAD when:

  • Infrastructure costs are predictable and within target margins
  • Architecture supports current stage without over-engineering
  • Clear plan exists for next scale milestone
  • Build vs. buy decisions are justified by business value
  • Technical debt is strategic, not accidental
  • Team understands business implications of technical choices

Remember: The best architecture is the one that makes your business model sustainable and profitable.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.5%
按下载量换算2,620

OpenCode

22.24%
按下载量换算1,975

Antigravity

15.2%
按下载量换算1,350

Gemini CLI

10.59%
按下载量换算941

Codex

7.32%
按下载量换算650

Cursor

3.55%
按下载量换算315

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源字段存在多来源差异,先按来源优先级自动处理,无法消解时进入异常复核队列。

来源信息

继续浏览同类 Skills