added new all in one setup CLI Skyvern quickstart (#2480)

This commit is contained in:
Prakash Maheshwaran
2025-05-27 01:54:31 -04:00
committed by GitHub
parent da4afddc21
commit a7ff5aaade
3 changed files with 147 additions and 0 deletions

20
skyvern/cli/__init__.py Normal file
View File

@@ -0,0 +1,20 @@
"""Skyvern CLI package."""
__all__ = [
"cli_app",
"quickstart_app",
"run_app",
"workflow_app",
"tasks_app",
"docs_app",
"status_app",
"init_app",
]
from .commands import cli_app, init_app # init_app is defined in commands.py
from .docs import docs_app
from .quickstart import quickstart_app
from .run_commands import run_app
from .status import status_app
from .tasks import tasks_app
from .workflow import workflow_app