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
12 changes: 12 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,18 @@ UniFFI-generated iOS (Swift) and Android (Kotlin) bindings over `core/mobile-sdk
| `scripts/package-mobile-sdk.sh` / `validate-mobile-sdk-consumers.sh` | Package and end-to-end validate generated SDK consumers. |
| `.github/workflows/mobile-sdk-artifacts.yml` | Release-triggered packaging/publishing of mobile SDK + FFI tarballs. |

### Native Shells (`apps/`) — landed on `develop` (Slice 4)

Platform shell bootstrap binaries that run the shared-core turn-start flow through explicit capability adapters (capture/hotkey/overlay/audio/permissions). See `docs/architecture/{adapter-contracts,phase-7-windows-shell-prd}.md`.

| File | Purpose |
|------|---------|
| `apps/windows-shell/src/{main,lib}.rs` | Windows shell bootstrap + adapter trait surface; `--smoke` runs a turn-start through the Rust core. |
| `apps/linux-shell/src/main.rs` | Linux shell bootstrap with session-aware capability reporting; `--smoke` flag. |
| `apps/windows-shell-gui/*` | Windows host app (Tauri 2). **Excluded from the default cargo workspace** (`exclude` in root `Cargo.toml`) — needs Windows/CI build deps; not built by local `cargo check --workspace`. |

> Validated on macOS: `cargo check --workspace` + `cargo run -p skilly-{windows,linux}-shell -- --smoke` both pass (turn-start `allowed=true`, `phase=completed`). The Tauri GUI builds in CI on Windows.

### Skill Files

The repo ships 5 bundled skills under `skills/`, also copied into the app bundle under `Resources/skills/` so new users get them without downloading anything.
Expand Down
18 changes: 18 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,12 @@ members = [
"core/skills",
"core/realtime",
"core/mobile-sdk",
# apps/* shell crates are added in Slice 4 (Windows/Linux shells)
"apps/windows-shell",
"apps/linux-shell",
]
# windows-shell-gui pulls Tauri 2 (Windows/CI build deps); excluded from the
# default workspace so `cargo check --workspace` stays buildable on macOS.
exclude = ["apps/windows-shell-gui"]
resolver = "2"

[workspace.package]
Expand Down
10 changes: 10 additions & 0 deletions apps/linux-shell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "skilly-linux-shell"
version = "0.1.0"
edition = "2021"
license = "MIT"

[dependencies]
skilly-core-domain = { path = "../../core/domain" }
skilly-core-policy = { path = "../../core/policy" }
skilly-core-realtime = { path = "../../core/realtime" }
Loading
Loading