agentsystems-sdk 0.3.0__py3-none-any.whl → 0.3.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -275,7 +275,7 @@ def setup_agents_from_config(
275
275
  # ----- Artifact volume mounts & env vars --------------------------
276
276
  # Mount full artifacts volume – agent manages its own subdirectories
277
277
  # Artifact permissions are enforced at the application level via agentsystems-config.yml
278
- cmd.extend(["--volume", "local_agentsystems-artifacts:/artifacts"])
278
+ cmd.extend(["--volume", "agentsystems_agentsystems-artifacts:/artifacts"])
279
279
 
280
280
  # gateway proxy env
281
281
  cmd.extend(
@@ -21,7 +21,8 @@ services:
21
21
 
22
22
  volumes:
23
23
  - /var/run/docker.sock:/var/run/docker.sock
24
- - ../../agentsystems-config.yml:/etc/agentsystems/agentsystems-config.yml:ro
24
+ - ../../agentsystems-config.yml:/etc/agentsystems/agentsystems-config.yml
25
+ - ../../.env:/etc/agentsystems/.env
25
26
  - agentsystems-artifacts:/artifacts
26
27
  networks:
27
28
  - agents-int
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentsystems-sdk
3
- Version: 0.3.0
3
+ Version: 0.3.2
4
4
  Summary: AgentSystems Python SDK and CLI
5
5
  Author-email: AgentSystems <support@agentsystems.ai>
6
6
  License-Expression: Apache-2.0
@@ -28,13 +28,26 @@ The AgentSystems **SDK** is a single-install Python package that provides severa
28
28
  The CLI is designed to work **both interactively** (laptops) and **non-interactively** (CI, cloud VMs).
29
29
 
30
30
 
31
- ## Quick install (via pipx)
31
+ ## Quick install
32
+
33
+ ### Automatic installation (Recommended)
34
+
35
+ ```bash
36
+ # Linux & macOS - installs Docker, pipx, and the SDK
37
+ curl -fsSL https://raw.githubusercontent.com/agentsystems/agentsystems/main/install.sh | sh
38
+ ```
39
+
40
+ ### Manual installation
32
41
 
33
42
  ```bash
34
- python3 -m pip install --upgrade pipx # one-time setup
35
- pipx install agentsystems-sdk # installs isolated venv and the `agentsystems` app
43
+ # Install pipx if you don't have it
44
+ python3 -m pip install --upgrade pipx
45
+ pipx ensurepath
36
46
 
37
- # verify
47
+ # Install the SDK
48
+ pipx install agentsystems-sdk
49
+
50
+ # Verify installation
38
51
  agentsystems --version
39
52
  ```
40
53
 
@@ -68,7 +81,7 @@ All commands are available through `agentsystems` (or the shorter alias `agntsys
68
81
 
69
82
  | Command | Description |
70
83
  |---------|-------------|
71
- | `agentsystems init [TARGET_DIR]` | Interactive bootstrap: prompts for Langfuse organization & admin details, generates secure keys, creates `.env` automatically, then copies the built-in deployment template and pulls the required Docker images into `TARGET_DIR`. |
84
+ | `agentsystems init [TARGET_DIR]` | Interactive bootstrap: prompts for Langfuse organization & admin details, generates secure keys, creates `.env` automatically, then copies the built-in deployment template and pulls the required Docker images into `TARGET_DIR`. No Docker authentication required - uses public images. |
72
85
  | `agentsystems up [PROJECT_DIR]` | Start the platform **plus Langfuse tracing stack** (`docker compose up`). **Waits for the gateway _and all agent containers_ to become _healthy_ by default (spinner)**. Pass `--no-wait` to skip readiness wait or `--no-langfuse` to disable tracing. Uses the `.env` generated by `init` (or pass `--env-file PATH`). |
73
86
  | `agentsystems down [PROJECT_DIR]` | Stop containers. Volumes are preserved by default; add `--delete-volumes` (or `--delete-all`) to wipe data. |
74
87
  | `agentsystems logs [PROJECT_DIR]` | Stream or view recent logs (`docker compose logs`). |
@@ -86,9 +99,8 @@ All commands are available through `agentsystems` (or the shorter alias `agntsys
86
99
  --fresh docker compose down -v before starting
87
100
  --env-file PATH Pass a custom .env file to Compose
88
101
  --wait / --no-wait Wait for gateway readiness (default: --wait)
89
- --docker-token TEXT Docker Hub Org Access Token (env `DOCKER_OAT`)
90
- --no-login Skip Docker login even if token env is set
91
102
  --no-langfuse Skip the Langfuse tracing stack (core services only)
103
+ --agents MODE Agent startup mode: none, create, or all (default: create)
92
104
  ```
93
105
 
94
106
  Run `agentsystems up --help` for the authoritative list.
@@ -217,28 +229,29 @@ See the [agent-template](https://github.com/agentsystems/agent-template) for a c
217
229
 
218
230
  ---
219
231
 
220
- ### `init` options
232
+ ### `init` details
221
233
 
222
- ```
223
- --docker-token TEXT Docker Org Access Token (env `DOCKER_OAT`)
224
- ```
234
+ The init command:
235
+ 1. Prompts for Langfuse organization and admin credentials (interactive mode)
236
+ 2. Generates secure keys automatically
237
+ 3. Creates `.env` file with all configuration
238
+ 4. Pulls required Docker images from public registries (no authentication needed)
225
239
 
226
- If a flag is omitted the CLI falls back to environment variables / `.env`. The command always prompts for Langfuse organization, admin user, and password (interactive mode) and generates secure keys automatically. Docker token is only requested if the unauthenticated pull fails.
240
+ The core platform images are publicly available on GitHub Container Registry:
241
+ - `ghcr.io/agentsystems/agent-control-plane:latest`
227
242
 
228
243
  ### Example: interactive laptop
229
244
 
230
245
  ```bash
231
246
  agentsystems init
232
- # prompts for directory and, only if needed, tokens
247
+ # prompts for directory and Langfuse setup
233
248
  ```
234
249
 
235
250
  ### Example: scripted cloud VM / CI
236
251
 
237
252
  ```bash
238
- export DOCKER_OAT=st_xxx # or use --docker-token
239
-
240
- agentsystems init /opt/agentsystems/engine \
241
- --docker-token "$DOCKER_OAT"
253
+ agentsystems init /opt/agentsystems/engine
254
+ # Non-interactive mode - uses defaults for Langfuse
242
255
  ```
243
256
 
244
257
  ---
@@ -12,7 +12,7 @@ agentsystems_sdk/commands/logs.py,sha256=2BpoXuQr_Vq_ou7oj1x-oYC552enWZiuKqoOEJO
12
12
  agentsystems_sdk/commands/restart.py,sha256=-UBZyHMfyQeG2pl-Mtff3cM6ziUvHrJVgqKl7sVWD0o,1923
13
13
  agentsystems_sdk/commands/run.py,sha256=3ptW48sq4APvY05AvCmBTdqcRfS3puERiFuInE2ddJ4,5440
14
14
  agentsystems_sdk/commands/status.py,sha256=C-9-eLG_gbDB4T69g4B3QjT41ASOZWjbEZydn2kcXM4,876
15
- agentsystems_sdk/commands/up.py,sha256=vYuir4s1-LeNjUIZLbSXSxmAMrM9xxz1sPDyopLzhzo,16695
15
+ agentsystems_sdk/commands/up.py,sha256=dy0a58DubwznbongbjYRMXUUZdVHvIzkmjW68fXMwPY,16702
16
16
  agentsystems_sdk/deployments_scaffold/.env.example,sha256=RBRZicUDHCnpozFMgT__IceUV69B7WNLUXHElkcXCD8,634
17
17
  agentsystems_sdk/deployments_scaffold/CONTRIBUTING.md,sha256=UgQ-CETCvOiMRszSxPBQURWJkAuAj-KwO42V7csQe1I,1145
18
18
  agentsystems_sdk/deployments_scaffold/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
@@ -22,16 +22,16 @@ agentsystems_sdk/deployments_scaffold/README.md,sha256=RWgvaBnfnTTq3521yBTyWgy-T
22
22
  agentsystems_sdk/deployments_scaffold/agentsystems-config.yml,sha256=U3W1y-6Mqc_A2mmcStITd3IRNOqMIhmMyFBo_C_VLVM,2125
23
23
  agentsystems_sdk/deployments_scaffold/requirements-dev.txt,sha256=6jW_q7PKw7DDxV1DhSONOdVIjesz5jaQgmhFa82qDYg,64
24
24
  agentsystems_sdk/deployments_scaffold/compose/langfuse/docker-compose.yml,sha256=Q8n3vBBfrbWRVeVhsnVdHIdrGpHWUUbI-_ZD4f6tMRs,4871
25
- agentsystems_sdk/deployments_scaffold/compose/local/docker-compose.yml,sha256=jYDQNDrgavxucUU2mupUqDpYoK10yUI7-CfDjPUUldw,1688
25
+ agentsystems_sdk/deployments_scaffold/compose/local/docker-compose.yml,sha256=JhXMwSdwJJw8e86iV-2N0gtXQolB2PSUjcbUOqLDBYQ,1727
26
26
  agentsystems_sdk/deployments_scaffold/compose/local/init-artifacts-volume.sh,sha256=zyDyuV-VtbXjA6Dybk2G6DOAgpKF0uKQnCYQ2NzATgc,1535
27
27
  agentsystems_sdk/deployments_scaffold/compose/local/db-backup/Dockerfile,sha256=SE1sS60cXGKGovQxWTLfzRk5HR-mYCO7_Y3IIN-96U4,305
28
28
  agentsystems_sdk/deployments_scaffold/compose/local/db-backup/entrypoint.sh,sha256=7as7UNRCR5ziTOUWJGHtPgCb70oNLImWmGJsgTy0t-A,2462
29
29
  agentsystems_sdk/deployments_scaffold/compose/local/postgres-init/audit.sql,sha256=96812AZ2Tm57rmIi5de2nsAwxnn_AkJmavJgBn_MKKE,1796
30
30
  agentsystems_sdk/deployments_scaffold/schema/agentsystems-config.schema.json,sha256=fhZfE_fVSbv0vYvh9JT5EZC2XYjp9v54cP0UK6hH18A,1374
31
- agentsystems_sdk-0.3.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
32
- agentsystems_sdk-0.3.0.dist-info/licenses/NOTICE,sha256=SGMFwyEoZ6NG19ZrdvwYt43lig12rEl5z8XvWMGej6c,918
33
- agentsystems_sdk-0.3.0.dist-info/METADATA,sha256=PBvRG2F6q4IIqdJ36ji4UYBHYK6_Ng9-z3Hq_qpTO-c,11489
34
- agentsystems_sdk-0.3.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
35
- agentsystems_sdk-0.3.0.dist-info/entry_points.txt,sha256=0lejF8v40DAB0D2612UWLLA3e1Ux8TyyLU6yJc0vQkQ,93
36
- agentsystems_sdk-0.3.0.dist-info/top_level.txt,sha256=nkHK6IHAO6-yoZJukUr0CruzkP8weBKraPnsj2FmDV8,17
37
- agentsystems_sdk-0.3.0.dist-info/RECORD,,
31
+ agentsystems_sdk-0.3.2.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
32
+ agentsystems_sdk-0.3.2.dist-info/licenses/NOTICE,sha256=SGMFwyEoZ6NG19ZrdvwYt43lig12rEl5z8XvWMGej6c,918
33
+ agentsystems_sdk-0.3.2.dist-info/METADATA,sha256=CeJDnqx660HETlim8ESx2KzjnweKGLaO70ijSFHoGYQ,11687
34
+ agentsystems_sdk-0.3.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
35
+ agentsystems_sdk-0.3.2.dist-info/entry_points.txt,sha256=0lejF8v40DAB0D2612UWLLA3e1Ux8TyyLU6yJc0vQkQ,93
36
+ agentsystems_sdk-0.3.2.dist-info/top_level.txt,sha256=nkHK6IHAO6-yoZJukUr0CruzkP8weBKraPnsj2FmDV8,17
37
+ agentsystems_sdk-0.3.2.dist-info/RECORD,,