feat: Taskz project-first redesign, worklog sync, FA6 icons, indigo theme
All checks were successful
Build and Deploy DevOpsDash / build-image (push) Successful in 27s

- Replace 4-column Kanban with project-grouped sidebar + flat task list
- Status badges (colored pills) with click-to-cycle
- Full task edit modal: title, description, status, priority, tags, findings
- Worklog sync endpoints POST /api/v1/worklog/sync + sync-activity
- Worklog empty state with curl command + paste-to-upload modal
- Font Awesome 6 throughout, no emojis
- Indigo topbar (bg-indigo-950)
- Fix Knowledge rendering: r.documents, r.files, r.available_agents/skills
- HOWTOs filename fallback, agent/skill detail extraction
This commit is contained in:
Henrik Jess Nielsen
2026-05-09 19:09:51 +02:00
parent 5195d32568
commit a3be89c59e
3 changed files with 909 additions and 375 deletions

View File

@@ -173,3 +173,11 @@ async def list_skills(domain: Optional[str] = None) -> Dict[str, Any]:
async def get_skill(name: str) -> Dict[str, Any]:
return await _call_tool("get_skill", {"name": name})
async def ingest_git_history(content: str) -> Dict[str, Any]:
return await _call_tool("ingest_git_history", {"content": content})
async def ingest_activity_log(content: str) -> Dict[str, Any]:
return await _call_tool("ingest_activity_log", {"content": content})