From 82de27682c8acd06bfbddc350716e8a191203e79 Mon Sep 17 00:00:00 2001 From: GAP Promoter Date: Fri, 29 May 2026 12:51:43 +0000 Subject: [PATCH] Add taracodlabs/aiden to the registry --- agents/taracodlabs__aiden/README.md | 39 +++++++++++++++++++++++++ agents/taracodlabs__aiden/metadata.json | 14 +++++++++ 2 files changed, 53 insertions(+) create mode 100644 agents/taracodlabs__aiden/README.md create mode 100644 agents/taracodlabs__aiden/metadata.json diff --git a/agents/taracodlabs__aiden/README.md b/agents/taracodlabs__aiden/README.md new file mode 100644 index 0000000..79301ce --- /dev/null +++ b/agents/taracodlabs__aiden/README.md @@ -0,0 +1,39 @@ +# Aiden — Autonomous AI OS + +Aiden is a local-first, autonomous AI operating system built by [Shiva Deore at Taracod](https://aiden.taracod.com). It runs on Windows, Linux, and WSL with 72 built-in tools spanning browser automation, desktop GUI control, code execution, voice I/O, file management, multi-agent coordination, and real-time data (stocks, email, calendar) — all on-device. + +## Key Capabilities + +- **72 built-in tools** — shell, Python, Node.js, PowerShell, browser automation (Playwright), desktop mouse/keyboard control, voice TTS/STT +- **19 LLM providers** — Groq, Anthropic Claude, OpenAI, Gemini, Mistral, Ollama (local offline fallback), and more via OpenRouter +- **Multi-agent coordination** — `spawn`, `swarm`, `spawn_subagent` for parallel task execution +- **Persistent semantic memory** — remembers facts and patterns across sessions with SQLite FTS5 +- **Active learning** — Skill Teacher, Pattern Detector, and Task Tracker for self-improvement +- **9 channels** — Discord, Slack, Telegram, Email, Webhook, CLI, and more +- **Security hardening** — jailbreak detection, destructive-action confirmation, local-only data governance + +## Try It + +```bash +# Install via npm +npm install -g aiden-runtime +aiden start +``` + +Or clone and run: +```bash +git clone https://github.com/taracodlabs/aiden.git +cd aiden && npm install +npm start +``` + +## Architecture + +Aiden uses a hybrid approach: all tool execution, file I/O, and memory stay on-device; only LLM inference prompts go to the cloud provider (or Ollama for fully offline use). The `SOUL.md` is prepended to every system prompt at startup, defining identity and behaviour rules that cannot be overridden by user messages. + +## Links + +- 🌐 Website: https://aiden.taracod.com +- 💬 Discord: https://discord.gg/CU5wshJW4F +- 📦 npm: https://www.npmjs.com/package/aiden-runtime +- 📖 Docs: https://github.com/taracodlabs/aiden/tree/main/docs diff --git a/agents/taracodlabs__aiden/metadata.json b/agents/taracodlabs__aiden/metadata.json new file mode 100644 index 0000000..2ad7adc --- /dev/null +++ b/agents/taracodlabs__aiden/metadata.json @@ -0,0 +1,14 @@ +{ + "name": "aiden", + "author": "taracodlabs", + "description": "Local-first autonomous AI OS — 72 tools, 19 providers, browser/desktop/voice control, sub-agents, semantic memory. Runs on Windows/Linux/WSL.", + "repository": "https://github.com/taracodlabs/aiden", + "version": "4.10.0", + "category": "productivity", + "tags": ["autonomous-agent", "local-first", "desktop-control", "browser-automation", "multi-agent", "voice", "windows", "ollama", "typescript"], + "license": "AGPL-3.0-only", + "model": "groq:llama-3.3-70b", + "adapters": ["system-prompt"], + "icon": false, + "banner": false +}