From 25ab6c5f5e06bc9b92b995abf6fd55a21543f9d9 Mon Sep 17 00:00:00 2001 From: "manthapavankumar11@gmail.com" Date: Wed, 24 Dec 2025 22:52:56 +0530 Subject: [PATCH 1/2] bugfix: run devops agent even if output fule doesnot pre exist --- devops_agent/cli.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/devops_agent/cli.py b/devops_agent/cli.py index 1ea3661..4b7e4d4 100644 --- a/devops_agent/cli.py +++ b/devops_agent/cli.py @@ -46,9 +46,8 @@ def default_model() -> str: help='Configure the agent with one of the enterprise grade providers like OpenAI, Anthropic, Gemini') @click.option('--model', type=str, help='Configure the model name in accordance with the provider selected like gpt-4o, gemini-flash-2.5, etc.') -@click.option('--output', type=click.Path(exists=True), help='Path to output file') @click.option('--query', type=str, help='Query to ask the DevOps agent') -@click.option('--output', type=click.Path(), help='Output file path (optional)') +@click.option('--output', type=click.Path(), help='Output file path for saving responses') @click.option('--format', type=click.Choice(['text', 'json', 'markdown']), default='text', help='Output format') @click.option('--interactive', '-i', is_flag=True, help='Run in interactive mode') @click.option('--debug_mode', type=bool, help='Run all agents in debug mode, don\'t use in production') From ee5cd882327c8d7563327832bf30eee184028bbc Mon Sep 17 00:00:00 2001 From: "manthapavankumar11@gmail.com" Date: Wed, 24 Dec 2025 22:53:33 +0530 Subject: [PATCH 2/2] bugfix: version changed --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 28e99bc..405f291 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "devops-agent" -version = "0.0.2" +version = "0.0.3" description = "AI-powered DevOps CLI assistant" readme = "README.md" requires-python = ">=3.8"