| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/agenticsorg/devops/main/examples/run_cli_github_help.py | [Back] [Original] |
#!/usr/bin/env python3
"""
Script to run the DevOps Agent CLI with GitHub help command.
"""
import sys
import os
# Add the current directory to the path so we can import the module
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
# Import the main function from the CLI module
from agentic_devops.src.cli import main
if __name__ == "__main__":
# Set up arguments for GitHub help command
sys.argv = ["cli.py", "github", "--help"]
# Run the CLI
main()
| Web Proxy Viewer | New URL | Original Page |