agent-meta-runtime 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.
- agent_meta_runtime-0.0.1/PKG-INFO +27 -0
- agent_meta_runtime-0.0.1/README.md +17 -0
- agent_meta_runtime-0.0.1/docs/Agent_Meta_Runtime_Seed_Harness_Requirements_Design_v0.1.md +6513 -0
- agent_meta_runtime-0.0.1/docs/spec/v0.1-implementation-handoff.md +88 -0
- agent_meta_runtime-0.0.1/docs/spec/v0.1-scope-and-traceability.md +237 -0
- agent_meta_runtime-0.0.1/pyproject.toml +20 -0
- agent_meta_runtime-0.0.1/src/agent_meta_runtime/__init__.py +10 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: agent-meta-runtime
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder package reserving the agent-meta-runtime name on PyPI. Real implementation tracked in docs/Agent_Meta_Runtime_Seed_Harness_Requirements_Design_v0.1.md.
|
|
5
|
+
Author: chadwweng
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Keywords: agent,agent-meta-runtime,placeholder,runtime
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# agent-meta-runtime
|
|
12
|
+
|
|
13
|
+
**Status: placeholder.** This 0.0.1 release exists only to reserve the PyPI name.
|
|
14
|
+
|
|
15
|
+
Real design is in [`docs/Agent_Meta_Runtime_Seed_Harness_Requirements_Design_v0.1.md`](docs/Agent_Meta_Runtime_Seed_Harness_Requirements_Design_v0.1.md).
|
|
16
|
+
|
|
17
|
+
## Install
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
pip install agent-meta-runtime
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
This will install nothing functional until a later version ships.
|
|
24
|
+
|
|
25
|
+
## License
|
|
26
|
+
|
|
27
|
+
MIT.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# agent-meta-runtime
|
|
2
|
+
|
|
3
|
+
**Status: placeholder.** This 0.0.1 release exists only to reserve the PyPI name.
|
|
4
|
+
|
|
5
|
+
Real design is in [`docs/Agent_Meta_Runtime_Seed_Harness_Requirements_Design_v0.1.md`](docs/Agent_Meta_Runtime_Seed_Harness_Requirements_Design_v0.1.md).
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
pip install agent-meta-runtime
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
This will install nothing functional until a later version ships.
|
|
14
|
+
|
|
15
|
+
## License
|
|
16
|
+
|
|
17
|
+
MIT.
|