swarmauri_toolkit_github 0.9.0.dev5__py3-none-any.whl → 0.9.1.dev2__py3-none-any.whl

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.
@@ -1,47 +1,51 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: swarmauri_toolkit_github
3
- Version: 0.9.0.dev5
3
+ Version: 0.9.1.dev2
4
4
  Summary: Github Toolkit
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
7
7
  Keywords: swarmauri,toolkit,github
8
8
  Author: Jacob Stewart
9
9
  Author-email: jacob@swarmauri.com
10
- Requires-Python: >=3.10,<3.13
10
+ Requires-Python: >=3.10,<3.15
11
11
  Classifier: License :: OSI Approved :: Apache Software License
12
- Classifier: Programming Language :: Python :: 3.10
13
- Classifier: Programming Language :: Python :: 3.11
14
- Classifier: Programming Language :: Python :: 3.12
15
12
  Classifier: Natural Language :: English
16
13
  Classifier: Development Status :: 3 - Alpha
17
14
  Classifier: Intended Audience :: Developers
18
15
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
16
+ Classifier: Programming Language :: Python
17
+ Classifier: Programming Language :: Python :: 3
18
+ Classifier: Programming Language :: Python :: 3 :: Only
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: Programming Language :: Python :: 3.14
19
24
  Requires-Dist: pygithub (>=2.4.0)
20
25
  Requires-Dist: swarmauri_base
21
26
  Requires-Dist: swarmauri_core
22
27
  Requires-Dist: swarmauri_standard
23
28
  Description-Content-Type: text/markdown
24
29
 
