Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
tencentcloudbase avatar

Cloudbase Agent Ts

  • 1 installs
  • 417 repo stars
  • Updated August 4, 2026
  • tencentcloudbase/awesome-cloudbase-examples

Builds and deploys AI agents as HTTP services on CloudBase using the TypeScript AG-UI protocol SDK with LangGraph and LangChain adapters.

About

Deploys AI agents as AG-UI protocol HTTP services using @cloudbase/agent-server with LangGraph, LangChain, or custom adapters. A developer uses it when building agent backends and web or WeChat Mini Program UIs on CloudBase.

  • Implements the AG-UI protocol with @cloudbase/agent-server
  • Provides LangGraph and LangChain adapters plus web and Mini Program UI clients

Cloudbase Agent Ts by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #14,102 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tencentcloudbase/awesome-cloudbase-examples --skill cloudbase-agent-ts

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars417
Last updatedAugust 4, 2026
Repositorytencentcloudbase/awesome-cloudbase-examples

What it does

Builds and deploys AI agents as HTTP services on CloudBase using the TypeScript AG-UI protocol SDK with LangGraph and LangChain adapters.

Files

SKILL.mdMarkdownGitHub ↗

Cloudbase Agent (TypeScript)

TypeScript SDK for deploying AI agents as HTTP services using the AG-UI protocol.

Note: This skill is for TypeScript/JavaScript projects only.

When to use this skill

Use this skill for AI agent development when you need to:

  • Deploy AI agents as HTTP services with AG-UI protocol support
  • Build agent backends using LangGraph or LangChain frameworks
  • Create custom agent adapters implementing the AbstractAgent interface
  • Understand AG-UI protocol events and message streaming
  • Build web UI clients that connect to AG-UI compatible agents
  • Build WeChat Mini Program UIs for AI agent interactions

Do NOT use for:

  • Simple AI model calling without agent capabilities (use ai-model-* skills)
  • CloudBase cloud functions (use cloud-functions skill)
  • CloudRun backend services without agent features (use cloudrun-development skill)

How to use this skill (for a coding agent)

1. Choose the right adapter

  • Use LangGraph adapter for stateful, graph-based workflows
  • Use LangChain adapter for chain-based agent patterns
  • Build custom adapter for specialized agent logic

2. Deploy the agent server

  • Use @cloudbase/agent-server to expose HTTP endpoints
  • Configure CORS, logging, and observability as needed
  • Deploy to CloudRun or any Node.js hosting environment

3. Build the UI client

  • Use @ag-ui/client for web applications
  • Use @cloudbase/agent-ui-miniprogram for WeChat Mini Programs
  • Connect to the agent server's /send-message or /agui endpoints

4. Follow the routing table below to find detailed documentation for each task

Routing

TaskRead
Deploy agent server (@cloudbase/agent-server)server-quickstart
Use LangGraph adapteradapter-langgraph
Use LangChain adapteradapter-langchain
Build custom adapteradapter-development
Understand AG-UI protocolagui-protocol
Build UI client (Web or Mini Program)ui-clients
Deep-dive @cloudbase/agent-ui-miniprogramui-miniprogram

Quick Start

import { run } from "@cloudbase/agent-server";
import { LanggraphAgent } from "@cloudbase/agent-adapter-langgraph";

run({
  createAgent: () => ({ agent: new LanggraphAgent({ workflow }) }),
  port: 9000,
});

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.