Skip to content

cubecloud-agent-desktop v2.10.72

Choose a tag to compare

@JZKK720 JZKK720 released this 20 Jun 08:01

cubecloud-agent-desktop v2.10.72 — release notes

Source: commit 91a5226 (V2.10.71 docs+skills) on origin/main of
JZKK720/cubecloud-agentic-os
Supersedes: v2.10.71 (commit bad18b5)
Internal version: 2.10.72 (in agent-desktop/package.json)

What this release fixes

V2.10.71 published the first post-wrapper installer cleanly, but
commit 91a5226 landed on origin/main after the tag was cut and
shipped. That commit is in the GitHub source tree but not in the
v2.10.71 installer. V2.10.72 rebuilds the installer to include it.

Specifically, V2.10.71 → V2.10.72 picks up:

  1. 5 new operator-targeted skills bundled in the asar — visible in
    the in-app Skills → Browse tab on first launch.
  2. All 8 README files translated to zh-CN, ja-JP, ko-KR — the
    "Skills ecosystem — 3 layers" section, the .agents/skills/ bullet,
    the "Why teams adopt" prelaunch row, and the "On first launch"
    prelaunch list now have parity across EN / zh-CN / ja-JP / ko-KR.
  3. Locale count corrected from 8 to 9 in all 4 agent-desktop
    README files (en, zh-CN, zh-TW, ja-JP, ko-KR, es, id, pt-BR, pt-PT).
  4. Project-tree lines updated from a stale count to
    the {{SKILLS_TOTAL}} placeholder
    in the 3 translated monorepo READMEs.

5 new operator-targeted skills

Skill When the operator should use it
first-5-minutes "I'm new", "where do I start", "just installed" — walks through picking a runtime, attaching a provider, running the first chat
runtime-attach "Runtime won't connect", ECONNREFUSED 127.0.0.1:8642 — the 5 things to check when an attach fails (Hermes / IronClaw / OpenClaw)
models-page-scan "Models page doesn't see my Ollama", "health dot is red" — loopback scan, health probe, LAN opt-in
sidecar-setup "How do I install CodeGraph / EverOS / Headroom" — the 3 optional sidecars, opt-in per profile
session-search "Find my chat about X", "search past sessions" — SQLite FTS5 patterns, what it can and can't do

The 23 existing skills are kept untouched. Total desktop-bundled
skills after this release: 28.

Each new skill ships at
agent-desktop/.agents/skills/<name>/SKILL.md with the following
frontmatter so the operator can tell at a glance which skills were
written for the desktop vs upstream-adapted:

source: cubecloud
audience: end-user

Translation parity

All 8 README files now have matching section structure (ratio 1.00
per check-doc-pair.cjs):

File EN sections Translation sections ratio
README.md 11 11 1.00
agent-desktop/README.md 24 24 1.00

No mojibake (check-mojibake.cjs: 795 files clean). No hard-coded
skill counts in EN prose (check-skill-counts.cjs: clean).

Known limitations

  • Both portable.exe AND setup.exe uploads are throttled by the
    corporate proxy on github.com:443 as of 2026-06-20. The 130 MB
    NSIS setup.exe previously uploaded cleanly during the V2.10.71
    release, but as of this run the proxy began silently dropping
    large asset uploads mid-stream with no error returned. The 4 KB
    latest.yml and 138 KB setup.exe.blockmap upload fine, but
    the 130+ MB executables hang indefinitely.
  • First-run local install of Hermes runtime is required to
    activate the IronClaw and OpenClaw lanes. The desktop ships the
    installer; the runtime is fetched on first launch from
    ghcr.io/pewdiepipe-archdaemon/odysseus (no local build of the
    runtime tree).

Publishing status

V2.10.72 source is on origin/main (commit d02809f) and tag
v2.10.72 is pushed to origin.
The GitHub Release page is
not yet created — the 130 MB setup.exe upload hangs on the
corporate proxy as documented above. To publish from a network
that allows the upload:

# From a network that allows github.com large-file uploads:
gh release create v2.10.72 \
  --target main \
  --title "cubecloud-agent-desktop v2.10.72" \
  --notes-file agent-desktop/changelogs/2.10.72.md \
  agent-desktop/dist/cubecloud-agent-desktop-2.10.72-setup.exe \
  agent-desktop/dist/cubecloud-agent-desktop-2.10.72-setup.exe.blockmap \
  agent-desktop/dist/cubecloud-agent-desktop-2.10.72-portable.exe \
  agent-desktop/dist/latest.yml

The 4 build artifacts are present in agent-desktop/dist/
(205 MB asar packed, 133 MB setup.exe, 133 MB portable.exe,
142 KB blockmap, 381 B latest.yml). All 28 SKILL.md files are
verified present in the asar via
npx asar list dist/win-unpacked/resources/app.asar | grep SKILL.md.

Build verification (filled after npm run build:win)

Artifact Size SHA-256
cubecloud-agent-desktop-2.10.72-setup.exe TBD TBD
cubecloud-agent-desktop-2.10.72-portable.exe TBD TBD
cubecloud-agent-desktop-2.10.72-setup.exe.blockmap TBD TBD
latest.yml TBD TBD

Asar integrity: TBD

Why a patch bump (2.10.71 → 2.10.72) and not a minor bump

SemVer wise, the change is purely additive: new skills (new files,
no API change), new translations (new files, no source change), no
breaking changes to the IPC surface, no provider/runner changes.
2.10.71 → 2.10.72 correctly signals "rebuild to pick up source
additions" without claiming a new feature surface.

Provenance

  • Diff bad18b5..91a5226 — 13 files changed, 835 insertions, 19 deletions
  • 5 new files: agent-desktop/.agents/skills/{first-5-minutes,runtime-attach,models-page-scan,sidecar-setup,session-search}/SKILL.md
  • 8 modified files: 4 monorepo READMEs (en, zh-CN, ja-JP, ko-KR) + 4 agent-desktop READMEs
  • 1 version bump: agent-desktop/package.json (2.10.712.10.72)