click-agentcli 0.1.0__tar.gz → 0.2.0__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.
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/.github/workflows/ci.yml +1 -1
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/PKG-INFO +3 -4
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/pyproject.toml +3 -4
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/candidates.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/candidates_test.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/exits.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/exits_test.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/group.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/group_test.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/guide.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/guide_test.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/output.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/output_test.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/skill.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/skill_test.py +0 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/uv.lock +2 -2
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/.github/workflows/release.yml +0 -0
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/.gitignore +0 -0
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/LICENSE +0 -0
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/README.md +0 -0
- {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: click-agentcli
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Shared CLI conventions for agent-facing tools: exit codes, JSON output, skill installation, and the in-binary guide.
|
|
5
5
|
Project-URL: Homepage, https://github.com/owahltinez/click-agentcli
|
|
6
6
|
Author: owahltinez
|
|
@@ -13,12 +13,11 @@ Classifier: Intended Audience :: Developers
|
|
|
13
13
|
Classifier: License :: OSI Approved :: MIT License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
18
16
|
Classifier: Programming Language :: Python :: 3.13
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
18
|
Classifier: Topic :: Software Development :: Libraries
|
|
20
19
|
Classifier: Topic :: Utilities
|
|
21
|
-
Requires-Python: >=3.
|
|
20
|
+
Requires-Python: >=3.13
|
|
22
21
|
Requires-Dist: click>=8.1
|
|
23
22
|
Description-Content-Type: text/markdown
|
|
24
23
|
|
|
@@ -10,10 +10,10 @@ build-backend = "hatchling.build"
|
|
|
10
10
|
# Dependents must name the distribution, not the import, in both their
|
|
11
11
|
# dependencies and their [tool.uv.sources] key.
|
|
12
12
|
name = "click-agentcli"
|
|
13
|
-
version = "0.
|
|
13
|
+
version = "0.2.0"
|
|
14
14
|
description = "Shared CLI conventions for agent-facing tools: exit codes, JSON output, skill installation, and the in-binary guide."
|
|
15
15
|
readme = "README.md"
|
|
16
|
-
requires-python = ">=3.
|
|
16
|
+
requires-python = ">=3.13"
|
|
17
17
|
license = "MIT"
|
|
18
18
|
authors = [{ name = "owahltinez" }]
|
|
19
19
|
keywords = ["click", "cli", "agent", "skill", "json"]
|
|
@@ -24,9 +24,8 @@ classifiers = [
|
|
|
24
24
|
"License :: OSI Approved :: MIT License",
|
|
25
25
|
"Operating System :: OS Independent",
|
|
26
26
|
"Programming Language :: Python :: 3",
|
|
27
|
-
"Programming Language :: Python :: 3.11",
|
|
28
|
-
"Programming Language :: Python :: 3.12",
|
|
29
27
|
"Programming Language :: Python :: 3.13",
|
|
28
|
+
"Programming Language :: Python :: 3.14",
|
|
30
29
|
"Topic :: Software Development :: Libraries",
|
|
31
30
|
"Topic :: Utilities",
|
|
32
31
|
]
|
|
@@ -15,8 +15,6 @@ shaped object on failure -- makes every caller special-case both, which is how
|
|
|
15
15
|
four tools end up with four contracts.
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
|
-
from __future__ import annotations
|
|
19
|
-
|
|
20
18
|
import json
|
|
21
19
|
from collections.abc import Callable, Iterable
|
|
22
20
|
from typing import Any
|
|
@@ -10,8 +10,6 @@ Parameterised by skill name and package because the two hand-written copies
|
|
|
10
10
|
this replaces had already drifted apart in exactly the guards that matter.
|
|
11
11
|
"""
|
|
12
12
|
|
|
13
|
-
from __future__ import annotations
|
|
14
|
-
|
|
15
13
|
import shutil
|
|
16
14
|
from collections.abc import Iterable
|
|
17
15
|
from importlib import resources
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
version = 1
|
|
2
2
|
revision = 3
|
|
3
|
-
requires-python = ">=3.
|
|
3
|
+
requires-python = ">=3.13"
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "click"
|
|
@@ -16,7 +16,7 @@ wheels = [
|
|
|
16
16
|
|
|
17
17
|
[[package]]
|
|
18
18
|
name = "click-agentcli"
|
|
19
|
-
version = "0.
|
|
19
|
+
version = "0.2.0"
|
|
20
20
|
source = { editable = "." }
|
|
21
21
|
dependencies = [
|
|
22
22
|
{ name = "click" },
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|