Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions desktop/src/apps/SettingsApp/UpdatesPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ export function UpdatesPanel() {

{advancedOpen && (
<div className="mt-3 space-y-3">
<div className="flex items-end gap-2 flex-wrap">
<div className="flex flex-col gap-1">
<div className="flex flex-col sm:flex-row sm:items-end gap-2">
<div className="flex flex-col gap-1 min-w-0 flex-1">
<label htmlFor="branch-select" className="text-[11px] text-shell-text-tertiary">
Branch
</label>
Expand All @@ -344,7 +344,7 @@ export function UpdatesPanel() {
aria-label="Branch"
value={selectedBranch}
onChange={(e) => setSelectedBranch(e.target.value)}
className="text-sm bg-white/5 border border-white/10 rounded px-2 py-1 text-shell-text-primary focus:outline-none focus:ring-1 focus:ring-sky-500"
className="w-full min-w-0 max-w-full text-sm bg-white/5 border border-white/10 rounded px-2 py-1 text-shell-text-primary focus:outline-none focus:ring-1 focus:ring-sky-500"
>
{branchInfo?.branches.map((b) => (
<option key={b} value={b}>{b}</option>
Expand Down
7 changes: 6 additions & 1 deletion docs/STATUS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
SINGLE SOURCE OF TRUTH for cross-agent handoff.
Last updated: 2026-06-14 ~10:00 BST, @taOS (freshness sweep).
Last updated: 2026-06-14 ~12:10 BST, @taOS (active).


▶ RELEASED TO MASTER 2026-06-14 (#883, master=c9c5b0c9, Jay asked "merge dev to main so all users get updates"): the whole overnight body of work is now on master — agent OS control framework (#877-882), macOS-dark theme + purple purge (#879), App Store/real-desktop/Agents/chat redesigns, mobile chat #880 + chat-pwa theme #881. Merge-commit (history preserved), dev NOT deleted. master strict-mode + behind required an admin merge.
▶ IN FLIGHT: PR #884 agent-controlled image generation (the storybook demo's image step): generate_image now returns image_ref (fixed a broken b64-of-JSON bug) + canvas_add_image copies the workspace PNG into the project canvas files so art renders on the board; + describe_image_capabilities (read-only cluster tier/tool awareness, agent picks model by intent, system owns load/unload/queue). 26 tests. Baking -> merge to dev -> deploy Pi -> drive the FULL storybook flow to verify. DEMO BLOCKER TO CHECK: an image backend (sd-cpp on 3060 / rkllama on Pi NPU) must be installed+reachable or generate_image fails. Cross-worker image routing (Pi->3060) is a SEPARATE greenlight (TaskRouter exists, not auto-invoked).
▶ X POST (Jay, premium): drafted, honest framing (NOT first-ever; Goose/Open-Interpreter/Self-Operating-Computer exist). Angle = agent-native OS so a 4B local model drives the whole thing offline; post WITH the demo video. Add the win to README+website too (draft for approval). Private reasoning only.

▶▶ MORNING MUST-DO (Jay overnight ask, asleep): features tested+working by morning; agent OS control DONE simple; **offline agent RESULTS by morning**.
** WHEN FEDORA FREES (~05:40Z; A2A monitor watches @taOSmd box-free ping on taOS-taOSmd-hermes-integration; it's running E-009 til then): RUN THE OFFLINE EVAL. cd ~/tinyagentos-private/specs/storybook-demo/ ; follow RUNBOOK.md — score the full roster via storybook_toolcall_eval.py vs the Fedora Ollama (host 100.78.225.80:11434/v1): qwen3.5:9b iq4_xs/q5_k_m/q6_k + qwen3:14b + llama3.1:8b + qwen3:4b + gemma4:12b + qwen3.6:35b-a3b-q4 (+pull qwen3.5:4b). ONE Ollama job at a time (12GB 3060). Produce a tool-call leaderboard. taOSmd pings when free; if this session is dead, the resume cron resumes from here. **
Expand Down
Loading