Skip to content

Commit 17c6c71

Browse files
committed
Update freebuff copy on web/readme
1 parent ab1a1bd commit 17c6c71

File tree

3 files changed

+49
-15
lines changed

3 files changed

+49
-15
lines changed

freebuff/README.md

Lines changed: 27 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Freebuff
22

3-
**The world's strongest free coding agent.** 3–10x faster than Claude Code.
3+
**The free coding agent.** No subscription. No configuration. Start in seconds.
44

5-
Freebuff is a free AI coding agent that runs in your terminal. It's blazing fast — describe what you want, and Freebuff edits your code in seconds. No subscription or credits required.
5+
An AI coding agent that runs in your terminal — describe what you want, and Freebuff edits your code.
66

7-
## Installation
7+
## Install
88

99
```bash
1010
npm install -g freebuff
@@ -17,13 +17,21 @@ cd ~/my-project
1717
freebuff
1818
```
1919

20+
## Why Freebuff?
21+
22+
**Simple** — No modes. No config. Just works.
23+
24+
**Fast** — 5–10× speed up. 3–5× tokens per second compared to Claude, plus context gathering in seconds.
25+
26+
**Loaded** — Built-in web research, browser use, and more.
27+
28+
**Connect ChatGPT** — Link your ChatGPT subscription for planning and review.
29+
2030
## Features
2131

22-
- **AI-powered coding** — Describe what you want, and Freebuff edits your code
2332
- **File mentions** — Use `@filename` to reference specific files
2433
- **Agent mentions** — Use `@AgentName` to invoke specialized agents
2534
- **Bash mode** — Run terminal commands with `!command` or `/bash`
26-
- **Image attachments** — Attach images with `/image` or `Ctrl+V`
2735
- **Chat history** — Resume past conversations with `/history`
2836
- **Knowledge files** — Add `knowledge.md` to your project for context
2937
- **Themes** — Toggle light/dark mode with `/theme:toggle`
@@ -42,16 +50,26 @@ freebuff
4250
| `/logout` | Sign out |
4351
| `/exit` | Quit |
4452

53+
## FAQ
54+
55+
**How can it be free?** Freebuff is supported by ads shown in the CLI.
56+
57+
**What models do you use?** MiniMax M2.5 as the main coding agent, Gemini 3.1 Flash Lite for finding files and research, and GPT-5.4 for deep thinking if you connect your ChatGPT subscription.
58+
59+
**Are you training on my data?** No. We only use model providers that do not train on our requests. Your code stays yours.
60+
61+
**What data do you store?** We don't store your codebase. We only collect minimal logs for debugging purposes.
62+
4563
## How It Works
4664

47-
Freebuff connects to a cloud backend and uses a model optimized for fast, high-quality assistance. Ads are shown to support the free tier.
65+
Freebuff connects to a cloud backend and uses models optimized for fast, high-quality assistance. Ads are shown to support the free tier.
4866

4967
## Project Structure
5068

5169
```
5270
freebuff/
5371
├── cli/ # CLI build & npm release files
54-
└── web/ # (Future) Freebuff website
72+
└── web/ # Freebuff website
5573
```
5674

5775
## Building from Source
@@ -61,14 +79,13 @@ freebuff/
6179
bun freebuff/cli/build.ts 1.0.0
6280
```
6381

64-
This produces a `freebuff` binary in `cli/bin/`.
65-
6682
## Links
6783

6884
- [Documentation](https://codebuff.com/docs)
85+
- [GitHub](https://github.com/CodebuffAI/codebuff)
6986
- [Website](https://codebuff.com)
7087

71-
> Freebuff is built on the [Codebuff](https://codebuff.com) platform.
88+
> Built on the [Codebuff](https://codebuff.com) platform.
7289
7390
## License
7491

freebuff/cli/release/README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Freebuff
22

3-
**The world's strongest free coding agent.** 3–10x faster than Claude Code.
3+
**The free coding agent.** No subscription. No configuration. Start in seconds.
44

5-
Freebuff is a free AI coding agent that runs in your terminal. It's blazing fast — describe what you want, and Freebuff edits your code in seconds. No subscription or credits required.
5+
An AI coding agent that runs in your terminal — describe what you want, and Freebuff edits your code.
66

77
## Install
88

@@ -17,9 +17,26 @@ cd ~/my-project
1717
freebuff
1818
```
1919

20+
## Why Freebuff?
21+
22+
**Simple** — No modes. No config. Just works.
23+
24+
**Fast** — 5–10× speed up. 3–5× tokens per second compared to Claude, plus context gathering in seconds.
25+
26+
**Loaded** — Built-in web research, browser use, and more.
27+
28+
**Connect ChatGPT** — Link your ChatGPT subscription for planning and review.
29+
30+
## FAQ
31+
32+
**How can it be free?** Freebuff is supported by ads shown in the CLI.
33+
34+
**Are you training on my data?** No. We only use model providers that do not train on our requests. Your code stays yours.
35+
2036
## Links
2137

2238
- [Documentation](https://codebuff.com/docs)
39+
- [GitHub](https://github.com/CodebuffAI/codebuff)
2340
- [Website](https://codebuff.com)
2441

25-
> Freebuff is built on the [Codebuff](https://codebuff.com) platform.
42+
> Built on the [Codebuff](https://codebuff.com) platform.

freebuff/web/src/app/home-client.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,8 +311,8 @@ function FAQList() {
311311

312312
const PHILOSOPHY_WORDS = [
313313
{ word: 'SIMPLE', description: 'No modes. No config. Just works.' },
314-
{ word: 'FAST', description: 'Up to 3× the speed of Claude Code' },
315-
{ word: 'LOADED', description: 'Built-in web research, browser use, and more' },
314+
{ word: 'FAST', description: '5–10× speed up via fast models and quick context gathering.' },
315+
{ word: 'LOADED', description: 'Built in web research, plan/review using your ChatGPT subscription, and more.' },
316316
]
317317

318318
function PhilosophySection() {

0 commit comments

Comments
 (0)