← Back to Dashboard

Breadcrumbs

A guided builder concierge. From idea to build — one breadcrumb at a time.

v0.1 Shipped to internal review ~10 hour build

The Problem

Inside most enterprises, there's a quiet bottleneck killing internal innovation: non-technical employees have ideas but no idea how to build them. The internal builder ecosystem is dense — 10–15 approved tools across no-code platforms, low-code app builders, AI agent platforms, IDE-based code-first tools, workflow automation, and BI/dashboarding. Each tool has its own access path, governance rules, skill floor, and data classification limits.

The result: employees give up on ideas, build in the wrong tool and hit a wall mid-project, burn weeks chasing unnecessary access, or build something non-compliant. Generic AI chatbots make it worse — they recommend tools outside the approved catalog, invent access paths, and skip governance entirely.

The Solution

A guided builder concierge that walks any employee — non-technical or experienced — step by step from "I have an idea" to "I have a working build," using only enterprise-approved tools, with governance baked in at every step. Named Breadcrumbs after the Hansel and Gretel fairy tale — because the agent's job is to leave a clear trail so users never get lost in the builder forest.

Unlike generic chatbots, Breadcrumbs answers four harder questions:

  1. What's the right-sized build for my idea?
  2. Which approved tool fits — and which don't?
  3. What's going to block me, and how do I get unblocked?
  4. How do I move forward safely (governance, data classification, permissions)?

Architecture

┌──────────────────────────────────────────────────────┐ │ ENTERPRISE COPILOT CHAT (Agent Surface) │ │ - Native to every employee in the org │ │ - SSO + identity inherited (per-user audit logs) │ │ - Zero deployment overhead │ └──────────────────────────────────────────────────────┘ │ ▼ ┌──────────────────────────────────────────────────────┐ │ AGENT BRAIN (Hardened Instructions) │ │ - Identity + role statement │ │ - Source rule (knowledge-source only, stateless) │ │ - Intake order enforcement (8 questions, in order) │ │ - Tool catalog grounding (no invention) │ │ - Length cap + opening rotation │ │ - Artifact discipline (template-locked outputs) │ │ - Edge case routing │ └──────────────────────────────────────────────────────┘ │ ▼ ┌──────────────────────────────────────────────────────┐ │ KNOWLEDGE SOURCE (Single .docx, versioned) │ │ ├─ Section 1: Right-Sizer Decision Tree │ │ ├─ Section 2: Approved Tool Catalog (~12 tools) │ │ ├─ Section 3: Governance + Permission Map │ │ └─ Section 4: Artifact Templates │ │ (PRD, Architecture, Build Plan, Access Req) │ └──────────────────────────────────────────────────────┘ │ ▼ ┌──────────────────────────────────────────────────────┐ │ OUTPUTS (User-driven, one at a time) │ │ - Right-sized tool recommendation │ │ - PRD-Lite │ │ - Plain-English architecture │ │ - Click-by-click build plan │ │ - Pre-drafted access request message │ └──────────────────────────────────────────────────────┘

Key Architectural Decisions

Decision Why
Declarative agent on enterprise Copilot Chat Native access for every employee, zero deployment friction, SSO inherited, fast iteration
Single-doc knowledge source One file = single source of truth = easy to update without retraining anything
Stateless by design Every session starts fresh — no Graph context, no people lookup, no file searching. Trust + governance over personalization
Deterministic right-sizer + LLM artifact gen Tool recommendation is rules-based for accuracy; artifact generation uses LLM for natural language. Best of both worlds
No invented tools Hard-coded approved catalog. Agent must redirect users away from non-approved or deprecated tools
User-driven artifact delivery One artifact per response, user picks the order. Solves UX and performance simultaneously

What I Built

Lessons Learned

Command Stack

Enterprise Copilot Chat (Declarative Agent) | Hardened Instructions Block

Single-Doc Knowledge Source | Decision Tree Logic

LLM Artifact Generation | Template-Locked Outputs

Current Status

v0.1 shipped to internal review, rolling out to first enablement team. Video demo coming soon. v0.2 planned: tighter artifact templates, automated ticket creation, and companion agents in the fairy-tale family.