agentix-runtime-basic 0.1.1__py3-none-any.whl → 0.1.3__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.
@@ -0,0 +1,18 @@
1
+ # System binaries the `agentix.bash` namespace expects on PATH inside
2
+ # the sandbox. `agentix build` discovers this file via
3
+ # `importlib.resources.files('agentix.bash') / 'default.nix'` after
4
+ # `pip install agentix-runtime-basic` lands it next to __init__.py.
5
+ #
6
+ # The function form `{ pkgs }: drv` is the plugin Nix convention: the
7
+ # builder hands every plugin the same Nixpkgs, so all plugins share one
8
+ # revision (no per-plugin version drift).
9
+
10
+ { pkgs }:
11
+
12
+ pkgs.symlinkJoin {
13
+ name = "agentix-bash-sys";
14
+ paths = with pkgs; [
15
+ bashInteractive
16
+ coreutils
17
+ ];
18
+ }
@@ -0,0 +1,13 @@
1
+ # `agentix.files` is pure-Python (stdlib path ops on /workspace), so it
2
+ # brings no system binaries of its own. The file exists for symmetry with
3
+ # `agentix.bash` — `agentix build`'s plugin scanner picks up every
4
+ # `agentix/<short>/default.nix` it finds, and shipping an explicit empty
5
+ # derivation here documents "this namespace deliberately needs nothing"
6
+ # instead of relying on absence.
7
+
8
+ { pkgs }:
9
+
10
+ pkgs.symlinkJoin {
11
+ name = "agentix-files-sys";
12
+ paths = [ ];
13
+ }
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agentix-runtime-basic
3
- Version: 0.1.1
3
+ Version: 0.1.3
4
4
  Summary: Shell + file I/O primitives for Agentix sandboxes
5
5
  Project-URL: Homepage, https://github.com/Agentiix/Agentix-Runtime-Basic
6
6
  Author: Agentiix
7
7
  License: MIT
8
8
  License-File: LICENSE
9
9
  Requires-Python: >=3.11
10
- Requires-Dist: agentixx>=0.1.0
10
+ Requires-Dist: agentixx>=0.1.3
11
11
  Provides-Extra: dev
12
12
  Requires-Dist: pyright>=1.1.380; extra == 'dev'
13
13
  Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
@@ -0,0 +1,9 @@
1
+ agentix/bash/__init__.py,sha256=n39E5fT_ObemG5zYUOH1y9xMK1hnWMIyM9y9cSq58c8,8176
2
+ agentix/files/__init__.py,sha256=54kyYKLE2-wI9Eu_fC9lOSNUmP1AetRjDwgjumdQLxI,4846
3
+ agentix/bash/default.nix,sha256=RW3BfO6SWd2eG-kiXVOZq98Vpir8JxFBjcrFsjUIi4I,571
4
+ agentix/files/default.nix,sha256=vyhEW6eMSOnipOp1PBjbCRjIsAdddkY0bsaqCQDP7cg,471
5
+ agentix_runtime_basic-0.1.3.dist-info/METADATA,sha256=aOrd1eB2RBKH2oLcRbr2g8UqSSiaSPddrrWG2wXQlaw,2102
6
+ agentix_runtime_basic-0.1.3.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
7
+ agentix_runtime_basic-0.1.3.dist-info/entry_points.txt,sha256=yBKDuZJEX0Vi-e-CmwLijw5VmZn3puPBlx3gflhtzfg,62
8
+ agentix_runtime_basic-0.1.3.dist-info/licenses/LICENSE,sha256=mt35xkyIDkKZlEgxp-WYN0zaNDhtZtYtagSi6rMQmXg,1065
9
+ agentix_runtime_basic-0.1.3.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- agentix/bash/__init__.py,sha256=n39E5fT_ObemG5zYUOH1y9xMK1hnWMIyM9y9cSq58c8,8176
2
- agentix/files/__init__.py,sha256=54kyYKLE2-wI9Eu_fC9lOSNUmP1AetRjDwgjumdQLxI,4846
3
- agentix_runtime_basic-0.1.1.dist-info/METADATA,sha256=_0MYs4i4tdo4M-Lsfi2iMN4zV0klJlf7n0-hz8SYDOc,2102
4
- agentix_runtime_basic-0.1.1.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
5
- agentix_runtime_basic-0.1.1.dist-info/entry_points.txt,sha256=yBKDuZJEX0Vi-e-CmwLijw5VmZn3puPBlx3gflhtzfg,62
6
- agentix_runtime_basic-0.1.1.dist-info/licenses/LICENSE,sha256=mt35xkyIDkKZlEgxp-WYN0zaNDhtZtYtagSi6rMQmXg,1065
7
- agentix_runtime_basic-0.1.1.dist-info/RECORD,,