Compare commits

4 Commits
v0.1.0 ... main

Author SHA1 Message Date
Laura
532b8e1c61 update 2025-08-13 12:33:38 +02:00
Laura
90c467ce9e install script 2025-08-13 12:30:56 +02:00
f52675f69e update 2025-08-13 04:29:18 +02:00
3bd346e99c update 2025-08-13 04:27:36 +02:00
3 changed files with 60 additions and 0 deletions

BIN
.github/screenshot.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 KiB

View File

@@ -1,5 +1,7 @@
# idk # idk
![screenshot](.github/screenshot.png)
Turn plain-English questions into a single, ready-to-run shell command with a short explanation. idk streams the suggestion, detects your OS/shell and common tools, and (optionally) asks if you want to execute the command. Turn plain-English questions into a single, ready-to-run shell command with a short explanation. idk streams the suggestion, detects your OS/shell and common tools, and (optionally) asks if you want to execute the command.
- Powered by OpenRouter chat completions - Powered by OpenRouter chat completions
@@ -11,6 +13,12 @@ Turn plain-English questions into a single, ready-to-run shell command with a sh
There are prebuilt, stable releases available [here](https://github.com/coalaura/idk/releases). Alternatively you can also build idk from source. There are prebuilt, stable releases available [here](https://github.com/coalaura/idk/releases). Alternatively you can also build idk from source.
You can bootstrap **idk** with a single command. This script will detect your OS and CPU (`amd64`/`arm64`), download the correct binary and install it to `/usr/local/bin/idk`.
```bash
curl -sL https://src.w2k.sh/idk/install.sh | sh
```
## Configure ## Configure
On first run, idk creates a config at `~/.idk.yml` with defaults and exits so you can add your API key. On first run, idk creates a config at `~/.idk.yml` with defaults and exits so you can add your API key.

52
install.sh Normal file
View File

@@ -0,0 +1,52 @@
#!/bin/bash
set -e
OS=$(uname -s | tr 'A-Z' 'a-z')
ARCH=$(uname -m)
case "$ARCH" in
x86_64)
ARCH=amd64
;;
aarch64|arm64)
ARCH=arm64
;;
*)
echo "Unsupported architecture: $ARCH" >&2
exit 1
;;
esac
echo "Resolving latest version..."
VERSION=$(curl -sL https://api.github.com/repos/coalaura/idk/releases/latest | grep -Po '"tag_name": *"\K.*?(?=")')
if ! printf '%s\n' "$VERSION" | grep -Eq '^v[0-9]+\.[0-9]+\.[0-9]+$'; then
echo "Error: '$VERSION' is not in vMAJOR.MINOR.PATCH format" >&2
exit 1
fi
rm -f /tmp/idk
BIN="idk_${VERSION}_${OS}_${ARCH}"
URL="https://github.com/coalaura/idk/releases/download/${VERSION}/${BIN}"
echo "Downloading ${BIN}..."
if ! curl -sL "$URL" -o /tmp/idk; then
echo "Error: failed to download $URL" >&2
exit 1
fi
trap 'rm -f /tmp/idk' EXIT
chmod +x /tmp/idk
echo "Installing to /usr/local/bin/idk requires sudo"
if ! sudo install -m755 /tmp/idk /usr/local/bin/idk; then
echo "Error: install failed" >&2
exit 1
fi
echo "idk $VERSION installed to /usr/local/bin/idk"