arig 0.0.1__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.
arig-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.4
2
+ Name: arig
3
+ Version: 0.0.1
4
+ Summary: agent rig - batch orchestration for AI coding agents: one idempotent tick, no server, no daemon, no admin rights. (0.0.1 reserves the name; the harness ships here shortly.)
5
+ Author-email: Andrew Stellman <andrew@stellman.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/andrewstellman/arig
8
+ Project-URL: Repository, https://github.com/andrewstellman/arig
9
+ Keywords: agent,orchestration,ai,harness,rig,batch,claude
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Intended Audience :: Developers
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+
19
+ # arig
20
+
21
+ **agent rig** — batch orchestration for AI coding agents (or any job that
22
+ appends JSON lines to a file). `arig` runs and monitors many worker processes
23
+ from inside your existing agent session, driving a deterministic, disk-backed
24
+ state machine **one idempotent tick at a time**. No server, no daemon, no admin
25
+ rights.
26
+
27
+ > Rig up your agents: `arig run plan.json`
28
+
29
+ This `0.0.1` release only reserves the name. The harness ships as **v0.1.0**
30
+ shortly at https://github.com/andrewstellman/arig.
31
+
32
+ Licensed under Apache-2.0.
arig-0.0.1/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # arig
2
+
3
+ **agent rig** — batch orchestration for AI coding agents (or any job that
4
+ appends JSON lines to a file). `arig` runs and monitors many worker processes
5
+ from inside your existing agent session, driving a deterministic, disk-backed
6
+ state machine **one idempotent tick at a time**. No server, no daemon, no admin
7
+ rights.
8
+
9
+ > Rig up your agents: `arig run plan.json`
10
+
11
+ This `0.0.1` release only reserves the name. The harness ships as **v0.1.0**
12
+ shortly at https://github.com/andrewstellman/arig.
13
+
14
+ Licensed under Apache-2.0.
@@ -0,0 +1,8 @@
1
+ """arig - agent rig: batch orchestration for AI coding agents.
2
+
3
+ This is a pre-release name reservation (see __version__). The harness itself -
4
+ a deterministic, disk-backed state machine that runs and monitors many worker
5
+ processes from inside your existing agent session, one idempotent tick at a
6
+ time - ships as v0.1.0 shortly.
7
+ """
8
+ __version__ = "0.0.1"
@@ -0,0 +1,22 @@
1
+ """Pre-release reservation entry point (version from arig.__version__).
2
+
3
+ Prints a placeholder line so `arig` / `arig --version` is a valid installed
4
+ command while the name is reserved on PyPI/npm. Intentionally minimal and
5
+ ASCII-safe; v0.1.0 wires the real tick engine + ticker."""
6
+ from __future__ import annotations
7
+ import sys
8
+
9
+ from arig import __version__
10
+
11
+ _MSG = (f"arig {__version__} - pre-release placeholder; agent rig (batch "
12
+ f"orchestration for AI coding agents) ships here shortly: "
13
+ f"https://github.com/andrewstellman/arig")
14
+
15
+
16
+ def main(argv=None) -> int:
17
+ print(_MSG)
18
+ return 0
19
+
20
+
21
+ if __name__ == "__main__":
22
+ sys.exit(main())
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.4
2
+ Name: arig
3
+ Version: 0.0.1
4
+ Summary: agent rig - batch orchestration for AI coding agents: one idempotent tick, no server, no daemon, no admin rights. (0.0.1 reserves the name; the harness ships here shortly.)
5
+ Author-email: Andrew Stellman <andrew@stellman.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/andrewstellman/arig
8
+ Project-URL: Repository, https://github.com/andrewstellman/arig
9
+ Keywords: agent,orchestration,ai,harness,rig,batch,claude
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: License :: OSI Approved :: Apache Software License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Intended Audience :: Developers
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+
19
+ # arig
20
+
21
+ **agent rig** — batch orchestration for AI coding agents (or any job that
22
+ appends JSON lines to a file). `arig` runs and monitors many worker processes
23
+ from inside your existing agent session, driving a deterministic, disk-backed
24
+ state machine **one idempotent tick at a time**. No server, no daemon, no admin
25
+ rights.
26
+
27
+ > Rig up your agents: `arig run plan.json`
28
+
29
+ This `0.0.1` release only reserves the name. The harness ships as **v0.1.0**
30
+ shortly at https://github.com/andrewstellman/arig.
31
+
32
+ Licensed under Apache-2.0.
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ arig/__init__.py
4
+ arig/_reserve.py
5
+ arig.egg-info/PKG-INFO
6
+ arig.egg-info/SOURCES.txt
7
+ arig.egg-info/dependency_links.txt
8
+ arig.egg-info/entry_points.txt
9
+ arig.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ arig = arig._reserve:main
@@ -0,0 +1 @@
1
+ arig
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "arig"
7
+ version = "0.0.1"
8
+ description = "agent rig - batch orchestration for AI coding agents: one idempotent tick, no server, no daemon, no admin rights. (0.0.1 reserves the name; the harness ships here shortly.)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "Apache-2.0" }
12
+ authors = [{ name = "Andrew Stellman", email = "andrew@stellman.com" }]
13
+ keywords = ["agent", "orchestration", "ai", "harness", "rig", "batch", "claude"]
14
+ classifiers = [
15
+ "Development Status :: 2 - Pre-Alpha",
16
+ "License :: OSI Approved :: Apache Software License",
17
+ "Programming Language :: Python :: 3",
18
+ "Programming Language :: Python :: 3.10",
19
+ "Operating System :: OS Independent",
20
+ "Intended Audience :: Developers",
21
+ ]
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/andrewstellman/arig"
25
+ Repository = "https://github.com/andrewstellman/arig"
26
+
27
+ [project.scripts]
28
+ arig = "arig._reserve:main"
29
+
30
+ [tool.setuptools]
31
+ packages = ["arig"]
arig-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+