Click any tag below to further narrow down your results
Links
Cline, a VS Code extension used by 11 million developers, now has a standalone desktop app that lets you run multiple AI agents in parallel, choose from 300+ models, and automate recurring tasks. You can also import conversations from Claude Code or other agents and continue them with cheaper open-weight models.
- Run parallel agents simultaneously with scheduled cron job automations for recurring work like nightly repo checks or weekly documentation updates.
- Switch between 300+ models across 50+ providers, or use local models—you can even mix different models for planning versus execution.
- Import tasks and conversations from Claude Code, Codex, or other agents to continue work without starting over, useful when hitting subscription limits.
- The app extends beyond coding to research, document review, reporting, and other non-code work through plugins, MCP servers, and skills.
Tau is a command-line AI agent that handles coding tasks like explaining repos, writing tests, and fixing errors. It's designed as a teaching project—clean, modular code that shows how to build a coding agent without the complexity of production systems.
- The architecture splits into three layers (tau_ai for model translation, tau_agent for the reusable brain, tau_coding for the app wrapper), making each part readable and independent
- It works with multiple model providers (OpenAI, Anthropic, OpenRouter, local models) through a provider-neutral event system, so you can swap backends without changing the core
- Sessions persist as append-only JSONL files with branching and compaction support, letting you resume work and inspect the full conversation history
Open Executive is an open-source system that uses Claude to simulate a cohesive executive team—eight specialized AI agents (CFO, CSO, CMO, etc.) that maintain context across sessions and proactively surface follow-ups. It's designed to run locally or on Fly.io with integrations for Slack, Discord, email, and other platforms.
- Eight specialist agents route through a single orchestrator to synthesize responses in one consistent executive voice, with built-in MBA knowledge layered alongside your uploaded company documents via RAG.
- Episodic memory in SQLite tracks past decisions and initiatives across sessions, and a scheduler proactively surfaces due actions—but the API must run single-instance only to avoid double-firing scheduled tasks.
- Deploys to Fly.io with separate dev and qa environments, supports document upload (pitch decks, financials, strategy docs), and offers multiple chat interfaces (web UI, Slack, Discord, email, Telegram, CLI).
Paperclip is an open-source platform that turns separate AI agents into a structured organization with roles, budgets, mission context, and audit logs. It solves coordination issues like task overlap, hidden API costs, and lost state through scheduled “heartbeats,” human approval gates, and a mission-driven context chain—all via a self-hosted CLI tool.
- Paperclip wraps AI agents in an org structure (roles, budgets, mission context, audit logs) to stop duplicated work, cost overruns, and lost state across restarts.
- It hit 43,000 GitHub stars since its March 2026 launch, signaling strong demand for agent coordination tools, not just smarter individual agents.
- Its "heartbeat" system addresses agents' lack of persistent memory by having them recheck a mission-to-task context chain each cycle rather than relying on retraining.
- Unlike LangChain or CrewAI, which build individual agents or pipelines, Paperclip manages agents collectively as a company, self-hosted under MIT license with no platform fee beyond LLM costs.