CODE.
COMPILE.
CONQUER.

> The AI coding assistant for the uncompromising engineer.

curl -fsSL https://cli.seeyon.chat/install.sh | bash
root@cobot:~ [ - ] [ □ ] [ x ]

// SYSTEM_CAPABILITIES

diff --git a/src/core.ts b/src/core.ts
- const oldEngine = new Autocomplete();
+ const cobotEngine = new ContextAwareAI({ workspace: process.cwd() });
cobotEngine.analyze_graph();
cobotEngine.predict_intent();

> Deep local grounding. Cobot CLI reads your entire workspace instantly to provide architecture-aware completions.

$ cobot share --context=current_file
[INFO] Handshake with ~/Code/cobot successful.
[OK] Context synced to Seeyon Chat interface.

> Seamless handoff. Move complex refactoring debates from the terminal directly to the Seeyon Chat GUI.

$ time cobot start
cobot start 0.03s user 0.01s system 98% cpu 0.041 total

> Built on Bun. Zero-lag startup. Sub-millisecond IPC. Absolute performance.

$ cobot config set telemetry false
$ cobot config set endpoint https://vpc.internal.llm
[OK] Enterprise mode locked. Air-gap enabled.

> Fortune 500 ready. Connect to local LLMs or VPC endpoints. Zero code retention.

$ cobot run "convert the video to gif and query the clickhouse db"
[EXEC] process_media (FFmpeg: input.mp4 -> output.gif)
[EXEC] execute_clickhouse_query (SELECT * FROM user_stats)
[OK] Video converted. DB results parsed.

> 17 Native Tools. Out-of-the-box support for FFmpeg, ImageMagick, Pandoc, ClickHouse, and complete file system manipulation.

root@cobot:~# /model gpt-4o
[SYSTEM] Model switched to gpt-4o.
root@cobot:~# /theme dark
[SYSTEM] Theme preference saved to ~/.cobot/config.json

> Absolute control. Switch models, toggle themes, and manage API endpoints on the fly via slash commands without restarting the agent.

$ cobot resume
[RESTORE] Loading session 'a1b2c3d4' from ~/.cobot/sessions.sqlite...
[OK] Context fully restored. Resuming chat...

> Persistent memory. All interactive sessions are automatically saved locally via Bun SQLite. Never lose your train of thought.

$ cobot agents
* [default] Standard Assistant
[yolo] Approval-Free Executor
[researcher] Deep Codebase Analyst
$ cobot agent researcher
[OK] Active coding agent switched to 'researcher'.

> Modular Intelligence. Cycle between standard assistants, deep-dive researchers, or autonomous Yolo-mode executors instantly using Shift+Tab or CLI flags.

// FREQUENTLY_ASKED_QUESTIONS

Q: What models does Cobot CLI support?
A: By default, it supports OpenAI's GPT models (gpt-4o, gpt-4o-mini). However, you can configure custom endpoints (`/baseurl`) to use alternative providers like BigModel or Groq locally.
Q: How does the Seeyon Chat integration work?
A: Configure your `seeyonChatApiKey` and endpoint. You can then use the `/cobot` command to hand off tasks to enterprise chat agents, syncing local file context instantly.
Q: Is my code sent to third parties?
A: Cobot CLI respects your privacy. If you use default API endpoints, standard retention policies apply. For enterprise strictness, we recommend pointing the CLI to your internal VPC LLM endpoints.
Q: Can it execute shell commands autonomously?
A: Yes. It features a built-in safety approval system for dangerous commands. You can bypass this by enabling "Yolo mode" (`--yolo`) for fully autonomous, hands-free operation.