titan-agent 2026.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.env.example +21 -0
- package/LICENSE +29 -0
- package/README.md +305 -0
- package/assets/titan-logo.png +0 -0
- package/dist/agent/agent.js +1458 -0
- package/dist/agent/agent.js.map +1 -0
- package/dist/agent/generator.js +1078 -0
- package/dist/agent/generator.js.map +1 -0
- package/dist/cli/index.js +5064 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/gateway/server.js +4462 -0
- package/dist/gateway/server.js.map +1 -0
- package/dist/skills/builtin/apply_patch.js +368 -0
- package/dist/skills/builtin/apply_patch.js.map +1 -0
- package/dist/skills/builtin/auto_generate.js +1129 -0
- package/dist/skills/builtin/auto_generate.js.map +1 -0
- package/dist/skills/builtin/browser.js +357 -0
- package/dist/skills/builtin/browser.js.map +1 -0
- package/dist/skills/builtin/cron.js +410 -0
- package/dist/skills/builtin/cron.js.map +1 -0
- package/dist/skills/builtin/filesystem.js +386 -0
- package/dist/skills/builtin/filesystem.js.map +1 -0
- package/dist/skills/builtin/memory_skill.js +430 -0
- package/dist/skills/builtin/memory_skill.js.map +1 -0
- package/dist/skills/builtin/process.js +421 -0
- package/dist/skills/builtin/process.js.map +1 -0
- package/dist/skills/builtin/sessions.js +1729 -0
- package/dist/skills/builtin/sessions.js.map +1 -0
- package/dist/skills/builtin/shell.js +327 -0
- package/dist/skills/builtin/shell.js.map +1 -0
- package/dist/skills/builtin/vision.js +491 -0
- package/dist/skills/builtin/vision.js.map +1 -0
- package/dist/skills/builtin/voice.js +468 -0
- package/dist/skills/builtin/voice.js.map +1 -0
- package/dist/skills/builtin/web_fetch.js +331 -0
- package/dist/skills/builtin/web_fetch.js.map +1 -0
- package/dist/skills/builtin/web_search.js +317 -0
- package/dist/skills/builtin/web_search.js.map +1 -0
- package/dist/skills/builtin/webhook.js +323 -0
- package/dist/skills/builtin/webhook.js.map +1 -0
- package/dist/skills/registry.js +3369 -0
- package/dist/skills/registry.js.map +1 -0
- package/package.json +118 -0
package/.env.example
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# TITAN Environment Variables
|
|
2
|
+
# Copy this file to .env and fill in your values.
|
|
3
|
+
# You can also run "titan onboard" to configure everything interactively.
|
|
4
|
+
# All of these can also be set in ~/.titan/titan.json
|
|
5
|
+
|
|
6
|
+
# ─── LLM Providers (at least one required) ───────────────────────
|
|
7
|
+
ANTHROPIC_API_KEY=your_anthropic_key_here
|
|
8
|
+
OPENAI_API_KEY=your_openai_key_here
|
|
9
|
+
GOOGLE_API_KEY=your_google_gemini_key_here
|
|
10
|
+
# OLLAMA_BASE_URL=http://localhost:11434
|
|
11
|
+
|
|
12
|
+
# ─── Channel Integrations (all optional) ─────────────────────────
|
|
13
|
+
# DISCORD_TOKEN=your_discord_bot_token
|
|
14
|
+
# TELEGRAM_TOKEN=your_telegram_bot_token
|
|
15
|
+
# SLACK_TOKEN=your_slack_bot_token
|
|
16
|
+
|
|
17
|
+
# ─── Gateway Configuration ────────────────────────────────────────
|
|
18
|
+
# TITAN_GATEWAY_PORT=18789
|
|
19
|
+
# TITAN_GATEWAY_HOST=127.0.0.1
|
|
20
|
+
# TITAN_LOG_LEVEL=info # debug | info | warn | error | silent
|
|
21
|
+
# TITAN_MODEL=anthropic/claude-sonnet-4-20250514
|
package/LICENSE
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Tony Elliott (https://github.com/Djtony707)
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
ACKNOWLEDGMENTS
|
|
26
|
+
|
|
27
|
+
TITAN's architecture is inspired by OpenClaw (https://github.com/openclaw/openclaw),
|
|
28
|
+
an open-source personal AI assistant framework, licensed under the MIT License.
|
|
29
|
+
Thank you to the OpenClaw team and all open-source contributors.
|
package/README.md
ADDED
|
@@ -0,0 +1,305 @@
|
|
|
1
|
+
# ⚡ TITAN — The Intelligent Task Automation Network
|
|
2
|
+
|
|
3
|
+
<p align="center">
|
|
4
|
+
<img src="assets/titan-logo.png" alt="TITAN Logo" width="280"/>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<p align="center">
|
|
8
|
+
<strong>Your own personal AI agent. Any OS. Any platform. Superior by design.</strong>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
<p align="center">
|
|
12
|
+
<a href="#quick-start">Quick Start</a> •
|
|
13
|
+
<a href="#why-titan">Why TITAN?</a> •
|
|
14
|
+
<a href="#features">Features</a> •
|
|
15
|
+
<a href="#mission-control">Mission Control</a> •
|
|
16
|
+
<a href="#comparison">Comparison</a> •
|
|
17
|
+
<a href="#roadmap">Roadmap</a>
|
|
18
|
+
</p>
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Quick Start
|
|
23
|
+
|
|
24
|
+
**Requirements:** Node.js ≥ 20, npm ≥ 9
|
|
25
|
+
|
|
26
|
+
### Option 1 — Run from Source (Recommended)
|
|
27
|
+
```bash
|
|
28
|
+
# Clone the repo
|
|
29
|
+
git clone https://github.com/Djtony707/TITAN.git
|
|
30
|
+
cd TITAN/titan
|
|
31
|
+
|
|
32
|
+
# Install dependencies
|
|
33
|
+
npm install
|
|
34
|
+
|
|
35
|
+
# (Optional) Copy environment template and add your API keys
|
|
36
|
+
cp .env.example .env
|
|
37
|
+
# Edit .env with your ANTHROPIC_API_KEY / OPENAI_API_KEY etc.
|
|
38
|
+
|
|
39
|
+
# Run the interactive setup wizard
|
|
40
|
+
npm run onboard
|
|
41
|
+
|
|
42
|
+
# Start the Mission Control dashboard (http://localhost:18789)
|
|
43
|
+
npm run gateway
|
|
44
|
+
|
|
45
|
+
# Or send a direct message
|
|
46
|
+
npm run dev -- agent -m "Hello TITAN!"
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Option 2 — Link as Global CLI (dev mode)
|
|
50
|
+
```bash
|
|
51
|
+
# From the titan/ directory, after npm install:
|
|
52
|
+
npm link
|
|
53
|
+
titan onboard
|
|
54
|
+
titan gateway
|
|
55
|
+
titan agent -m "Hello!"
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
> **npm publish coming soon.** Once published, you will be able to install with `npm install -g titan-agent`.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
## Why TITAN?
|
|
62
|
+
|
|
63
|
+
TITAN was built to solve the real problems with every other AI agent framework in 2026:
|
|
64
|
+
|
|
65
|
+
| The Problem | Who Has It | TITAN's Solution |
|
|
66
|
+
|------------|-----------|-----------------|
|
|
67
|
+
| **Infinite loop hell** | OpenClaw, NanoClaw, PicoClaw | **Loop Detection + Circuit Breaker** — 3 detectors (repeat, no-progress, ping-pong) with configurable thresholds |
|
|
68
|
+
| **Token waste & high cost** | OpenClaw (430K LoC, 1GB+ RAM) | **Smart Context Manager** — auto-summarizes old history, priority-based allocation, token budget tracking |
|
|
69
|
+
| **Goal drift / runaway agents** | Most agent frameworks | **Task Planner** — dependency graphs, 3x retry, parallel task execution with progress tracking |
|
|
70
|
+
| **No learning from mistakes** | All alternatives | **Continuous Learning Engine** — tracks tool success rates, error patterns, and injects knowledge into every prompt |
|
|
71
|
+
| **Basic dashboards** | OpenClaw, NanoClaw, IronClaw | **Mission Control GUI** — premium 11-panel dark-mode dashboard with WebSocket real-time updates |
|
|
72
|
+
| **Native dependencies / complex setup** | OpenClaw (native deps), IronClaw (Rust), ZeroClaw (Rust), PicoClaw (Go) | **Pure TypeScript** — `npm install` just works, no compilation required |
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
76
|
+
## Features
|
|
77
|
+
|
|
78
|
+
### 🛡️ Prompt Injection Shield & RBAC (TITAN-exclusive)
|
|
79
|
+
Zero tolerance for unauthorized takeovers:
|
|
80
|
+
- **Heuristic Engine** — Detects and blocks "ignore previous instructions", "developer mode", and system prompt extraction logic.
|
|
81
|
+
- **Strict Mode** — Scans for keyword density and tail manipulations in massive payloads.
|
|
82
|
+
- **Role-Based Access Control (RBAC)** — Unverified / guest users are structurally blocked from executing dangerous tools, even if TITAN is in full autonomous mode.
|
|
83
|
+
|
|
84
|
+
### 🛡️ Loop Detection & Circuit Breaker (TITAN-exclusive)
|
|
85
|
+
No more infinite tool loops. Three detection algorithms:
|
|
86
|
+
- **Generic Repeat** — same tool + same args called repeatedly
|
|
87
|
+
- **No-Progress Polling** — tool returns identical output each time
|
|
88
|
+
- **Ping-Pong** — alternating A↔B patterns with no progress
|
|
89
|
+
- **Global Circuit Breaker** — hard stop after configurable threshold
|
|
90
|
+
|
|
91
|
+
### 📋 Task Planner with Dependency Graphs (TITAN-exclusive)
|
|
92
|
+
- Automatic goal decomposition into sub-tasks
|
|
93
|
+
- Dependency tracking — tasks only execute when prerequisites are met
|
|
94
|
+
- 3x auto-retry on failure with exponential backoff
|
|
95
|
+
- Parallel execution of independent tasks
|
|
96
|
+
- Persistent plan tracking (`~/.titan/plans/`)
|
|
97
|
+
|
|
98
|
+
### 🧠 Smart Context Manager (TITAN-exclusive)
|
|
99
|
+
- Auto-summarizes old conversation history to save tokens
|
|
100
|
+
- Priority-based context allocation (recent > relevant > old)
|
|
101
|
+
- Token budget tracking with per-model limits
|
|
102
|
+
- Smart truncation that preserves tool call context
|
|
103
|
+
|
|
104
|
+
### 🧠 Continuous Learning Engine
|
|
105
|
+
- Tracks tool success/failure rates across all interactions
|
|
106
|
+
- Records error patterns and resolutions
|
|
107
|
+
- Builds persistent knowledge base (`~/.titan/knowledge.json`)
|
|
108
|
+
- Injects learned context into every system prompt
|
|
109
|
+
- **TITAN actually gets smarter the more you use it**
|
|
110
|
+
|
|
111
|
+
### 🤖 Multi-Agent System (up to 5 concurrent)
|
|
112
|
+
- Independent agent instances with different models/prompts
|
|
113
|
+
- Channel-based routing — each agent binds to specific channels
|
|
114
|
+
- Manage via CLI (`titan agents`) or Mission Control GUI
|
|
115
|
+
|
|
116
|
+
### 🔧 17+ Built-in Tools
|
|
117
|
+
| Group | Tools |
|
|
118
|
+
|-------|-------|
|
|
119
|
+
| **Runtime** | `exec` (background/timeout), `process` (list/poll/kill/log), `shell` |
|
|
120
|
+
| **Filesystem** | `read`, `write`, `edit`, `list_dir`, `apply_patch` |
|
|
121
|
+
| **Web** | `web_search`, `web_fetch`, `browser` (CDP) |
|
|
122
|
+
| **Intelligence** | `auto_generate_skill`, `analyze_image` (Vision), `transcribe_audio` (STT), `generate_speech` (TTS) |
|
|
123
|
+
| **Automation** | `cron`, `webhook` |
|
|
124
|
+
| **Memory** | `memory`, `learning` |
|
|
125
|
+
| **Sessions** | `sessions_list`, `sessions_history`, `sessions_send`, `sessions_close` |
|
|
126
|
+
|
|
127
|
+
### 🧬 Skill Auto-Generation & Plugin Marketplace
|
|
128
|
+
- **Self-Writing Code** — If TITAN lacks a tool for your request, it uses `auto_generate_skill` to write it in TypeScript, compile it, and hot-load it instantly.
|
|
129
|
+
- **Plugin Marketplace** — Browse and install community skills via `titan skills install <name>`.
|
|
130
|
+
|
|
131
|
+
### 👁️ Multimodal (Vision & Voice)
|
|
132
|
+
- **Vision** — TITAN can "see" images via Claude 3.5 Sonnet / GPT-4o using the `analyze_image` tool.
|
|
133
|
+
- **Voice** — TITAN handles Speech-to-Text (Whisper) and Text-to-Speech via the `transcribe_audio` and `generate_speech` tools.
|
|
134
|
+
|
|
135
|
+
### 📡 10+ Channel Adapters
|
|
136
|
+
Discord · Telegram · Slack · Google Chat · WebChat · WhatsApp · Matrix · Signal · MS Teams · BlueBubbles
|
|
137
|
+
|
|
138
|
+
### 🔐 Security
|
|
139
|
+
- **E2E Encrypted Sessions** — AES-256-GCM encryption for sensitive conversations (keys held securely in-memory).
|
|
140
|
+
- DM pairing (approve/deny new senders)
|
|
141
|
+
- Docker sandbox for non-main sessions
|
|
142
|
+
- Tool/path/network allowlisting
|
|
143
|
+
|
|
144
|
+
### 🤝 Model Agnostic
|
|
145
|
+
Anthropic (Claude) · OpenAI (GPT) · Google (Gemini) · Ollama (local) — with automatic failover
|
|
146
|
+
|
|
147
|
+
---
|
|
148
|
+
|
|
149
|
+
## Mission Control
|
|
150
|
+
|
|
151
|
+
TITAN ships with a premium **Mission Control** web GUI — a dark-mode dashboard served from the gateway at `http://localhost:18789`.
|
|
152
|
+
|
|
153
|
+
### 11 Panels:
|
|
154
|
+
| Panel | Description |
|
|
155
|
+
|-------|-------------|
|
|
156
|
+
| **📊 Overview** | System health, stats, uptime, memory, version |
|
|
157
|
+
| **💬 WebChat** | Built-in chat with real-time WebSocket |
|
|
158
|
+
| **🤖 Agents** | Spawn/stop agents, capacity monitor |
|
|
159
|
+
| **🧩 Skills** | Installed skills with version and status |
|
|
160
|
+
| **⚙️ Processes** | Background process management |
|
|
161
|
+
| **📋 Plans** | Task planner visualization and progress |
|
|
162
|
+
| **🔗 Sessions** | Active session list with message counts |
|
|
163
|
+
| **📡 Channels** | Channel adapter connection status |
|
|
164
|
+
| **🔒 Security** | Security audit and pairing management |
|
|
165
|
+
| **🧠 Learning** | Learning engine stats and tool success rates |
|
|
166
|
+
| **📜 Logs** | Real-time system log viewer |
|
|
167
|
+
|
|
168
|
+
---
|
|
169
|
+
|
|
170
|
+
## Comparison
|
|
171
|
+
|
|
172
|
+
### TITAN vs. 2026 OpenClaw Ecosystem
|
|
173
|
+
|
|
174
|
+
| Feature | **TITAN** | OpenClaw | NanoClaw | IronClaw | PicoClaw | ZeroClaw | TrustClaw | Nanobot |
|
|
175
|
+
|---------|-----------|----------|----------|----------|----------|----------|-----------|---------|
|
|
176
|
+
| **Language** | TypeScript | TypeScript | TypeScript | Rust | Go | Rust | Cloud | Python |
|
|
177
|
+
| **Codebase** | ~7K LoC | ~430K LoC | ~500 LoC | Medium | Small | Small | Managed | ~4K LoC |
|
|
178
|
+
| **Native deps** | ❌ None | ✅ Required | ❌ | ✅ (Rust) | ✅ (Go) | ✅ (Rust) | N/A | ❌ |
|
|
179
|
+
| **Loop detection** | ✅ 3 detectors + circuit breaker | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
180
|
+
| **Task planner** | ✅ Dependency graphs | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
181
|
+
| **Smart context** | ✅ Auto-summarize + budget | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
182
|
+
| **Continuous learning** | ✅ Built-in | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
183
|
+
| **Multi-agent** | ✅ Up to 5 | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
184
|
+
| **Mission Control GUI** | ✅ 11 panels, premium | ✅ Basic | ❌ | ❌ | ❌ | ❌ | ✅ | ❌ |
|
|
185
|
+
| **Browser control** | ✅ CDP | ✅ CDP | ❌ | ❌ | ❌ | ❌ | ✅ | ❌ |
|
|
186
|
+
| **Background processes** | ✅ exec+process | ✅ | ❌ | ✅ | ❌ | ✅ | ✅ | ✅ |
|
|
187
|
+
| **Apply patch** | ✅ Unified diffs | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
188
|
+
| **DM pairing** | ✅ | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ | ❌ |
|
|
189
|
+
| **Docker sandbox** | ✅ | ✅ | ✅ | Wasm | ❌ | ✅ | ✅ Cloud | ❌ |
|
|
190
|
+
| **Channels** | 10+ | 12+ | WhatsApp | Limited | Limited | Multiple | Multiple | Multiple |
|
|
191
|
+
| **Memory** | ✅ Persistent + learning | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ |
|
|
192
|
+
| **Local models (Ollama)** | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ❌ | ✅ |
|
|
193
|
+
| **RAM usage** | ~50MB | ~1GB+ | ~30MB | ~20MB | <10MB | <5MB | Cloud | ~40MB |
|
|
194
|
+
| **Setup complexity** | `npm install` | Complex | Docker | Compile | Single binary | Compile | OAuth | `pip install` |
|
|
195
|
+
|
|
196
|
+
### What Makes TITAN Different
|
|
197
|
+
|
|
198
|
+
**vs. OpenClaw** — OpenClaw is powerful but bloated (430K lines, 1GB+ RAM, native deps). TITAN delivers the same capabilities in ~5K lines of pure TypeScript with zero native dependencies, plus exclusive features: loop detection, task planner, smart context management, and continuous learning.
|
|
199
|
+
|
|
200
|
+
**vs. NanoClaw** — NanoClaw prioritizes minimal code (~500 lines) over features. It lacks browser control, multi-agent, background processes, and a dashboard. TITAN offers full-featured operation with a manageable codebase.
|
|
201
|
+
|
|
202
|
+
**vs. IronClaw** — IronClaw's Rust + Wasm approach is great for security but requires compilation and has limited channel support. TITAN provides comparable security via Docker sandbox with zero compilation required.
|
|
203
|
+
|
|
204
|
+
**vs. PicoClaw** — PicoClaw targets embedded/resource-constrained environments (<10MB RAM). TITAN targets users who want a full-featured agent that still doesn't bloat to 1GB like OpenClaw.
|
|
205
|
+
|
|
206
|
+
**vs. ZeroClaw** — ZeroClaw's Rust implementation is fast but requires compilation and has a steeper learning curve. TITAN offers comparable performance with TypeScript's developer-friendliness.
|
|
207
|
+
|
|
208
|
+
**vs. TrustClaw** — TrustClaw is cloud-managed (no self-hosting). TITAN gives you full control on your own hardware with local model support.
|
|
209
|
+
|
|
210
|
+
**vs. Nanobot** — Nanobot is Python-based with good transparency, but lacks browser control, multi-agent, task planning, and a GUI. TITAN covers all bases.
|
|
211
|
+
|
|
212
|
+
---
|
|
213
|
+
|
|
214
|
+
## Roadmap
|
|
215
|
+
|
|
216
|
+
### ✅ v2026.2.26 — Foundation Release (Current)
|
|
217
|
+
- [x] Multi-agent system (up to 5)
|
|
218
|
+
- [x] 17+ built-in tools (shell, filesystem, browser, process, web, cron, webhooks, sessions, memory, patch)
|
|
219
|
+
- [x] Continuous learning engine
|
|
220
|
+
- [x] Loop detection & circuit breaker
|
|
221
|
+
- [x] Task planner with dependency graphs
|
|
222
|
+
- [x] Smart context manager
|
|
223
|
+
- [x] Mission Control GUI (11 panels)
|
|
224
|
+
- [x] 10+ channel adapters
|
|
225
|
+
- [x] 4 LLM providers with failover
|
|
226
|
+
- [x] DM pairing security
|
|
227
|
+
- [x] Docker support
|
|
228
|
+
|
|
229
|
+
### ✅ v2026.4 — Intelligence Update (Current)
|
|
230
|
+
- [x] **Skill auto-generation** — TITAN writes its own new skills when it encounters tasks it can't solve
|
|
231
|
+
- [x] **Image analysis tool** — Vision capabilities for screenshots, diagrams, photos
|
|
232
|
+
- [x] **Voice channel support** — Discord/Telegram voice with speech-to-text and text-to-speech
|
|
233
|
+
- [x] **Plugin marketplace** — Community-contributed skills with one-click install
|
|
234
|
+
- [x] **E2E encrypted sessions** — End-to-end encryption for sensitive conversations
|
|
235
|
+
|
|
236
|
+
### 🔮 v2026.6 — Autonomy Update
|
|
237
|
+
- [ ] **Proactive agent mode** — TITAN monitors your system and takes action without being asked
|
|
238
|
+
- [ ] **Multi-model reasoning** — Chain multiple models for complex tasks (fast model for planning, powerful model for execution)
|
|
239
|
+
- [ ] **Git workflow integration** — PR reviews, automated commits, branch management
|
|
240
|
+
- [ ] **OAuth tool marketplace** — Connect to 500+ SaaS apps (Google, GitHub, Notion, Jira, etc.)
|
|
241
|
+
- [ ] **Mobile app** — iOS/Android companion app for on-the-go TITAN access
|
|
242
|
+
|
|
243
|
+
### 🚀 v2026.9 — Enterprise Update
|
|
244
|
+
- [ ] **Team mode** — Multiple users, role-based access, shared agents
|
|
245
|
+
- [ ] **Audit logging** — Full compliance audit trail
|
|
246
|
+
- [ ] **SSO integration** — SAML/OIDC authentication
|
|
247
|
+
- [ ] **Custom model fine-tuning** — Train models on your organization's data
|
|
248
|
+
- [ ] **On-premise deployment** — Kubernetes-ready with Helm charts
|
|
249
|
+
|
|
250
|
+
### 🌟 v2027+ — Next Generation
|
|
251
|
+
- [ ] **Agent-to-agent marketplace** — TITAN agents can discover and collaborate with other TITAN instances
|
|
252
|
+
- [ ] **Natural language programming** — Describe apps in plain English, TITAN builds them
|
|
253
|
+
- [ ] **Predictive task execution** — AI predicts what you need before you ask
|
|
254
|
+
- [ ] **Hardware integration** — IoT, smart home, robotics control
|
|
255
|
+
|
|
256
|
+
---
|
|
257
|
+
|
|
258
|
+
## 💡 Feature Requests
|
|
259
|
+
|
|
260
|
+
**Have an idea for TITAN?** We want to hear it!
|
|
261
|
+
|
|
262
|
+
Open an issue on GitHub or reach out directly:
|
|
263
|
+
|
|
264
|
+
👉 **[Open a Feature Request](https://github.com/Djtony707/TITAN/issues/new?labels=feature-request&template=feature_request.md&title=%5BFeature%5D+)**
|
|
265
|
+
|
|
266
|
+
👉 **Contact:** [Tony Elliott on GitHub](https://github.com/Djtony707)
|
|
267
|
+
|
|
268
|
+
Every feature request is reviewed. The best ideas make it into the roadmap. Let's build the future of AI agents together.
|
|
269
|
+
|
|
270
|
+
---
|
|
271
|
+
|
|
272
|
+
## CLI Reference
|
|
273
|
+
|
|
274
|
+
| Command | Description |
|
|
275
|
+
|---------|-------------|
|
|
276
|
+
| `titan onboard` | Interactive setup wizard |
|
|
277
|
+
| `titan gateway` | Start Mission Control (port 18789) |
|
|
278
|
+
| `titan agent -m "..."` | Direct message |
|
|
279
|
+
| `titan send --to ch:id -m "..."` | Send to channel |
|
|
280
|
+
| `titan pairing` | DM access control |
|
|
281
|
+
| `titan agents` | Multi-agent management |
|
|
282
|
+
| `titan doctor` | Diagnostics |
|
|
283
|
+
| `titan skills` | Skill management |
|
|
284
|
+
| `titan config` | Configuration |
|
|
285
|
+
| `titan update` | Update TITAN |
|
|
286
|
+
|
|
287
|
+
---
|
|
288
|
+
|
|
289
|
+
## Credits
|
|
290
|
+
|
|
291
|
+
**Project Creator / Owner:** [Tony Elliott](https://github.com/Djtony707)
|
|
292
|
+
|
|
293
|
+
### Acknowledgments
|
|
294
|
+
|
|
295
|
+
TITAN's architecture is inspired by patterns from the open-source AI agent community:
|
|
296
|
+
|
|
297
|
+
- **[OpenClaw](https://github.com/openclaw/openclaw)** — The original personal AI assistant framework. TITAN's gateway, skills system, session model, and security patterns are inspired by OpenClaw's design. MIT License.
|
|
298
|
+
|
|
299
|
+
Dependencies: Anthropic SDK, OpenAI SDK, Google Generative AI, discord.js, grammY, Bolt (Slack), Zod, Commander.js, Express, ws, chalk, uuid, Vitest.
|
|
300
|
+
|
|
301
|
+
---
|
|
302
|
+
|
|
303
|
+
## License
|
|
304
|
+
|
|
305
|
+
MIT License — Copyright (c) 2026 Tony Elliott. See [LICENSE](LICENSE).
|
|
Binary file
|