phronimos 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.
- phronimos-0.0.1/.gitignore +14 -0
- phronimos-0.0.1/PKG-INFO +32 -0
- phronimos-0.0.1/README.md +15 -0
- phronimos-0.0.1/pyproject.toml +24 -0
- phronimos-0.0.1/src/phronimos/__init__.py +14 -0
phronimos-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: phronimos
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Phronimos - agent charter specification and tooling. A compass, not a harness.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Zach-Rose/phronimos
|
|
6
|
+
Project-URL: Repository, https://github.com/Zach-Rose/phronimos
|
|
7
|
+
Author: Zach Rose
|
|
8
|
+
License: Apache-2.0
|
|
9
|
+
Keywords: agents,ai,alignment,charter,governance,spec
|
|
10
|
+
Classifier: Development Status :: 1 - Planning
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
+
Requires-Python: >=3.9
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# Phronimos
|
|
19
|
+
|
|
20
|
+
*A compass, not a harness.*
|
|
21
|
+
|
|
22
|
+
**Phronimos** — named for Aristotle's *phronimos*, the person of practical
|
|
23
|
+
wisdom — is a specification for agent charters. A charter
|
|
24
|
+
(`agent.charter.yaml`) is a machine-readable declaration of what an AI agent
|
|
25
|
+
is for, what it values, how those values trade off, and when it must stop
|
|
26
|
+
and ask. Where a *harness* constrains an agent from the outside (permission
|
|
27
|
+
gates, sandboxes, output filters), a charter orients it from the inside.
|
|
28
|
+
|
|
29
|
+
**Status:** v0.1 specification in active drafting. This release reserves the
|
|
30
|
+
package name; the charter validator lands in 0.1.0.
|
|
31
|
+
|
|
32
|
+
Spec, roadmap, and discussion: https://github.com/Zach-Rose/phronimos
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Phronimos
|
|
2
|
+
|
|
3
|
+
*A compass, not a harness.*
|
|
4
|
+
|
|
5
|
+
**Phronimos** — named for Aristotle's *phronimos*, the person of practical
|
|
6
|
+
wisdom — is a specification for agent charters. A charter
|
|
7
|
+
(`agent.charter.yaml`) is a machine-readable declaration of what an AI agent
|
|
8
|
+
is for, what it values, how those values trade off, and when it must stop
|
|
9
|
+
and ask. Where a *harness* constrains an agent from the outside (permission
|
|
10
|
+
gates, sandboxes, output filters), a charter orients it from the inside.
|
|
11
|
+
|
|
12
|
+
**Status:** v0.1 specification in active drafting. This release reserves the
|
|
13
|
+
package name; the charter validator lands in 0.1.0.
|
|
14
|
+
|
|
15
|
+
Spec, roadmap, and discussion: https://github.com/Zach-Rose/phronimos
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "phronimos"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Phronimos - agent charter specification and tooling. A compass, not a harness."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Apache-2.0" }
|
|
11
|
+
authors = [{ name = "Zach Rose" }]
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
keywords = ["agents", "ai", "charter", "governance", "alignment", "spec"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: Apache Software License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Software Development :: Libraries",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://github.com/Zach-Rose/phronimos"
|
|
24
|
+
Repository = "https://github.com/Zach-Rose/phronimos"
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""Phronimos - agent charter specification and tooling.
|
|
2
|
+
|
|
3
|
+
A compass, not a harness. A Phronimos charter (``agent.charter.yaml``) is a
|
|
4
|
+
machine-readable declaration of what an AI agent is for, what it values, how
|
|
5
|
+
those values trade off, and when it must stop and ask. Where a harness
|
|
6
|
+
constrains an agent from the outside, a charter orients it from the inside.
|
|
7
|
+
|
|
8
|
+
This release reserves the package name while the v0.1 specification is
|
|
9
|
+
finalized. The charter validator lands in 0.1.0.
|
|
10
|
+
|
|
11
|
+
Spec and roadmap: https://github.com/Zach-Rose/phronimos
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
__version__ = "0.0.1"
|