mirror of
https://github.com/HKUDS/nanobot.git
synced 2026-06-15 07:14:08 +00:00
* refactor(cli): load bundled apps from catalog * feat(plugins): unify CLI and MCP settings * feat(plugins): add settings category filter * style(plugins): refine settings catalog * refactor(cli): load nanobot apps from repo catalog * feat(store): add capability store entry * feat(apps): rename capability store * fix(apps): verify clean app removal * fix(apps): keep main sidebar on apps view * feat(apps): add shared app manifest protocol * fix(apps): dismiss app status message * refactor(apps): move CLI adapter under apps * refactor(apps): drop legacy cli apps package
14 lines
238 B
Python
14 lines
238 B
Python
"""CLI app adapter for the unified Apps domain."""
|
|
|
|
from nanobot.apps.cli.service import (
|
|
CliAppError,
|
|
CliAppManager,
|
|
CliAppsRuntimeConfig,
|
|
)
|
|
|
|
__all__ = [
|
|
"CliAppError",
|
|
"CliAppManager",
|
|
"CliAppsRuntimeConfig",
|
|
]
|