feat: add Skill API endpoints

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-21 11:28:20 +08:00
parent d3749817b0
commit c552f71e28
3 changed files with 115 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ from app.routers import (
todo_router,
settings_router,
folder_router,
skill_router,
)
from app.routers.scheduler import router as scheduler_router
from app.services.scheduler_service import start_scheduler, stop_scheduler, get_scheduler_status
@@ -59,6 +60,7 @@ app.include_router(agent_router)
app.include_router(todo_router)
app.include_router(settings_router)
app.include_router(folder_router)
app.include_router(skill_router)
app.include_router(scheduler_router)