agent-cli-sdk 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.
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/CHANGELOG.md +8 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/PKG-INFO +2 -1
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/pyproject.toml +8 -3
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/__init__.py +1 -1
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.gitattributes +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.github/CODEOWNERS +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.github/ISSUE_TEMPLATE/bug_report.yml +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.github/ISSUE_TEMPLATE/feature_request.yml +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.github/pull_request_template.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.github/workflows/ci.yml +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.gitignore +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/.pre-commit-config.yaml +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/CODE_OF_CONDUCT.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/CONTRIBUTING.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/LICENSE +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/README.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/SECURITY.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/docs/copilot_integration_analysis.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/docs/copilot_standard_flow.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/docs/feasibility_and_plan.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/docs/universal_sdk_proposal.md +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/demo_launcher.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/tasks/custom_tools.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/tasks/error_handling.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/tasks/file_management.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/tasks/hello_world.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/tasks/multiple_sessions.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/tasks/persistence.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/tasks/pr_visualization.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/examples/utils.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/core/agent.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/core/driver.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/core/types.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/drivers/cli_json_driver.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/drivers/copilot_driver.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/drivers/gemini_driver.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/drivers/mock_driver.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/utils/jsonrpc.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/src/agent_sdk/utils/schema.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/e2e/__init__.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/e2e/test_copilot_e2e.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/e2e/test_copilot_session_advanced.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/e2e/test_copilot_tools_advanced.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/e2e/test_gemini_e2e.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/e2e/test_session.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/e2e/testharness.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_agent.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_cleanup.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_copilot_driver.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_driver_config.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_event_handling.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_gemini_driver.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_jsonrpc.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_schema.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_tool_handling.py +0 -0
- {agent_cli_sdk-0.1.0 → agent_cli_sdk-0.2.0}/tests/test_tools_unit.py +0 -0
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## v0.2.0 (2026-02-03)
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
- Implement semantic-release with custom versioning logic
|
|
9
|
+
([`b69088f`](https://github.com/RbBtSn0w/agent-cli-sdk/commit/b69088facdd9823cd06e14e4b48c6172f0002036))
|
|
10
|
+
|
|
11
|
+
|
|
4
12
|
## v0.1.0 (2026-02-03)
|
|
5
13
|
|
|
6
14
|
### Chores
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: agent-cli-sdk
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: Universal SDK for interacting with AI Agent CLIs (Gemini, Copilot, etc.)
|
|
5
5
|
Project-URL: Homepage, https://github.com/rbbtsn0w/agent-cli-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/rbbtsn0w/agent-cli-sdk
|
|
@@ -41,6 +41,7 @@ Requires-Python: >=3.8
|
|
|
41
41
|
Requires-Dist: pydantic>=2.0
|
|
42
42
|
Provides-Extra: dev
|
|
43
43
|
Requires-Dist: pre-commit; extra == 'dev'
|
|
44
|
+
Requires-Dist: python-semantic-release>=9.0.0; extra == 'dev'
|
|
44
45
|
Requires-Dist: ruff; extra == 'dev'
|
|
45
46
|
Requires-Dist: vulture; extra == 'dev'
|
|
46
47
|
Provides-Extra: test
|
|
@@ -7,7 +7,7 @@ packages = ["src/agent_sdk"]
|
|
|
7
7
|
|
|
8
8
|
[project]
|
|
9
9
|
name = "agent-cli-sdk"
|
|
10
|
-
version = "0.
|
|
10
|
+
version = "0.2.0"
|
|
11
11
|
description = "Universal SDK for interacting with AI Agent CLIs (Gemini, Copilot, etc.)"
|
|
12
12
|
readme = "README.md"
|
|
13
13
|
authors = [
|
|
@@ -46,6 +46,7 @@ dev = [
|
|
|
46
46
|
"ruff",
|
|
47
47
|
"pre-commit",
|
|
48
48
|
"vulture",
|
|
49
|
+
"python-semantic-release>=9.0.0",
|
|
49
50
|
]
|
|
50
51
|
|
|
51
52
|
[tool.ruff]
|
|
@@ -74,12 +75,14 @@ addopts = "-v"
|
|
|
74
75
|
asyncio_mode = "auto"
|
|
75
76
|
|
|
76
77
|
[tool.semantic_release]
|
|
78
|
+
commit_parser = "angular"
|
|
77
79
|
version_variables = [
|
|
78
80
|
"src/agent_sdk/__init__.py:__version__",
|
|
79
81
|
]
|
|
80
82
|
version_toml = [
|
|
81
83
|
"pyproject.toml:project.version",
|
|
82
84
|
]
|
|
85
|
+
major_on_unknown = false
|
|
83
86
|
upload_to_pypi = false
|
|
84
87
|
upload_to_release = true
|
|
85
88
|
build_command = "python -m pip install build && python -m build"
|
|
@@ -89,6 +92,8 @@ match = "(main|master)"
|
|
|
89
92
|
prerelease = false
|
|
90
93
|
|
|
91
94
|
[tool.semantic_release.commit_parser_options]
|
|
92
|
-
allowed_tags = ["
|
|
95
|
+
allowed_tags = ["feat", "fix", "perf", "build", "chore", "ci", "docs", "style", "refactor", "test"]
|
|
93
96
|
minor_tags = ["feat"]
|
|
94
|
-
patch_tags = ["fix"
|
|
97
|
+
patch_tags = ["fix"]
|
|
98
|
+
default_bump_level = 0
|
|
99
|
+
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|