chore: fix layout
Browse files- README.md +4 -5
- install.sh +10 -8
README.md
CHANGED
|
@@ -17,11 +17,10 @@ git clone https://github.com/versperai/VersperClaw.git && cd VersperClaw && bun
|
|
| 17 |
## WebSearch & WebFetch Tools - 100% local free no remote api fee
|
| 18 |
|
| 19 |
<p align="center">
|
| 20 |
-
<img src="assets/WebSearchTool.png" width="
|
| 21 |
-
<img src="assets/WebSearchTool2.png" width="
|
| 22 |
-
<img src="assets/WebSearchTool3.png" width="
|
| 23 |
-
</p
|
| 24 |
-
|
| 25 |
|
| 26 |
```bash
|
| 27 |
# local config search engine - searxng in archlinux
|
|
|
|
| 17 |
## WebSearch & WebFetch Tools - 100% local free no remote api fee
|
| 18 |
|
| 19 |
<p align="center">
|
| 20 |
+
<img src="assets/WebSearchTool.png" width="32%" height="200" style="object-fit: cover;"/>
|
| 21 |
+
<img src="assets/WebSearchTool2.png" width="32%" height="200" style="object-fit: cover;"/>
|
| 22 |
+
<img src="assets/WebSearchTool3.png" width="32%" height="200" style="object-fit: cover;"/>
|
| 23 |
+
</p>
|
|
|
|
| 24 |
|
| 25 |
```bash
|
| 26 |
# local config search engine - searxng in archlinux
|
install.sh
CHANGED
|
@@ -12,7 +12,7 @@ BOLD='\033[1m'
|
|
| 12 |
DIM='\033[2m'
|
| 13 |
RESET='\033[0m'
|
| 14 |
|
| 15 |
-
REPO="https://github.com/
|
| 16 |
INSTALL_DIR="$HOME/versperclaw"
|
| 17 |
BUN_MIN_VERSION="1.3.11"
|
| 18 |
|
|
@@ -28,11 +28,13 @@ header() {
|
|
| 28 |
echo ""
|
| 29 |
printf "${BOLD}${CYAN}"
|
| 30 |
cat <<'ART'
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
|
|
|
|
|
|
|
|
| 36 |
|
| 37 |
ART
|
| 38 |
printf "${RESET}"
|
|
@@ -57,7 +59,7 @@ check_git() {
|
|
| 57 |
if ! command -v git &>/dev/null; then
|
| 58 |
fail "git is not installed. Install it first:
|
| 59 |
macOS: xcode-select --install
|
| 60 |
-
Linux: sudo
|
| 61 |
fi
|
| 62 |
ok "git: $(git --version | head -1)"
|
| 63 |
}
|
|
@@ -123,7 +125,7 @@ install_deps() {
|
|
| 123 |
}
|
| 124 |
|
| 125 |
build_binary() {
|
| 126 |
-
info "Building
|
| 127 |
cd "$INSTALL_DIR"
|
| 128 |
bun run build:dev:full
|
| 129 |
ok "Binary built: $INSTALL_DIR/cli-dev"
|
|
|
|
| 12 |
DIM='\033[2m'
|
| 13 |
RESET='\033[0m'
|
| 14 |
|
| 15 |
+
REPO="https://github.com/versperai/VerserClaw.git"
|
| 16 |
INSTALL_DIR="$HOME/versperclaw"
|
| 17 |
BUN_MIN_VERSION="1.3.11"
|
| 18 |
|
|
|
|
| 28 |
echo ""
|
| 29 |
printf "${BOLD}${CYAN}"
|
| 30 |
cat <<'ART'
|
| 31 |
+
|
| 32 |
+
__ __ ____ _
|
| 33 |
+
\ \ / /__ _ __ ___ _ __ ___ _ __ / ___| | __ ___ __
|
| 34 |
+
\ \ / / _ \ '__/ __| '_ \ / _ \ '__| | | |/ _` \ \ /\ / /
|
| 35 |
+
\ V / __/ | \__ \ |_) | __/ | | |___| | (_| |\ V V /
|
| 36 |
+
\_/ \___|_| |___/ .__/ \___|_| \____|_|\__,_| \_/\_/
|
| 37 |
+
|_|
|
| 38 |
|
| 39 |
ART
|
| 40 |
printf "${RESET}"
|
|
|
|
| 59 |
if ! command -v git &>/dev/null; then
|
| 60 |
fail "git is not installed. Install it first:
|
| 61 |
macOS: xcode-select --install
|
| 62 |
+
Linux: sudo pacman -S git (or your distro's equivalent eg: sudo apt install git)"
|
| 63 |
fi
|
| 64 |
ok "git: $(git --version | head -1)"
|
| 65 |
}
|
|
|
|
| 125 |
}
|
| 126 |
|
| 127 |
build_binary() {
|
| 128 |
+
info "Building VersperClaw (all experimental features enabled)..."
|
| 129 |
cd "$INSTALL_DIR"
|
| 130 |
bun run build:dev:full
|
| 131 |
ok "Binary built: $INSTALL_DIR/cli-dev"
|