Skip to content

Commit b8ad42f

Browse files
authored
v0.3.16: domain flip
2 parents 95a8d64 + ae43381 commit b8ad42f

File tree

240 files changed

+854
-704
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

240 files changed

+854
-704
lines changed

.devcontainer/.bashrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sim Studio Development Environment Bashrc
1+
# Sim Development Environment Bashrc
22
# This gets sourced by post-create.sh
33

44
# Enhanced prompt with git branch info
@@ -17,7 +17,7 @@ alias ...="cd ../.."
1717
alias pgc="PGPASSWORD=postgres psql -h db -U postgres -d simstudio"
1818
alias check-db="PGPASSWORD=postgres psql -h db -U postgres -c '\l'"
1919

20-
# Sim Studio specific aliases
20+
# Sim specific aliases
2121
alias logs="cd /workspace/apps/sim && tail -f logs/*.log 2>/dev/null || echo 'No log files found'"
2222
alias sim-start="cd /workspace && bun run dev"
2323
alias sim-migrate="cd /workspace/apps/sim && bunx drizzle-kit push"
@@ -45,7 +45,7 @@ if [ -z "$SIM_WELCOME_SHOWN" ]; then
4545

4646
echo ""
4747
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
48-
echo "🚀 Welcome to Sim Studio development environment!"
48+
echo "🚀 Welcome to Sim development environment!"
4949
echo ""
5050
echo "Available commands:"
5151
echo " sim-start - Start all apps in development mode"

.devcontainer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Sim Studio Development Container
1+
# Sim Development Container
22

33
This directory contains configuration files for Visual Studio Code Dev Containers / GitHub Codespaces. Dev containers provide a consistent, isolated development environment for this project.
44

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "Sim Studio Dev Environment",
2+
"name": "Sim Dev Environment",
33
"dockerComposeFile": "docker-compose.yml",
44
"service": "app",
55
"workspaceFolder": "/workspace",

.devcontainer/post-create.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Exit on error, but with some error handling
44
set -e
55

6-
echo "🔧 Setting up Sim Studio development environment..."
6+
echo "🔧 Setting up Sim development environment..."
77

88
# Change to the workspace root directory
99
cd /workspace
@@ -85,7 +85,7 @@ echo "Waiting for database to be ready..."
8585
# Add additional helpful aliases to .bashrc
8686
cat << EOF >> ~/.bashrc
8787
88-
# Additional Sim Studio Development Aliases
88+
# Additional Sim Development Aliases
8989
alias migrate="cd /workspace/apps/sim && DATABASE_URL=postgresql://postgres:postgres@db:5432/simstudio bunx drizzle-kit push"
9090
alias generate="cd /workspace/apps/sim && bunx drizzle-kit generate"
9191
alias dev="cd /workspace && bun run dev"
@@ -104,7 +104,7 @@ unset SIM_WELCOME_SHOWN
104104

105105
echo ""
106106
echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"
107-
echo "✅ Sim Studio development environment setup complete!"
107+
echo "✅ Sim development environment setup complete!"
108108
echo ""
109109
echo "Your environment is now ready. A new terminal session will show"
110110
echo "available commands. You can start the development server with:"

.github/CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Code of Conduct - Sim Studio
1+
# Code of Conduct - Sim
22

33
## Our Pledge
44

@@ -55,7 +55,7 @@ representative at an online or offline event.
5555
## Enforcement
5656

5757
Instances of abusive, harassing, or otherwise unacceptable behaviour may be
58-
reported to the community leaders responsible for enforcement at <waleed@simstudio.ai>.
58+
reported to the community leaders responsible for enforcement at <waleed@sim.ai>.
5959
All complaints will be reviewed and investigated promptly and fairly.
6060

6161
All community leaders are obligated to respect the privacy and security of the

.github/CONTRIBUTING.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Contributing to Sim Studio
1+
# Contributing to Sim
22

3-
Thank you for your interest in contributing to Sim Studio! Our goal is to provide developers with a powerful, user-friendly platform for building, testing, and optimizing agentic workflows. We welcome contributions in all forms—from bug fixes and design improvements to brand-new features.
3+
Thank you for your interest in contributing to Sim! Our goal is to provide developers with a powerful, user-friendly platform for building, testing, and optimizing agentic workflows. We welcome contributions in all forms—from bug fixes and design improvements to brand-new features.
44

55
> **Project Overview:**
6-
> Sim Studio is a monorepo using Turborepo, containing the main application (`apps/sim/`), documentation (`apps/docs/`), and shared packages (`packages/`). The main application is built with Next.js (app router), ReactFlow, Zustand, Shadcn, and Tailwind CSS. Please ensure your contributions follow our best practices for clarity, maintainability, and consistency.
6+
> Sim is a monorepo using Turborepo, containing the main application (`apps/sim/`), documentation (`apps/docs/`), and shared packages (`packages/`). The main application is built with Next.js (app router), ReactFlow, Zustand, Shadcn, and Tailwind CSS. Please ensure your contributions follow our best practices for clarity, maintainability, and consistency.
77
88
---
99

