Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
c2d4acb
feat(miniapp): add builtin bitfun-loopx console MiniApp
xielixing Aug 19, 2026
3e52716
feat(miniapp): simplify bitfun-loopx data home and add macOS/Linux to…
xielixing Aug 19, 2026
aa2451c
feat(miniapp): finalize bitfun-loopx branding, icon and maintenance docs
xielixing Aug 19, 2026
10217f7
feat(desktop): bundle a compiled loopx CLI sidecar for bitfun-loopx
xielixing Aug 19, 2026
6c3ef70
feat(miniapp): remove the bitfun-loopx top bar chrome
xielixing Aug 20, 2026
b7e7853
feat(miniapp): stream visible step progress during gh login and widen…
xielixing Aug 20, 2026
6ce4cdd
feat(miniapp): adopt a per-release builtin version policy and documen…
xielixing Aug 20, 2026
466acf8
feat(web): degrade the MiniApp scene loudly on non-desktop surfaces
xielixing Aug 20, 2026
150edbb
build(installer): track the BitFun-Installer lockfile for reproducibl…
xielixing Aug 20, 2026
888b542
fix(miniapp): pass worker policy via env and harden worker boot
xielixing Aug 20, 2026
2bad947
feat(miniapp): improve LoopX task monitoring and intake
xielixing Aug 24, 2026
a7f8141
feat(miniapp): host bitfun-loopx execution in the native Rust core
xielixing Aug 25, 2026
0eebe1d
fix(miniapp): verify pristine LoopX source instead of an unrelated hash
xielixing Aug 25, 2026
4d12c85
feat(miniapp): restore LoopX model selection and pre-flight GitHub au…
xielixing Aug 25, 2026
5fcbc4e
fix(miniapp): populate LoopX model picker from host-configured models
xielixing Aug 25, 2026
75d81a2
feat(miniapp): improve LoopX orchestration UX
xielixing Aug 26, 2026
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
5 changes: 5 additions & 0 deletions .github/workflows/desktop-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,11 @@ jobs:
node-version: 22
cache: pnpm

- name: Setup Python (bundled loopx CLI)
uses: actions/setup-python@v5
with:
python-version: '3.13'

- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ jobs:
node-version: 22
cache: pnpm

- name: Setup Python (bundled loopx CLI)
uses: actions/setup-python@v5
with:
python-version: '3.13'

- name: Setup Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,6 @@ external/
/.flashgrep-index-engine/

.design/

# Generated by scripts/build-loopx.mjs (never commit the compiled binary)
src/apps/desktop/resources/loopx/
Loading