agentminutes 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 Dachary Carey
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,39 @@
1
+ Metadata-Version: 2.4
2
+ Name: agentminutes
3
+ Version: 0.0.1
4
+ Summary: Parses agent harness session logs into a unified event schema. Under development.
5
+ Project-URL: Homepage, https://agentminutes.dev
6
+ Project-URL: Repository, https://github.com/agent-ecosystem/agentminutes
7
+ Project-URL: Issues, https://github.com/agent-ecosystem/agentminutes/issues
8
+ Author: Dachary Carey
9
+ License-Expression: MIT
10
+ License-File: LICENSE
11
+ Keywords: agent,antigravity,claude-code,codex,harness,parser,session-logs,transcripts
12
+ Classifier: Development Status :: 1 - Planning
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Programming Language :: Python :: 3
15
+ Requires-Python: >=3.9
16
+ Description-Content-Type: text/markdown
17
+
18
+ # agentminutes
19
+
20
+ This package reserves the `agentminutes` name for a planned Python
21
+ wrapper. It is a pointer package, not the tool itself: the only export is
22
+ `project_url()`, which returns the project repository URL.
23
+
24
+ agentminutes parses native agent harness session logs (Antigravity CLI,
25
+ Claude Code, Codex CLI) into a unified event schema, so tool calls,
26
+ results, and messages are comparable across harnesses. It is written in
27
+ Go and available today as a Go library and CLI:
28
+
29
+ ```bash
30
+ brew install agent-ecosystem/tap/agentminutes
31
+ # or
32
+ go install github.com/agent-ecosystem/agentminutes/cmd/agentminutes@latest
33
+ ```
34
+
35
+ - Repository and schema contract: <https://github.com/agent-ecosystem/agentminutes>
36
+ - Project site: <https://agentminutes.dev>
37
+
38
+ When a real Python wrapper ships (bundling the Go binary), it will
39
+ publish under this name; until then, use the Go CLI.
@@ -0,0 +1,22 @@
1
+ # agentminutes
2
+
3
+ This package reserves the `agentminutes` name for a planned Python
4
+ wrapper. It is a pointer package, not the tool itself: the only export is
5
+ `project_url()`, which returns the project repository URL.
6
+
7
+ agentminutes parses native agent harness session logs (Antigravity CLI,
8
+ Claude Code, Codex CLI) into a unified event schema, so tool calls,
9
+ results, and messages are comparable across harnesses. It is written in
10
+ Go and available today as a Go library and CLI:
11
+
12
+ ```bash
13
+ brew install agent-ecosystem/tap/agentminutes
14
+ # or
15
+ go install github.com/agent-ecosystem/agentminutes/cmd/agentminutes@latest
16
+ ```
17
+
18
+ - Repository and schema contract: <https://github.com/agent-ecosystem/agentminutes>
19
+ - Project site: <https://agentminutes.dev>
20
+
21
+ When a real Python wrapper ships (bundling the Go binary), it will
22
+ publish under this name; until then, use the Go CLI.
@@ -0,0 +1,36 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "agentminutes"
7
+ version = "0.0.1"
8
+ description = "Parses agent harness session logs into a unified event schema. Under development."
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ license-files = ["LICENSE"]
12
+ requires-python = ">=3.9"
13
+ authors = [{ name = "Dachary Carey" }]
14
+ keywords = [
15
+ "agent",
16
+ "harness",
17
+ "session-logs",
18
+ "transcripts",
19
+ "claude-code",
20
+ "codex",
21
+ "antigravity",
22
+ "parser",
23
+ ]
24
+ classifiers = [
25
+ "Development Status :: 1 - Planning",
26
+ "Intended Audience :: Developers",
27
+ "Programming Language :: Python :: 3",
28
+ ]
29
+
30
+ [project.urls]
31
+ Homepage = "https://agentminutes.dev"
32
+ Repository = "https://github.com/agent-ecosystem/agentminutes"
33
+ Issues = "https://github.com/agent-ecosystem/agentminutes/issues"
34
+
35
+ [tool.hatch.build.targets.wheel]
36
+ packages = ["src/agentminutes"]
@@ -0,0 +1,19 @@
1
+ """Placeholder package for the agentminutes Python wrapper.
2
+
3
+ agentminutes parses native agent harness session logs (Antigravity CLI,
4
+ Claude Code, Codex CLI) into a unified event schema. It is written in Go;
5
+ this package reserves the name for a planned Python wrapper and only
6
+ points at the project. Install the real tool via Homebrew or ``go
7
+ install``; see the repository for details.
8
+ """
9
+
10
+ PROJECT_URL = "https://github.com/agent-ecosystem/agentminutes"
11
+ HOMEPAGE = "https://agentminutes.dev"
12
+
13
+ __version__ = "0.0.1"
14
+ __all__ = ["PROJECT_URL", "HOMEPAGE", "project_url"]
15
+
16
+
17
+ def project_url() -> str:
18
+ """Return the URL of the agentminutes project repository."""
19
+ return PROJECT_URL