github-agent 1.1.0__tar.gz → 1.1.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.
Files changed (80) hide show
  1. {github_agent-1.1.0 → github_agent-1.1.1}/PKG-INFO +2 -2
  2. {github_agent-1.1.0 → github_agent-1.1.1}/README.md +1 -1
  3. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/agent_server.py +1 -1
  4. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/skills/github-actions-ci-review/SKILL.md +1 -0
  5. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/skills/github-issue-tracking/SKILL.md +1 -0
  6. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/skills/github-pull-request-create/SKILL.md +1 -0
  7. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/skills/github-pull-request-review/SKILL.md +1 -0
  8. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/skills/github-repository-management/SKILL.md +1 -0
  9. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent.egg-info/PKG-INFO +2 -2
  10. {github_agent-1.1.0 → github_agent-1.1.1}/pyproject.toml +1 -1
  11. {github_agent-1.1.0 → github_agent-1.1.1}/LICENSE +0 -0
  12. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/__init__.py +0 -0
  13. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/__main__.py +0 -0
  14. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/__init__.py +0 -0
  15. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_base.py +0 -0
  16. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_branches.py +0 -0
  17. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_commits.py +0 -0
  18. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_contents.py +0 -0
  19. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_issues.py +0 -0
  20. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_orgs.py +0 -0
  21. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_pages.py +0 -0
  22. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_pulls.py +0 -0
  23. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_releases.py +0 -0
  24. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_repos.py +0 -0
  25. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_search.py +0 -0
  26. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api/api_client_workflows.py +0 -0
  27. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/api_client.py +0 -0
  28. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/auth.py +0 -0
  29. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/connectors/__init__.py +0 -0
  30. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/connectors/mcp_source_presets.json +0 -0
  31. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/github_gql.py +0 -0
  32. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/github_input_models.py +0 -0
  33. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/github_response_models.py +0 -0
  34. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/kg_ingest.py +0 -0
  35. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/__init__.py +0 -0
  36. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_action.py +0 -0
  37. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_branch.py +0 -0
  38. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_collaborator.py +0 -0
  39. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_commit.py +0 -0
  40. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_content.py +0 -0
  41. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_issue.py +0 -0
  42. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_org.py +0 -0
  43. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_pull.py +0 -0
  44. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_release.py +0 -0
  45. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_repo.py +0 -0
  46. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp/mcp_search.py +0 -0
  47. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp_config.json +0 -0
  48. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/mcp_server.py +0 -0
  49. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/ontology/__init__.py +0 -0
  50. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/ontology/github.ttl +0 -0
  51. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/prompts/__init__.py +0 -0
  52. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/prompts/code_collaboration_specialist.json +0 -0
  53. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/prompts/main_agent.json +0 -0
  54. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent/skills/__init__.py +0 -0
  55. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent.egg-info/SOURCES.txt +0 -0
  56. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent.egg-info/dependency_links.txt +0 -0
  57. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent.egg-info/entry_points.txt +0 -0
  58. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent.egg-info/requires.txt +0 -0
  59. {github_agent-1.1.0 → github_agent-1.1.1}/github_agent.egg-info/top_level.txt +0 -0
  60. {github_agent-1.1.0 → github_agent-1.1.1}/scripts/security_sanitizer.py +0 -0
  61. {github_agent-1.1.0 → github_agent-1.1.1}/scripts/validate_a2a_agent.py +0 -0
  62. {github_agent-1.1.0 → github_agent-1.1.1}/scripts/verify_api_integration.py +0 -0
  63. {github_agent-1.1.0 → github_agent-1.1.1}/setup.cfg +0 -0
  64. {github_agent-1.1.0 → github_agent-1.1.1}/tests/conftest.py +0 -0
  65. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_action_discovery.py +0 -0
  66. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_api_client_endpoints.py +0 -0
  67. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_api_validation.py +0 -0
  68. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_auth_client_edge_cases.py +0 -0
  69. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_concept_parity.py +0 -0
  70. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_github_agent_api_brute_force_coverage.py +0 -0
  71. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_github_agent_brute_force_coverage.py +0 -0
  72. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_github_gql.py +0 -0
  73. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_hardening.py +0 -0
  74. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_init_dynamics.py +0 -0
  75. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_kg_ingest.py +0 -0
  76. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_mcp_coverage.py +0 -0
  77. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_model_fields.py +0 -0
  78. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_org_crud.py +0 -0
  79. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_pages.py +0 -0
  80. {github_agent-1.1.0 → github_agent-1.1.1}/tests/test_startup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-agent
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: GitHub Agent for MCP
5
5
  Author-email: Audel Rouhi <knucklessg1@gmail.com>
