スキル一覧に戻る
olaservo

claude-agent-ui-ts

by olaservo

Agent skills for building, testing, and learning about MCP

0🍴 0📅 2026年1月25日
GitHubで見るManusで実行

SKILL.md


name: claude-agent-ui-ts description: Add a React + WebSocket UI on top of Claude Agent SDK agents with tool approval and SQLite persistence

Claude Agent UI (TypeScript)

Add a web UI to your Claude Agent SDK agents. Includes real-time WebSocket communication, interactive tool approval, and SQLite persistence for chat history.

Prerequisites

  • Node.js 18+
  • Claude Agent SDK configured (see claude-agent-sdk-ts skill for setup)

Quick Start

  1. Copy the snippets to your project:

    • client.tsx from this skill
    • websocket-server-sqlite.ts and websocket-types.ts from claude-agent-sdk-ts skill
  2. Install dependencies:

    npm install express cors ws @anthropic-ai/claude-agent-sdk better-sqlite3 react react-dom
    npm install -D @types/better-sqlite3 @types/express @types/cors @types/ws
    
  3. Edit the server CONFIG section (workingDirectory, model, allowedTools, dbPath)

  4. Start server: npx tsx server.ts

  5. Add client.tsx to your React app and open in browser

Architecture

React Client <--WebSocket--> Express Server <--SDK--> Claude Agent
(client.tsx)                 (server.ts)
                                   |
                                   v
                              SQLite DB
                              (chat.db)

Flow:

  1. User types message in React UI
  2. Message sent via WebSocket to server
  3. Server persists message to SQLite and forwards to Claude Agent SDK
  4. When agent wants to use a tool, server sends approval request to client
  5. User approves or rejects in UI
  6. Server continues or blocks tool based on response
  7. Agent responses persisted to SQLite and streamed back to UI

Snippets

SnippetSourceDescription
client.tsxThis skillReact chat UI with WebSocket and tool approval buttons
websocket-server-sqlite.tsclaude-agent-sdk-tsExpress + WebSocket + SQLite server with SDK integration
websocket-types.tsclaude-agent-sdk-tsShared TypeScript types for messages

Configuration

Edit the CONFIG object in the server:

const CONFIG = {
  port: 3001,
  workingDirectory: process.cwd(),  // Scope file operations
  model: "sonnet",                  // opus, sonnet, or haiku
  allowedTools: ["Bash", "Read", "Write", "Edit", "Glob", "Grep"],
  systemPrompt: "You are a helpful AI assistant.",
  dbPath: "./chat.db",              // SQLite database path
};

See claude-agent-sdk-ts skill for detailed configuration options.

Persistence

The server uses SQLite (via better-sqlite3) to persist:

  • Chat messages: All user, assistant, and tool_use messages
  • SDK session ID: Captured from system/init message for session resumption

Database schema:

-- Sessions: stores SDK session ID for multi-turn resumption
CREATE TABLE sessions (
  id TEXT PRIMARY KEY,
  sdk_session_id TEXT,
  created_at TEXT,
  updated_at TEXT
);

-- Messages: stores all chat messages
CREATE TABLE messages (
  id TEXT PRIMARY KEY,
  session_id TEXT,
  role TEXT,        -- 'user' | 'assistant' | 'tool_use'
  content TEXT,
  tool_name TEXT,   -- for tool_use messages
  tool_input TEXT,  -- JSON string for tool_use messages
  timestamp TEXT
);

Session Resumption: When the server restarts, it:

  1. Loads existing messages from SQLite
  2. Retrieves the stored SDK session ID
  3. Passes resume: sdkSessionId to the SDK query options
  4. Claude resumes with full conversation context

This follows the SDK best practice of capturing session_id from the system/init message and using resume for multi-turn conversations.

Styling

The client has no styling (functional HTML only). Options:

  • Add your own CSS
  • Use Tailwind CSS
  • Use claude-agent-terminal-ts for a styled terminal theme

Production Notes

For production deployment, consider:

  • Authentication: Add user auth (not included)
  • Multi-chat: Extend from single session to Map<chatId, Session> for multiple conversations
  • Containerization: Isolate SDK in separate container for security
  • Backup: Add SQLite backup strategy (WAL mode already enabled for durability)
  • Error handling: Add retry logic and graceful degradation
SkillUse When
claude-agent-sdk-tsSDK API details, tools, hooks, configuration, shared server code
claude-agent-terminal-tsTerminal-styled UI with dark theme and keyboard shortcuts

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です