mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-20 02:55:08 +08:00
Implement the new _internal package structure for AstrBot runtime: - Add AstrbotOrchestrator with LSP, MCP, ACP, ABP protocol clients - Add AstrbotGateway server with WebSocket support - Add comprehensive test suite for runtime module - Add tools base module for MCP tools Implements bootstrap function using anyio task groups for concurrent protocol client initialization.
14 lines
262 B
Python
14 lines
262 B
Python
"""Internal skills module - re-exports from core.skills.skill_manager."""
|
|
|
|
from astrbot.core.skills.skill_manager import (
|
|
SkillInfo,
|
|
SkillManager,
|
|
build_skills_prompt,
|
|
)
|
|
|
|
__all__ = [
|
|
"SkillInfo",
|
|
"SkillManager",
|
|
"build_skills_prompt",
|
|
]
|