{"id":50818096,"url":"https://github.com/ericchansen/agent-demo","last_synced_at":"2026-06-13T11:04:27.549Z","repository":{"id":361543551,"uuid":"1225658263","full_name":"ericchansen/agent-demo","owner":"ericchansen","description":"AI sales agent accelerator for Microsoft Fabric — prototype with Copilot CLI, deploy to M365 via Foundry","archived":false,"fork":false,"pushed_at":"2026-06-08T19:55:46.000Z","size":381,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-08T20:25:43.717Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://ericchansen.github.io/agent-demo/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericchansen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"docs/security-model.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-04-30T13:57:06.000Z","updated_at":"2026-06-08T19:55:50.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/ericchansen/agent-demo","commit_stats":null,"previous_names":["ericchansen/agent-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ericchansen/agent-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericchansen%2Fagent-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericchansen%2Fagent-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericchansen%2Fagent-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericchansen%2Fagent-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericchansen","download_url":"https://codeload.github.com/ericchansen/agent-demo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericchansen%2Fagent-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34281700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-13T11:04:26.721Z","updated_at":"2026-06-13T11:04:27.541Z","avatar_url":"https://github.com/ericchansen.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fabric Sales Agent Accelerator\n\n\u003e 📖 **[Full documentation](https://ericchansen.github.io/agent-demo/)** — architecture, demo script, setup guide, costs\n\n## What it is\n\nAn AI sales agent accelerator for **Wide World Importers** that shows how to pair a shared **Microsoft Fabric Data Agent** backend with two delivery surfaces: a fast developer prototype in GitHub Copilot CLI and a production path into **M365 Copilot + Teams**.\n\n## The Two-Surface Approach\n\n- **Surface 1: GitHub Copilot CLI** — prototype quickly with MCP servers for Fabric data, M365 activity context, and inline report generation.\n- **Surface 2: M365 Copilot + Teams** — graduate the same business flow into an Azure AI Foundry agent published through an Agent Application.\n- **WorkIQ note:** production uses WorkIQ for M365 activity context; the demo tenant uses a mock WorkIQ tool with sample activity data until tenant provisioning is available.\n\n## Architecture diagram\n\n```text\n┌─ CLI Surface (Prototype) ─────────────────────┐\n│ Copilot CLI → MCP Servers                      │\n│   → wwi-sales-data (Fabric Data Agent)         │\n│   → workiq (M365 activity data)                │\n│   → quota-forecast skill (inline report)       │\n└────────────────────────────────────────────────┘\n\n┌─ M365 Surface (Production) ───────────────────┐\n│ M365 Copilot / Teams → Foundry Agent           │\n│   → Fabric IQ (NL→SQL platform tool)           │\n│   → WorkIQ (M365 activity platform tool, OBO)  │\n│   → Report Generator (DOCX + OneDrive link)    │\n└────────────────────────────────────────────────┘\n\nSame Data Agent backend. Same business logic. Different distribution.\n```\n\n## Quick Start (CLI)\n\n```bash\ngit clone https://github.com/ericchansen/agent-demo.git \u0026\u0026 cd agent-demo\nuv sync --extra dev              # or: python -m venv .venv \u0026\u0026 pip install -e \".[dev]\"\n```\n\nEdit `.github/mcp.json` — replace `\u003cyour-workspace-id\u003e` with your Fabric workspace GUID. Then:\n\n```bash\ncopilot\n# \u003e What were Tailspin Toys' total sales last quarter?\n```\n\nSee the [full setup guide](https://ericchansen.github.io/agent-demo/docs/setup) for all options (uv, pip+venv, `copilot mcp add`, Foundry surface).\n\n## Tech Stack\n\n- **Microsoft Fabric** — shared data agent and OneLake analytics\n- **Azure AI Foundry** — production agent for M365 Copilot and Teams\n- **Model Context Protocol (MCP)** — tool surface for the CLI prototype\n- **Python 3.11+** — agent, tool, and report-generation implementation\n\n## Cost\n\nPlan for roughly **~$270/month active** for the demo footprint. Pause Fabric capacity when idle to drop to roughly **~$15/month** in residual costs. See [docs/costs.md](docs/costs.md).\n\n## Repository Structure\n\n| Path | Purpose |\n|------|---------|\n| `src/cli/` | GitHub Copilot CLI prototype surface: MCP config and skills |\n| `src/orchestrator/` | Azure AI Foundry agent for the M365 Copilot + Teams surface |\n| `src/agents/` | Local MCP servers, demo mocks, and report generation helpers |\n| `fabric/` | Fabric Data Agent instructions and example queries |\n| `infra/` | Bicep infrastructure for Fabric and Azure resources |\n| `demo/` | Wide World Importers sample assets and demo content |\n| `docs/` | Setup, architecture, cost, and two-surface guidance |\n| `docs/surfaces/` | Reference-only alternatives such as Copilot Studio and M365 Direct Publish |\n| `tests/` | Unit and integration coverage |\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericchansen%2Fagent-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericchansen%2Fagent-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericchansen%2Fagent-demo/lists"}