harness-foundation 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.
- harness_foundation-0.0.1/PKG-INFO +43 -0
- harness_foundation-0.0.1/README.md +29 -0
- harness_foundation-0.0.1/pyproject.toml +27 -0
- harness_foundation-0.0.1/setup.cfg +4 -0
- harness_foundation-0.0.1/src/harness_foundation/__init__.py +14 -0
- harness_foundation-0.0.1/src/harness_foundation/py.typed +0 -0
- harness_foundation-0.0.1/src/harness_foundation.egg-info/PKG-INFO +43 -0
- harness_foundation-0.0.1/src/harness_foundation.egg-info/SOURCES.txt +8 -0
- harness_foundation-0.0.1/src/harness_foundation.egg-info/dependency_links.txt +1 -0
- harness_foundation-0.0.1/src/harness_foundation.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: harness-foundation
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The harness that lets a reactive agent work at scale: ordered per-conversation event delivery, mid-run steering and stop, durable records and workspaces, native agents and agents with their own loop under one contract.
|
|
5
|
+
Author: Elena Viter
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/elenaviter/app-ecosystem
|
|
8
|
+
Project-URL: Repository, https://github.com/elenaviter/app-ecosystem
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# harness-foundation
|
|
16
|
+
|
|
17
|
+
The harness that lets a reactive agent work at scale.
|
|
18
|
+
|
|
19
|
+
An agent in production is not a loop on one machine. Conversations run on
|
|
20
|
+
an event bus, a turn can land on any worker, and everything inbound, a
|
|
21
|
+
prompt, a follow-up, an attachment, a stop, an external alert, is an
|
|
22
|
+
event addressed to a conversation, ordered and durable until consumed.
|
|
23
|
+
The harness is the machinery around the agent that makes this hold:
|
|
24
|
+
ordered delivery per conversation, a stop or a new thought reaching the
|
|
25
|
+
agent in the middle of its run, nothing lost, no turn running twice,
|
|
26
|
+
durable records of every turn, fresh workspaces, and trusted exits for
|
|
27
|
+
what the turn produced.
|
|
28
|
+
|
|
29
|
+
The same contract wraps agents that run their own loop, such as LangGraph
|
|
30
|
+
graphs or Claude Code: the existing agent comes in as is, with its own
|
|
31
|
+
loop and its own memory, it keeps its transcript, and the harness puts
|
|
32
|
+
events, workspace and records around it.
|
|
33
|
+
|
|
34
|
+
Scope boundary: the harness owns event delivery, turn lifecycle, records,
|
|
35
|
+
and workspaces. It contains no authority models (those are
|
|
36
|
+
[`prokura`](../prokura/README.md)) and no application behavior. It stands
|
|
37
|
+
on [`app-foundation`](../app-foundation/README.md).
|
|
38
|
+
|
|
39
|
+
**Version 0.0.1 claims the name.** The running implementation lives
|
|
40
|
+
inside [KDCube](https://github.com/kdcube/kdcube) today; extraction
|
|
41
|
+
follows the Prokura one.
|
|
42
|
+
|
|
43
|
+
Home: https://github.com/elenaviter/app-ecosystem
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# harness-foundation
|
|
2
|
+
|
|
3
|
+
The harness that lets a reactive agent work at scale.
|
|
4
|
+
|
|
5
|
+
An agent in production is not a loop on one machine. Conversations run on
|
|
6
|
+
an event bus, a turn can land on any worker, and everything inbound, a
|
|
7
|
+
prompt, a follow-up, an attachment, a stop, an external alert, is an
|
|
8
|
+
event addressed to a conversation, ordered and durable until consumed.
|
|
9
|
+
The harness is the machinery around the agent that makes this hold:
|
|
10
|
+
ordered delivery per conversation, a stop or a new thought reaching the
|
|
11
|
+
agent in the middle of its run, nothing lost, no turn running twice,
|
|
12
|
+
durable records of every turn, fresh workspaces, and trusted exits for
|
|
13
|
+
what the turn produced.
|
|
14
|
+
|
|
15
|
+
The same contract wraps agents that run their own loop, such as LangGraph
|
|
16
|
+
graphs or Claude Code: the existing agent comes in as is, with its own
|
|
17
|
+
loop and its own memory, it keeps its transcript, and the harness puts
|
|
18
|
+
events, workspace and records around it.
|
|
19
|
+
|
|
20
|
+
Scope boundary: the harness owns event delivery, turn lifecycle, records,
|
|
21
|
+
and workspaces. It contains no authority models (those are
|
|
22
|
+
[`prokura`](../prokura/README.md)) and no application behavior. It stands
|
|
23
|
+
on [`app-foundation`](../app-foundation/README.md).
|
|
24
|
+
|
|
25
|
+
**Version 0.0.1 claims the name.** The running implementation lives
|
|
26
|
+
inside [KDCube](https://github.com/kdcube/kdcube) today; extraction
|
|
27
|
+
follows the Prokura one.
|
|
28
|
+
|
|
29
|
+
Home: https://github.com/elenaviter/app-ecosystem
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "harness-foundation"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "The harness that lets a reactive agent work at scale: ordered per-conversation event delivery, mid-run steering and stop, durable records and workspaces, native agents and agents with their own loop under one contract."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [{ name = "Elena Viter" }]
|
|
12
|
+
requires-python = ">=3.10"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Homepage = "https://github.com/elenaviter/app-ecosystem"
|
|
21
|
+
Repository = "https://github.com/elenaviter/app-ecosystem"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
where = ["src"]
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.package-data]
|
|
27
|
+
harness_foundation = ["py.typed"]
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""harness-foundation: the harness that lets a reactive agent work at scale.
|
|
2
|
+
|
|
3
|
+
Ordered per-conversation event delivery, mid-run steering and stop,
|
|
4
|
+
durable records and workspaces, and one contract for native agents and
|
|
5
|
+
agents that run their own loop (such as LangGraph or Claude Code): the
|
|
6
|
+
existing agent comes in as is and the harness puts events, workspace and
|
|
7
|
+
records around it. No authority models (those are `prokura`), no
|
|
8
|
+
application behavior; it stands on `app-foundation`.
|
|
9
|
+
|
|
10
|
+
Version 0.0.1 claims the name; the running implementation lives inside
|
|
11
|
+
KDCube today. Status: https://github.com/elenaviter/app-ecosystem
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
__version__ = "0.0.1"
|
|
File without changes
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: harness-foundation
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: The harness that lets a reactive agent work at scale: ordered per-conversation event delivery, mid-run steering and stop, durable records and workspaces, native agents and agents with their own loop under one contract.
|
|
5
|
+
Author: Elena Viter
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/elenaviter/app-ecosystem
|
|
8
|
+
Project-URL: Repository, https://github.com/elenaviter/app-ecosystem
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# harness-foundation
|
|
16
|
+
|
|
17
|
+
The harness that lets a reactive agent work at scale.
|
|
18
|
+
|
|
19
|
+
An agent in production is not a loop on one machine. Conversations run on
|
|
20
|
+
an event bus, a turn can land on any worker, and everything inbound, a
|
|
21
|
+
prompt, a follow-up, an attachment, a stop, an external alert, is an
|
|
22
|
+
event addressed to a conversation, ordered and durable until consumed.
|
|
23
|
+
The harness is the machinery around the agent that makes this hold:
|
|
24
|
+
ordered delivery per conversation, a stop or a new thought reaching the
|
|
25
|
+
agent in the middle of its run, nothing lost, no turn running twice,
|
|
26
|
+
durable records of every turn, fresh workspaces, and trusted exits for
|
|
27
|
+
what the turn produced.
|
|
28
|
+
|
|
29
|
+
The same contract wraps agents that run their own loop, such as LangGraph
|
|
30
|
+
graphs or Claude Code: the existing agent comes in as is, with its own
|
|
31
|
+
loop and its own memory, it keeps its transcript, and the harness puts
|
|
32
|
+
events, workspace and records around it.
|
|
33
|
+
|
|
34
|
+
Scope boundary: the harness owns event delivery, turn lifecycle, records,
|
|
35
|
+
and workspaces. It contains no authority models (those are
|
|
36
|
+
[`prokura`](../prokura/README.md)) and no application behavior. It stands
|
|
37
|
+
on [`app-foundation`](../app-foundation/README.md).
|
|
38
|
+
|
|
39
|
+
**Version 0.0.1 claims the name.** The running implementation lives
|
|
40
|
+
inside [KDCube](https://github.com/kdcube/kdcube) today; extraction
|
|
41
|
+
follows the Prokura one.
|
|
42
|
+
|
|
43
|
+
Home: https://github.com/elenaviter/app-ecosystem
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/harness_foundation/__init__.py
|
|
4
|
+
src/harness_foundation/py.typed
|
|
5
|
+
src/harness_foundation.egg-info/PKG-INFO
|
|
6
|
+
src/harness_foundation.egg-info/SOURCES.txt
|
|
7
|
+
src/harness_foundation.egg-info/dependency_links.txt
|
|
8
|
+
src/harness_foundation.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
harness_foundation
|