mirror of
https://github.com/different-ai/openwork
synced 2026-04-26 01:25:10 +02:00
* refactor(repo): move OpenWork apps into apps and ee layout Rebase the monorepo layout migration onto the latest dev changes so the moved app, desktop, share, and cloud surfaces keep working from their new paths. Carry the latest deeplink, token persistence, build, Vercel, and docs updates forward to avoid stale references and broken deploy tooling. * chore(repo): drop generated desktop artifacts Ignore the moved Tauri target and sidecar paths so local cargo checks do not pollute the branch. Remove the accidentally committed outputs from the repo while keeping the layout migration intact. * fix(release): drop built server cli artifact Stop tracking the locally built apps/server/cli binary so generated server outputs do not leak into commits. Also update the release workflow to check the published scoped package name for @openwork/server before deciding whether npm publish is needed. * fix(workspace): add stable CLI bin wrappers Point the server and router package bins at committed wrapper scripts so workspace installs can create shims before dist outputs exist. Keep the wrappers compatible with built binaries and source checkouts to avoid Vercel install warnings without changing runtime behavior.
55 lines
2.7 KiB
JSON
55 lines
2.7 KiB
JSON
{
|
|
"project": "openwork",
|
|
"target": "v0.3",
|
|
"milestones": {
|
|
"v0.1": {
|
|
"description": "Engine + client",
|
|
"items": [
|
|
{ "id": "v0.1-1", "title": "Tauri app shell", "status": "completed" },
|
|
{
|
|
"id": "v0.1-2",
|
|
"title": "Start/stop OpenCode server (host mode)",
|
|
"status": "completed"
|
|
},
|
|
{ "id": "v0.1-3", "title": "Connect client and show health", "status": "completed" },
|
|
{ "id": "v0.1-4", "title": "List sessions", "status": "completed" }
|
|
]
|
|
},
|
|
"v0.2": {
|
|
"description": "Full run loop",
|
|
"items": [
|
|
{ "id": "v0.2-1", "title": "Create session", "status": "completed" },
|
|
{ "id": "v0.2-2", "title": "Send prompt", "status": "completed" },
|
|
{ "id": "v0.2-3", "title": "Subscribe to SSE events", "status": "completed" },
|
|
{ "id": "v0.2-4", "title": "Render step/tool timeline", "status": "completed" },
|
|
{ "id": "v0.2-5", "title": "Surface permission requests + respond", "status": "completed" }
|
|
]
|
|
},
|
|
"v0.3": {
|
|
"description": "Premium UX",
|
|
"items": [
|
|
{ "id": "v0.3-1", "title": "Design-driven UI (design.ts)", "status": "completed" },
|
|
{ "id": "v0.3-2", "title": "Mobile navigation + responsive layouts", "status": "completed" },
|
|
{ "id": "v0.3-3", "title": "Templates (create/save/run)", "status": "completed" },
|
|
{ "id": "v0.3-4", "title": "Skills manager (list/install/import)", "status": "completed" },
|
|
{ "id": "v0.3-5", "title": "Folder picker (native dialog)", "status": "completed" },
|
|
{ "id": "v0.3-6", "title": "No reasoning/tool metadata leaks", "status": "completed" }
|
|
]
|
|
}
|
|
},
|
|
"notes": [
|
|
"Frontend uses @opencode-ai/sdk/v2/client to avoid bundling Node-only server code.",
|
|
"Engine spawns `opencode serve` from Rust with a per-run working directory.",
|
|
"`cargo check` runs successfully; a placeholder icon exists at `packages/desktop/src-tauri/icons/icon.png`.",
|
|
"OpenCode mirror cloned at `vendor/opencode` (gitignored).",
|
|
"UI follows `design.ts` (ported to Solid + Tailwind) and is wired to real OpenCode v2 sessions/messages/todos/permissions.",
|
|
"Folder picking uses Tauri dialog plugin (no manual path required in Host mode).",
|
|
"Templates UI exists (create/save/run) backed by localStorage.",
|
|
"Skills UI exists: list installed `.opencode/skill` and install/import via OpenPackage + local folder import (Host mode).",
|
|
"Redacts sensitive metadata keys (e.g. reasoningEncryptedContent) from UI to prevent leaks.",
|
|
"`pnpm typecheck` and `pnpm build:ui` succeed.",
|
|
"Permissions entrypoint exists, but permission prompts may not appear without agent-driven tool calls."
|
|
],
|
|
"lastUpdated": "2026-01-14"
|
|
}
|