Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .codex/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ project_doc_fallback_filenames = ["CLAUDE.md"]
# Added by SAM vm-agent for Codex ACP sessions.
sandbox_mode = "danger-full-access"
approval_policy = "never"
model_reasoning_effort = "xhigh"
[mcp_servers.sam-mcp]
url = "https://api.simple-agent-manager.org/mcp"
bearer_token_env_var = "SAM_MCP_TOKEN"
Expand Down
2 changes: 1 addition & 1 deletion apps/www/src/components/Comparison.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const rows = [
{
label: 'Your code runs on',
sam: 'Your cloud (Hetzner, Scaleway, Vultr, Infomaniak, DigitalOcean, UpCloud, GCP)',
sam: 'Instant containers or your cloud (Hetzner, Scaleway, Vultr, Infomaniak, DigitalOcean, UpCloud, GCP)',
managed: 'Their infrastructure',
selfHosted: 'Your infra (AWS, GCP, K8s)',
samWins: true,
Expand Down
4 changes: 2 additions & 2 deletions apps/www/src/components/Features.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const features = [
{
icon: 'chat',
title: 'Chat-Driven Tasks',
description: 'Describe what you need. SAM provisions a VM, builds the devcontainer, and runs the agent.',
description: 'Describe what you need. SAM starts an instant container or provisions a VM with your devcontainer, then runs the agent.',
},
{
icon: 'code',
Expand Down Expand Up @@ -67,7 +67,7 @@ const iconPaths: Record<string, string[]> = {
<span class="section-label">Features</span>
<h2 class="section-title">Agent workflows<br />on infrastructure you own</h2>
<p class="section-subtitle">
Everything you need to run coding agents on your own cloud.
Everything you need to run coding agents in instant containers or on your own cloud.
</p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion apps/www/src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import OptimizedFeatureImage from './OptimizedFeatureImage.astro';
</h1>

<p class="hero-subtitle animate-on-scroll">
Every agent runs in its own isolated container on your cloud.
Every agent runs in an isolated environment — instant container or cloud VM.
Run 5 or 500 in parallel — SAM handles provisioning, scheduling, and cleanup.
</p>

Expand Down
8 changes: 4 additions & 4 deletions apps/www/src/components/HowItWorks.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
const steps = [
{
number: '01',
title: 'Connect Your Cloud',
description: 'Add your Hetzner, Scaleway, Vultr, Infomaniak, DigitalOcean, UpCloud, or GCP credentials. Encrypted per-user.',
title: 'Choose Your Runtime',
description: 'Start with instant containers, hosted compute, or add your Hetzner, Scaleway, Vultr, Infomaniak, DigitalOcean, UpCloud, or GCP credentials.',
},
{
number: '02',
Expand All @@ -13,7 +13,7 @@ const steps = [
{
number: '03',
title: 'Describe Your Task',
description: 'Type what you need. SAM provisions a VM, builds your devcontainer, and runs the agent.',
description: 'Type what you need. SAM prepares an isolated workspace, using your devcontainer when the profile runs on a VM.',
},
{
number: '04',
Expand All @@ -29,7 +29,7 @@ const steps = [
<span class="section-label">How It Works</span>
<h2 class="section-title">From zero to coding agents in minutes</h2>
<p class="section-subtitle">
Four steps to coding agents working through your backlog on cloud VMs.
Four steps to coding agents working through your backlog on instant containers or cloud VMs.
</p>
</div>

Expand Down
Loading