File tree Expand file tree Collapse file tree 5 files changed +6
-29
lines changed
Expand file tree Collapse file tree 5 files changed +6
-29
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.2.11
2+ current_version = 0.2.12
33commit = True
44tag = True
55
Original file line number Diff line number Diff line change @@ -54,6 +54,6 @@ ENV HOST=${HOST} \
5454RUN apt-get update \
5555 && apt-get install -y curl nano \
5656 && curl -LsSf https://astral.sh/uv/install.sh | sh \
57- && uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow github-agent>=0.2.11
57+ && uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow github-agent>=0.2.12
5858
5959CMD ["gitlab-mcp" ]
Original file line number Diff line number Diff line change 2121![ PyPI - Wheel] ( https://img.shields.io/pypi/wheel/github-agent )
2222![ PyPI - Implementation] ( https://img.shields.io/pypi/implementation/github-agent )
2323
24- * Version: 0.2.11 *
24+ * Version: 0.2.12 *
2525
2626## Overview
2727
Original file line number Diff line number Diff line change 3939from pydantic_ai .ui import SSE_CONTENT_TYPE
4040from pydantic_ai .ui .ag_ui import AGUIAdapter
4141
42- __version__ = "0.2.11 "
42+ __version__ = "0.2.12 "
4343
4444logging .basicConfig (
4545 level = logging .INFO ,
@@ -901,7 +901,7 @@ def agent_server():
901901
902902 if hasattr (args , "help" ) and args .help :
903903
904- usage ()
904+ parser . print_help ()
905905
906906 sys .exit (0 )
907907
@@ -938,28 +938,5 @@ def agent_server():
938938 )
939939
940940
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-
964941if __name__ == "__main__" :
965942 agent_server ()
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " github-agent"
7- version = " 0.2.11 "
7+ version = " 0.2.12 "
88readme = " README.md"
99description = " GitHub Agent for MCP"
1010requires-python = " >=3.10"
You can’t perform that action at this time.
0 commit comments