mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
6cc1803f37
Re-tier the showcase docs tree to be an agent entry point: README.md opens with a 'when X, see Y' fanout table that routes to the right procedural doc; each procedural doc gets a one-line tagline answering 'what does this answer'. Consolidation: - DELETE showcase/RUNBOOK.md — operational content merged into DEBUGGING.md (Integration Patterns, Docker Compose Environment, Production Debugging, Anti-Patterns, Aimock Fixture Deployment, Dev Iteration Speed). The --isolate mechanics + CLI rules were already duplicated in DEBUGGING.md. - DELETE showcase/QA-COVERAGE.md — per-demo coverage matrix + starter hero matrix + probe depth + infra locations + gaps folded into TESTING.md as the 'Per-Demo Coverage Matrix' section. Taglines added (no behavioral change to content): TESTING.md, DEBUGGING.md, GOTCHAS.md, INTEGRATION-CHECKLIST.md, STYLING-GUIDE.md, FRONTEND-STRATEGY.md, RAILWAY.md, bin/README.md, aimock/README.md, aimock/RAILWAY.md, harness/README.md, harness/docs/rotation-drill.md. Cross-link fixups: FRONTEND-STRATEGY.md (was QA-COVERAGE.md → TESTING.md#per-demo-coverage-matrix), TESTING.md (removed dangling RUNBOOK companion reference), README.md (rewritten as fanout entry + retained from-scratch setup + dashboard SOPs below the fanout). PARITY_NOTES.md × 12 left alone (per-slug context, not redundant). (cherry picked from commit 75c9d9755c9118c8abc1fa52deda2012b768cab1) (cherry picked from commit b64189bae0fe2c9e3a5e3ca440013deb4121f23b)
233 lines
13 KiB
Markdown
233 lines
13 KiB
Markdown
# Integration Checklist
|
|
|
|
Tagline: per-package source checklist + external setup (Railway, secrets, CI,
|
|
registry) for adding a new integration framework. Cross-ref:
|
|
`../examples/integrations/<slug>/` for canonical Dojo dep-pinning source.
|
|
|
|
Two checklists: what makes a **complete package**, and what **external setup** is needed when adding a new framework.
|
|
|
|
---
|
|
|
|
## A. Complete Package (what `pnpm create-integration` generates)
|
|
|
|
Everything below should exist in `showcase/integrations/<slug>/`:
|
|
|
|
### Source Files
|
|
|
|
- [ ] `manifest.yaml` — name, slug, category, language, features, demos, `deployed: false`, `generative_ui`, `interaction_modalities`, and optionally `managed_platform`
|
|
- [ ] `package.json` — dependencies including `@copilotkit/react-core`, `zod`, `tailwindcss`
|
|
- [ ] `tsconfig.json`
|
|
- [ ] `next.config.ts`
|
|
- [ ] `postcss.config.mjs`
|
|
|
|
### App Structure (`src/app/`)
|
|
|
|
- [ ] `layout.tsx` — imports `globals.css`, `copilotkit-overrides.css`, `@copilotkit/react-core/v2/styles.css`
|
|
- [ ] `globals.css` — NO `* { margin: 0; padding: 0; }` reset (only `box-sizing: border-box`)
|
|
- [ ] `copilotkit-overrides.css` — separate file for CopilotKit class overrides (survives Tailwind v4 purging)
|
|
- [ ] `api/copilotkit/route.ts` — runtime endpoint
|
|
- [ ] `api/health/route.ts` — health check endpoint
|
|
- [ ] `error-boundary.tsx` — DemoErrorBoundary component
|
|
|
|
### Demo Pages (`src/app/demos/<feature-id>/page.tsx`)
|
|
|
|
One per declared feature. Each demo must:
|
|
|
|
- [ ] Use `CopilotKit` provider with `runtimeUrl="/api/copilotkit"` and correct `agent` name
|
|
- [ ] Use `@copilotkit/react-core/v2` imports (NOT `@copilotkitnext/`)
|
|
- [ ] For `CopilotChat` demos: wrapper div with `px-6` for horizontal padding (matches Dojo)
|
|
- [ ] For `CopilotSidebar` demos: no extra padding needed (sidebar has built-in `px-8`)
|
|
- [ ] Use `h-full` not `h-screen` (demos render in iframes)
|
|
- [ ] Use inline styles for dynamic content (Tailwind v4 purges classes it can't statically find)
|
|
- [ ] Include `useConfigureSuggestions` with relevant suggestions
|
|
|
|
### Agent Backend
|
|
|
|
- [ ] Agent code in `src/agents/` (Python) or `src/lib/` (TypeScript)
|
|
- [ ] One agent per feature (names must match the `agent` prop in demo pages)
|
|
- [ ] `langgraph.json` (Python) or equivalent config
|
|
- [ ] **Pin framework versions** — see "Dependency Pinning" below
|
|
|
|
### Infrastructure
|
|
|
|
- [ ] `Dockerfile` — multi-stage, starts both agent backend and Next.js frontend
|
|
- [ ] `entrypoint.sh` — starts agent server and Next.js, waits for both
|
|
|
|
### Testing & QA
|
|
|
|
- [ ] `playwright.config.ts`
|
|
- [ ] `tests/` — one E2E test per demo (basic: load → send message → get response)
|
|
- [ ] `qa/` — manual QA checklist per demo
|
|
|
|
### Assets
|
|
|
|
- [ ] Logo SVG at `showcase/shell/public/logos/<slug>.svg`
|
|
|
|
---
|
|
|
|
## Source of Truth: `examples/integrations/*` vs `showcase/integrations/*`
|
|
|
|
Two directories hold integration code, and they play different roles. Understanding the relationship is critical before adding or modifying a package.
|
|
|
|
### Roles
|
|
|
|
- **`examples/integrations/<name>/`** — the **Dojo example**. This is the dep-pinning source of truth: minimal, focused agent code used to prove a framework works against CopilotKit/AG-UI. The weekly drift-detection workflow and the "Always pin agent framework and SDK versions to exact versions from the working Dojo example" rule (see "Dependency Pinning" below) both treat this directory as canonical.
|
|
- **`showcase/integrations/<slug>/`** — the **full triple-duty integration**:
|
|
1. Partner-facing demo (lives on `showcase.copilotkit.dev`)
|
|
2. Cloneable starter source (extracted on-demand via `extract-starter.ts`)
|
|
3. Iframe-embedded experience inside the public showcase shell
|
|
|
|
### Automation Direction (one-way)
|
|
|
|
```
|
|
examples/integrations/<name>/ ──(migrate-integration-examples.ts)──▶ showcase/integrations/<slug>/src/agents/
|
|
showcase/integrations/<slug>/ ──(extract-starter.ts)────────────────▶ standalone starter (on-demand)
|
|
```
|
|
|
|
- `showcase/scripts/migrate-integration-examples.ts` copies agent code **from** `examples/integrations/<name>/` **into** `showcase/integrations/<slug>/src/agents/`. It never runs in reverse.
|
|
- `showcase/scripts/extract-starter.ts` extracts a clean standalone starter from any integration on demand, dereferencing symlinks and stripping test/CI artifacts.
|
|
- Do not hand-edit agent code inside `showcase/integrations/<slug>/src/agents/` if the package has a Dojo counterpart — fix it upstream in `examples/integrations/<name>/` and re-run the migration script.
|
|
|
|
### Born-in-Showcase Packages (no Dojo counterpart)
|
|
|
|
Five packages exist only in showcase and have no `examples/integrations/<name>/` sibling:
|
|
|
|
- `ag2`
|
|
- `claude-sdk-python`
|
|
- `claude-sdk-typescript`
|
|
- `langroid`
|
|
- `spring-ai`
|
|
|
|
These are authored directly in `showcase/integrations/<slug>/` and are **exempt from the pin-to-Dojo rule** — there is no Dojo to pin to. They still must pin exact versions (see "Dependency Pinning"), but the reference is whatever the framework's own examples or release notes recommend, not a sibling `examples/integrations/` directory.
|
|
|
|
### Slug Aliasing
|
|
|
|
Several packages have different names in `examples/integrations/` vs `showcase/integrations/`. The aliasing is historical — showcase standardized on shorter, marketing-friendly slugs while the Dojo kept the original framework-canonical names.
|
|
|
|
| `showcase/integrations/` slug | `examples/integrations/` name | Why different |
|
|
| ----------------------------- | ----------------------------- | --------------------------------------------------------- |
|
|
| `google-adk` | `adk` | Showcase prefixes with vendor for disambiguation |
|
|
| `langgraph-typescript` | `langgraph-js` | Showcase prefers full language name (`-typescript`) |
|
|
| `ms-agent-dotnet` | `ms-agent-framework-dotnet` | Showcase shortens `-framework-` out of the slug |
|
|
| `ms-agent-python` | `ms-agent-framework-python` | Same — shorter slug in showcase |
|
|
| `strands` | `strands-python` | Showcase drops the language suffix (no TS variant exists) |
|
|
|
|
When running `migrate-integration-examples.ts` or reasoning about drift, remember that the script internally maps these aliases — don't "fix" them by renaming one side.
|
|
|
|
---
|
|
|
|
## B. External Setup (after the package is ready)
|
|
|
|
### 1. Railway Service
|
|
|
|
- [ ] Create service in the **CopilotKit Showcase** Railway project, **US-West** region
|
|
- [ ] Type: **Docker** (image from GHCR, not source build)
|
|
- [ ] Image URL: `ghcr.io/copilotkit/showcase-<slug>:latest`
|
|
- [ ] Health check path: `/api/health`
|
|
- [ ] Link shared variables group (contains API keys)
|
|
- [ ] Set `NODE_ENV=production`, `NEXT_PUBLIC_BASE_URL=https://showcase.copilotkit.dev`
|
|
|
|
### 2. GitHub Secrets
|
|
|
|
- [ ] Ensure `RAILWAY_TOKEN` secret exists in the repo
|
|
|
|
### 3. CI/CD Workflow (`.github/workflows/showcase_deploy.yml`)
|
|
|
|
- [ ] Add slug to `workflow_dispatch.inputs.service.options`
|
|
- [ ] Add change detection filter for `showcase/integrations/<slug>/**`
|
|
- [ ] Add build job: build Docker image → push to GHCR → trigger Railway deploy
|
|
- [ ] Wire up the `RAILWAY_TOKEN` secret
|
|
|
|
### 4. Registry
|
|
|
|
- [ ] Run `npx tsx showcase/scripts/generate-registry.ts` to regenerate `registry.json`
|
|
- [ ] Verify the integration appears on the Integrations page
|
|
- [ ] Verify demos load in the drawer (Preview tab)
|
|
|
|
### 5. Go Live
|
|
|
|
- [ ] Verify Railway service is healthy: `curl https://showcase-<slug>-production.up.railway.app/api/health`
|
|
- [ ] Verify all demos respond: visit each `/demos/<id>` route
|
|
- [ ] Set `deployed: true` in `manifest.yaml`
|
|
- [ ] Verify constraint validation passes: `npx tsx showcase/scripts/validate-constraints.ts <slug>`
|
|
- [ ] Regenerate registry: `npx tsx showcase/scripts/generate-registry.ts`
|
|
- [ ] Commit and push — stack nav chip will light up automatically
|
|
|
|
### 6. Shell Updates (usually automatic)
|
|
|
|
- [ ] If the framework name in the stack nav differs from `manifest.yaml` name, verify `startsWith` matching works
|
|
- [ ] Demo content (Code/Docs tabs): run `npx tsx showcase/scripts/generate-demo-content.ts` if it exists
|
|
|
|
---
|
|
|
|
## Dependency Pinning
|
|
|
|
**Always pin agent framework and SDK versions to exact versions from the working Dojo example.** Do not use floating ranges like `>=0.3.0` — they resolve to different versions over time and silently break APIs.
|
|
|
|
**Why this matters:** `langchain>=0.3.0` resolved to 0.3.x which lacked `create_agent`. The Dojo uses `langchain==1.2.0` where it exists. A floating range that worked at scaffold time broke on the next Docker build when a different version was pulled.
|
|
|
|
**What to pin:**
|
|
|
|
- Agent framework packages (langchain, langgraph, @mastra/core, etc.)
|
|
- CopilotKit SDK packages (copilotkit, @copilotkit/runtime, etc.)
|
|
- LLM provider SDKs (langchain-openai, @ai-sdk/openai, etc.)
|
|
|
|
**What can float:**
|
|
|
|
- Standard utilities (zod, react, next) — these have stable APIs
|
|
- Dev dependencies (playwright, typescript, tailwind)
|
|
|
|
**Where to find correct versions:**
|
|
|
|
- Check the corresponding Dojo example at `examples/integrations/<slug>/`
|
|
- Use exact versions from its `requirements.txt` / `pyproject.toml` / `package.json`
|
|
- The weekly drift detection workflow will flag when pinned versions fall behind
|
|
|
|
---
|
|
|
|
## LangGraph: Prebuilt vs Node-Based
|
|
|
|
LangGraph supports two agent authoring styles, and showcase uses both. When touching a LangGraph package — or adding a new one — decide the style explicitly and match the existing sibling's idioms.
|
|
|
|
### The Two Styles
|
|
|
|
- **Node-based** — hand-rolled `StateGraph` with `addNode(...)`, explicit edges, and custom routing logic. Maximum control; more code to maintain.
|
|
- **Prebuilt** — `create_react_agent` / `create_agent` helpers that wrap the common ReAct pattern. Minimal code; less flexibility.
|
|
|
|
### Current Showcase State
|
|
|
|
| Package | Style | Evidence |
|
|
| -------------------------------------------- | ---------- | ----------------------------------------------------- |
|
|
| `showcase/integrations/langgraph-python` | Prebuilt | `create_react_agent` in `src/agents/main.py:53` |
|
|
| `showcase/integrations/langgraph-fastapi` | Prebuilt | `create_react_agent` in `src/agents/src/agent.py:166` |
|
|
| `showcase/integrations/langgraph-typescript` | Node-based | `StateGraph` in `src/agent/graph.ts:271` |
|
|
|
|
### Dojo Coverage Gap
|
|
|
|
The `ag-ui/apps/dojo/` e2e tests exclusively exercise **node-based** graphs. This means prebuilt-agent coverage is thin in the Dojo even though two of the three LangGraph packages users clone from showcase are prebuilt.
|
|
|
|
Cross-reference the action inventory for the full breakdown of which AG-UI features are exercised where: <https://www.notion.so/3443aa38185281b5a1dfc6e0890264e1>.
|
|
|
|
### Guidance
|
|
|
|
- **When adding a new LangGraph-based package**, decide the authoring style explicitly and match the idioms of the corresponding showcase sibling (Python → prebuilt, TypeScript → node-based) unless you have a concrete reason to diverge.
|
|
- If you do diverge, document why in the package's README and add an entry to the table above.
|
|
- Do not silently convert a package between styles — it's a public API change for anyone who cloned the starter.
|
|
|
|
This distinction only applies to LangGraph today. Other frameworks (CrewAI, Mastra, etc.) have their own framework-specific authoring idioms — out of scope for this section.
|
|
|
|
---
|
|
|
|
## Quick Reference: Common Gotchas
|
|
|
|
| Gotcha | Fix |
|
|
| --------------------------------- | ----------------------------------------------------------------------------------------- |
|
|
| CSS classes purged by Tailwind v4 | Put CopilotKit overrides in `copilotkit-overrides.css`, not `globals.css` |
|
|
| `* { margin: 0; padding: 0; }` | NEVER use this reset — it strips CopilotKit's internal padding |
|
|
| Chat messages flush to edges | Add `px-6` to the CopilotChat wrapper div |
|
|
| `h-screen` in demos | Use `h-full` — demos render inside iframes |
|
|
| Dynamic content unstyled | Use inline `style={}` not Tailwind classes for agent-generated content |
|
|
| Stale lockfile | Run `pnpm install` after changing `package.json`, commit the lockfile |
|
|
| Stack chip not lighting up | Check `deployed: true` in manifest and registry name matching |
|
|
| Agent import errors in Docker | Pin framework deps to exact Dojo versions — floating ranges resolve differently over time |
|