freebuff 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # Freebuff
2
+
3
+ **The world's strongest free coding agent.** 3–10x faster than Claude Code.
4
+
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.
6
+
7
+ ## Install
8
+
9
+ ```bash
10
+ npm install -g freebuff
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ cd ~/my-project
17
+ freebuff
18
+ ```
19
+
20
+ ## Links
21
+
22
+ - [Documentation](https://codebuff.com/docs)
23
+ - [Website](https://codebuff.com)
24
+
25
+ > Freebuff is built on the [Codebuff](https://codebuff.com) platform.
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log()
4
+ console.log(' ⚡ Freebuff — The world\'s strongest free coding agent.')
5
+ console.log()
6
+ console.log(' 3–10x faster than Claude Code. No subscription required.')
7
+ console.log()
8
+ console.log(' Coming soon! Follow along at https://codebuff.com')
9
+ console.log()
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "freebuff",
3
+ "version": "0.0.1",
4
+ "description": "The world's strongest free coding agent",
5
+ "license": "MIT",
6
+ "bin": {
7
+ "freebuff": "index.js"
8
+ },
9
+ "scripts": {
10
+ "postinstall": "node postinstall.js"
11
+ },
12
+ "files": [
13
+ "index.js",
14
+ "postinstall.js",
15
+ "README.md"
16
+ ],
17
+ "os": [
18
+ "darwin",
19
+ "linux",
20
+ "win32"
21
+ ],
22
+ "cpu": [
23
+ "x64",
24
+ "arm64"
25
+ ],
26
+ "engines": {
27
+ "node": ">=16"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/CodebuffAI/codebuff.git"
32
+ },
33
+ "homepage": "https://codebuff.com",
34
+ "publishConfig": {
35
+ "access": "public"
36
+ }
37
+ }
package/postinstall.js ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log('\n');
4
+ console.log('⚡ Freebuff installed — the world\'s strongest free coding agent.');
5
+ console.log('\n');
6
+ console.log('Freebuff is coming soon. Follow along at https://codebuff.com');
7
+ console.log('\n');