6
6
  License: MIT
@@ -48,7 +48,7 @@ Dynamic: license-file
48
48
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/github-agent)
49
49
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/github-agent)
50
50
 
51
- *Version: 1.1.0*
51
+ *Version: 1.1.1*
52
52
 
53
53
  > **Documentation** — Installation, deployment, and usage across the MCP, API, and
54
54
  > CLI interfaces, including the integrated A2A agent server, are maintained in the
@@ -20,7 +20,7 @@
20
20
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/github-agent)
21
21
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/github-agent)
22
22
 
23
- *Version: 1.1.0*
23
+ *Version: 1.1.1*
24
24
 
25
25
  > **Documentation** — Installation, deployment, and usage across the MCP, API, and
26
26
  > CLI interfaces, including the integrated A2A agent server, are maintained in the
@@ -4,7 +4,7 @@ import os
4
4
  import sys
5
5
  import warnings
6
6
 
7
- __version__ = "1.1.0"
7
+ __version__ = "1.1.1"
8
8
 
9
9
  logging.basicConfig(
10
10
  level=logging.INFO,
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  name: github-actions-ci-review
3
+ skill_type: skill
3
4
  description: >-
4
5
  Review GitHub Actions CI results across an organization, a user, or a single repository via
5
6
  the github-agent MCP server — enumerate repos, list workflow runs (filterable to failures),
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  name: github-issue-tracking
3
+ skill_type: skill
3
4
  description: >-
4
5
  Issue triage and search on GitHub via the github-agent MCP server — list, read, open,
5
6
  and update issues (repo-scoped or org-wide in one search call), and run repository /
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  name: github-pull-request-create
3
+ skill_type: skill
3
4
  description: >-
4
5
  Open a new GitHub pull request against a repository via the github-agent MCP server —
5
6
  from a head branch into a base branch, with title, body, draft flag, and requested
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  name: github-pull-request-review
3
+ skill_type: skill
3
4
  description: >-
4
5
  Review and merge GitHub pull requests via the github-agent MCP server — by default the
5
6
  PRs assigned to you or where your review is requested, optionally scoped to an org, user,
@@ -1,5 +1,6 @@
1
1
  ---
2
2
  name: github-repository-management
3
+ skill_type: skill
3
4
  description: >-
4
5
  Repository lifecycle and structure operations on GitHub via the github-agent MCP
5
6
  server — list/read/create/update/delete repositories, manage branches and branch
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-agent
3
- Version: 1.1.0
3
+ Version: 1.1.1
4
4
  Summary: GitHub Agent for MCP
5
5
  Author-email: Audel Rouhi <knucklessg1@gmail.com>
6
6
  License: MIT
@@ -48,7 +48,7 @@ Dynamic: license-file
48
48
  ![PyPI - Wheel](https://img.shields.io/pypi/wheel/github-agent)
49
49
  ![PyPI - Implementation](https://img.shields.io/pypi/implementation/github-agent)
50
50
 
51
- *Version: 1.1.0*
51
+ *Version: 1.1.1*
52
52
 
53
53
  > **Documentation** — Installation, deployment, and usage across the MCP, API, and
54
54
  > CLI interfaces, including the integrated A2A agent server, are maintained in the
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "github-agent"
7
- version = "1.1.0"
7
+ version = "1.1.1"
8
8
  readme = "README.md"
9
9
  description = "GitHub Agent for MCP"
10
10
  requires-python = ">=3.11, <3.15"
File without changes
File without changes