agentsystems-sdk 0.4.9__tar.gz → 0.5.0__tar.gz

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.
Files changed (64) hide show
  1. {agentsystems_sdk-0.4.9/agentsystems_sdk.egg-info → agentsystems_sdk-0.5.0}/PKG-INFO +18 -15
  2. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/README.md +17 -14
  3. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/up.py +112 -0
  4. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/README.md +3 -3
  5. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/licenses/python/ATTRIBUTIONS.md +6 -6
  6. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/licenses/python/THIRD_PARTY_LICENSES.json +6 -6
  7. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/licenses/python/THIRD_PARTY_REQUIREMENTS.txt +4 -4
  8. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0/agentsystems_sdk.egg-info}/PKG-INFO +18 -15
  9. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/pyproject.toml +1 -1
  10. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/LICENSE +0 -0
  11. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/MANIFEST.in +0 -0
  12. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/NOTICE +0 -0
  13. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/__init__.py +0 -0
  14. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/cli.py +0 -0
  15. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/__init__.py +0 -0
  16. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/artifacts.py +0 -0
  17. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/clean.py +0 -0
  18. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/down.py +0 -0
  19. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/init.py +0 -0
  20. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/logs.py +0 -0
  21. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/restart.py +0 -0
  22. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/run.py +0 -0
  23. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/status.py +0 -0
  24. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/update.py +0 -0
  25. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/commands/version.py +0 -0
  26. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/config.py +0 -0
  27. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/.env.example +0 -0
  28. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/CONTRIBUTING.md +0 -0
  29. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/LICENSE +0 -0
  30. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/Makefile +0 -0
  31. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/NOTICE +0 -0
  32. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/agentsystems-config.yml +0 -0
  33. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/compose/langfuse/docker-compose.yml +0 -0
  34. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/compose/local/db-backup/Dockerfile +0 -0
  35. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/compose/local/db-backup/entrypoint.sh +0 -0
  36. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/compose/local/docker-compose.yml +0 -0
  37. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/compose/local/init-artifacts-volume.sh +0 -0
  38. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/compose/local/postgres-init/audit.sql +0 -0
  39. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/requirements-dev.txt +0 -0
  40. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/deployments_scaffold/schema/agentsystems-config.schema.json +0 -0
  41. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/progress_tracker.py +0 -0
  42. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk/utils.py +0 -0
  43. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk.egg-info/SOURCES.txt +0 -0
  44. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk.egg-info/dependency_links.txt +0 -0
  45. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk.egg-info/entry_points.txt +0 -0
  46. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk.egg-info/requires.txt +0 -0
  47. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/agentsystems_sdk.egg-info/top_level.txt +0 -0
  48. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/setup.cfg +0 -0
  49. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli.py +0 -0
  50. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_artifacts.py +0 -0
  51. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_clean.py +0 -0
  52. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_down.py +0 -0
  53. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_init.py +0 -0
  54. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_logs.py +0 -0
  55. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_main.py +0 -0
  56. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_restart.py +0 -0
  57. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_run.py +0 -0
  58. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_status.py +0 -0
  59. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_cli_up.py +0 -0
  60. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_config.py +0 -0
  61. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_config_errors.py +0 -0
  62. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_init.py +0 -0
  63. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_progress.py +0 -0
  64. {agentsystems_sdk-0.4.9 → agentsystems_sdk-0.5.0}/tests/test_utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentsystems-sdk
3
- Version: 0.4.9
3
+ Version: 0.5.0
4
4
  Summary: AgentSystems Python SDK and CLI
5
5
  Author-email: AgentSystems <support@agentsystems.ai>
6
6
  License-Expression: Apache-2.0
@@ -18,8 +18,15 @@ Dynamic: license-file
18
18
 
19
19
  # AgentSystems SDK & CLI
20
20
 
