freshcrate
Skin:/

sim

Build, deploy, and orchestrate AI agents. Sim is the central intelligence layer for your AI workforce.

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Build, deploy, and orchestrate AI agents. Sim is the central intelligence layer for your AI workforce.

README

Sim Logo

The open-source platform to build AI agents and run your agentic workforce. Connect 1,000+ integrations and LLMs to orchestrate agentic workflows.

Sim.ai Discord TwitterDocumentation

Ask DeepWiki Set Up with Cursor

Build Workflows with Ease

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

Workflow Builder Demo

Supercharge with Copilot

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

Copilot Demo

Integrate Vector Databases

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

Knowledge Uploads and Retrieval Demo

Quickstart

Cloud-hosted: sim.ai

Sim.ai

Self-hosted: NPM Package

npx simstudio

โ†’ http://localhost:3000

Note

Docker must be installed and running on your machine.

Options

Flag Description
-p, --port <port> Port to run Sim on (default 3000)
--no-pull Skip 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

Contributing

We welcome contributions! Please see our Contributing Guide for details.

License

This project is licensed under the Apache License 2.0 - see the LICENSE file for details.

Made with โค๏ธ by the Sim Team

Release History

VersionChangesUrgencyDate
v0.6.103## Features - feat(tables): fractional order keys for O(log n) row insert/delete (flag-gated, default off) (#4890) - feat(tables): workflow version selection (live/deployed) and not-found/no-output badges (#4889) - feat(metrics): emit hosted-key metrics to Grafana via OTel (#4885) - feat(integrations): add ClickHouse block and expand Dagster + Tinybird tools (#4883) - feat(connectors): add 7 knowledge base connectors (Google Forms, Typeform, Azure DevOps, YouTube, JSM, S3, Sentry) (#4880) - feaHigh6/6/2026
v0.6.97## Bug Fixes - fix(copilot): seq migration (#4804) ## Contributors - @icecrasher321 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.96...v0.6.97)High5/30/2026
v0.6.89## Improvements - improvement(kb-connectors): align connector modal controls (#4730) - improvement(kb-connectors): align connector UI surfaces (#4728) - improvement(mcp): post-merge hardening โ€” protocol negotiation + distributed OAuth lock + typed errors (#4722) - perf(copilot): narrow getAccessibleCopilotChat projection (#4720) - improvement(branding): dark og image matching landing surface (#4719) ## Bug Fixes - fix(landing): remove cursor lerp causing laggy tracking in collaboration sectioHigh5/23/2026
v0.6.81## Features - feat(mship): make mship block stream output (#4626) - feat(wait): Async toggle, chained-wait resume fix, execution status API (#4514) - feat(files): folders, multiselect, vfs update (#4572) ## Improvements - improvement(executor): faster, more responsive workflow cancellation (#4630) - improvement(copilot): trim copilot_chats reads to lean projections (#4629) - improvement(redis): strip idempotency body and cap mothership stream zsets (#4625) - improvement(providers): align attaHigh5/16/2026
v0.6.73## Improvements - improvement(deps): remove unused remark deps (#4542) ## Bug Fixes - fix(script): biome format wrap (#4541) - fix(zustand): v5 selector stability issues (#4539) ## Contributors - @icecrasher321 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.72...v0.6.73)High5/10/2026
v0.6.68## Features - feat(enterprise): add data drains for continuous export to S3 / webhook (#4440) - feat(block): Allow wait block to wait up to 30 days (#4331) - feat(credentials): add Atlassian service account credentials (#4432) ## Improvements - refactor(tables): row selection as discriminated union (#4466) - improvement(confluence): expand scopes, persist canonical mode toggle (#4461) ## Bug Fixes - fix(data-drains): convert unique-name violations to 409 on POST/PUT (#4471) - fix(mothershipHigh5/6/2026
v0.6.61## Features - feat(logs): trace span tree rewrite with resizable split, provider icons, and execution improvements (#4292) - feat(table): expose position parameter for row insertion via copilot (#4326) - feat(files): extract PDF viewer behind SSR boundary and polish file preview (#4316) - feat(sap_s4hana): add get_material_document and fix supplier invoice key order (#4317) - feat(governance): external workspace users from outside org (#4313) - feat(integrations): SAP S/4HANA (#4301) ## ImprovHigh4/29/2026
v0.6.58## Improvements - improvement(mothership): do not silently re-route missing stream id (#4295) - improvement(tables): race-free row-count trigger + scoped tx timeouts (#4289) - improvement(mothership): treat error as terminal event (#4290) - refactor(ashby): align tools, block, and triggers with Ashby API (#4288) - improvement(mothership): stream retry state machine, progressive re-rendering (#4287) ## Bug Fixes - fix(mothership): queue supersede crash (#4297) - fix(table-block): resolve canonHigh4/25/2026
v0.6.53## Bug Fixes - fix(docs): update simstudio.ai URLs to sim.ai in SSO docs (#4257) - fix(migration): permission group migration error (#4258) ## Contributors - @icecrasher321 - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.52...v0.6.53)High4/22/2026
v0.6.51## Features - feat(tables): column selection, keyboard shortcuts, drag reorder, and undo improvements (#4222) ## Improvements - improvement(codebase): migrate tests to dbChainMock, extract react-query hooks (#4235) - improvement(codebase): centralize test mocks, extract @sim/utils, remove dead code (#4228) - improvement(billing): route scope by subscription referenceId, sync plan from Stripe, transfer storage on org join, outbox service (#4219) ## Bug Fixes - fix(settings): restore paste-toHigh4/20/2026
v0.6.50## Improvements - improvement(mothership): agent model dropdown validations, markers for recommended models (#4213) - improvement(terminal): resize output panel on any layout change via ResizeObserver (#4220) - improvement(utils): add shared utility functions and replace inline patterns (#4214) - improvement(sidebar): interleave folders and workflows by sort order in all resource pickers (#4215) ## Bug Fixes - fix(pdf): PDF previews by adding the missing preview endpoint and allowing same-oriHigh4/18/2026
v0.6.49## Features - feat(monday): add full Monday.com integration (#4210) - feat(triggers): add Atlassian triggers for Jira, JSM, and Confluence (#4211) ## Improvements - improvement(mothership): whitespace only deltas need to be preserved, update docs for theshold billing (#4212) - improvement(logs): fix trigger badge wrapping, time range picker, status filters, and React anti-patterns (#4207) - improvement(tables): clean up duplicate types, unnecessary memos, and barrel imports (#4205) ## Bug FiHigh4/17/2026
v0.6.48## Features - feat(tables): import csv into existing tables (#4199) ## Improvements - improvement(ui): remove React anti-patterns, fix CSP violations (#4203) ## Bug Fixes - fix(executor): subflow edge keys mismatch (#4202) ## Contributors - @icecrasher321 - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.47...v0.6.48)High4/16/2026
v0.6.47## Features - feat(docs): fill documentation gaps across platform features (#4110) ## Bug Fixes - fix(ui): stop terminal auto-select from stealing copilot input focus (#4201) - fix(misc): remove duplicate docs page, update clopus 4.7 (#4200) - fix(ui): fix focusing bugs while editing files (#4197) ## Contributors - @TheodoreSpeaks - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.46...v0.6.47)High4/16/2026
v0.6.46## Improvements - improvement(landing): optimize core web vitals and accessibility (#4193) ## Bug Fixes - fix(ui): posthog guard, dynamic import loading, compact variant, rebase cleanup (#4196) - fix(ui): fix attachment logic on queued mothership messages (#4191) - fix(mothership): chat stream structuring + logs resource post fix (#4189) - fix(brightdata): fix async Discover API, echo-back fields, and registry ordering (#4188) ## Other Changes - Merge pull request #4190 from simstudioai/staHigh4/16/2026
v0.6.45## Features - feat(brightdata): add Bright Data integration with 8 tools (#4183) ## Improvements - improvement(seo): optimize sitemaps, robots.txt, and core web vitals across sim and docs (#4170) ## Bug Fixes - fix(logs): close sidebar when selected log disappears from filtered list + cleanup (#4186) - fix(mothership): fix superagent credentials (#4185) - fix(gemini): support structured output with tools on Gemini 3 models (#4184) - fix(landing): return 404 for invalid dynamic route slugs (High4/15/2026
v0.6.44## Features - feat(microsoft-excel): add SharePoint drive support for Excel integration (#4162) ## Improvements - improvement(ui): rename user-facing "execution" to "run" (#4176) - refactor(microsoft-excel): export GRAPH_ID_PATTERN and deduplicate validation (#4174) - improvement(ui): delegate streaming animation to Streamdown component (#4163) ## Bug Fixes - fix(blocks): correct required field validation for Jira and Confluence blocks (#4172) - fix(mothership): fix intelligence regression High4/15/2026
v0.6.43## Features - feat(jira): support raw ADF in description and environment fields (#4164) ## Bug Fixes - fix(google-drive): add auto export format and validate against Drive API docs (#4161) - fix(triggers): env var resolution in provider configs (#4160) - fix(billing): add idempotency to billing (#4157) ## Contributors - @TheodoreSpeaks - @icecrasher321 - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.42...v0.6.43)High4/14/2026
v0.6.42## Bug Fixes - fix(mothership): tool path for nested folders (#4158) - fix(mothership): fix workflow vfs reads (#4156) - fix(ui): handle long file paths and names in search modal (#4155) ## Contributors - @Sg312 - @TheodoreSpeaks [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.41...v0.6.42)Medium4/14/2026
v0.6.41## Bug Fixes - fix(webhooks): non-polling webhook executions silently dropped after BullMQ removal (#4153) ## Contributors - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.40...v0.6.41)Medium4/14/2026
v0.6.40## Features - feat(jsm): add all Forms API endpoints for jira (#4142) - feat(aws): add IAM and STS integrations (#4137) - feat(ui): show folder path in search modal (#4138) - feat(workspaces): add workspace logo upload (#4136) - feat(agiloft): add Agiloft CLM integration with token-based auth (#4133) - feat(workspaces): add recency-based workspace switching and redirect (#4131) - feat(logs): add cancel execution to log row context menu (#4130) ## Improvements - improvement(ui): remove anti-paHigh4/14/2026
v0.6.39## Features - feat(crowdstrike): add tools + validate whatsapp, shopify, trello (#4123) ## Bug Fixes - fix(models): fix mobile overflow and hide cost bars on small screens (#4125) - fix(billing): unblock on payment success (#4121) ## Other Changes - chore(skills): reinforce skill to not guess integration outputs (#4122) ## Contributors - @icecrasher321 - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.38...v0.6.39)High4/13/2026
v0.6.38## Bug Fixes - fix(models): exclude reseller providers from model catalog pages (#4117) ## Contributors - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.37...v0.6.38)Medium4/12/2026
v0.6.37## Features - feat(ee): enterprise feature flags, permission group platform controls, audit logs ui, delete account (#4115) - feat(ee): add enterprise audit logs settings page (#4111) ## Improvements - improvement(landing): rebrand to AI workspace, add auth modal, harden PostHog tracking (#4116) ## Bug Fixes - fix(trigger): handle Drive rate limits, 410 page token expiry, and clean up comments (#4112) - fix(trigger): fix Google Sheets trigger header detection and row index tracking (#4109) Medium4/12/2026
v0.6.36## Features - feat(knowledge): add token, sentence, recursive, and regex chunkers (#4102) - feat(ui): allow multiselect in resource tabs (#4094) - feat(trigger): add Google Sheets, Drive, and Calendar polling triggers (#4081) ## Improvements - improvement(integrations, models): ui/ux (#4105) - improvement(sockets): workflow switching state machine (#4104) - update(doc): Update hosted key/byok section (#4098) ## Bug Fixes - fix(trigger): fix polling trigger config defaults, row count, clock-High4/11/2026
v0.6.35## Features - feat(tools): add fields parameter to Jira search block (#4091) ## Bug Fixes - fix(agent): include model in structured response output (#4092) - fix(log): log cleanup sql query (#4087) - fix(tools): handle all Atlassian error formats in parseJsmErrorMessage (#4088) ## Other Changes - docs(openapi): add Human in the Loop section to API reference sidebar (#4089) ## Contributors - @TheodoreSpeaks - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/comparMedium4/10/2026
v0.6.34## Improvements - improvement(ci): parallelize Docker builds and fix test timeouts (#4083) ## Bug Fixes - fix(tools): add Atlassian error extractor to all Jira, JSM, and Confluence tools (#4085) - fix(trigger): use @react-email/render v2 to fix renderToPipeableStream error (#4084) ## Other Changes - chore(ci): bump actions/checkout to v6 and dorny/paths-filter to v4 (#4082) ## Contributors - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.33...v0.6.Medium4/9/2026
v0.6.33## Features - feat(trigger): add ServiceNow webhook triggers (#4077) - feat(jsm): add ProForma/JSM Forms discovery tools (#4078) ## Improvements - improvement(polling): fix correctness and efficiency across all polling handlers (#4067) - improvement(deploy): improve auto-generated version descriptions (#4075) - improvement(release): address comments (#4069) ## Bug Fixes - fix(credentials): add cross-cache invalidation for oauth credential queries (#4076) - fix(trigger): add @react-email/comMedium4/9/2026
v0.6.32## Features - feat(block): Add cloudwatch publish operation (#4027) ## Improvements - improvement(hitl): streaming, async support + update docs (#4058) ## Bug Fixes - fix(jsm): improve create request error handling, add form-based submission support (#4066) - fix(hitl): resume workflow output async (#4065) - fix(hitl): async resume (#4064) - fix(subscription-state): remove dead code, change token route check (#4062) - fix(billing): Skip billing on streamed workflows with byok (#4056) - fix(Medium4/9/2026
v0.6.31## Features - feat(enterprise): cloud whitelabeling for enterprise orgs (#4047) - feat(voice): voice input migration to eleven labs (#4041) ## Bug Fixes - fix(editor): stop highlighting start.input as blue when block is not connected to starter (#4054) - fix(webhook): throw webhook errors as 4xxs (#4050) - fix(trigger): add react-dom and react-email to additionalPackages (#4052) - debug(log): Add logging on socket token error (#4051) - fix(parallel): remove broken node-counting completion + rHigh4/8/2026
v0.6.30## Features - feat(secrets): allow admins to view and edit workspace secret values (#4040) - feat(ui): Add copy button for code blocks in mothership (#4033) - feat(athena): add AWS Athena integration (#4034) - feat(chat): drag workflows and folders from sidebar into chat input (#4028) - feat(slack): add subtype field and signature verification to Slack trigger (#4030) - feat(posthog): Add tracking on mothership abort (#4023) ## Improvements - improvement(kb): deferred content fetching and metMedium4/8/2026
v0.6.29login improvements, posthog telemetry (#4026) [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.28...v0.6.29)Medium4/7/2026
v0.6.28## Features - feat(security): add GTM and GA domains to CSP for hosted environments (#4024) - feat(auth): add DISABLE_GOOGLE_AUTH and DISABLE_GITHUB_AUTH env vars (#4019) - feat(claude): add you-might-not-need-an-effect slash command (#4018) - feat(dagster): expand integration with 9 new tools and full GraphQL validation (#4013) ## Improvements - improvement(docs): ui/ux cleanup (#4016) ## Bug Fixes - fix(signup): fix turnstile key loading (#4021) - fix(docs): resolve missing tool outputs fMedium4/7/2026
v0.6.27## Features - feat(folders): soft-delete folders and show in Recently Deleted (#4001) - feat(home): add double-enter to send top queued message (#4005) - feat(home): add folders to resource menu (#4000) - feat(posthog): Add posthog log for signup failed (#3998) - feat(block): Conditionally hide impersonateUser field from block, add service account prompting (#3966) - feat(triggers): add Linear v2 triggers with automatic webhook registration (#3991) - feat(triggers): add Zoom webhook triggers (#Medium4/7/2026
v0.6.26## Features - feat(files): expand file editor to support more formats, add docx/xlsx preview (#3971) - feat(cursor): add list artifacts and download artifact tools (#3970) ## Improvements - improvement(landing, blog): ui/ux (#3972) - improvement(execution): multiple response blocks (#3918) ## Bug Fixes - fix(blocks): resolve Ollama models incorrectly requiring API key in Docker (#3976) - fix(core): consolidate ID generation to prevent HTTP self-hosted crashes (#3977) - fix(settings): align Medium4/5/2026
v0.6.25## Features - feat(cloudformation): add AWS CloudFormation integration with 7 operations (#3964) - feat(block): Add cloudwatch block (#3953) - feat(analytics): posthog audit โ€” remove noise, add 10 new events (#3960) - feat(knowledge): add Live sync option to KB connectors + fix embedding billing (#3959) ## Bug Fixes - fix(integrations): show disabled role combobox for readonly members (#3962) - fix(kb): fix Linear connector GraphQL type errors and tag slot reuse (#3961) - fix(setup): db migraMedium4/5/2026
v0.6.24## Features - feat: mothership/copilot feedback (#3940) ## Improvements - improvement(models): tighten model metadata and crawl discovery (#3942) ## Bug Fixes - fix(captcha): use getResponsePromise for Turnstile execute-on-submit flow (#3943) - fix(envvars): restore workflowUserId fallback for scheduled execution env var resolution (#3941) ## Contributors - @emir-karabeg - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.23...v0.6.24)Medium4/4/2026
v0.6.23## Improvements - improvement(mothership): workflow edits via sockets (#3927) - refactor(stores): consolidate variables stores into stores/variables/ (#3930) - improvement(stores): remove deployment state from Zustand in favor of React Query (#3923) ## Bug Fixes - fix(modals): center modals in visible content area and remove open/close animation (#3937) - fix(modals): center modals in visible content area accounting for sidebar and panel (#3934) - Fix "fix in copilot" button (#3931) - fix(mcpMedium4/4/2026
v0.6.22## Features - feat(analytics): add PostHog product analytics (#3910) - feat(blocks): add Credential block (#3907) - feat(email): abandoned checkout email, 80% free tier warning, credits exhausted email (#3908) - feat(email): send onboarding followup email 3 days after signup (#3906) - feat(rootly): expand Rootly integration from 14 to 27 tools (#3902) - feat(agentmail): add AgentMail integration with 21 tools (#3901) ## Bug Fixes - fix(tools) Directly query db for custom tool id (#3875) - fixMedium4/3/2026
v0.6.21## Bug Fixes - fix(bullmq): restore CONCURRENCY_CONTROL_ENABLED flag guard (#3903) - fix(blog): use landing theme variables in MDX components (#3900) ## Contributors - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.20...v0.6.21)Medium4/2/2026
v0.6.20## Features - feat(rootly): add Rootly incident management integration with 14 tools (#3899) - feat(rippling): expand Rippling integration from to 86 tools, landing updates (#3886) - feat(credentials) Add google service account support (#3828) - feat(landing): added models pages (#3888) - feat(providers): server-side credential hiding for Azure and Bedrock (#3884) ## Improvements - improvement(models): update default to claude-sonnet-4-6 and reorganize OpenAI models (#3898) - improvement(provMedium4/2/2026
v0.6.19## Features - feat(providers): add Fireworks AI provider integration (#3873) - feat(launchdarkly): add LaunchDarkly integration for feature flag management (#3870) - feat(models): add gpt-5.4-mini and gpt-5.4-nano (#3871) - feat(extend): add Extend AI document processing integration (#3869) - feat(tailscale): add Tailscale integration with 20 API operations (#3868) - feat(infra): add dev environment support (#3867) - feat(secrets-manager): add AWS Secrets Manager integration (#3866) ## ImproveMedium4/1/2026
v0.6.18## Features - feat(logs): add copy link and deep-link support for log entries (#3863) - feat(logs): add copy link and deep link support for log entries (#3855) - feat(profound): add Profound AI visibility and analytics integration (#3849) - Feat/improved logging (#3833) - feat(block) add block write and append operations (#3665) ## Improvements - improvement(platform): standardize perms, audit logging, lifecycle across admin, copilot, ui actions (#3858) - improvement(tour): align product tourMedium3/31/2026
v0.6.17## Other Changes - chore(trigger): update @trigger.dev/sdk and @trigger.dev/build to 4.4.3 (#3843) ## Contributors - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.16...v0.6.17)Medium3/30/2026
v0.6.16## Bug Fixes - fix(bullmq): disable temporarily (#3841) ## Contributors - @icecrasher321 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.15...v0.6.16)Medium3/30/2026
v0.6.15## Features - feat(resources): add sort and filter to all resource list pages (#3834) - feat(analytics): add Profound web traffic tracking (#3835) - feat(files): interactive markdown checkbox toggling in preview (#3829) - feat(ui): handle image paste (#3826) - feat(academy): Sim Academy โ€” interactive partner certification platform (#3824) - feat(concurrency): bullmq based concurrency control system (#3605) ## Improvements - improvement(landing): lighthouse performance and accessibility fixes Medium3/30/2026
v0.6.14## Features - feat: update sidebar and knowledge (#3804) ## Improvements - improvement(sidebar): collapsed sidebar UX, quick-create, hover consistency, and UI polish (#3807) ## Bug Fixes - fix(knowledge): connector spinner race condition + connectors column (#3812) - fix(flyout): align inline rename with non-rename styling (#3811) - fix(knowledge): fix search input flicker on clear and plan display name fallback (#3810) - fix(knowledge): show spinner on connector chip while syncing (#3808) Medium3/27/2026
v0.6.13## Features - feat(generic): add generic resource tab, refactor home structure, and UI polish (#3803) - feat(search): add tables, files, knowledge bases, and jobs to cmd-k search (#3800) - feat(ketch): add Ketch privacy consent integration (#3794) - feat(granola): add Granola meeting notes integration (#3790) - feat: fix rerenders on search input (#3784) - feat(demo-request): block personal email domains (#3786) ## Improvements - improvement(terminal): performance improvements (#3796) ## BugMedium3/27/2026
v0.6.12## Bug Fixes - fix(blog): restore unoptimized prop on blog cover images (#3782) - fix(ui): polish subscription billing settings (#3781) ## Contributors - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.11...v0.6.12)Medium3/26/2026
v0.6.11## Features - feat(misc): skills import, MCP modal, workmark, dispatch modals, collapsed tasks and workflows manipulation, README (#3777) - Feat(logs) upgrade mothership chat messages to error (#3772) - feat(ui): add request a demo modal (#3766) - feat(logs) Add messageId and requestId context to all mothership log messages (#3770) - feat(hubspot): add 27 CRM tools and fix OAuth scope mismatch (#3765) - feat(rippling): add Rippling HR integration with 19 tools (#3764) - feat(agents): generalizeMedium3/26/2026
v0.6.10## Improvements - Revert "improvement(mothership): show continue options on abort (#3746)" (#3746) - improvement(tour): fix tour auto-start logic and standardize selectors (#3751) - improvement(ui): Merge ui components for mothership chat (#3748) ## Bug Fixes - fix(db): use bigint for token counter columns in user_stats (#3755) - fix(knowledge): route connector doc processing through queue instead of fire-and-forget (#3754) - fix(auth): remove captcha from login, fix signup captcha flow (#375Medium3/25/2026
v0.6.9## Features - feat(settings): add video tooltip previews for canvas settings (#3749) - feat(admin): Add assume user capability (#3742) - feat(billing): add appliesTo plan restriction for coupon codes (#3744) - feat(home): auth-aware landing page navigation (#3743) - feat(tour): added product tour (#3703) - feat(table): column drag-and-drop reorder (#3738) ## Improvements - improvement(mothership): show continue options on abort (#3746) ## Bug Fixes - fix(home): voice input text persistence Medium3/25/2026
v0.6.8## Features - feat(quiver): add QuiverAI integration for SVG generation and vectorization (#3728) - feat(slack): add conversations.create and conversations.invite tools (#3720) - feat(sidebar): add right-click context menu to settings nav item (#3715) ## Improvements - improvement(settings): add View Invoices button to subscription billing details (#3726) - improvement(settings): add searchable member selector in integrations and secrets (#3721) - improvement(mothership): add file patch tool Medium3/24/2026
v0.6.7## Features - feat(integrations): add integrationType and tags classification to all blocks (#3702) - feat(auth): add Turnstile captcha + harmony disposable email blocking (#3699) - feat(kb): harden sync engine and add connector audit logging (#3697) - feat(loading) show route specific skeleton UI (#3671) ## Bug Fixes - fix(canvas): correct z-index layering for selected blocks and connected edges (#3698) - fix(kb): max depth exceeded chunks page error (#3695) ## Other Changes - chore(trust)Low3/21/2026
v0.6.6## Features - feat(copilot): add rename operation to user_table tool (#3691) ## Improvements - improvement(toast): match notification styling with countdown ring and consistent design (#3688) ## Bug Fixes - fix(preview): show actual nested workflow name in log snapshots (#3689) - fix(landing): update broken links, change colors (#3687) ## Other Changes - chore(templates): disable templates page and related UI (#3690) ## Contributors - @waleedlatif1 [View changes on GitHub](https://githLow3/20/2026
v0.6.5## Features - feat(okta): add complete Okta identity management integration (#3685) - feat(microsoft-ad): add Azure AD (Entra ID) integration (#3686) - feat(infisical): add Infisical secrets management integration (#3684) ## Improvements - improvement(platform): landing page cleanup, MX cache fixes, and auth util extraction (#3683) - improvement(vfs): update custom glob impl to use micromatch, fix vfs filename regex (#3680) - improvement(platform): added more email validation utils, added intLow3/19/2026
v0.6.4## Features - feat(box): add Box and Box Sign integrations (#3660) - feat(workday): block + tools (#3663) - feat(ashby): add 15 new tools and fix existing tool accuracy (#3662) - feat(docusign): add docusign integration (#3661) ## Improvements - improvement(billing): immediately charge for billing upgrades (#3664) ## Bug Fixes - fix(schedules): deployment bug (#3666) - fix(subflows): subflow-child selection issues, subflow error logs (#3656) ## Contributors - @icecrasher321 - @waleedlatifLow3/19/2026
v0.6.3## Bug Fixes - fix(mothership): mothership-ran workflows show workflow validation errors (#3634) - fix(knowledge): infer MIME type from file extension in create/upsert tools (#3651) - fix(hubspot): add missing tickets and oauth scopes to OAuth config (#3653) ## Contributors - @TheodoreSpeaks - @waleedlatif1 [View changes on GitHub](https://github.com/simstudioai/sim/compare/v0.6.2...v0.6.3)Low3/18/2026
v0.6.2## Features - feat(blog): add v0.6 blog post and email broadcast (#3636) - feat(home): resizable chat/resource panel divider (#3648) - feat(mothership): request ids (#3645) - feat(knowledge): add upsert document operation (#3644) - feat(csp): allow chat UI to be embedded in iframes (#3643) ## Improvements - improvement(landing): added enterprise section (#3637) ## Bug Fixes - fix(db): reduce connection pool sizes to prevent exhaustion (#3649) - fix(logs): add durable execution diagnostics fLow3/18/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

AntennaSimSimulate antenna designs instantly in your browser using NEC2-powered, open-source software with WebAssembly and Docker support.main@2026-06-04
FlowiseBuild AI Agents, Visuallyflowise@3.1.2
mem9Enable AI agents to retain memory across sessions using persistent storage designed for continuous context retention.main@2026-06-05
langgraphjsFramework to build resilient language agents as graphs.@langchain/svelte@1.0.16
claude-memA Claude Code plugin that automatically captures everything Claude does during your coding sessions, compresses it with AI (using Claude's agent-sdk), and injects relevant context back into future sesv13.4.0

More in Frameworks

langchainThe agent engineering platform
deer-flowAn open-source long-horizon SuperAgent harness that researches, codes, and creates. With the help of sandboxes, memories, tools, skill, subagents and message gateway, it handles different levels of ta
tqdmFast, Extensible Progress Meter
einoThe ultimate LLM/AI application development framework in Go.