Agentic AI Atlasby a5c.ai
OverviewWikiGraphFor AgentsEdgesSearchWorkspace
/
GitHubDocsDiscord
iiRecord
Agentic AI Atlas · Double Diamond Methodology (Library)
page:library-double-diamonda5c.ai
Search record views/
Record · tabs

Available views

II.Record viewspp. 1 - 1
overviewarticlejsongraph
II.
Page JSON

page:library-double-diamond

Structured · live

Double Diamond Methodology (Library) json

Inspect the normalized record payload exactly as the atlas UI reads it.

File · wiki/library/double-diamond.mdCluster · wiki
Record JSON
{
  "id": "page:library-double-diamond",
  "_kind": "Page",
  "_file": "wiki/library/double-diamond.md",
  "_cluster": "wiki",
  "attributes": {
    "nodeKind": "Page",
    "title": "Double Diamond Methodology (Library)",
    "displayName": "Double Diamond Methodology (Library)",
    "slug": "library/double-diamond",
    "articlePath": "wiki/library/double-diamond.md",
    "article": "\n# Double Diamond Methodology\n\n**Creator**: British Design Council (2005)\n**Year**: Established design thinking framework\n**Category**: Design Thinking / Innovation / User-Centered Design\n\n## Overview\n\nThe Double Diamond is a design thinking framework that visualizes the design process through four distinct phases: Discover, Define, Develop, and Deliver. The framework is represented by two diamonds - the first diamond explores the problem space (Discover → Define), and the second explores the solution space (Develop → Deliver). Each diamond represents both divergent thinking (exploring an issue more widely) and convergent thinking (taking focused action).\n\nThis process implements the Double Diamond framework through the Babysitter SDK orchestration framework, providing agent-driven research, synthesis, ideation, and delivery workflows.\n\n## Key Concepts\n\n### The Two Diamonds\n\n**First Diamond: Problem Space (Discover → Define)**\n- **Discover**: Divergent exploration of the problem space\n- **Define**: Convergent synthesis to a focused problem statement\n\n**Second Diamond: Solution Space (Develop → Deliver)**\n- **Develop**: Divergent ideation of multiple solution concepts\n- **Deliver**: Convergent selection and implementation of final solution\n\n### Divergent and Convergent Thinking\n\n**Divergent Thinking** (expanding):\n- Explore broadly without judgment\n- Generate many options and possibilities\n- Ask \"what else?\" and \"what if?\"\n- Defer decision-making\n- Embrace ambiguity\n\n**Convergent Thinking** (focusing):\n- Analyze and evaluate options\n- Synthesize insights into patterns\n- Make decisions and choices\n- Create clear direction\n- Reduce ambiguity\n\n### User-Centered Design\n\nThroughout all phases:\n- Keep user needs central to decisions\n- Base decisions on research and evidence\n- Test assumptions with real users\n- Iterate based on feedback\n- Design with users, not for users\n\n## Process Workflow\n\n### Phase 1: Discover (Diverge on Problem)\n\n**Goal**: Explore the problem space as broadly as possible\n\n**Activities**:\n1. User research (interviews, observations, contextual inquiry)\n2. Market and competitive analysis\n3. Stakeholder interviews\n4. Context mapping\n5. Identify user needs, pain points, behaviors\n6. Document workarounds and edge cases\n7. Gather qualitative and quantitative insights\n8. Explore contradictions and tensions\n\n**Key Questions**:\n- Who are the users and what are their needs?\n- What problems do they face?\n- In what context do problems occur?\n- What workarounds exist?\n- What are users trying to achieve?\n\n**Mindset**: Stay in problem space. Resist jumping to solutions. Cast wide net.\n\n### Phase 2: Define (Converge on Problem)\n\n**Goal**: Synthesize research into focused problem statement\n\n**Activities**:\n1. Synthesize discovery insights\n2. Identify patterns and themes\n3. Frame the core problem\n4. Write clear problem statement\n5. Define design principles\n6. Establish success criteria\n7. Identify constraints\n8. Define primary users and their needs\n\n**Key Questions**:\n- What is the core problem to solve?\n- Who are we solving it for?\n- Why does this problem matter?\n- What does success look like?\n- What principles should guide our solution?\n\n**Mindset**: Move from broad insights to specific problem. Be clear but don't prescribe solution.\n\n### Phase 3: Develop (Diverge on Solutions)\n\n**Goal**: Generate multiple solution concepts through ideation\n\n**Activities**:\n1. Ideation sessions (brainstorming, SCAMPER, analogies)\n2. Generate wide range of concepts (5-10+)\n3. Challenge assumptions\n4. Range from incremental to radical\n5. Create rough prototypes/sketches\n6. Evaluate against design principles\n7. Assess technical feasibility\n8. Identify strengths and weaknesses\n\n**Key Questions**:\n- What are different ways to solve this problem?\n- What if we tried [extreme approach]?\n- How might we combine concepts?\n- What assumptions are we making?\n- What would a radical solution look like?\n\n**Mindset**: Quantity leads to quality. Defer judgment. Yes, and... Build on ideas.\n\n### Phase 4: Deliver (Converge on Solution)\n\n**Goal**: Select final solution and plan implementation\n\n**Activities**:\n1. Evaluate concepts against criteria\n2. Select final solution (may combine concepts)\n3. Create detailed specification\n4. Define user experience\n5. Break into implementation steps\n6. Create delivery timeline\n7. Identify risks and dependencies\n8. Plan for testing and iteration\n\n**Key Questions**:\n- Which solution best meets our criteria?\n- How will it work in detail?\n- What needs to be built first?\n- How will we measure success?\n- What could go wrong?\n\n**Mindset**: Make clear choices with rationale. Plan for reality. Prepare for iteration.\n\n## Usage\n\n### Full Double Diamond Workflow\n\n```javascript\nimport { orchestrate } from '@a5c-ai/babysitter-sdk';\n\nconst result = await orchestrate({\n  process: 'methodologies/double-diamond',\n  inputs: {\n    projectName: 'Mobile Banking App Redesign',\n    context: 'Redesigning mobile banking app to improve user experience...',\n    initialResearch: 'User interviews show frustration with...',\n    phase: 'full'\n  }\n});\n```\n\n### Discovery Phase Only\n\n```javascript\nconst result = await orchestrate({\n  process: 'methodologies/double-diamond',\n  inputs: {\n    projectName: 'Mobile Banking App',\n    context: 'Exploring user needs...',\n    initialResearch: 'Survey data and interviews...',\n    phase: 'discover'\n  }\n});\n```\n\n### Continue from Definition\n\n```javascript\nconst result = await orchestrate({\n  process: 'methodologies/double-diamond',\n  inputs: {\n    projectName: 'Mobile Banking App',\n    phase: 'define',\n    existingDiscovery: './artifacts/double-diamond/discovery.json'\n  }\n});\n```\n\n## Input Parameters\n\n| Parameter | Type | Required | Default | Description |\n|-----------|------|----------|---------|-------------|\n| `projectName` | string | Yes | - | Name of the design project |\n| `context` | string | No | '' | Project context and background |\n| `initialResearch` | string | No | '' | Initial research data (interviews, surveys, market analysis) |\n| `phase` | string | No | 'full' | Starting phase: 'discover', 'define', 'develop', 'deliver', 'full' |\n| `existingDiscovery` | string | No | null | Path to existing artifacts (for continuation) |\n\n## Output Artifacts\n\nThe process generates comprehensive Double Diamond artifacts:\n\n### Discovery Phase\n- `artifacts/double-diamond/DISCOVERY.md` - Discovery insights and research synthesis\n- `artifacts/double-diamond/user-research.json` - Structured user research data\n- `artifacts/double-diamond/problem-map.md` - Problem space mapping\n\n### Definition Phase\n- `artifacts/double-diamond/DEFINITION.md` - Problem definition and design principles\n- `artifacts/double-diamond/problem-statement.json` - Structured problem statement\n- `artifacts/double-diamond/design-principles.md` - Design principles and rationale\n\n### Development Phase\n- `artifacts/double-diamond/DEVELOPMENT.md` - Solution concepts and ideation\n- `artifacts/double-diamond/solution-concepts.json` - Structured concept data\n- `artifacts/double-diamond/prototypes.md` - Prototype descriptions\n\n### Delivery Phase\n- `artifacts/double-diamond/DELIVERY.md` - Final solution and implementation plan\n- `artifacts/double-diamond/final-solution.json` - Detailed solution specification\n- `artifacts/double-diamond/implementation-plan.md` - Step-by-step implementation plan\n\n### Summary\n- `artifacts/double-diamond/SUMMARY.md` - Complete Double Diamond summary\n\n## Return Value\n\n```javascript\n{\n  success: boolean,\n  projectName: string,\n  phase: string,\n  discovery: {\n    userInsights: [ ... ],\n    marketInsights: [ ... ],\n    problemAreas: [ ... ],\n    userBehaviors: [ ... ],\n    stakeholders: [ ... ],\n    assumptions: [ ... ],\n    researchSynthesis: { ... }\n  },\n  definition: {\n    problemStatement: { ... },\n    designPrinciples: [ ... ],\n    successCriteria: [ ... ],\n    constraints: { ... },\n    primaryUsers: [ ... ],\n    opportunitySpace: { ... }\n  },\n  development: {\n    concepts: [ ... ],\n    prototypes: [ ... ],\n    ideationSummary: { ... },\n    technicalFeasibility: [ ... ]\n  },\n  delivery: {\n    selectedSolution: { ... },\n    specification: { ... },\n    implementationSteps: [ ... ],\n    deliveryTimeline: { ... },\n    qualityAssurance: { ... },\n    risks: [ ... ]\n  },\n  iterationDecision: { ... },\n  validation: { ... },\n  artifacts: { ... },\n  metadata: { ... }\n}\n```\n\n## Integration with Other Methodologies\n\n### With Jobs to Be Done (JTBD)\nDiscovery phase includes JTBD job discovery. Forces analysis informs problem definition. Job stories become inputs to solution development.\n\n### With Spec-Driven Development\nProblem definition and final solution become inputs to constitution and specification writing. Design principles guide spec development.\n\n### With BDD/Specification by Example\nUser insights and problem definition inform BDD scenarios. Final solution specification becomes input to Gherkin scenario writing.\n\n### With Hypothesis-Driven Development\nAssumptions identified during discovery become hypotheses to test. Development phase concepts can be validated through experiments.\n\n### With Impact Mapping\nProblem statement informs goal definition. Success criteria map to impacts. Solution features map to deliverables.\n\n## Double Diamond in Practice\n\n### Iteration is Normal\n\nThe Double Diamond is inherently iterative. You may need multiple diamonds:\n\n**Zoom In**: After completing one diamond, zoom into specific aspect for another diamond\n**Zoom Out**: If too detailed, zoom out to see bigger picture\n**Pivot**: If problem/solution doesn't validate, run new diamond with updated understanding\n**Refinement**: Polish and refine solution through additional diamond\n\n### Timeboxing\n\nPhases can be timeboxed based on project needs:\n\n**Sprint Diamond** (1-2 weeks):\n- Discover: 2 days\n- Define: 1 day\n- Develop: 3 days\n- Deliver: 2 days\n\n**Standard Diamond** (4-6 weeks):\n- Discover: 1-2 weeks\n- Define: 3-5 days\n- Develop: 1-2 weeks\n- Deliver: 1 week\n\n**Deep Diamond** (3-6 months):\n- Discover: 4-8 weeks\n- Define: 2-3 weeks\n- Develop: 4-8 weeks\n- Deliver: 3-4 weeks\n\n### Team Collaboration\n\nDouble Diamond works best with cross-functional teams:\n\n**Discovery**: Researchers, designers, product managers, users\n**Define**: Full team + stakeholders\n**Develop**: Designers, developers, product managers\n**Deliver**: Full team + implementation specialists\n\n## Best Practices\n\n### Discovery Phase\n1. Talk to real users in their context\n2. Observe actual behavior, not just what people say\n3. Look for workarounds - they reveal pain points\n4. Document exact quotes from users\n5. Include edge cases and extreme users\n6. Resist the urge to jump to solutions\n7. Cast a wide net - be truly divergent\n\n### Definition Phase\n1. Problem statement should be specific but not prescribe solution\n2. Good: \"Busy parents struggle to plan healthy meals with limited time\"\n3. Bad: \"We need a meal planning app\"\n4. Design principles guide solution choices\n5. Success criteria must be measurable\n6. Get stakeholder alignment on problem definition\n\n### Development Phase\n1. Aim for quantity - at least 5-10 distinct concepts\n2. Range from incremental to radical solutions\n3. Defer judgment during ideation\n4. Build on ideas: \"yes, and...\" not \"yes, but...\"\n5. Challenge assumptions in each concept\n6. Create tangible prototypes, even if rough\n7. Evaluate concepts against design principles\n\n### Delivery Phase\n1. Make clear decisions with documented rationale\n2. Combine best elements from multiple concepts\n3. Break implementation into clear steps\n4. Identify dependencies and critical path\n5. Plan for measurement from day one\n6. Prepare for iteration based on learnings\n7. Communicate decisions to all stakeholders\n\n## Common Pitfalls\n\n### Skipping Divergence\n**Pitfall**: Jumping to first solution without exploring alternatives\n**Fix**: Force yourself to generate 5-10 concepts before converging\n\n### Staying Too Divergent\n**Pitfall**: Endless exploration without making decisions\n**Fix**: Set time limits for divergent phases, then move to convergent\n\n### Solution-First Thinking\n**Pitfall**: Assuming you know the solution before understanding problem\n**Fix**: Spend equal time on first diamond (problem) as second (solution)\n\n### Ignoring Users\n**Pitfall**: Designing based on assumptions rather than user research\n**Fix**: Talk to at least 5-10 users in discovery phase\n\n### Premature Convergence\n**Pitfall**: Converging on problem/solution too quickly\n**Fix**: Use divergent techniques to expand thinking before narrowing\n\n### No Iteration Planning\n**Pitfall**: Treating Double Diamond as one-and-done\n**Fix**: Plan for measurement and learning to inform next iteration\n\n## Example: Food Delivery App Redesign\n\n### Discovery Phase (Divergent)\n\n**User Insights**:\n- \"I never know when my food will arrive - tracker says 10 minutes for 45 minutes\"\n- \"I order the same meal every time because menu is overwhelming\"\n- \"Restaurant photos never match what arrives\"\n- \"I've learned to over-tip to get faster service\"\n\n**Problem Areas**:\n- Unreliable delivery time estimates\n- Decision fatigue from too many options\n- Expectation mismatch on food quality\n- Opacity in how service works\n\n### Definition Phase (Convergent)\n\n**Problem Statement**:\n\"Busy professionals using food delivery apps struggle to make confident ordering decisions and manage their time effectively because delivery estimates are unreliable and the abundance of options creates decision paralysis, resulting in anxiety, wasted time, and disappointment.\"\n\n**Design Principles**:\n1. **Predictable over optimistic**: Show realistic estimates, not wishful thinking\n2. **Guide decisions, don't overwhelm**: Help users choose rather than showing everything\n3. **Set accurate expectations**: Match experience to promise\n4. **Reward trust**: Make service quality transparent and consistent\n\n**Success Criteria**:\n- 90% of deliveries arrive within 5 minutes of estimate\n- Time to order completion reduced by 30%\n- User satisfaction increased from 3.2 to 4.5 stars\n- Repeat orders increased by 40%\n\n### Development Phase (Divergent)\n\n**Concepts Generated**:\n\n1. **Time-First Ordering**: Choose delivery time first, see only restaurants that can meet it\n2. **AI Meal Recommender**: Personal assistant suggests based on preferences and context\n3. **Transparent Kitchen View**: Live view of food preparation and delivery status\n4. **Social Ordering**: See what friends/neighbors are ordering right now\n5. **Subscription Favorites**: Pre-schedule favorite meals at specific times\n6. **Quality Guarantee**: Full refund if food doesn't match photos/description\n7. **Delivery Time Auction**: Choose price vs. speed tradeoff explicitly\n\n### Delivery Phase (Convergent)\n\n**Selected Solution**: \"Confident Ordering\"\n\nCombines elements from concepts 1, 2, 3, and 6:\n\n**Key Features**:\n1. **Time-First Flow**: Choose when you want to eat, see realistic restaurant options\n2. **Smart Suggestions**: AI recommends 3 meals based on preferences, time, and context\n3. **Live Transparency**: Real-time view of food preparation and driver location with accurate ETA\n4. **Expectation Promise**: Photo verification and quality guarantee with instant refund\n\n**Implementation Plan**:\n- Phase 1: Time-first ordering flow (2 weeks)\n- Phase 2: Accurate ETA algorithm (3 weeks)\n- Phase 3: Smart meal suggestions (3 weeks)\n- Phase 4: Live transparency features (2 weeks)\n- Phase 5: Quality guarantee system (2 weeks)\n\n**Success Metrics**:\n- ETA accuracy (within 5 minutes)\n- Order completion time\n- User satisfaction scores\n- Repeat order rate\n\n## References\n\n### Books\n- **Design Thinking: Understanding How Designers Think and Work** by Nigel Cross (2011)\n- **The Design of Everyday Things** by Don Norman (2013) - Foundational user-centered design\n- **Sprint: How to Solve Big Problems and Test New Ideas in Just Five Days** by Jake Knapp (2016) - Compressed diamond approach\n\n### Design Council Resources\n- [Framework for Innovation: Design Council's Evolved Double Diamond](https://www.designcouncil.org.uk/our-work/skills-learning/tools-frameworks/framework-for-innovation-design-councils-evolved-double-diamond/)\n- [What is the Double Diamond?](https://www.designcouncil.org.uk/our-resources/the-double-diamond/)\n- [Design Methods for Developing Services](https://www.designcouncil.org.uk/our-resources/archive/articles/design-methods-developing-services/)\n\n### Online Resources\n- [IDEO Design Thinking](https://www.ideo.com/post/design-thinking) - Related design thinking approach\n- [Stanford d.school](https://dschool.stanford.edu/) - Design thinking resources and methods\n- [Nielsen Norman Group](https://www.nngroup.com/) - User experience research and best practices\n\n### Tools and Templates\n- [Double Diamond Template (Miro)](https://miro.com/templates/double-diamond/)\n- [Design Thinking Toolkit (IDEO)](https://www.ideo.com/tools)\n- [Service Design Tools](https://servicedesigntools.org/)\n\n### Case Studies\n- [Airbnb's Design-Led Transformation](https://www.designbetter.co/podcast/brian-chesky) - Joe Gebbia on design thinking\n- [Gov.uk's User-Centered Design](https://gds.blog.gov.uk/category/design/) - Government service design\n- [IBM Design Thinking](https://www.ibm.com/design/thinking/) - Enterprise design thinking approach\n\n## License\n\nPart of the Babysitter SDK Methodology Collection.\n\n## Contributing\n\nTo enhance this methodology:\n1. Add new example scenarios in `examples/` directory\n2. Improve task definitions with better prompts\n3. Update this README with new patterns and case studies\n4. Submit pull request with detailed description\n\n---\n\n**Version**: 1.0.0\n**Last Updated**: 2026-01-23\n**Methodology**: Double Diamond\n**Framework**: Babysitter SDK\n",
    "documents": [
      "specialization:double-diamond"
    ]
  },
  "outgoingEdges": [
    {
      "from": "page:library-double-diamond",
      "to": "specialization:double-diamond",
      "kind": "documents"
    }
  ],
  "incomingEdges": [
    {
      "from": "page:index",
      "to": "page:library-double-diamond",
      "kind": "contains_page"
    }
  ]
}

Shortcuts

Back to overview
Open graph tab