The open-source managed agents platform. Turn coding agents into real teammates — assign tasks, track progress, compound skills. https://multica.ai
Find a file
Jiayuan Zhang d4f5c5b16f
feat: pivot to AI-native task management platform (#232)
Replace the agent framework codebase with a new monorepo structure
for an AI-native Linear-like product where agents are first-class citizens.

New architecture:
- server/ — Go backend (Chi + gorilla/websocket + sqlc)
  - API server with REST routes for issues, agents, inbox, workspaces
  - WebSocket hub for real-time updates
  - Local daemon entry point for agent runtime connection
  - PostgreSQL migration with 13 tables (issue, agent, inbox, etc.)
  - WebSocket protocol types for server<->daemon communication
- apps/web/ — Next.js 16 frontend
  - Dashboard layout with sidebar navigation
  - Route skeleton: inbox, issues, agents, board, settings
- packages/ui/ — Preserved shadcn/ui design system (26+ components)
- packages/types/ — Full API contract types (Issue, Agent, Workspace, Inbox, Events)
- packages/sdk/ — REST ApiClient + WebSocket WSClient
- packages/store/ — Zustand stores (issue, agent, inbox, auth)
- packages/hooks/ — React hooks (useIssues, useAgents, useInbox, useRealtime)
- packages/utils/ — Shared utilities

Removed: apps/cli, apps/desktop, apps/mobile, apps/gateway,
packages/core, skills/, and all agent-framework code.

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-20 17:55:49 +08:00
.github/workflows feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
apps/web feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
packages feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
server feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
.env.example feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
.gitignore feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
.npmrc refactor: restructure to monorepo architecture 2026-02-10 18:00:23 +08:00
CLAUDE.md feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
docker-compose.yml feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
Makefile feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
package.json feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
pnpm-lock.yaml feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
pnpm-workspace.yaml feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
tsconfig.base.json feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00
turbo.json feat: pivot to AI-native task management platform (#232) 2026-03-20 17:55:49 +08:00