e4dcfc49aa
Tests / Lint and Format (push) Waiting to run
Tests / Web Node Tests (push) Waiting to run
Tests / Import Check (Python 3.11) (push) Waiting to run
Tests / Import Check (Python 3.12) (push) Waiting to run
Tests / Import Check (Python 3.13) (push) Waiting to run
Tests / Import Check (Python 3.14) (push) Waiting to run
Tests / Python Tests (Python 3.11) (push) Blocked by required conditions
Tests / Python Tests (Python 3.12) (push) Blocked by required conditions
Tests / Python Tests (Python 3.13) (push) Blocked by required conditions
Tests / Python Tests (Python 3.14) (push) Blocked by required conditions
Tests / Test Summary (push) Blocked by required conditions
82 lines
2.5 KiB
Python
82 lines
2.5 KiB
Python
"""
|
|
CLI Plugin Command
|
|
==================
|
|
|
|
List and inspect registered plugins (tools, capabilities, playground).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import asdict
|
|
|
|
from rich.console import Console
|
|
from rich.table import Table
|
|
import typer
|
|
|
|
console = Console()
|
|
|
|
|
|
def register(app: typer.Typer) -> None:
|
|
@app.command("list")
|
|
def plugin_list() -> None:
|
|
"""List all registered tools and capabilities."""
|
|
from deeptutor.runtime.registry.capability_registry import get_capability_registry
|
|
from deeptutor.runtime.registry.tool_registry import get_tool_registry
|
|
|
|
tr = get_tool_registry()
|
|
cr = get_capability_registry()
|
|
|
|
table = Table(title="Registered Plugins")
|
|
table.add_column("Name", style="bold")
|
|
table.add_column("Type")
|
|
table.add_column("Description")
|
|
|
|
for defn in tr.get_definitions():
|
|
table.add_row(defn.name, "tool", defn.description[:80])
|
|
|
|
for m in cr.get_manifests():
|
|
table.add_row(m["name"], "capability", m["description"][:80])
|
|
|
|
console.print(table)
|
|
|
|
@app.command("info")
|
|
def plugin_info(name: str = typer.Argument(..., help="Tool or capability name.")) -> None:
|
|
"""Show details of a tool or capability."""
|
|
import json
|
|
|
|
from deeptutor.runtime.registry.capability_registry import get_capability_registry
|
|
from deeptutor.runtime.registry.tool_registry import get_tool_registry
|
|
|
|
tr = get_tool_registry()
|
|
cr = get_capability_registry()
|
|
|
|
tool = tr.get(name)
|
|
if tool:
|
|
defn = tool.get_definition()
|
|
console.print_json(json.dumps(defn.to_openai_schema(), indent=2))
|
|
return
|
|
|
|
cap = cr.get(name)
|
|
if cap:
|
|
from deeptutor.app import DeepTutorApp
|
|
|
|
availability = DeepTutorApp().get_capability_availability(name)
|
|
console.print_json(
|
|
json.dumps(
|
|
{
|
|
"name": cap.manifest.name,
|
|
"description": cap.manifest.description,
|
|
"cli_aliases": cap.manifest.cli_aliases,
|
|
"stages": cap.manifest.stages,
|
|
"tools_used": cap.manifest.tools_used,
|
|
"config_defaults": cap.manifest.config_defaults,
|
|
"availability": asdict(availability),
|
|
},
|
|
indent=2,
|
|
)
|
|
)
|
|
return
|
|
|
|
console.print(f"[red]'{name}' not found.[/]")
|
|
raise typer.Exit(code=1)
|