@@ -130,7 +130,7 @@ To set up your local development environment:
130130

131131
### Option 1: Using NPM Package (Simplest)
132132

133-
The easiest way to run Sim Studio locally is using our NPM package:
133+
The easiest way to run Sim locally is using our NPM package:
134134

135135
```bash
136136
npx simstudio
@@ -140,7 +140,7 @@ After running this command, open [http://localhost:3000/](http://localhost:3000/
140140

141141
#### Options
142142

143-
- `-p, --port <port>`: Specify the port to run Sim Studio on (default: 3000)
143+
- `-p, --port <port>`: Specify the port to run Sim on (default: 3000)
144144
- `--no-pull`: Skip pulling the latest Docker images
145145

146146
#### Requirements
@@ -154,23 +154,23 @@ After running this command, open [http://localhost:3000/](http://localhost:3000/
154154
git clone https://github.com/<your-username>/sim.git
155155
cd sim
156156

157-
# Start Sim Studio
157+
# Start Sim
158158
docker compose -f docker-compose.prod.yml up -d
159159
```
160160

161161
Access the application at [http://localhost:3000/](http://localhost:3000/)
162162

163163
#### Using Local Models
164164

165-
To use local models with Sim Studio:
165+
To use local models with Sim:
166166

167167
1. Pull models using our helper script:
168168

169169
```bash
170170
./apps/sim/scripts/ollama_docker.sh pull <model_name>
171171
```
172172

173-
2. Start Sim Studio with local model support:
173+
2. Start Sim with local model support:
174174

175175
```bash
176176
# With NVIDIA GPU support
@@ -276,7 +276,7 @@ When working on email templates, you can preview them using a local email previe
276276
277277
## Adding New Blocks and Tools
278278
279-
Sim Studio is built in a modular fashion where blocks and tools extend the platform's functionality. To maintain consistency and quality, please follow the guidelines below when adding a new block or tool.
279+
Sim is built in a modular fashion where blocks and tools extend the platform's functionality. To maintain consistency and quality, please follow the guidelines below when adding a new block or tool.
280280
281281
### Where to Add Your Code
282282
@@ -443,7 +443,7 @@ Maintaining consistent naming across the codebase is critical for auto-generatio
443443
444444
### Parameter Visibility System
445445
446-
Sim Studio implements a sophisticated parameter visibility system that controls how parameters are exposed to users and LLMs in agent workflows. Each parameter can have one of four visibility levels:
446+
Sim implements a sophisticated parameter visibility system that controls how parameters are exposed to users and LLMs in agent workflows. Each parameter can have one of four visibility levels:
447447
448448
| Visibility | User Sees | LLM Sees | How It Gets Set |
449449
|-------------|-----------|----------|--------------------------------|
@@ -509,7 +509,7 @@ This project is licensed under the Apache License 2.0. By contributing, you agre
509509
510510
By contributing to this repository, you agree that your contributions are provided under the terms of the Apache License Version 2.0, as included in the LICENSE file of this repository.
511511
512-
In addition, by submitting your contributions, you grant Sim Studio, Inc. ("The Licensor") a perpetual, irrevocable, worldwide, royalty-free, sublicensable right and license to:
512+
In addition, by submitting your contributions, you grant Sim, Inc. ("The Licensor") a perpetual, irrevocable, worldwide, royalty-free, sublicensable right and license to:
513513
514514
- Use, copy, modify, distribute, publicly display, publicly perform, and prepare derivative works of your contributions.
515515
- Incorporate your contributions into other works or products.
@@ -521,4 +521,4 @@ If you do not agree with these terms, you must not contribute your work to this
521521
522522
---
523523
524-
Thank you for taking the time to contribute to Sim Studio. We truly appreciate your efforts and look forward to collaborating with you!
524+
Thank you for taking the time to contribute to Sim. We truly appreciate your efforts and look forward to collaborating with you!

.github/SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
## Reporting a Vulnerability
1010

11-
We take the security of Sim Studio seriously. If you believe you've found a security vulnerability, please follow these steps:
11+
We take the security of Sim seriously. If you believe you've found a security vulnerability, please follow these steps:
1212

1313
1. **Do not disclose the vulnerability publicly** or to any third parties.
1414

15-
2. **Email us directly** at security@simstudio.ai with details of the vulnerability.
15+
2. **Email us directly** at security@sim.ai with details of the vulnerability.
1616

1717
3. **Include the following information** in your report:
1818

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ jobs:
3131
- name: Run tests with coverage
3232
env:
3333
NODE_OPTIONS: '--no-warnings'
34-
NEXT_PUBLIC_APP_URL: 'https://www.simstudio.ai'
34+
NEXT_PUBLIC_APP_URL: 'https://www.sim.ai'
3535
ENCRYPTION_KEY: '7cf672e460e430c1fba707575c2b0e2ad5a99dddf9b7b7e3b5646e630861db1c' # dummy key for CI only
3636
run: bun run test
3737

3838
- name: Build application
3939
env:
4040
NODE_OPTIONS: '--no-warnings'
41-
NEXT_PUBLIC_APP_URL: 'https://www.simstudio.ai'
41+
NEXT_PUBLIC_APP_URL: 'https://www.sim.ai'
4242
STRIPE_SECRET_KEY: 'dummy_key_for_ci_only'
4343
STRIPE_WEBHOOK_SECRET: 'dummy_secret_for_ci_only'
4444
RESEND_API_KEY: 'dummy_key_for_ci_only'

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
Sim Studio
22
Copyright 2025 Sim Studio
33

4-
This product includes software developed for the Sim Studio project.
4+
This product includes software developed for the Sim project.

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
<p align="center">
2-
<img src="apps/sim/public/static/sim.png" alt="Sim Studio Logo" width="500"/>
2+
<img src="apps/sim/public/static/sim.png" alt="Sim Logo" width="500"/>
33
</p>
44

55
<p align="center">
66
<a href="https://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License: Apache-2.0"></a>
77
<a href="https://discord.gg/Hr4UWYEcTT"><img src="https://img.shields.io/badge/Discord-Join%20Server-7289DA?logo=discord&logoColor=white" alt="Discord"></a>
88
<a href="https://x.com/simstudioai"><img src="https://img.shields.io/twitter/follow/simstudioai?style=social" alt="Twitter"></a>
99
<a href="https://github.com/simstudioai/sim/pulls"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs welcome"></a>
10-
<a href="https://docs.simstudio.ai"><img src="https://img.shields.io/badge/Docs-visit%20documentation-blue.svg" alt="Documentation"></a>
10+
<a href="https://docs.sim.ai"><img src="https://img.shields.io/badge/Docs-visit%20documentation-blue.svg" alt="Documentation"></a>
1111
</p>
1212

1313
<p align="center">
14-
<strong>Sim Studio</strong> is a lightweight, user-friendly platform for building AI agent workflows.
14+
<strong>Sim</strong> is a lightweight, user-friendly platform for building AI agent workflows.
1515
</p>
1616

1717
<p align="center">
18-
<img src="apps/sim/public/static/demo.gif" alt="Sim Studio Demo" width="800"/>
18+
<img src="apps/sim/public/static/demo.gif" alt="Sim Demo" width="800"/>
1919
</p>
2020

2121
## Getting Started
2222

23-
1. Use our [cloud-hosted version](https://simstudio.ai)
23+
1. Use our [cloud-hosted version](https://sim.ai)
2424
2. Self-host using one of the methods below
2525

2626
## Self-Hosting Options
2727

2828
### Option 1: NPM Package (Simplest)
2929

30-
The easiest way to run Sim Studio locally is using our [NPM package](https://www.npmjs.com/package/simstudio?activeTab=readme):
30+
The easiest way to run Sim locally is using our [NPM package](https://www.npmjs.com/package/simstudio?activeTab=readme):
3131

3232
```bash
3333
npx simstudio
@@ -37,7 +37,7 @@ After running these commands, open [http://localhost:3000/](http://localhost:300
3737

3838
#### Options
3939

40-
- `-p, --port <port>`: Specify the port to run Sim Studio on (default: 3000)
40+
- `-p, --port <port>`: Specify the port to run Sim on (default: 3000)
4141
- `--no-pull`: Skip pulling the latest Docker images
4242

4343
#### Requirements
@@ -53,23 +53,23 @@ git clone https://github.com/simstudioai/sim.git
5353
# Navigate to the project directory
5454
cd sim
5555

56-
# Start Sim Studio
56+
# Start Sim
5757
docker compose -f docker-compose.prod.yml up -d
5858
```
5959

6060
Access the application at [http://localhost:3000/](http://localhost:3000/)
6161

6262
#### Using Local Models
6363

64-
To use local models with Sim Studio:
64+
To use local models with Sim:
6565

6666
1. Pull models using our helper script:
6767

6868
```bash
6969
./apps/sim/scripts/ollama_docker.sh pull <model_name>
7070
```
7171

72-
2. Start Sim Studio with local model support:
72+
2. Start Sim with local model support:
7373

7474
```bash
7575
# With NVIDIA GPU support
@@ -95,7 +95,7 @@ docker compose -f docker-compose.prod.yml up -d
9595
- [Bun](https://bun.sh/) runtime
9696
- PostgreSQL 12+ with [pgvector extension](https://github.com/pgvector/pgvector) (required for AI embeddings)
9797

98-
**Note:** Sim Studio uses vector embeddings for AI features like knowledge bases and semantic search, which requires the `pgvector` PostgreSQL extension.
98+
**Note:** Sim uses vector embeddings for AI features like knowledge bases and semantic search, which requires the `pgvector` PostgreSQL extension.
9999

100100
1. Clone and install dependencies:
101101

@@ -186,4 +186,4 @@ We welcome contributions! Please see our [Contributing Guide](.github/CONTRIBUTI
186186

187187
This project is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
188188

189-
<p align="center">Made with ❤️ by the Sim Studio Team</p>
189+
<p align="center">Made with ❤️ by the Sim Team</p>

0 commit comments

Comments
 (0)