agent-orchard 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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ondrej Krajicek
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,50 @@
1
+ Metadata-Version: 2.4
2
+ Name: agent-orchard
3
+ Version: 0.0.1
4
+ Summary: Agent orchestration patterns over long-running coding agents
5
+ Keywords: agents,orchestration,coding-agents,fleet
6
+ Author: Ondrej Krajicek
7
+ Author-email: Ondrej Krajicek <ondrej.krajicek@ideastatica.com>
8
+ License-Expression: MIT
9
+ License-File: LICENSE
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Topic :: Software Development :: Build Tools
15
+ Requires-Python: >=3.12
16
+ Project-URL: Homepage, https://github.com/ondrasek/agent-orchard
17
+ Project-URL: Repository, https://github.com/ondrasek/agent-orchard
18
+ Description-Content-Type: text/markdown
19
+
20
+ # agent-orchard
21
+
22
+ Agent orchestration patterns over long-running coding agents — driving agents such as
23
+ `pi-coding-agent`, Claude Code, Codex and opencode as a supervised fleet rather than as
24
+ one-off interactive sessions.
25
+
26
+ **Status: placeholder.** This release reserves the name on PyPI and establishes the
27
+ release pipeline. No orchestration is implemented yet.
28
+
29
+ The sibling project [`agent-container`](https://github.com/ondrasek/agent-container)
30
+ provides the runtime that agents run in; this project composes and supervises a fleet of
31
+ them. See `CLAUDE.md` for the boundary and `.specify/memory/constitution.md` for the
32
+ binding design principles.
33
+
34
+ ## Install
35
+
36
+ ```sh
37
+ uv tool install agent-orchard
38
+ ```
39
+
40
+ ## Develop
41
+
42
+ ```sh
43
+ uv sync # create the environment
44
+ uv run agent-orchard
45
+ uv build # sdist + wheel into dist/
46
+ ```
47
+
48
+ ## License
49
+
50
+ MIT
@@ -0,0 +1,31 @@
1
+ # agent-orchard
2
+
3
+ Agent orchestration patterns over long-running coding agents — driving agents such as
4
+ `pi-coding-agent`, Claude Code, Codex and opencode as a supervised fleet rather than as
5
+ one-off interactive sessions.
6
+
7
+ **Status: placeholder.** This release reserves the name on PyPI and establishes the
8
+ release pipeline. No orchestration is implemented yet.
9
+
10
+ The sibling project [`agent-container`](https://github.com/ondrasek/agent-container)
11
+ provides the runtime that agents run in; this project composes and supervises a fleet of
12
+ them. See `CLAUDE.md` for the boundary and `.specify/memory/constitution.md` for the
13
+ binding design principles.
14
+
15
+ ## Install
16
+
17
+ ```sh
18
+ uv tool install agent-orchard
19
+ ```
20
+
21
+ ## Develop
22
+
23
+ ```sh
24
+ uv sync # create the environment
25
+ uv run agent-orchard
26
+ uv build # sdist + wheel into dist/
27
+ ```
28
+
29
+ ## License
30
+
31
+ MIT
@@ -0,0 +1,37 @@
1
+ [project]
2
+ name = "agent-orchard"
3
+ version = "0.0.1"
4
+ description = "Agent orchestration patterns over long-running coding agents"
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ license = "MIT"
8
+ license-files = ["LICENSE"]
9
+ keywords = [
10
+ "agents",
11
+ "orchestration",
12
+ "coding-agents",
13
+ "fleet",
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 1 - Planning",
17
+ "Intended Audience :: Developers",
18
+ "Programming Language :: Python :: 3.12",
19
+ "Programming Language :: Python :: 3.13",
20
+ "Topic :: Software Development :: Build Tools",
21
+ ]
22
+ dependencies = []
23
+
24
+ [[project.authors]]
25
+ name = "Ondrej Krajicek"
26
+ email = "ondrej.krajicek@ideastatica.com"
27
+
28
+ [project.urls]
29
+ Homepage = "https://github.com/ondrasek/agent-orchard"
30
+ Repository = "https://github.com/ondrasek/agent-orchard"
31
+
32
+ [project.scripts]
33
+ agent-orchard = "agent_orchard:main"
34
+
35
+ [build-system]
36
+ requires = ["uv_build>=0.12.16,<0.13.0"]
37
+ build-backend = "uv_build"
@@ -0,0 +1,31 @@
1
+ [project]
2
+ name = "agent-orchard"
3
+ version = "0.0.1"
4
+ description = "Agent orchestration patterns over long-running coding agents"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Ondrej Krajicek", email = "ondrej.krajicek@ideastatica.com" }
8
+ ]
9
+ requires-python = ">=3.12"
10
+ license = "MIT"
11
+ license-files = ["LICENSE"]
12
+ keywords = ["agents", "orchestration", "coding-agents", "fleet"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Intended Audience :: Developers",
16
+ "Programming Language :: Python :: 3.12",
17
+ "Programming Language :: Python :: 3.13",
18
+ "Topic :: Software Development :: Build Tools",
19
+ ]
20
+ dependencies = []
21
+
22
+ [project.urls]
23
+ Homepage = "https://github.com/ondrasek/agent-orchard"
24
+ Repository = "https://github.com/ondrasek/agent-orchard"
25
+
26
+ [project.scripts]
27
+ agent-orchard = "agent_orchard:main"
28
+
29
+ [build-system]
30
+ requires = ["uv_build>=0.12.16,<0.13.0"]
31
+ build-backend = "uv_build"
@@ -0,0 +1,10 @@
1
+ """agent-orchard — orchestration patterns over long-running coding agents.
2
+
3
+ No orchestration is implemented yet; see CLAUDE.md and .specify/memory/constitution.md.
4
+ """
5
+
6
+ __version__ = "0.0.1"
7
+
8
+
9
+ def main() -> None:
10
+ print(f"agent-orchard {__version__} — no orchestration implemented yet")