
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
aiden-runtime
Advanced tools
Local-first AI agent for Windows/WSL/Linux. Autonomous tool chaining across 14+ providers, offline via Ollama.
█████╗ ██╗██████╗ ███████╗███╗ ██╗
██╔══██╗██║██╔══██╗██╔════╝████╗ ██║
███████║██║██║ ██║█████╗ ██╔██╗ ██║
██╔══██║██║██║ ██║██╔══╝ ██║╚██╗██║
██║ ██║██║██████╔╝███████╗██║ ╚████║
╚═╝ ╚═╝╚═╝╚═════╝ ╚══════╝╚═╝ ╚═══╝
Autonomous AI Engine — local-first, Windows-native, yours to own
74 skills · 60 tools · 19 providers · 9 channels · AGPL-3.0
Windows · Linux · WSL · macOS (API Mode)
Autonomous AI Engine — local-first, Windows-native, yours to own
74 skills · 60 tools · 19 providers · 9 channels · AGPL-3.0
A semi-autonomous AI agent that runs on your machine. Touches your files, browser, and shell. Remembers what matters. Built solo. Open source. Still rough in spots.
npm install -g aiden-runtime
aiden
That's it. Pick a provider (Groq is free + fastest), paste your key, and start chatting.
Want autonomous triggers?
export AIDEN_DAEMON=1 # PowerShell: $env:AIDEN_DAEMON = "1"
aiden trigger add file --path ~/Documents/inbox --label "watch-inbox" --include "*.txt"
aiden # boots the REPL + dispatcher
Drop a file in ~/Documents/inbox/anything.txt and Aiden acts on it. The agent turn is visible via aiden runs list.

