You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> If you're looking for a pre-configured, ready-to-use solution, check out the [Python adapter](https://github.com/mavdol/capsule/tree/main/integrations/python-adapter) or [TypeScript adapter](https://github.com/mavdol/capsule/tree/main/integrations/typescript-adapter).
185
+
> If you're looking for a pre-configured, ready-to-use solution, check out the [Python adapter](https://github.com/capsulerun/capsule/tree/main/integrations/python-adapter) or [TypeScript adapter](https://github.com/capsulerun/capsule/tree/main/integrations/typescript-adapter).
Copy file name to clipboardExpand all lines: crates/capsule-cli/docs/README-pypi.md
+4-10Lines changed: 4 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,14 @@
1
-
# capsule-run
2
-
3
-
**A secure, durable runtime for agentic workflows**
1
+
# `capsule`
4
2
5
3
## Overview
6
4
7
-
Capsule is a runtime for coordinating AI agent tasks in isolated environments. It is designed to handle untrusted code execution, long-running workflows, large-scale processing, or even multi-agent systems.
8
-
9
-
Each task runs inside its own WebAssembly sandbox, providing:
5
+
`Capsule` is a runtime for executing untrusted code in isolated environments. Each task runs inside its own WebAssembly sandbox, providing:
10
6
11
7
-**Isolated execution**: Each task runs isolated from your host system
12
8
-**Resource limits**: Set CPU, memory, and timeout limits per task
13
9
-**Automatic retries**: Handle failures without manual intervention
14
10
-**Lifecycle tracking**: Monitor which tasks are running, completed, or failed
15
11
16
-
This enables safe task-level execution of untrusted code within AI agent systems.
Copy file name to clipboardExpand all lines: crates/capsule-sdk/javascript/README.md
+5-11Lines changed: 5 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,14 @@
1
-
# capsule
2
-
3
-
**A secure, durable runtime for agentic workflows**
1
+
# `capsule`
4
2
5
3
## Overview
6
4
7
-
Capsule is a runtime for coordinating AI agent tasks in isolated environments. It is designed to handle untrusted code execution, long-running workflows, large-scale processing, or even multi-agent systems.
8
-
9
-
Each task runs inside its own WebAssembly sandbox, providing:
5
+
```Capsule``` is a runtime for executing untrusted code in isolated environments. Each task runs inside its own WebAssembly sandbox, providing:
10
6
11
7
-**Isolated execution**: Each task runs isolated from your host system
12
8
-**Resource limits**: Set CPU, memory, and timeout limits per task
13
9
-**Automatic retries**: Handle failures without manual intervention
14
10
-**Lifecycle tracking**: Monitor which tasks are running, completed, or failed
15
11
16
-
This enables safe task-level execution of untrusted code within AI agent systems.
17
-
18
12
## Installation
19
13
20
14
```bash
@@ -194,7 +188,7 @@ Create a `capsule.toml` file in your project root to set default options:
194
188
195
189
```toml
196
190
[workflow]
197
-
name = "My AI Workflow"
191
+
name = "My Workflow"
198
192
version = "1.0.0"
199
193
entrypoint = "src/main.ts"# Run `capsule run` without specifying a file
0 commit comments