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
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Default owner — required for "Require review from Code Owners".
# @adriannoes is also listed in branch-protection bypass allowances.
* @adriannoes
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

**The first physical AI agent in a global agent ecosystem — and the only one that scales from a $15 Raspberry Pi to a $249 NVIDIA Jetson with the same C-native binary.**

A lightweight AI assistant written in C that runs on **NVIDIA Jetson Orin Nano Super** (8 GB, 67 TOPS, CUDA-accelerated local LLM) for the edge-AI maker / researcher persona, and on **Raspberry Pi Zero 2 W** (~$15, smallest viable Linux SBC) for the hobbyist persona — from a single `aarch64` binary with runtime board detection. It communicates with other agents through the [agentic marketplace](https://asap-protocol.com/browse), using [ASAP Protocol](https://github.com/adriannoes/asap-protocol).
A lightweight AI assistant written in C that runs on **NVIDIA Jetson Orin Nano Super** (8 GB, 67 TOPS, CUDA-accelerated local LLM) for the edge-AI maker / researcher persona, and on **Raspberry Pi Zero 2 W** (~$15, smallest viable Linux SBC) for the hobbyist persona — from a single `aarch64` binary with runtime board detection. It communicates with other agents through the [agentic marketplace](https://asap-protocol.com/browse), using [ASAP Protocol](https://github.com/asap-protocol/asap-protocol).

**Two personas, one binary** (see [DR-015](.cursor/strategy/decision-records/decisions.md), [DR-016](.cursor/strategy/decision-records/decisions.md)):

Expand Down
2 changes: 1 addition & 1 deletion config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ hot_reload = true
enabled = false
agent_urn = "urn:asap:agent:shellclaw-home-01"
agent_name = "ShellClaw Home Agent"
registry_url = "https://raw.githubusercontent.com/adriannoes/asap-protocol/main/registry.json"
registry_url = "https://raw.githubusercontent.com/asap-protocol/asap-protocol/main/registry.json"

[hardware]
gpio_enabled = false
Expand Down
2 changes: 1 addition & 1 deletion scripts/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ SERVICE_UNIT="${SHELLCLAW_SERVICE_UNIT:-shellclaw.service}"

INSTALL_BIN="${SHELLCLAW_INSTALL_BIN:-"${HOME%/}/.local/bin/shellclaw"}"

GITHUB_REPO="${SHELLCLAW_GITHUB_REPO:-adrianno/shellclaw}"
GITHUB_REPO="${SHELLCLAW_GITHUB_REPO:-asap-protocol/shellclaw}"

GITHUB_ASSET_NAME="${SHELLCLAW_RELEASE_ASSET_NAME:-}"

Expand Down
Loading