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.
Files changed (21) hide show
  1. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/.github/workflows/ci.yml +1 -1
  2. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/PKG-INFO +3 -4
  3. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/pyproject.toml +3 -4
  4. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/candidates.py +0 -2
  5. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/candidates_test.py +0 -2
  6. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/exits.py +0 -2
  7. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/exits_test.py +0 -2
  8. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/group.py +0 -2
  9. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/group_test.py +0 -2
  10. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/guide.py +0 -2
  11. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/guide_test.py +0 -2
  12. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/output.py +0 -2
  13. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/output_test.py +0 -2
  14. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/skill.py +0 -2
  15. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/skill_test.py +0 -2
  16. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/uv.lock +2 -2
  17. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/.github/workflows/release.yml +0 -0
  18. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/.gitignore +0 -0
  19. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/LICENSE +0 -0
  20. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/README.md +0 -0
  21. {click_agentcli-0.1.0 → click_agentcli-0.2.0}/src/agentcli/__init__.py +0 -0
@@ -13,7 +13,7 @@ jobs:
13
13
  strategy:
14
14
  fail-fast: false
15
15
  matrix:
16
- python-version: ["3.11", "3.12", "3.13"]
16
+ python-version: ["3.13", "3.14"]
17
17
 
18
18
  steps:
19
19
  - uses: actions/checkout@v7
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: click-agentcli
3
- Version: 0.1.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.11
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.1.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.11"
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
  ]
@@ -11,8 +11,6 @@ ranks, instead of special-casing each tool. Everything kind-specific goes under
11
11
  `detail`, which nothing shared ever reads.
12
12
  """
13
13
 
14
- from __future__ import annotations
15
-
16
14
  from collections.abc import Callable
17
15
  from typing import Any
18
16
 
@@ -1,7 +1,5 @@
1
1
  """The contract two independent tools have to agree on without talking."""
2
2
 
3
- from __future__ import annotations
4
-
5
3
  import itertools
6
4
 
7
5
  import click
@@ -10,8 +10,6 @@
10
10
  with a nonzero status; only the code differs per class.
11
11
  """
12
12
 
13
- from __future__ import annotations
14
-
15
13
  import click
16
14
 
17
15
  # Click exits 2 for its own parse failures, which this table documents as a
@@ -1,7 +1,5 @@
1
1
  """Exit codes are the contract an agent reads instead of prose."""
2
2
 
3
- from __future__ import annotations
4
-
5
3
  import click
6
4
  import pytest
7
5
  from click.testing import CliRunner
@@ -10,8 +10,6 @@ problem, and a tool that solves it locally is a tool the next one forgets to
10
10
  copy.
11
11
  """
12
12
 
13
- from __future__ import annotations
14
-
15
13
  import sys
16
14
  from collections.abc import Sequence
17
15
  from typing import Any, Literal, NoReturn, overload
@@ -1,7 +1,5 @@
1
1
  """A bad flag must still honour `--json`, before click has parsed it."""
2
2
 
3
- from __future__ import annotations
4
-
5
3
  import json
6
4
 
7
5
  import click
@@ -5,8 +5,6 @@ skill installed once goes stale, while the guide is upgraded with the package
5
5
  that implements it.
6
6
  """
7
7
 
8
- from __future__ import annotations
9
-
10
8
  import click
11
9
 
12
10
 
@@ -1,7 +1,5 @@
1
1
  """The manual ships in the binary, so it cannot go stale."""
2
2
 
3
- from __future__ import annotations
4
-
5
3
  from click.testing import CliRunner
6
4
 
7
5
  from agentcli.guide import guide_command
@@ -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
@@ -1,7 +1,5 @@
1
1
  """One JSON object on stdout, or human text. Never both."""
2
2
 
3
- from __future__ import annotations
4
-
5
3
  import json
6
4
 
7
5
  import click
@@ -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
@@ -4,8 +4,6 @@ No test may touch a real `~/.agents` or `~/.claude`, so every one of them runs
4
4
  against a `tmp_path` home and a fake installed tool.
5
5
  """
6
6
 
7
- from __future__ import annotations
8
-
9
7
  import importlib
10
8
  import json
11
9
  import shutil
@@ -1,6 +1,6 @@
1
1
  version = 1
2
2
  revision = 3
3
- requires-python = ">=3.11"
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.1.0"
19
+ version = "0.2.0"
20
20
  source = { editable = "." }
21
21
  dependencies = [
22
22
  { name = "click" },
File without changes
File without changes