For AI coding agents

Hand your agent the right context, once.

The portal exposes the context an agent needs to build with the SDK: a compact summary, a complete bundle, public JSON Schemas, golden prompts, and the prototype tarball. Paste the URLs below into Claude Code, Codex, Cursor, or Antigravity when you want a mock-first integration instead of API guesswork.

1

The short summary

Compact orientation for the SDK's purpose, safe defaults, package entry points, and links to deeper references without filling the agent's context window.

Download llms.txt
2

The full context bundle

End-to-end implementation context for agents that need to write code: public APIs, recipes, safety rules, walkthrough commands, and common task guidance.

Download llms-full.txt →
3

21 JSON Schemas

Messages, tools, errors, governance, transports, analytics, and more — machine-readable contracts mirroring the TypeScript public surface.

See the full schema list on the home page →

Paste this into your agent

A prompt that gets most agents oriented quickly.

Replace <PORTAL> with this site's URL.

I want to build a custom chat experience with the gecx-chat SDK.

Read these first:
- <PORTAL>/assets/agent/llms-full.txt       (full SDK context)
- <PORTAL>/assets/schemas/messages.schema.json
- <PORTAL>/assets/schemas/tools.schema.json
- <PORTAL>/assets/schemas/errors.schema.json

To install:
1. Download <PORTAL>/downloads/gecx-chat-0.1.0-prototype.tgz
2. `pnpm add ./gecx-chat-0.1.0-prototype.tgz`

Quickstart: <PORTAL>/docs/getting-started/quickstart/
Vibe-coding walkthrough: <PORTAL>/docs/guides/vibe-coding/

Goal: <describe what you want me to build>

Reference

Where everything lives

PathContents
/assets/agent/llms.txtShort summary, agent-friendly.
/assets/agent/llms-full.txtComplete context bundle.
/assets/schemas/*.schema.jsonPublic schema contracts for messages, tools, transport events, governance, analytics, and more.
/downloads/gecx-chat-0.1.0-prototype.tgzPacked prototype SDK tarball. pnpm add ./gecx-chat-0.1.0-prototype.tgz.
/docs/<path>/Public Markdown docs rendered as navigable pages.