21
+ [![GitHub stars](https://img.shields.io/github/stars/agentsystems/agentsystems?style=flat-square&logo=github)](https://github.com/agentsystems/agentsystems/stargazers)
21
22
  [![CI](https://github.com/agentsystems/agentsystems-sdk/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/agentsystems/agentsystems-sdk/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/agentsystems/agentsystems-sdk/branch/main/graph/badge.svg?token=25Mahs4a96)](https://codecov.io/gh/agentsystems/agentsystems-sdk)
22
23
 
24
+ > [!NOTE]
25
+ > **Public Beta** - Part of the AgentSystems platform. Official public launch September 15, 2025.
26
+ > ⭐ [**Star the main repository**](https://github.com/agentsystems/agentsystems) to show your support!
27
+
28
+ > This is the **CLI and deployment tool** for AgentSystems. See the [main repository](https://github.com/agentsystems/agentsystems) for platform overview and documentation.
29
+
23
30
  The AgentSystems **SDK** is a single-install Python package that provides several components:
24
31
 
25
32
  * `agentsystems` — a polished command-line interface for bootstrapping and operating an AgentSystems deployment.
@@ -81,14 +88,15 @@ All commands are available through `agentsystems` (or the shorter alias `agntsys
81
88
 
82
89
  | Command | Description |
83
90
  |---------|-------------|
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. |
91
+ | `agentsystems init [TARGET_DIR]` | Interactive bootstrap: prompts for Langfuse organization & admin details, generates 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. |
85
92
  | `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`). |
86
93
  | `agentsystems down [PROJECT_DIR]` | Stop containers. Volumes are preserved by default; add `--delete-volumes` (or `--delete-all`) to wipe data. |
87
94
  | `agentsystems logs [PROJECT_DIR]` | Stream or view recent logs (`docker compose logs`). |
88
95
  | `agentsystems status [PROJECT_DIR]` | List running containers and state (`docker compose ps`). |
89
96
  | `agentsystems restart [PROJECT_DIR]` | Quick bounce (`down` → `up`). **Waits for readiness by default**. Pass `--no-wait` to skip. **Requires `.env`**. |
90
- | `agentsystems info` | Show environment diagnostics (SDK, Python, Docker). |
91
97
  | `agentsystems version` | Show the installed SDK version. |
98
+ | `agentsystems versions` | Show version information for all AgentSystems components. |
99
+ | `agentsystems clean` | Clean up deployment artifacts and containers. |
92
100
  | `agentsystems artifacts-path THREAD_ID [REL_PATH]` | Resolve a path inside the shared artifacts volume using thread-centric structure. |
93
101
  | `agentsystems run AGENT PAYLOAD` | Invoke an agent with JSON payload and optional file uploads, stream progress, and return results. |
94
102
  | `agentsystems update [PROJECT_DIR]` | Update core platform images (agent-control-plane, agentsystems-ui) to latest versions. Faster than re-running `up` when you only need to update platform components. |
@@ -201,7 +209,7 @@ When deploying agents through `agentsystems-config.yml`, the CLI automatically:
201
209
  1. **Mounts artifacts volume**: All agents get `/artifacts` mounted with proper permissions
202
210
  2. **Creates thread directories**: Gateway creates `/artifacts/{thread-id}/{in,out}/` as needed
203
211
  3. **Handles file uploads**: Gateway saves uploaded files to `/artifacts/{thread-id}/in/`
204
- 4. **Manages permissions**: Ensures agents (UID 1001) can read/write artifacts
212
+ 4. **Manages permissions**: Attempts to configure agents (UID 1001) for artifact access
205
213
 
206
214
  ### Agent Development
207
215
 
@@ -234,7 +242,7 @@ See the [agent-template](https://github.com/agentsystems/agent-template) for a c
234
242
 
235
243
  The init command:
236
244
  1. Prompts for Langfuse organization and admin credentials (interactive mode)
237
- 2. Generates secure keys automatically
245
+ 2. Generates keys automatically
238
246
  3. Creates `.env` file with all configuration
239
247
  4. Pulls required Docker images from public registries (no authentication needed)
240
248
 
@@ -282,22 +290,13 @@ When you run `agentsystems up` the CLI logs in to each **enabled** connection us
282
290
  ---
283
291
  ## Environment variables & `.env`
284
292
 
285
- Docker Hub token *must* include the "Read public repositories" permission so pulls for `postgres`, `redis`, etc. succeed.
286
293
  > Note: `LANGFUSE_HOST`, `LANGFUSE_PUBLIC_KEY`, and `LANGFUSE_SECRET_KEY` are written *without* quotes so they are passed correctly into Docker containers. If you edit `.env` manually, ensure these three remain unquoted.
287
- | Variable | Purpose |
288
- |----------|---------|
289
- | `DOCKER_OAT` | Docker Hub Org Access Token for `agentsystems` org |
290
294
 
291
295
  The `.env` file is generated automatically by `agentsystems init`. It contains both runtime vars and a temporary set of `LANGFUSE_INIT_*` variables used on the very first startup. On the first successful `agentsystems up` these init variables are commented out and moved to the bottom of the file so they don’t confuse future edits.
292
296
  You can still keep them for reference or delete them entirely.
293
297
 
294
298
  > Note: `LANGFUSE_HOST`, `LANGFUSE_PUBLIC_KEY`, and `LANGFUSE_SECRET_KEY` are written *without* quotes so they are passed correctly into Docker containers. If you edit `.env` manually, ensure these three remain unquoted.
295
299
 
296
- You may also set or override tokens manually if you prefer:
297
-
298
- ```ini
299
- DOCKER_OAT=st_xxx
300
- ```
301
300
 
302
301
  ---
303
302
  ## Updating / upgrading
@@ -311,7 +310,7 @@ pipx reinstall --editable .
311
310
  ---
312
311
  ## Security notes
313
312
 
314
- * The CLI never prints your secrets. GitHub PATs are masked and Docker login uses `--password-stdin`.
313
+ * The CLI is designed not to print secret values. GitHub PATs are masked and Docker login uses `--password-stdin`.
315
314
  * Delete tokens / `.env` after the resources become public.
316
315
 
317
316
  ---
@@ -319,3 +318,7 @@ pipx reinstall --editable .
319
318
 
320
319
  Open an issue or discussion in the private GitHub repository.
321
320
  Contributions welcome—see [CONTRIBUTING.md](CONTRIBUTING.md).
321
+
322
+ ## License
323
+
324
+ Licensed under the [Apache-2.0 license](./LICENSE).
@@ -1,7 +1,14 @@
1
1
  # AgentSystems SDK & CLI
2
2
 
3
+ [![GitHub stars](https://img.shields.io/github/stars/agentsystems/agentsystems?style=flat-square&logo=github)](https://github.com/agentsystems/agentsystems/stargazers)
3
4
  [![CI](https://github.com/agentsystems/agentsystems-sdk/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/agentsystems/agentsystems-sdk/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/agentsystems/agentsystems-sdk/branch/main/graph/badge.svg?token=25Mahs4a96)](https://codecov.io/gh/agentsystems/agentsystems-sdk)
4
5
 
6
+ > [!NOTE]
7
+ > **Public Beta** - Part of the AgentSystems platform. Official public launch September 15, 2025.
8
+ > ⭐ [**Star the main repository**](https://github.com/agentsystems/agentsystems) to show your support!
9
+
10
+ > This is the **CLI and deployment tool** for AgentSystems. See the [main repository](https://github.com/agentsystems/agentsystems) for platform overview and documentation.
11
+
5
12
  The AgentSystems **SDK** is a single-install Python package that provides several components:
6
13
 
7
14
  * `agentsystems` — a polished command-line interface for bootstrapping and operating an AgentSystems deployment.
@@ -63,14 +70,15 @@ All commands are available through `agentsystems` (or the shorter alias `agntsys
63
70
 
64
71
  | Command | Description |
65
72
  |---------|-------------|
66
- | `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. |
73
+ | `agentsystems init [TARGET_DIR]` | Interactive bootstrap: prompts for Langfuse organization & admin details, generates 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. |
67
74
  | `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`). |
68
75
  | `agentsystems down [PROJECT_DIR]` | Stop containers. Volumes are preserved by default; add `--delete-volumes` (or `--delete-all`) to wipe data. |
69
76
  | `agentsystems logs [PROJECT_DIR]` | Stream or view recent logs (`docker compose logs`). |
70
77
  | `agentsystems status [PROJECT_DIR]` | List running containers and state (`docker compose ps`). |
71
78
  | `agentsystems restart [PROJECT_DIR]` | Quick bounce (`down` → `up`). **Waits for readiness by default**. Pass `--no-wait` to skip. **Requires `.env`**. |
72
- | `agentsystems info` | Show environment diagnostics (SDK, Python, Docker). |
73
79
  | `agentsystems version` | Show the installed SDK version. |
80
+ | `agentsystems versions` | Show version information for all AgentSystems components. |
81
+ | `agentsystems clean` | Clean up deployment artifacts and containers. |
74
82
  | `agentsystems artifacts-path THREAD_ID [REL_PATH]` | Resolve a path inside the shared artifacts volume using thread-centric structure. |
75
83
  | `agentsystems run AGENT PAYLOAD` | Invoke an agent with JSON payload and optional file uploads, stream progress, and return results. |
76
84
  | `agentsystems update [PROJECT_DIR]` | Update core platform images (agent-control-plane, agentsystems-ui) to latest versions. Faster than re-running `up` when you only need to update platform components. |
@@ -183,7 +191,7 @@ When deploying agents through `agentsystems-config.yml`, the CLI automatically:
183
191
  1. **Mounts artifacts volume**: All agents get `/artifacts` mounted with proper permissions
184
192
  2. **Creates thread directories**: Gateway creates `/artifacts/{thread-id}/{in,out}/` as needed
185
193
  3. **Handles file uploads**: Gateway saves uploaded files to `/artifacts/{thread-id}/in/`
186
- 4. **Manages permissions**: Ensures agents (UID 1001) can read/write artifacts
194
+ 4. **Manages permissions**: Attempts to configure agents (UID 1001) for artifact access
187
195
 
188
196
  ### Agent Development
189
197
 
@@ -216,7 +224,7 @@ See the [agent-template](https://github.com/agentsystems/agent-template) for a c
216
224
 
217
225
  The init command:
218
226
  1. Prompts for Langfuse organization and admin credentials (interactive mode)
219
- 2. Generates secure keys automatically
227
+ 2. Generates keys automatically
220
228
  3. Creates `.env` file with all configuration
221
229
  4. Pulls required Docker images from public registries (no authentication needed)
222
230
 
@@ -264,22 +272,13 @@ When you run `agentsystems up` the CLI logs in to each **enabled** connection us
264
272
  ---
265
273
  ## Environment variables & `.env`
266
274
 
267
- Docker Hub token *must* include the "Read public repositories" permission so pulls for `postgres`, `redis`, etc. succeed.
268
275
  > Note: `LANGFUSE_HOST`, `LANGFUSE_PUBLIC_KEY`, and `LANGFUSE_SECRET_KEY` are written *without* quotes so they are passed correctly into Docker containers. If you edit `.env` manually, ensure these three remain unquoted.
269
- | Variable | Purpose |
270
- |----------|---------|
271
- | `DOCKER_OAT` | Docker Hub Org Access Token for `agentsystems` org |
272
276
 
273
277
  The `.env` file is generated automatically by `agentsystems init`. It contains both runtime vars and a temporary set of `LANGFUSE_INIT_*` variables used on the very first startup. On the first successful `agentsystems up` these init variables are commented out and moved to the bottom of the file so they don’t confuse future edits.
274
278
  You can still keep them for reference or delete them entirely.
275
279
 
276
280
  > Note: `LANGFUSE_HOST`, `LANGFUSE_PUBLIC_KEY`, and `LANGFUSE_SECRET_KEY` are written *without* quotes so they are passed correctly into Docker containers. If you edit `.env` manually, ensure these three remain unquoted.
277
281
 
278
- You may also set or override tokens manually if you prefer:
279
-
280
- ```ini
281
- DOCKER_OAT=st_xxx
282
- ```
283
282
 
284
283
  ---
285
284
  ## Updating / upgrading
@@ -293,7 +292,7 @@ pipx reinstall --editable .
293
292
  ---
294
293
  ## Security notes
295
294
 
296
- * The CLI never prints your secrets. GitHub PATs are masked and Docker login uses `--password-stdin`.
295
+ * The CLI is designed not to print secret values. GitHub PATs are masked and Docker login uses `--password-stdin`.
297
296
  * Delete tokens / `.env` after the resources become public.
298
297
 
299
298
  ---
@@ -301,3 +300,7 @@ pipx reinstall --editable .
301
300
 
302
301
  Open an issue or discussion in the private GitHub repository.
303
302
  Contributions welcome—see [CONTRIBUTING.md](CONTRIBUTING.md).
303
+
304
+ ## License
305
+
306
+ Licensed under the [Apache-2.0 license](./LICENSE).
@@ -10,6 +10,8 @@ import time
10
10
  from enum import Enum
11
11
  from typing import Dict, List, Optional
12
12
 
13
+ import requests
14
+
13
15
  import docker
14
16
  import typer
15
17
  from dotenv import load_dotenv
@@ -585,5 +587,115 @@ def up_command(
585
587
  )
586
588
  )
587
589
 
590
+ # Check for missing Ollama models and provide instructions
591
+ has_missing_models = _check_missing_ollama_models(cfg, console)
592
+
593
+ # Display prominent UI link with conditional message
594
+ console.print()
595
+ if has_missing_models:
596
+ ui_message = "🌐 [bold cyan]AgentSystems UI Ready![/bold cyan]\n\nPull models via command above, then visit:\n\n👉 [bold blue]http://localhost:3001[/bold blue]"
597
+ else:
598
+ ui_message = "🌐 [bold cyan]AgentSystems UI Ready![/bold cyan]\n\n👉 [bold blue]http://localhost:3001[/bold blue]"
599
+
600
+ console.print(
601
+ Panel.fit(
602
+ ui_message,
603
+ border_style="cyan",
604
+ padding=(1, 2),
605
+ )
606
+ )
607
+
588
608
  # Cleanup temporary Docker config directory
589
609
  isolated_cfg.cleanup()
610
+
611
+
612
+ def _check_missing_ollama_models(cfg: Config, console: Console) -> bool:
613
+ """Check for missing local Ollama models and provide download instructions.
614
+
615
+ Returns:
616
+ True if any local Ollama models are missing, False otherwise.
617
+ """
618
+ # Read model_connections directly from YAML file since Config class doesn't include it
619
+ try:
620
+ import yaml
621
+
622
+ with open(cfg.path, "r", encoding="utf-8") as f:
623
+ raw_config = yaml.safe_load(f) or {}
624
+ model_connections = raw_config.get("model_connections", {})
625
+ except Exception:
626
+ return False # Skip if can't read config
627
+
628
+ if not model_connections:
629
+ return False
630
+
631
+ # Parse .env file to resolve environment variables
632
+ project_dir = pathlib.Path.cwd()
633
+ env_file = project_dir / ".env"
634
+ env_vars = {}
635
+
636
+ if env_file.exists():
637
+ try:
638
+ with open(env_file, "r", encoding="utf-8") as f:
639
+ for line in f:
640
+ line = line.strip()
641
+ if line and not line.startswith("#") and "=" in line:
642
+ key, value = line.split("=", 1)
643
+ env_vars[key.strip()] = value.strip().strip('"').strip("'")
644
+ except Exception:
645
+ pass # Continue without env vars if parsing fails
646
+
647
+ # Find LOCAL Ollama models in configuration
648
+ local_ollama_models = []
649
+ for model_id, model_config in model_connections.items():
650
+ if model_config.get("hosting_provider") == "ollama" and model_config.get(
651
+ "enabled", True
652
+ ):
653
+ # Check if this is a local Ollama instance
654
+ base_url_env_name = model_config.get("auth", {}).get("base_url")
655
+ if base_url_env_name:
656
+ # Resolve environment variable from .env file or actual env
657
+ base_url = env_vars.get(base_url_env_name) or os.getenv(
658
+ base_url_env_name, ""
659
+ )
660
+ # Only check local Ollama instances (not remote ones)
661
+ if base_url == "http://ollama:11434":
662
+ local_ollama_models.append(
663
+ model_config.get("hosting_provider_model_id", model_id)
664
+ )
665
+
666
+ if not local_ollama_models:
667
+ return False
668
+
669
+ try:
670
+ # Check if local Ollama service is available
671
+ response = requests.get("http://localhost:11434/api/tags", timeout=5)
672
+ if response.status_code != 200:
673
+ return False
674
+
675
+ available_models = {
676
+ model["name"] for model in response.json().get("models", [])
677
+ }
678
+ missing_models = [
679
+ model for model in local_ollama_models if model not in available_models
680
+ ]
681
+
682
+ if missing_models:
683
+ console.print()
684
+ console.print("📋 Run these commands to download missing models:")
685
+ console.print()
686
+ for model in missing_models:
687
+ console.print(
688
+ f"[bold green]docker exec agentsystems-ollama-1 ollama pull {model}[/bold green]"
689
+ )
690
+ console.print()
691
+ console.print(
692
+ "📄 By downloading, you accept the model's terms regarding licensing, usage, etc."
693
+ )
694
+ console.print()
695
+ return True # Found missing models
696
+
697
+ return False # All models present
698
+
699
+ except Exception:
700
+ # Silently skip if Ollama check fails - don't break the user experience
701
+ return False
@@ -71,7 +71,7 @@ The `ci.yml` workflow validates every pull request by performing a full stack bo
71
71
  5. Polls `http://localhost:18080/health` until the Gateway reports **200 OK**.
72
72
  6. Tears the stack down and removes the network.
73
73
 
74
- This ensures future merges cannot break the deployment instructions.
74
+ This helps ensure future merges don't break the deployment instructions.
75
75
 
76
76
  ---
77
77
 
@@ -130,7 +130,7 @@ To add your own agent:
130
130
  * start the container with **the entire `.env`** forwarded via `--env-file`, and
131
131
  * label it so the Gateway auto-discovers the HTTP port.
132
132
 
133
- > **Security tip** – keep your credentials in environment variables (not in the YAML). The SDK passes `.env` to Docker directly; secrets never enter Python process memory.
133
+ > **Security tip** – keep your credentials in environment variables (not in the YAML). The SDK passes `--env-file .env` to Docker directly; the CLI avoids parsing or logging secret values. (As with any process, environment data may exist in memory during execution.)
134
134
 
135
135
  ---
136
136
 
@@ -267,7 +267,7 @@ ENV PORT 8000
267
267
  HEALTHCHECK --interval=10s --retries=3 CMD curl -sf http://localhost:${PORT}/health || exit 1
268
268
  ```
269
269
 
270
- Nothing else is required—Docker marks the container `healthy`, the CLI polls for that status, and the first user request will succeed on the very first try.
270
+ With a healthy container and correct configuration, the first request should succeed. If not, see Troubleshooting.
271
271
 
272
272
  ---
273
273
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  This package relies on the third-party Python packages listed below.
4
4
 
5
- ## agentsystems-sdk 0.4.9
5
+ ## agentsystems-sdk 0.5.0
6
6
  - License: UNKNOWN
7
7
  - URL: UNKNOWN
8
8
  - Author: AgentSystems <support@agentsystems.ai>
@@ -450,7 +450,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
450
450
  ```
451
451
  </details>
452
452
 
453
- ## coverage 7.10.5
453
+ ## coverage 7.10.6
454
454
  - License: Apache-2.0
455
455
  - URL: https://github.com/nedbat/coveragepy
456
456
  - Author: Ned Batchelder and 243 others
@@ -639,7 +639,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
639
639
  ```
640
640
  </details>
641
641
 
642
- ## cryptography 45.0.6
642
+ ## cryptography 45.0.7
643
643
  - License: Apache-2.0 OR BSD-3-Clause
644
644
  - URL: https://github.com/pyca/cryptography
645
645
  - Author: The cryptography developers <cryptography-dev@python.org>
@@ -2128,8 +2128,8 @@ IN THE SOFTWARE.
2128
2128
  ```
2129
2129
  </details>
2130
2130
 
2131
- ## more-itertools 10.7.0
2132
- - License: MIT License
2131
+ ## more-itertools 10.8.0
2132
+ - License: UNKNOWN
2133
2133
  - URL: https://github.com/more-itertools/more-itertools
2134
2134
  - Author: Erik Rose <erikrose@grinchcentral.com>
2135
2135
 
@@ -3488,7 +3488,7 @@ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3488
3488
  ```
3489
3489
  </details>
3490
3490
 
3491
- ## typer 0.16.1
3491
+ ## typer 0.17.3
3492
3492
  - License: MIT License
3493
3493
  - URL: https://github.com/fastapi/typer
3494
3494
  - Author: =?utf-8?q?Sebasti=C3=A1n_Ram=C3=ADrez?= <tiangolo@gmail.com>
@@ -29,7 +29,7 @@
29
29
  "LicenseText": " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n\n APPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\n Copyright [yyyy] [name of copyright owner]\n\n Licensed under the Apache License, Version 2.0 (the \"License\");\n you may not use this file except in compliance with the License.\n You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n",
30
30
  "Name": "agentsystems-sdk",
31
31
  "URL": "UNKNOWN",
32
- "Version": "0.4.9"
32
+ "Version": "0.5.0"
33
33
  },
34
34
  {
35
35
  "Author": "\"Jason R. Coombs\" <jaraco@jaraco.com>",
@@ -93,7 +93,7 @@
93
93
  "LicenseText": "\n Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\n TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n 1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n 2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n 3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n 4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n 5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n 6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n 7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n 8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n 9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\n END OF TERMS AND CONDITIONS\n",
94
94
  "Name": "coverage",
95
95
  "URL": "https://github.com/nedbat/coveragepy",
96
- "Version": "7.10.5"
96
+ "Version": "7.10.6"
97
97
  },
98
98
  {
99
99
  "Author": "The cryptography developers <cryptography-dev@python.org>",
@@ -101,7 +101,7 @@
101
101
  "LicenseText": "This software is made available under the terms of *either* of the licenses\nfound in LICENSE.APACHE or LICENSE.BSD. Contributions to cryptography are made\nunder the terms of *both* these licenses.\n",
102
102
  "Name": "cryptography",
103
103
  "URL": "https://github.com/pyca/cryptography",
104
- "Version": "45.0.6"
104
+ "Version": "45.0.7"
105
105
  },
106
106
  {
107
107
  "Author": "Vinay Sajip",
@@ -233,11 +233,11 @@
233
233
  },
234
234
  {
235
235
  "Author": "Erik Rose <erikrose@grinchcentral.com>",
236
- "License": "MIT License",
236
+ "License": "UNKNOWN",
237
237
  "LicenseText": "Copyright (c) 2012 Erik Rose\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n",
238
238
  "Name": "more-itertools",
239
239
  "URL": "https://github.com/more-itertools/more-itertools",
240
- "Version": "10.7.0"
240
+ "Version": "10.8.0"
241
241
  },
242
242
  {
243
243
  "Author": "messense <messense@icloud.com>",
@@ -397,7 +397,7 @@
397
397
  "LicenseText": "The MIT License (MIT)\n\nCopyright (c) 2019 Sebasti\u00e1n Ram\u00edrez\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n",
398
398
  "Name": "typer",
399
399
  "URL": "https://github.com/fastapi/typer",
400
- "Version": "0.16.1"
400
+ "Version": "0.17.3"
401
401
  },
402
402
  {
403
403
  "Author": "\"Guido van Rossum, Jukka Lehtosalo, \u0141ukasz Langa, Michael Lee\" <levkivskyi@gmail.com>",
@@ -5,8 +5,8 @@ cffi==1.17.1
5
5
  cfgv==3.4.0
6
6
  charset-normalizer==3.4.3
7
7
  click==8.2.1
8
- coverage==7.10.5
9
- cryptography==45.0.6
8
+ coverage==7.10.6
9
+ cryptography==45.0.7
10
10
  distlib==0.4.0
11
11
  docker==7.1.0
12
12
  docutils==0.22
@@ -23,7 +23,7 @@ jeepney==0.9.0
23
23
  keyring==25.6.0
24
24
  markdown-it-py==4.0.0
25
25
  mdurl==0.1.2
26
- more-itertools==10.7.0
26
+ more-itertools==10.8.0
27
27
  nh3==0.3.0
28
28
  nodeenv==1.9.1
29
29
  packaging==25.0
@@ -49,7 +49,7 @@ SecretStorage==3.3.3
49
49
  shellingham==1.5.4
50
50
  tomli==2.2.1
51
51
  twine==6.1.0
52
- typer==0.16.1
52
+ typer==0.17.3
53
53
  typing_extensions==4.15.0
54
54
  urllib3==2.5.0
55
55
  virtualenv==20.34.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentsystems-sdk
3
- Version: 0.4.9
3
+ Version: 0.5.0
4
4
  Summary: AgentSystems Python SDK and CLI
5
5
  Author-email: AgentSystems <support@agentsystems.ai>
6
6
  License-Expression: Apache-2.0
@@ -18,8 +18,15 @@ Dynamic: license-file
18
18
 
19
19
  # AgentSystems SDK & CLI
20
20
 
21
+ [![GitHub stars](https://img.shields.io/github/stars/agentsystems/agentsystems?style=flat-square&logo=github)](https://github.com/agentsystems/agentsystems/stargazers)
21
22
  [![CI](https://github.com/agentsystems/agentsystems-sdk/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/agentsystems/agentsystems-sdk/actions/workflows/ci.yml) [![codecov](https://codecov.io/gh/agentsystems/agentsystems-sdk/branch/main/graph/badge.svg?token=25Mahs4a96)](https://codecov.io/gh/agentsystems/agentsystems-sdk)
22
23
 
24
+ > [!NOTE]
25
+ > **Public Beta** - Part of the AgentSystems platform. Official public launch September 15, 2025.
26
+ > ⭐ [**Star the main repository**](https://github.com/agentsystems/agentsystems) to show your support!
27
+
28
+ > This is the **CLI and deployment tool** for AgentSystems. See the [main repository](https://github.com/agentsystems/agentsystems) for platform overview and documentation.
29
+
23
30
  The AgentSystems **SDK** is a single-install Python package that provides several components:
24
31
 
25
32
  * `agentsystems` — a polished command-line interface for bootstrapping and operating an AgentSystems deployment.
@@ -81,14 +88,15 @@ All commands are available through `agentsystems` (or the shorter alias `agntsys
81
88
 
82
89
  | Command | Description |
83
90
  |---------|-------------|
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. |
91
+ | `agentsystems init [TARGET_DIR]` | Interactive bootstrap: prompts for Langfuse organization & admin details, generates 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. |
85
92
  | `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`). |
86
93
  | `agentsystems down [PROJECT_DIR]` | Stop containers. Volumes are preserved by default; add `--delete-volumes` (or `--delete-all`) to wipe data. |
87
94
  | `agentsystems logs [PROJECT_DIR]` | Stream or view recent logs (`docker compose logs`). |
88
95
  | `agentsystems status [PROJECT_DIR]` | List running containers and state (`docker compose ps`). |
89
96
  | `agentsystems restart [PROJECT_DIR]` | Quick bounce (`down` → `up`). **Waits for readiness by default**. Pass `--no-wait` to skip. **Requires `.env`**. |
90
- | `agentsystems info` | Show environment diagnostics (SDK, Python, Docker). |
91
97
  | `agentsystems version` | Show the installed SDK version. |
98
+ | `agentsystems versions` | Show version information for all AgentSystems components. |
99
+ | `agentsystems clean` | Clean up deployment artifacts and containers. |
92
100
  | `agentsystems artifacts-path THREAD_ID [REL_PATH]` | Resolve a path inside the shared artifacts volume using thread-centric structure. |
93
101
  | `agentsystems run AGENT PAYLOAD` | Invoke an agent with JSON payload and optional file uploads, stream progress, and return results. |
94
102
  | `agentsystems update [PROJECT_DIR]` | Update core platform images (agent-control-plane, agentsystems-ui) to latest versions. Faster than re-running `up` when you only need to update platform components. |
@@ -201,7 +209,7 @@ When deploying agents through `agentsystems-config.yml`, the CLI automatically:
201
209
  1. **Mounts artifacts volume**: All agents get `/artifacts` mounted with proper permissions
202
210
  2. **Creates thread directories**: Gateway creates `/artifacts/{thread-id}/{in,out}/` as needed
203
211
  3. **Handles file uploads**: Gateway saves uploaded files to `/artifacts/{thread-id}/in/`
204
- 4. **Manages permissions**: Ensures agents (UID 1001) can read/write artifacts
212
+ 4. **Manages permissions**: Attempts to configure agents (UID 1001) for artifact access
205
213
 
206
214
  ### Agent Development
207
215
 
@@ -234,7 +242,7 @@ See the [agent-template](https://github.com/agentsystems/agent-template) for a c
234
242
 
235
243
  The init command:
236
244
  1. Prompts for Langfuse organization and admin credentials (interactive mode)
237
- 2. Generates secure keys automatically
245
+ 2. Generates keys automatically
238
246
  3. Creates `.env` file with all configuration
239
247
  4. Pulls required Docker images from public registries (no authentication needed)
240
248
 
@@ -282,22 +290,13 @@ When you run `agentsystems up` the CLI logs in to each **enabled** connection us
282
290
  ---
283
291
  ## Environment variables & `.env`
284
292
 
285
- Docker Hub token *must* include the "Read public repositories" permission so pulls for `postgres`, `redis`, etc. succeed.
286
293
  > Note: `LANGFUSE_HOST`, `LANGFUSE_PUBLIC_KEY`, and `LANGFUSE_SECRET_KEY` are written *without* quotes so they are passed correctly into Docker containers. If you edit `.env` manually, ensure these three remain unquoted.
287
- | Variable | Purpose |
288
- |----------|---------|
289
- | `DOCKER_OAT` | Docker Hub Org Access Token for `agentsystems` org |
290
294
 
291
295
  The `.env` file is generated automatically by `agentsystems init`. It contains both runtime vars and a temporary set of `LANGFUSE_INIT_*` variables used on the very first startup. On the first successful `agentsystems up` these init variables are commented out and moved to the bottom of the file so they don’t confuse future edits.
292
296
  You can still keep them for reference or delete them entirely.
293
297
 
294
298
  > Note: `LANGFUSE_HOST`, `LANGFUSE_PUBLIC_KEY`, and `LANGFUSE_SECRET_KEY` are written *without* quotes so they are passed correctly into Docker containers. If you edit `.env` manually, ensure these three remain unquoted.
295
299
 
296
- You may also set or override tokens manually if you prefer:
297
-
298
- ```ini
299
- DOCKER_OAT=st_xxx
300
- ```
301
300
 
302
301
  ---
303
302
  ## Updating / upgrading
@@ -311,7 +310,7 @@ pipx reinstall --editable .
311
310
  ---
312
311
  ## Security notes
313
312
 
314
- * The CLI never prints your secrets. GitHub PATs are masked and Docker login uses `--password-stdin`.
313
+ * The CLI is designed not to print secret values. GitHub PATs are masked and Docker login uses `--password-stdin`.
315
314
  * Delete tokens / `.env` after the resources become public.
316
315
 
317
316
  ---
@@ -319,3 +318,7 @@ pipx reinstall --editable .
319
318
 
320
319
  Open an issue or discussion in the private GitHub repository.
321
320
  Contributions welcome—see [CONTRIBUTING.md](CONTRIBUTING.md).
321
+
322
+ ## License
323
+
324
+ Licensed under the [Apache-2.0 license](./LICENSE).
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "agentsystems-sdk"
3
- version = "0.4.9"
3
+ version = "0.5.0"
4
4
  description = "AgentSystems Python SDK and CLI"
5
5
  readme = "README.md"
6
6
  authors = [ { name = "AgentSystems", email = "support@agentsystems.ai" } ]