From 780262f695b52dcaf11e427ba4ac4cf04b69f1d4 Mon Sep 17 00:00:00 2001 From: Bernardo Johnston Date: Thu, 12 Feb 2026 00:04:09 -0600 Subject: [PATCH 1/2] Add landing page and GitHub Pages config - docs/index.html: Full landing page with install command, features grid, how-it-works steps, upgrade path visualization, architecture diagram, and CTA sections. Dark theme matching Everclaw site style. - docs/CNAME: smartagent.org domain for GitHub Pages DNS settings for smartagent.org: A records: 185.199.108.153, .109, .110, .111 Or CNAME: smartagentprotocol.github.io --- docs/CNAME | 1 + docs/index.html | 578 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 579 insertions(+) create mode 100644 docs/CNAME create mode 100644 docs/index.html diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 0000000..9d967a0 --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +smartagent.org diff --git a/docs/index.html b/docs/index.html new file mode 100644 index 0000000..ba03493 --- /dev/null +++ b/docs/index.html @@ -0,0 +1,578 @@ + + + + + + SmartAgent β€” Your Personal AI Agent + + + + + + + + + + + + + +
+
+
Open Source Β· Decentralized Β· Free to Start
+

Your Personal AI Agent

+

One command. Free inference. No API key needed. SmartAgent gives you a personal AI that runs on your machine, powered by decentralized compute β€” not big tech.

+ +
+ + curl -fsSL https://smartagent.org/install.sh | bash +
+

Works on macOS and Linux Β· Requires ~500MB Β· Takes about 2 minutes

+
+
+ +
+ + +
+
+

What You Get

+

A personal AI assistant that actually respects your autonomy.

+ +
+
+
♾️
+

Free Inference

+

Powered by the Morpheus P2P network. No subscription, no credit card, no API key needed to start.

+
+
+
πŸ”’
+

Private by Default

+

Runs on your machine. Your conversations don't train anyone else's model. No data harvesting.

+
+
+
🌐
+

Decentralized

+

No single company controls your access to AI. No corporate kill switch. Censorship resistant.

+
+
+
🧠
+

Remembers You

+

Persistent memory across sessions. Your agent learns your preferences, projects, and context over time.

+
+
+
πŸ’¬
+

Multi-Channel

+

Start with WebChat. Add Signal, Telegram, WhatsApp, Discord, or Slack when you're ready.

+
+
+
πŸ”§
+

Extensible

+

50+ skills available. Browse the web, manage files, check weather, automate tasks, and more.

+
+
+
+
+ +
+ + +
+
+

How It Works

+

From zero to personal AI in about two minutes.

+ +
+
+
1
+
+

Run the installer

+

One command installs everything: Node.js, OpenClaw (the agent framework), and Everclaw (decentralized inference). No manual setup.

+
+
+
+
2
+
+

Free inference activates

+

The installer connects to the Morpheus API Gateway β€” a decentralized network of AI compute providers. You get access to Kimi K2.5 (a powerful open-source model) for free, immediately.

+
+
+
+
3
+
+

Your agent opens in the browser

+

WebChat launches automatically. Your agent introduces itself, learns your name, and starts becoming yours. No account creation, no sign-up flow.

+
+
+
+
4
+
+

Grow from there

+

Add messaging channels, install new skills, upgrade to premium models, or stake MOR tokens for fully self-sovereign inference. Your agent guides you through each step when you're ready.

+
+
+
+
+
+ +
+ + +
+
+

Upgrade Path

+

Start free. Upgrade when you want. Own your inference forever.

+ +
+
+
πŸš€
+
+

Day 1: Morpheus API Gateway FREE

+

Kimi K2.5 via the Morpheus decentralized network. No API key, no account. Just install and talk.

+
+
+
+
πŸ”‘
+
+

Week 1: Your Own API Key FREE

+

Register at app.mor.org for a personal key. Same free inference, but tied to your account for better reliability.

+
+
+
+
⚑
+
+

Month 1: Venice Subscription $8/mo

+

Add premium models: Claude Opus, GPT-5.2, and more. Venice provides uncensored, private inference β€” your conversations are never stored.

+
+
+
+
♾️
+
+

When Ready: MOR Staking OWN FOREVER

+

Stake MOR tokens to open inference sessions directly on the Morpheus P2P network. Your tokens aren't consumed β€” they're staked and returned. Inference you own, forever.

+
+
+
+
+
+ +
+ + +
+
+

Under the Hood

+

SmartAgent = OpenClaw + Everclaw + sensible defaults. No fork, no lock-in.

+ +
+SmartAgent +β”œβ”€β”€ OpenClaw (AI agent framework) +β”‚ β”œβ”€β”€ Gateway daemon β€” background service +β”‚ β”œβ”€β”€ Agent runtime β€” sessions, memory, tools +β”‚ β”œβ”€β”€ Channels β€” WebChat, Signal, Telegram... +β”‚ └── Skills β€” 50+ via ClawHub +β”œβ”€β”€ Everclaw (decentralized inference) +β”‚ β”œβ”€β”€ Morpheus API Gateway β€” free, cloud +β”‚ β”œβ”€β”€ Morpheus P2P Proxy β€” local, staked MOR +β”‚ └── Gateway Guardian β€” self-healing watchdog +└── SmartAgent Config + β”œβ”€β”€ SOUL.md β€” agent personality + β”œβ”€β”€ AGENTS.md β€” workspace conventions + └── BOOTSTRAP.md β€” first-run experience +
+
+
+ +
+ + +
+
+

Ready?

+

One command. Two minutes. Your own personal AI agent.

+ +
+ + curl -fsSL https://smartagent.org/install.sh | bash +
+ +

macOS and Linux Β· No API key required Β· Open source (MIT)

+

+ Questions? Open an issue Β· + Want to contribute? Fork on GitHub +

+
+
+ + + + + + + + From 881747d8a1f96b00aa08bb3188524d9f661bdf78 Mon Sep 17 00:00:00 2001 From: Bernardo Johnston Date: Thu, 12 Feb 2026 00:07:31 -0600 Subject: [PATCH 2/2] Fix ShellCheck warnings: remove unused variables - Remove OPENCLAW_MIN_VERSION (unused, reserved for future version pinning) - Remove SMARTAGENT_REPO (unused, config downloads use raw GitHub URLs) - Remove ARCH assignment (OS check validates arch, no variable needed) --- install.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 5df6fa0..6247fad 100755 --- a/install.sh +++ b/install.sh @@ -18,10 +18,8 @@ set -euo pipefail # ─── Configuration ─────────────────────────────────────────────────────────── SMARTAGENT_VERSION="0.1.0" -OPENCLAW_MIN_VERSION="2026.2" NODE_MIN_VERSION="22" EVERCLAW_REPO="https://github.com/profbernardoj/everclaw.git" -SMARTAGENT_REPO="https://github.com/SmartAgentProtocol/smartagent.git" WORKSPACE="${OPENCLAW_WORKSPACE:-$HOME/.openclaw/workspace}" SKILL_DIR="$WORKSPACE/skills/everclaw" @@ -72,8 +70,8 @@ check_os() { local arch arch="$(uname -m)" case "$arch" in - x86_64|amd64) ARCH="x64" ;; - arm64|aarch64) ARCH="arm64" ;; + x86_64|amd64) ;; # supported + arm64|aarch64) ;; # supported *) err "Unsupported architecture: $arch" exit 1