@@ -6,8 +6,6 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
66
77### TypeScript SDK (Main Development)
88``` bash
9- # Navigate to typescript-sdk directory for all TypeScript work
10- cd typescript-sdk
119
1210# Install dependencies (using pnpm)
1311pnpm install
@@ -55,11 +53,11 @@ poetry build
5553### Running Specific Integration Tests
5654``` bash
5755# For TypeScript packages/integrations
58- cd typescript-sdk/ packages/< package-name>
56+ cd packages/< package-name>
5957pnpm test
6058
6159# For running a single test file
62- cd typescript-sdk/ packages/< package-name>
60+ cd packages/< package-name>
6361pnpm test -- path/to/test.spec.ts
6462```
6563
@@ -78,11 +76,11 @@ AG-UI is an event-based protocol that standardizes agent-user interactions. The
78763 . ** Event Types** : Lifecycle events (RUN_STARTED/FINISHED), message events (TEXT_MESSAGE_ * ), tool events (TOOL_CALL_ * ), and state management events (STATE_SNAPSHOT/DELTA)
7977
8078### Repository Structure
81- - ` /typescript-sdk / ` : Main TypeScript implementation
79+ - ` /sdks/ typescript/ ` : Main TypeScript implementation
8280 - ` /packages/ ` : Core protocol packages (@ag-ui/core , @ag-ui/client , @ag-ui/encoder , @ag-ui/proto )
83- - ` /integrations/ ` : Framework integrations (langgraph, mastra, crewai, etc.)
84- - ` /apps/ ` : Example applications including the AG-UI Dojo demo viewer
85- - ` /python-sdk / ` : Python implementation of the protocol
81+ - ` /integrations/ ` : Framework integrations (langgraph, mastra, crewai, etc.)
82+ - ` /apps/ ` : Example applications including the AG-UI Dojo demo viewer
83+ - ` /sdks/ python/ ` : Python implementation of the protocol
8684- ` /docs/ ` : Documentation site content
8785
8886### Integration Pattern
@@ -108,4 +106,4 @@ Each framework integration follows a similar pattern:
108106- Turbo is used for monorepo build orchestration
109107- Each package has independent versioning
110108- Integration tests demonstrate protocol compliance
111- - The AG-UI Dojo app showcases all protocol features with live examples
109+ - The AG-UI Dojo app showcases all protocol features with live examples
0 commit comments