FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
devops/examples/run_cli_github_help.py at main · agenticsorg/devops · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
agenticsorg
/
devops
Public
Notifications
You must be signed in to change notification settings
Fork
73
Star
230
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
devops
/
examples
/
run_cli_github_help.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
19 lines (15 loc) · 497 Bytes
Breadcrumbs
devops
/
examples
/
run_cli_github_help.py
Copy path
File metadata and controls
19 lines (15 loc) · 497 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/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
()
Back
|
FazBrowse Home
|
New Git URL