skillpack.co
All solutions

Sim Studio

active

Apache-2.0 alternative to n8n for agentic workflow automation. 27K stars in ~4 months, 240 HN points with 61 comments ('Apache-2.0 n8n alternative'). $7M Series A. License differentiator vs n8n's 'fair-code' Sustainable Use License.

Score 82

Where it wins

27K GitHub stars in ~4 months — strong growth

240 HN points, 61 comments — genuine developer traction

Apache-2.0 license — true open-source vs n8n's 'fair-code' license

$7M Series A funding

Where to be skeptical

Revenue and enterprise evidence is thin — too early to challenge n8n

~4 months old — execution risk remains high

No named enterprise customers

Editorial verdict

The only credible open-source alternative to n8n for workflow automation. Apache-2.0 license is a genuine differentiator for teams that need true open-source. Revenue and enterprise evidence is thin — too early to challenge n8n's 3,000+ enterprise customers, but the trajectory is promising.

Related

Claude Code

98

Anthropic's official agentic coding CLI. v2.1.81 (Mar 20) shipped `--bare`, smarter worktree resume, and improved MCP OAuth while the repo crossed 82,204 stars and logged ~14 commits/week across 10+ maintainers. Terminal-native, tool-use-driven, with deep file system + shell access, #1 SWE-bench Pro standardized (45.89%), ~4% of GitHub public commits (SemiAnalysis), $2.5B annualized revenue. 8M+ npm weekly downloads. Opus 4.6 with 1M context.

LangGraph

95

#1 Python agent framework by production evidence — 40.2M PyPI downloads/month, Fortune 500 deployments (LinkedIn, Uber, Replit, Elastic, Klarna, Cloudflare, Coinbase), ~400 LangGraph Platform companies, LangSmith rated best-in-class observability. Stable v1.x API, model-agnostic, MCP support.

Pydantic AI

95

#3 Python agent framework by downloads — 15.6M PyPI/month. Built by the Pydantic team. Runtime type enforcement is a genuine differentiator no other framework offers. V1 shipped with Temporal integration for durable execution and Logfire observability. Emerging pattern: 'Pydantic AI for agent logic, LangGraph for orchestration' (ZenML).

AutoGen (Microsoft)

95

⚠️ MAINTENANCE MODE — Microsoft officially confirmed bug fixes and security patches only, no new features (VentureBeat 2026-02-19). 55.9K stars but only 1.57M PyPI/month — DL/star ratio of 28, the most inflated among active frameworks. Being replaced by Microsoft Agent Framework (AutoGen + Semantic Kernel merge, GA targeted ~Q2 2026). Teams on AutoGen should plan migration.

Public evidence

moderateSelf-reported2026
$7M Series A funding

Early-stage funding provides runway but does not yet validate enterprise adoption.

Series A fundingSim Studio

Raw GitHub source

GitHub README peek

Constrained peek so you can sanity-check the source material without leaving the site.

<p align="center"> <a href="https://sim.ai" target="_blank" rel="noopener noreferrer"> <picture> <source media="(prefers-color-scheme: dark)" srcset="apps/sim/public/logo/wordmark.svg"> <source media="(prefers-color-scheme: light)" srcset="apps/sim/public/logo/wordmark-dark.svg"> <img src="https://raw.githubusercontent.com/simstudioai/sim/main/apps/sim/public/logo/wordmark-dark.svg" alt="Sim Logo" width="380"/> </picture> </a> </p> <p align="center">The open-source platform to build AI agents and run your agentic workforce. Connect 1,000+ integrations and LLMs to orchestrate agentic workflows.</p> <p align="center"> </p> <p align="center"> </p>
Build Workflows with Ease

Design agent workflows visually on a canvas—connect agents, tools, and blocks, then run them instantly.

<p align="center"> <img src="https://raw.githubusercontent.com/simstudioai/sim/main/apps/sim/public/static/workflow.gif" alt="Workflow Builder Demo" width="800"/> </p>
Supercharge with Copilot

Leverage Copilot to generate nodes, fix errors, and iterate on flows directly from natural language.

<p align="center"> <img src="https://raw.githubusercontent.com/simstudioai/sim/main/apps/sim/public/static/copilot.gif" alt="Copilot Demo" width="800"/> </p>
Integrate Vector Databases

Upload documents to a vector store and let agents answer questions grounded in your specific content.

<p align="center"> <img src="https://raw.githubusercontent.com/simstudioai/sim/main/apps/sim/public/static/knowledge.gif" alt="Knowledge Uploads and Retrieval Demo" width="800"/> </p>

Quickstart

Cloud-hosted: sim.ai
Self-hosted: NPM Package
npx simstudio

http://localhost:3000

Note

Docker must be installed and running on your machine.

Options

FlagDescription
-p, --port <port>Port to run Sim on (default 3000)
--no-pullSkip pulling latest Docker images
Self-hosted: Docker Compose
git clone https://github.com/simstudioai/sim.git && cd sim
docker compose -f docker-compose.prod.yml up -d

Open http://localhost:3000

Sim also supports local models via Ollama and vLLM — see the Docker self-hosting docs for setup details.

Self-hosted: Manual Setup

Requirements: Bun, Node.js v20+, PostgreSQL 12+ with pgvector

  1. Clone and install:
git clone https://github.com/simstudioai/sim.git
cd sim
bun install
bun run prepare  # Set up pre-commit hooks
  1. Set up PostgreSQL with pgvector:
docker run --name simstudio-db -e POSTGRES_PASSWORD=your_password -e POSTGRES_DB=simstudio -p 5432:5432 -d pgvector/pgvector:pg17

Or install manually via the pgvector guide.

  1. Configure environment:
cp apps/sim/.env.example apps/sim/.env
# Create your secrets
perl -i -pe "s/your_encryption_key/$(openssl rand -hex 32)/" apps/sim/.env
perl -i -pe "s/your_internal_api_secret/$(openssl rand -hex 32)/" apps/sim/.env
perl -i -pe "s/your_api_encryption_key/$(openssl rand -hex 32)/" apps/sim/.env
# DB configs for migration
cp packages/db/.env.example packages/db/.env
# Edit both .env files to set DATABASE_URL="postgresql://postgres:your_password@localhost:5432/simstudio"
  1. Run migrations:
cd packages/db && bun run db:migrate
  1. Start development servers:
bun run dev:full  # Starts Next.js app and realtime socket server

Or run separately: bun run dev (Next.js) and cd apps/sim && bun run dev:sockets (realtime).

Copilot API Keys

Copilot is a Sim-managed service. To use Copilot on a self-hosted instance:

  • Go to https://sim.ai → Settings → Copilot and generate a Copilot API key
  • Set COPILOT_API_KEY environment variable in your self-hosted apps/sim/.env file to that value

Environment Variables

See the environment variables reference for the full list, or apps/sim/.env.example for defaults.

Tech Stack

  • Framework: Next.js (App Router)
  • Runtime: Bun
  • Database: PostgreSQL with Drizzle ORM
  • Authentication: Better Auth
  • UI: Shadcn, Tailwind CSS
  • State Management: Zustand
  • Flow Editor: ReactFlow
View on GitHub →