cligent

agent
Guvenlik Denetimi
Uyari
Health Uyari
  • License — License: Apache-2.0
  • Description — Repository has a description
  • Active repo — Last push 0 days ago
  • Low visibility — Only 8 GitHub stars
Code Uyari
  • fs module — File system access in package.json
  • process.env — Environment variable access in src/__tests__/claude-code-adapter.test.ts
Permissions Gecti
  • Permissions — No dangerous permissions requested

Bu listing icin henuz AI raporu yok.

SUMMARY

Unified TypeScript SDK for AI coding agent CLIs (Claude Code, Codex CLI, Gemini CLI, OpenCode, and more)

README.md

cligent

npm version
Node.js
CI

Unified TypeScript SDK for AI coding agent CLIs (Claude Code, Codex CLI, Gemini CLI, OpenCode, and more).

Register an adapter, send a prompt, and consume a single async event stream — regardless of which agent runs underneath.

Install

npm install @sublang/cligent

Quick start

import { Cligent } from '@sublang/cligent';
import { ClaudeCodeAdapter } from '@sublang/cligent/adapters/claude-code';

// Cligent wraps an adapter with role identity, session continuity,
// option merging, and protocol hardening.
const agent = new Cligent(new ClaudeCodeAdapter(), {
  role: 'coder',
  model: 'claude-opus-4-7',
});

for await (const event of agent.run('Refactor auth module')) {
  if (event.type === 'text_delta') process.stdout.write(event.payload.delta);
  if (event.type === 'done') console.log('\nDone:', event.payload.status);
}

// Session continuity — the next run auto-resumes the previous session.
for await (const event of agent.run('Now add tests for it')) {
  // ...
}

Supported agents

  • Claude Code — via @anthropic-ai/claude-agent-sdk
  • Codex CLI — via @openai/codex-sdk
  • Gemini CLI — via child-process NDJSON
  • OpenCode — via @opencode-ai/sdk

tmux-play

tmux-play is a reference application built on Cligent — a working
showcase of what you can compose with the SDK. You chat with a Captain
on the left pane; the Captain dispatches work to roles, each a
Cligent on its own adapter and model, streaming live into its own pane
on the right.

npm install -g @sublang/cligent
tmux-play                                # discover or create config
tmux-play --config ./tmux-play.config.yaml

On first run, if neither the cwd nor the home config exists, tmux-play
creates ${XDG_CONFIG_HOME:-~/.config}/tmux-play/config.yaml and starts
with the built-in fanout Captain plus a claude and a codex role.

Requirements:

The Captain is the extension point. tmux-play owns role
orchestration, panes, and event streaming; you write a Captain to decide
how roles collaborate — fanout, planner/router, debate protocol, an
XState graph, anything. The built-in fanout Captain runs every role in
parallel and synthesizes their answers; swap it for your own using the
same contract.

See docs/tmux-play.md for config, layout, and writing
a Captain.

Documentation

  • docs/guide.mdCligent class, adapters, permissions, session continuity, parallel execution, event types.
  • docs/tmux-play.mdtmux-play config, layout, snapshot, and writing custom Captains.

Contributing

We welcome contributions of all kinds. If you'd like to help:

  • 🌟 Star our repo if you find cligent useful.
  • Open an issue for bugs or feature requests.
  • Open a PR for fixes or improvements.
  • Discuss on Discord for support or new ideas.

License

Apache-2.0

Yorumlar (0)

Sonuc bulunamadi