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
2 changes: 1 addition & 1 deletion .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
# Signatures are stored on a dedicated branch to keep master's history clean.
branch: 'cla-signatures'
# Maintainer + bots never need to sign.
allowlist: 'Shivakumar,dependabot[bot],*[bot]'
allowlist: 'getappz,dependabot[bot],*[bot]'
custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA'
# Friendlier, self-contained first message: explains the one-time nature,
# the license guarantee, and the exact phrase — so contributors aren't
Expand Down
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agentflare"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
description = "Optimize AI CLI agents for cost and performance. Zero fluff, zero runtime deps."
license = "MIT"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Check your own: `lean-ctx gain` · `/caveman-stats` (Claude Code) · `ponytail-d
**Linux/macOS** (downloads a prebuilt binary, checksum-verified; builds from
source instead if run from inside a clone):
```bash
curl -fsSL https://raw.githubusercontent.com/getappz/agentflare/main/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/getappz/agentflare/master/install.sh | sh
```

**Homebrew:**
Expand Down Expand Up @@ -104,7 +104,7 @@ cargo install --git https://github.com/getappz/agentflare

**Uninstall:**
```bash
curl -fsSL https://raw.githubusercontent.com/getappz/agentflare/main/install.sh | sh -s -- --uninstall
curl -fsSL https://raw.githubusercontent.com/getappz/agentflare/master/install.sh | sh -s -- --uninstall
```

## Set up an agent
Expand Down Expand Up @@ -145,7 +145,7 @@ downloading something that might trip your AV.
## Docs-only fallback (Aider, other AGENTS.md readers)

```bash
curl -sL https://raw.githubusercontent.com/getappz/agentflare/main/AGENTS.md > AGENTS.md
curl -sL https://raw.githubusercontent.com/getappz/agentflare/master/AGENTS.md > AGENTS.md
```

---
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
# ./install.sh --uninstall # remove the installed binary
#
# One-liner (no Rust required):
# curl -fsSL https://raw.githubusercontent.com/getappz/agentflare/main/install.sh | sh
# curl -fsSL https://raw.githubusercontent.com/getappz/agentflare/master/install.sh | sh
#
# Uninstall one-liner:
# curl -fsSL https://raw.githubusercontent.com/getappz/agentflare/main/install.sh | sh -s -- --uninstall
# curl -fsSL https://raw.githubusercontent.com/getappz/agentflare/master/install.sh | sh -s -- --uninstall

set -eu

Expand Down
Loading