github-agent 0.2.11__tar.gz → 0.2.12__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.
- {github_agent-0.2.11 → github_agent-0.2.12}/PKG-INFO +2 -2
- {github_agent-0.2.11 → github_agent-0.2.12}/README.md +1 -1
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent/github_agent.py +2 -25
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent.egg-info/PKG-INFO +2 -2
- {github_agent-0.2.11 → github_agent-0.2.12}/pyproject.toml +1 -1
- {github_agent-0.2.11 → github_agent-0.2.12}/LICENSE +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent/__init__.py +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent/utils.py +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent.egg-info/SOURCES.txt +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent.egg-info/dependency_links.txt +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent.egg-info/entry_points.txt +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent.egg-info/requires.txt +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/github_agent.egg-info/top_level.txt +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/scripts/validate_a2a_agent.py +0 -0
- {github_agent-0.2.11 → github_agent-0.2.12}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-agent
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.12
|
|
4
4
|
Summary: GitHub Agent for MCP
|
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -43,7 +43,7 @@ Dynamic: license-file
|
|
|
43
43
|

|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
*Version: 0.2.
|
|
46
|
+
*Version: 0.2.12*
|
|
47
47
|
|
|
48
48
|
## Overview
|
|
49
49
|
|
|
@@ -39,7 +39,7 @@ from pydantic import ValidationError
|
|
|
39
39
|
from pydantic_ai.ui import SSE_CONTENT_TYPE
|
|
40
40
|
from pydantic_ai.ui.ag_ui import AGUIAdapter
|
|
41
41
|
|
|
42
|
-
__version__ = "0.2.
|
|
42
|
+
__version__ = "0.2.12"
|
|
43
43
|
|
|
44
44
|
logging.basicConfig(
|
|
45
45
|
level=logging.INFO,
|
|
@@ -901,7 +901,7 @@ def agent_server():
|
|
|
901
901
|
|
|
902
902
|
if hasattr(args, "help") and args.help:
|
|
903
903
|
|
|
904
|
-
|
|
904
|
+
parser.print_help()
|
|
905
905
|
|
|
906
906
|
sys.exit(0)
|
|
907
907
|
|
|
@@ -938,28 +938,5 @@ def agent_server():
|
|
|
938
938
|
)
|
|
939
939
|
|
|
940
940
|
|
|
941
|
-
def usage():
|
|
942
|
-
print(
|
|
943
|
-
f"Github Agent ({__version__}): CLI Tool\n\n"
|
|
944
|
-
"Usage:\n"
|
|
945
|
-
"--host [ Host to bind the server to ]\n"
|
|
946
|
-
"--port [ Port to bind the server to ]\n"
|
|
947
|
-
"--debug [ Debug mode ]\n"
|
|
948
|
-
"--reload [ Enable auto-reload ]\n"
|
|
949
|
-
"--provider [ LLM Provider ]\n"
|
|
950
|
-
"--model-id [ LLM Model ID ]\n"
|
|
951
|
-
"--base-url [ LLM Base URL (for OpenAI compatible providers) ]\n"
|
|
952
|
-
"--api-key [ LLM API Key ]\n"
|
|
953
|
-
"--mcp-url [ MCP Server URL ]\n"
|
|
954
|
-
"--mcp-config [ MCP Server Config ]\n"
|
|
955
|
-
"--custom-skills-directory [ Directory containing additional custom agent skills ]\n"
|
|
956
|
-
"--web [ Enable Pydantic AI Web UI ]\n"
|
|
957
|
-
"\n"
|
|
958
|
-
"Examples:\n"
|
|
959
|
-
" [Simple] github-agent \n"
|
|
960
|
-
' [Complex] github-agent --host "value" --port "value" --debug "value" --reload --provider "value" --model-id "value" --base-url "value" --api-key "value" --mcp-url "value" --mcp-config "value" --custom-skills-directory "value" --web\n'
|
|
961
|
-
)
|
|
962
|
-
|
|
963
|
-
|
|
964
941
|
if __name__ == "__main__":
|
|
965
942
|
agent_server()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-agent
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.12
|
|
4
4
|
Summary: GitHub Agent for MCP
|
|
5
5
|
Author-email: Audel Rouhi <knucklessg1@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -43,7 +43,7 @@ Dynamic: license-file
|
|
|
43
43
|

|
|
44
44
|

|
|
45
45
|
|
|
46
|
-
*Version: 0.2.
|
|
46
|
+
*Version: 0.2.12*
|
|
47
47
|
|
|
48
48
|
## Overview
|
|
49
49
|
|
|
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
|