Aiden now spawns workers and learns from itself.
spawn_sub_agent runs a focused child with an isolated context + intersected toolset; subagent_fanout runs N children in parallel (ensemble or partition) with merge strategies (all / vote / pick-best / combine) and provider rotation across configured fallback slots./spawn-pause on|off|status blocks new sub-agent spawning while in-flight children continue. Marker file at ~/.aiden/spawn.paused so the state survives restart and is shared across REPL, daemon, and MCP runtimes. Optional reason field captured in the typed SUBAGENT_SPAWN_PAUSED error envelope.failure_signatures, recovery_reports); /recovery list|show|clear surfaces recurring failure patterns across sessions.runs row; sub-agent children link back via spawned_from_run_id. aiden runs list hides children by default and shows a (N children, M OK) badge per parent; --include-children flips to flat view./planner-guard on or AIDEN_PLANNER_GUARD=1 for smaller local models./models fetch, 3-step connection probe, success screen, and /walkthrough guided tour. Phase 2 also fixed an MCP-mode subagent_fanout regression that had silently broken in the v4.5 refactor.Aiden now wakes up by itself.
AIDEN_DAEMON=1 boots a background service with a SQLite-backed trigger bus. File watchers, webhook endpoints, IMAP polling, and cron schedules all feed the same durable queue.AidenAgent turn runs end-to-end — same tools, same sandbox, same recovery pipeline as your interactive REPL. Surface the chain with aiden runs show <id>./sandbox on|off./sandbox, /tce, /browser-depth, /daemon status, /suggestions, /update — toggle every subsystem without restart. Choices persist to config.yaml./update CLI. Boot prompt when a newer version is on npm. Skip-this-version persistence. Install-method detection (npm-global / npx / standalone).Full v4.5 internals: docs/v4.5/ (overview, triggers, architecture, daemon on Linux/macOS/Windows, troubleshooting).
| Category | What Aiden does |
|---|---|
| Inference & providers | 19 providers: Anthropic, OpenAI, Groq, Gemini, OpenRouter, Together, NVIDIA NIM, DeepSeek, Mistral, Z.ai, Kimi, MiniMax, Hugging Face, Ollama (fully offline), Nous Portal, custom OpenAI-compatible endpoints. OAuth subscription routing for Claude Pro and ChatGPT Plus. |
| 60 built-in tools | Web search & fetch, deep research, YouTube search, Playwright browser automation (10 tools), file ops, process control, shell exec, code execution, system info, screenshot, clipboard, app launch, media keys, MCP bridge, memory ops, session list/search/summary/recall, skill view/list/manage, aiden_self_update. |
| 74 bundled skills | Composable workflows each with a SKILL.md prompt, optional helper scripts, and tool requirements. GitHub PR/issue workflows, NSE / Upstox / Zerodha trading, Censys / Shodan / VirusTotal lookups, Windows Defender / Task Scheduler, Docker management, YouTube content tools, and more. |
| Self-promoting memory | USER.md + SOUL.md identity, plus MEMORY.md split between durable facts (compression-protected) and recent-session distillations. Each session ends with a structured summary that graduates durable facts into the protected section. Semantic recall over past sessions via recall_session. |
| Voice | Edge TTS / Windows SAPI text-to-speech, speech-to-text helpers. |
| Channel adapters | Discord, Slack, Telegram, WhatsApp, Email (IMAP+SMTP), Webhook, Twilio SMS, iMessage (macOS), Signal — any channel triggers the same agent loop. |
| Computer use | Screenshot capture, screen-state vision loop, browser automation. Mouse/keyboard automation partial. |
| v4.5 daemon mode (opt-in) | File watcher / webhook / email IMAP / scheduled triggers route through a durable trigger bus consumed by the Phase 5a dispatcher. Triggers fire → real agent runs → tool calls execute → run_events captures the chain. Off by default. |
| Plugins | Three bundled plugins: Chrome DevTools Protocol bridge, Claude Pro OAuth, ChatGPT Plus OAuth. Permission-state machine (pending-grant / loaded / suspended). |
| MCP | Model Context Protocol bridge — stdio + HTTP transports, schema discovery, tool dispatch. |
| Security moat | Tiered approval engine (safe / caution / dangerous), dangerous-command pattern classifier, honesty enforcement (post-loop scan rewrites false claims), memory guard, planner-guard tool narrowing, SSRF-safe URL fetcher, secret/PII pre-write scanner, skill-teacher (auto-create skills from successful flows). |
Aiden is a local-first agent loop: provider adapters feed a 90-turn ceiling, every tool call passes through verification + failure classification + recovery, and tool results stream back as structured envelopes the model can reason over. v4.5 added a SQLite daemon foundation alongside the REPL — file watchers and webhook endpoints write to a durable trigger bus, a single-worker dispatcher claims events, and each trigger fires a fresh agent turn keyed by a stable session id. Sandboxed execution (filesystem allow/deny + Docker session backend), state-aware browser observation, and continuous error recovery apply to daemon-fired turns identically to REPL turns.
Detailed diagrams + module map in docs/v4.5/architecture.md.
npm install -g aiden-runtime
aiden # interactive setup wizard fires on first run
npm install -g aiden-runtime
aiden
If you hit native-build errors on Windows, install the windows-build-tools prerequisite first.
npx aiden-runtime
npm install -g aiden-runtime@latest
Or, from inside a running session, the slash command: /update install
(Aiden also prompts you on boot when a newer version is on npm — see /update auto off to silence.)
npm uninstall -g aiden-runtime
To also wipe your local Aiden home (config, sessions, memory, skills):
# Linux / macOS
rm -rf ~/.aiden
# Windows (PowerShell)
Remove-Item -Recurse -Force $env:LOCALAPPDATA\aiden
The first time you run aiden, you'll see:
/models API for the current catalogTip: try /walkthroughTo re-run the wizard later:
aiden setup
To diagnose without re-running:
aiden doctor
Inside the REPL: /model
Picks a provider (with ✓ authed badges next to ones you've configured), fetches the live model list, and saves your choice to config.yaml. Persists across sessions.
To set the default at the env level:
export AIDEN_DEFAULT_PROVIDER=groq
export AIDEN_DEFAULT_MODEL=llama-3.3-70b-versatile
Aiden reads ~/.aiden/config.yaml (Linux/macOS) or %LOCALAPPDATA%\aiden\config.yaml (Windows). The setup wizard writes a starter config on first boot; subsequent edits are diff-merged.
| Variable | Default | Effect |
|---|---|---|
AIDEN_DAEMON | 0 | Set to 1 to boot the daemon foundation alongside the REPL |
AIDEN_DAEMON_PORT | 4200 | Daemon HTTP listener port |
AIDEN_DAEMON_BIND | 127.0.0.1 | Loopback-only by default; non-loopback requires AIDEN_API_KEY |
AIDEN_DAEMON_DAILY_BUDGET | unset | Hard daily token cap across daemon turns; resets midnight UTC |
AIDEN_DAEMON_MODEL | unset | Override model for daemon turns (<provider>/<model>) |
AIDEN_SANDBOX | 1 | 0 to disable filesystem allowlist + Docker session backend |
AIDEN_TCE | 1 | 0 to disable continuous error recovery |
AIDEN_BROWSER_DEPTH | 1 | 0 to disable state-aware browser observation |
AIDEN_API_KEY | unset | Required for non-loopback daemon bind |
AIDEN_NO_UPDATE_CHECK | 0 | Set to 1 to silence the boot-time update probe |
AIDEN_PLANNER_GUARD | 0 | Set to 1 to enable keyword-based tool narrowing (helps smaller local models) |
Most flags are also flippable live via slash commands.
| Command | What it does |
|---|---|
aiden | Start the REPL (runs setup wizard on first launch) |
aiden setup | Re-run the onboarding wizard |
aiden doctor | Diagnose providers, auth, config, and environment |
aiden --version | Print the installed version |
aiden --help | Show the full CLI manual |
aiden update | Check for and install updates |
aiden daemon start | Run the daemon in foreground |
aiden daemon install | Install daemon as system service (systemd / launchd / Task Scheduler) |
aiden daemon status | Show daemon health, recent triggers, run history |
aiden trigger add file --path <p> | Add a file-watcher trigger |
aiden trigger add webhook --label <n> | Add an HTTP webhook trigger |
aiden trigger add cron --schedule "<expr>" | Add a scheduled trigger |
aiden trigger list | List all configured triggers |
aiden runs list | List recent agent runs (interactive + daemon) |
aiden runs show <id> | Inspect a specific run's tool chain |
aiden runs stats | Aggregate stats across runs |
Type /help inside Aiden for the full list grouped by category. 38 commands total.
/model · /personality · /skin · /streaming · /reasoning · /verbose · /debug-prompt · /identity
/clear · /compress · /save · /title · /usage
/sandbox · /tce · /browser-depth · /daemon · /suggestions · /update · /skills · /tools · /plugins · /cron · /runs · /trigger · /doctor · /status · /show · /history
/spawn-pause on|off|status · /recovery list|show|clear · /planner-guard on|off|status
/walkthrough — 60-second guided tour of what Aiden can do
/auth login · /auth status · /auth refresh
/reload-mcp · /setup
export AIDEN_DAEMON=1
aiden daemon install
loginctl enable-linger $USER # keep running between sessions
export AIDEN_DAEMON=1
aiden daemon install # installs launchd plist
See docs/v4.5/daemon-windows.md. Recommended: foreground (aiden daemon start) or pm2 for background.
Common issues live in docs/v4.5/troubleshooting.md. Quick reference:
~/.aiden/daemon/runtime.lock; remove itgithub / gitlab / generic)tests/v4/daemon/soak/README.md)--no-ui/help doesn't list a command — that command likely needs an active session field; run from a real REPLnpm install permission errors on Windows — install into a real folder (not a drive root like S:\)📖 Omega — A novel about code, solitude, and what builds back. The story behind Aiden and what it means to build alone.
Aiden is free and open source. If it saves you time or you want it to keep getting better, sponsorship helps cover server costs, API testing, and the time to ship features instead of taking client work.
Even a one-time tip or a star on the repo is appreciated.
Built solo by Shiva Deore at Taracod.
Aiden builds on the open-source giants: TypeScript, Node, SQLite, better-sqlite3, Playwright, Chromium, chokidar, croner, inquirer, marked, kleur, the Model Context Protocol, and every provider SDK. Thank you.
Aiden is built solo right now, but contributions are welcome — bug reports, skill submissions, provider adapters, documentation fixes.
Before opening a PR:
npm installnpm run build — confirm it compilesaiden locallyKeep PRs focused. One feature or fix per PR. Be honest in the description about what works and what doesn't.
The future skills.taracod.com marketplace will ship community skills under the same permissive terms.
| Where | What |
|---|---|
| 🌐 Website | aiden.taracod.com |
| 💬 Discord | discord.gg/CU5wshJW4F |
| 📦 npm | aiden-runtime |
| 🐙 Source | github.com/taracodlabs/aiden |
| 📁 Standalone releases | github.com/taracodlabs/aiden-releases |
| 📖 Book — Omega | Amazon |
| 📚 Docs | docs/v4.5/ (in this repo) |
| 💖 Sponsor (Razorpay) | razorpay.me/@whitelotus9625 |
| ✉️ Contact | contact@taracod.com |
Aiden can touch your files, run shell commands, and access the web. It's autonomous within the limits you set. Things will go wrong sometimes. Use at your own risk, read the code if you're nervous, and report what breaks.
Built solo. Started as a hobby project. Still rough in spots. Getting better every week.
By Taracod · White Lotus
Local-first. Windows-native. Yours to own.
FAQs
Local-first AI agent for Windows/WSL/Linux. Autonomous tool chaining across 14+ providers, offline via Ollama.
The npm package aiden-runtime receives a total of 155 weekly downloads. As such, aiden-runtime popularity was classified as not popular.
We found that aiden-runtime demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.