Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
f259a7b
feat(peripherals): add Arduino UNO Q edge-native peripheral with full…
tgruben-circuit Feb 18, 2026
588a117
fix(peripherals): fix UNO Q Bridge for real hardware deployment
tgruben-circuit Feb 18, 2026
08511fd
feat(peripherals): update UNO Q camera tool for USB cameras + add mus…
tgruben-circuit Feb 18, 2026
73847e0
fix(peripherals): load peripheral tools in daemon/channel path + fix …
tgruben-circuit Feb 18, 2026
98485c4
Merge pull request #3 from tgruben-circuit/feat/uno-q-edge-native
caiqinghua Feb 19, 2026
5ca037c
Merge branch 'zeroclaw-labs:main' into main
caiqinghua Feb 19, 2026
7417204
Merge branch 'zeroclaw-labs:main' into main
caiqinghua Feb 19, 2026
a01c0c3
Merge branch 'zeroclaw-labs:main' into main
caiqinghua Feb 19, 2026
f8b359e
Merge branch 'zeroclaw-labs:main' into main
caiqinghua Feb 19, 2026
cfdc6e4
Merge branch 'zeroclaw-labs:main' into main
caiqinghua Feb 19, 2026
f923e54
Merge branch 'zeroclaw-labs:main' into main
caiqinghua Feb 20, 2026
ec13305
Merge branch 'zeroclaw-labs:main' into main
caiqinghua Feb 20, 2026
44aa42b
Readme zeroclaw-labs to openagen
caiqinghua Feb 20, 2026
d4a8aac
fix: restore default-feature build on main
vlattko Feb 21, 2026
b75bbf8
chore: update Cargo.lock (rustix version reference normalization)
claude Feb 21, 2026
32ebd28
Merge pull request #4 from vlattko/codex/fix-default-build-20260221
caiqinghua Feb 22, 2026
f5b3d3a
fix(security): fix build errors, harden security defaults and documen…
claude Feb 22, 2026
2cc07f9
docs(security): add shell execution security note
claude Feb 22, 2026
edb20d0
Merge branch 'main' into claude/security-functionality-analysis-al5ZG
TomTomCoder Feb 22, 2026
ac8cfee
docs(security): add security analysis table with grades to README
claude Feb 22, 2026
2f91cbf
docs(security): expand security analysis table to cover all 31 tool s…
claude Feb 22, 2026
f2e7001
fix(tests): add missing SkillsPromptInjectionMode arg to test call
claude Feb 22, 2026
58a1967
chore: resolve all clippy -D warnings and fmt violations
claude Feb 22, 2026
fe0c958
Merge pull request #7 from TomTomCoder/claude/security-functionality-…
caiqinghua Feb 23, 2026
ffa630b
Create README.pt-br.md
kubota Feb 25, 2026
a4b4042
Merge pull request #10 from kubota/docs/readme-ptbr-translation
caiqinghua Feb 25, 2026
8b449fb
docs(readme): add Portuguese (Brazil) language link
kubota Feb 25, 2026
4191028
Merge pull request #11 from kubota/patch-1
caiqinghua Feb 28, 2026
440f6c2
docs: note on Docker tool visibility and auth setup
rogerpembery Feb 28, 2026
6a321f1
docs: remove keychain reference, keep tool visibility note
rogerpembery Feb 28, 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
4 changes: 4 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,8 @@
rustflags = ["-C", "link-arg=-static"]

[target.aarch64-unknown-linux-musl]
linker = "aarch64-linux-musl-gcc"
rustflags = ["-C", "link-arg=-static"]

[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
2 changes: 1 addition & 1 deletion Cargo.lock

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

11 changes: 7 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repository = "https://github.com/zeroclaw-labs/zeroclaw"
readme = "README.md"
keywords = ["ai", "agent", "cli", "assistant", "chatbot"]
categories = ["command-line-utilities", "api-bindings"]
rust-version = "1.87"
rust-version = "1.91"

[dependencies]
# CLI - minimal and fast
Expand Down Expand Up @@ -111,7 +111,7 @@ which = "7.0"

# WebSocket client channels (Discord/Lark/DingTalk)
tokio-tungstenite = { version = "0.28", features = ["rustls-tls-webpki-roots"] }
futures-util = { version = "0.3", default-features = false, features = ["sink"] }
futures-util = { version = "0.3", default-features = false, features = ["sink", "alloc"] }
regex = "1.10"
hostname = "0.4.2"
rustls = "0.23"
Expand Down Expand Up @@ -164,7 +164,7 @@ wa-rs-tokio-transport = { version = "0.2", optional = true, default-features = f
# Raspberry Pi GPIO / Landlock (Linux only) — target-specific to avoid compile failure on macOS
[target.'cfg(target_os = "linux")'.dependencies]
rppal = { version = "0.22", optional = true }
landlock = { version = "0.4", optional = true }
landlock = { version = "0.4" }

# Unix-specific dependencies (for root check, etc.)
[target.'cfg(unix)'.dependencies]
Expand All @@ -183,7 +183,10 @@ browser-native = ["dep:fantoccini"]
# Backward-compatible alias for older invocations
fantoccini = ["browser-native"]
# Sandbox feature aliases used by cfg(feature = "sandbox-*")
sandbox-landlock = ["dep:landlock"]
# sandbox-landlock is now a no-op: landlock compiles automatically on Linux
# (via [target.'cfg(target_os = "linux")'.dependencies]) without requiring a flag.
# Keep for backward compatibility with build scripts that pass --features sandbox-landlock.
sandbox-landlock = []
sandbox-bubblewrap = []
# Backward-compatible alias for older invocations
landlock = ["sandbox-landlock"]
Expand Down
124 changes: 110 additions & 14 deletions README.md

Large diffs are not rendered by default.

Loading
Loading