kctl-github 0.3.0__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kctl_github-0.3.0 → kctl_github-0.4.0}/PKG-INFO +1 -1
- {kctl_github-0.3.0 → kctl_github-0.4.0}/pyproject.toml +1 -1
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/__init__.py +1 -1
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/cli.py +2 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/.gitignore +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/README.md +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/skills/github-admin/SKILL.md +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/__main__.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/__init__.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/billing.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/ci.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/config_cmd.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/dashboard.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/doctor_cmd.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/health.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/labels.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/prs.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/repos.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/secrets.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/skill_cmd.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/commands/stats.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/core/__init__.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/core/callbacks.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/core/client.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/core/config.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/core/exceptions.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/src/kctl_github/core/plugins.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/tests/__init__.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/tests/conftest.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/tests/test_client.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/tests/test_dashboard.py +0 -0
- {kctl_github-0.3.0 → kctl_github-0.4.0}/tests/test_smoke.py +0 -0
|
@@ -24,6 +24,7 @@ from kctl_github.core.plugins import discover_and_load_plugins
|
|
|
24
24
|
from kctl_github.commands.doctor_cmd import app as doctor_app
|
|
25
25
|
from kctl_github.commands.skill_cmd import app as skill_app
|
|
26
26
|
from kctl_lib.self_update import notify_if_outdated
|
|
27
|
+
from kctl_lib.tui import add_tui_command
|
|
27
28
|
|
|
28
29
|
|
|
29
30
|
def version_callback(value: bool) -> None:
|
|
@@ -81,6 +82,7 @@ app.add_typer(skill_app, name="skill", hidden=True)
|
|
|
81
82
|
|
|
82
83
|
# Load third-party plugins via entry points
|
|
83
84
|
discover_and_load_plugins(app)
|
|
85
|
+
add_tui_command(app, service_key="github", version=__version__)
|
|
84
86
|
|
|
85
87
|
|
|
86
88
|
@app.command("self-update")
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|