Update from Vibe Studio

This commit is contained in:
Vibe Studio
2026-01-16 01:51:36 +00:00
parent a4605e311a
commit 58905d02c2
28599 changed files with 2179074 additions and 0 deletions

53
node_modules/@ag-ui/proto/README.md generated vendored Normal file
View File

@@ -0,0 +1,53 @@
# @ag-ui/proto
Protocol Buffer encoding/decoding for **Agent-User Interaction (AG-UI) Protocol** events.
`@ag-ui/proto` provides high-performance binary serialization of AG-UI events using Protocol Buffers. It includes generated TypeScript definitions and utilities for converting between AG-UI's JSON event format and compact binary representation.
## Installation
```bash
npm install @ag-ui/proto
pnpm add @ag-ui/proto
yarn add @ag-ui/proto
```
## Features
-**High performance** Binary protobuf encoding for minimal bandwidth usage
- 🔄 **Round-trip safety** Lossless conversion between JSON and binary formats
- 📋 **Generated types** Auto-generated TypeScript definitions from `.proto` schemas
- 🔧 **Length-prefixed** Standard 4-byte length headers for streaming protocols
## Quick example
```ts
import { encode, decode, AGUI_MEDIA_TYPE } from "@ag-ui/proto";
import { EventType } from "@ag-ui/core";
const event = {
type: EventType.TEXT_MESSAGE_START,
messageId: "msg_123",
role: "assistant",
};
// Encode to binary protobuf format
const encoded = encode(event);
// Decode back to AG-UI event
const decoded = decode(encoded);
console.log(decoded); // Original event object
```
## Documentation
- Concepts & architecture: [`docs/concepts`](https://docs.ag-ui.com/concepts/architecture)
- Full API reference: [`docs/sdk/js/proto`](https://docs.ag-ui.com/sdk/js/proto)
## Contributing
Bug reports and pull requests are welcome! Please read our [contributing guide](https://docs.ag-ui.com/development/contributing) first.
## License
MIT © 2025 AG-UI Protocol Contributors