Cowork‑style, normie‑first UI on top of pi, built with Tauri.
Working prototype with VM-based sandbox. See AGENTS.md for architecture details.
- Tauri 2
- SvelteKit
- pnpm
- Tailwind 4 + shadcn‑svelte
- mise (task runner)
mise run setup # installs deps + git hooks
mise run tauri-devmise run format # auto-format code (writes files)
mise run format-check # verify formatting only (no writes)
mise run check # fast local gate (auto-format + lint + compile + fast tests)
mise run check-ci # fast CI gate (format-check + lint + compile + fast tests)
mise run check-full # forced full gate (check + live regressions)
mise run test-regressions-if-needed # runs live regressions only if integration-impacting files changed
# pre-push skips rerun when regressions already passed on current clean HEADCI mirrors this split (.github/workflows/ci.yml): fast check always, check-full only when integration-impacting paths changed.
mise run test
mise run test-vite
mise run test-rust
mise run test-regressions
mise run test-scope-negativemise run install-git-hooks # reinstall hooks manually (pre-commit/auto-format+verify + pre-push/conditional regressions)
# force full pre-push gate once:
PIWORK_FORCE_CHECK_FULL=1 git pushFile-based harness tasks live in mise-tasks/:
mise run test-start
mise run test-create-task "Title" /path/to/folder
mise run test-set-task <task-id>
mise run test-send-login # deprecated while OAuth /login is deferred
mise run test-auth-list
mise run test-auth-set-key <provider> <key>
mise run test-auth-delete <provider>
mise run test-auth-import-pi
mise run test-open-preview <task-id> <relative-path>
mise run test-write-working-file <relative-path> [content]
mise run test-open-working-folder <task-id>
mise run test-dump-state
mise run test-state-snapshot
mise run test-runtime-diag # taskd diagnostics (pending requests/history)
mise run test-screenshot name
mise run test-check-permissions # quick preflight for screenshot visibility
mise run test-stopScope enforcement suite:
mise run test-scope-negativemise run clean # remove build artifacts
mise run clean-deep # remove build artifacts + node_modules
mise run reset # clean-deep + setupRust builds use sccache via .cargo/config.toml.
assets/logo.svgis the source for app icons.- Regenerate with
mise run icons.
AGENTS.md- AI-focused project context and architectureTODO.md- roadmap and task trackingdocs/README.md- docs index + source-of-truth pointersdocs/runtime-taskd-plan.md- runtime rollout status and active execution trackdocs/runtime-taskd-rpc-spec.md- taskd RPC contractdocs/pi-integration.md- host↔VM↔taskd integration overviewdocs/runtime-pack.md- runtime pack + VM boot modeldocs/auth-flow.md- authentication flowdocs/permissions-model.md- folder access modeldocs/task-artifact-contract.md- working-folder immutability + outputs/uploads contractdocs/research/- Cowork observations and runtime intel