25
- ![Swarmauri Logo](https://github.com/swarmauri/swarmauri-sdk/blob/3d4d1cfa949399d7019ae9d8f296afba773dfb7f/assets/swarmauri.brand.theme.svg)
30
+ ![Swarmauri Logo](https://raw.githubusercontent.com/swarmauri/swarmauri-sdk/master/assets/swarmauri_sdk_brand.png)
26
31
 
27
32
  <p align="center">
28
- <a href="https://pypi.org/project/swarmauri_toolkit_github/">
29
- <img src="https://img.shields.io/pypi/dm/swarmauri_toolkit_github" alt="PyPI - Downloads"/></a>
33
+ <a href="https://pepy.tech/project/swarmauri_toolkit_github/">
34
+ <img src="https://static.pepy.tech/badge/swarmauri_toolkit_github/month" alt="PyPI - Downloads"/></a>
30
35
  <a href="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/community/swarmauri_toolkit_github/">
31
36
  <img alt="Hits" src="https://hits.sh/github.com/swarmauri/swarmauri-sdk/tree/master/pkgs/community/swarmauri_toolkit_github.svg"/></a>
32
37
  <a href="https://pypi.org/project/swarmauri_toolkit_github/">
33
- <img src="https://img.shields.io/pypi/pyversions/swarmauri_toolkit_github" alt="PyPI - Python Version"/></a>
38
+ <img src="https://img.shields.io/badge/python-3.10%20%7C%203.11%20%7C%203.12%20%7C%203.13%20%7C%203.14-blue" alt="PyPI - Python Version"/></a>
34
39
  <a href="https://pypi.org/project/swarmauri_toolkit_github/">
35
40
  <img src="https://img.shields.io/pypi/l/swarmauri_toolkit_github" alt="PyPI - License"/></a>
36
41
  <a href="https://pypi.org/project/swarmauri_toolkit_github/">
37
42
  <img src="https://img.shields.io/pypi/v/swarmauri_toolkit_github?label=swarmauri_toolkit_github&color=green" alt="PyPI - swarmauri_toolkit_github"/></a>
38
43
  </p>
39
-
40
44
  ---
41
45
 
42
- # Swarmauri Toolkit · GitHub
46
+ # Swarmauri Toolkit · GitHub
43
47
 
44
- A Swarmauri toolkit that wraps PyGithub behind Swarmauris agent/tool abstractions. Authenticate once and gain access to repository, issue, pull request, branch, and commit helpersready for scripted automation or conversational agents.
48
+ A Swarmauri toolkit that wraps PyGithub behind Swarmauri’s agent/tool abstractions. Authenticate once and gain access to repository, issue, pull request, branch, and commit helpers—ready for scripted automation or conversational agents.
45
49
 
46
50
  - Creates a shared GitHub client so every tool call reuses the same token and rate-limit state.
47
51
  - Normalizes responses into dictionaries so downstream logic can inspect status messages or raw PyGithub payloads.
@@ -49,7 +53,7 @@ A Swarmauri toolkit that wraps PyGithub behind Swarmauri’s agent/tool abstract
49
53
 
50
54
  ## Requirements
51
55
 
52
- - Python 3.10 3.13.
56
+ - Python 3.10 – 3.13.
53
57
  - GitHub personal access token (classic or fine-grained) with the scopes your workflow requires. Store it in an environment variable such as `GITHUB_TOKEN`.
54
58
  - Runtime dependencies (`PyGithub`, `python-dotenv`, and the Swarmauri base/standard packages) install automatically with the toolkit.
55
59
 
@@ -79,7 +83,7 @@ uv add swarmauri_toolkit_github
79
83
  uv pip install swarmauri_toolkit_github
80
84
  ```
81
85
 
82
- > Tip: `python-dotenv` is imported automaticallydrop your token into a local `.env` file (`GITHUB_TOKEN=ghp_...`) for quick experimentation.
86
+ > Tip: `python-dotenv` is imported automatically—drop your token into a local `.env` file (`GITHUB_TOKEN=ghp_...`) for quick experimentation.
83
87
 
84
88
  ## Quick Start
85
89
 
@@ -182,9 +186,9 @@ Keep a backlog tidy by automatically nudging stale tickets.
182
186
 
183
187
  ## Troubleshooting
184
188
 
185
- - **`ValueError: Invalid Token or Missing api_token`** Pass the token explicitly (`GithubToolkit(api_token=...)`) or export `GITHUB_TOKEN` before instantiating the toolkit.
186
- - **PyGithub exception messages** Most actions bubble up PyGithub errors verbatim (permission issues, missing branches, etc.). Inspect the text in the returned string to resolve scope or naming problems.
187
- - **GitHub rate limits** PyGithub tracks remaining requests; consider batching actions or sleeping when `Github.get_rate_limit()` indicates low headroom.
189
+ - **`ValueError: Invalid Token or Missing api_token`** – Pass the token explicitly (`GithubToolkit(api_token=...)`) or export `GITHUB_TOKEN` before instantiating the toolkit.
190
+ - **PyGithub exception messages** – Most actions bubble up PyGithub errors verbatim (permission issues, missing branches, etc.). Inspect the text in the returned string to resolve scope or naming problems.
191
+ - **GitHub rate limits** – PyGithub tracks remaining requests; consider batching actions or sleeping when `Github.get_rate_limit()` indicates low headroom.
188
192
 
189
193
  ## License
190
194
 
@@ -5,8 +5,8 @@ swarmauri_toolkit_github/GithubPRTool.py,sha256=ptSPk7FabS9OJ1Qdf34ydfYONbNu9r2x
5
5
  swarmauri_toolkit_github/GithubRepoTool.py,sha256=YqkQN4tqSnzMK01azjrtO7iTFbAay_psAB8YXo7Jj3k,3961
6
6
  swarmauri_toolkit_github/GithubToolkit.py,sha256=gXLnqbHfNzMM979rDrRpioFnW20O8Qkw9IOVxsjmoP0,1852
7
7
  swarmauri_toolkit_github/__init__.py,sha256=ugR4rSIjWjFsklYq1zKlDuNwi2ao9NnzEcgQdGAtVgY,836
8
- swarmauri_toolkit_github-0.9.0.dev5.dist-info/METADATA,sha256=Vb_pJkSSG5NXCnBS4r9utw45xr0NNOajJNjbTCXg9Ak,6901
9
- swarmauri_toolkit_github-0.9.0.dev5.dist-info/WHEEL,sha256=kJCRJT_g0adfAJzTx2GUMmS80rTJIVHRCfG0DQgLq3o,88
10
- swarmauri_toolkit_github-0.9.0.dev5.dist-info/entry_points.txt,sha256=2xC828KqwS3K-0qhlcdqbKhtoQhkzst3Y0i0KfCzXNI,467
11
- swarmauri_toolkit_github-0.9.0.dev5.dist-info/licenses/LICENSE,sha256=djUXOlCxLVszShEpZXshZ7v33G-2qIC_j9KXpWKZSzQ,11359
12
- swarmauri_toolkit_github-0.9.0.dev5.dist-info/RECORD,,
8
+ swarmauri_toolkit_github-0.9.1.dev2.dist-info/METADATA,sha256=ZxB-B3fIjGOGq_I6FWRt0rflUeFsFoUXIk7kSnPdV6w,7201
9
+ swarmauri_toolkit_github-0.9.1.dev2.dist-info/WHEEL,sha256=EGEvSphFYqXKs23-kQBeyNoJP1nrT8ZJKQoi5p5DYL8,88
10
+ swarmauri_toolkit_github-0.9.1.dev2.dist-info/entry_points.txt,sha256=2xC828KqwS3K-0qhlcdqbKhtoQhkzst3Y0i0KfCzXNI,467
11
+ swarmauri_toolkit_github-0.9.1.dev2.dist-info/licenses/LICENSE,sha256=djUXOlCxLVszShEpZXshZ7v33G-2qIC_j9KXpWKZSzQ,11359
12
+ swarmauri_toolkit_github-0.9.1.dev2.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 2.3.1
2
+ Generator: poetry-core 2.4.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any