File tree Expand file tree Collapse file tree 3 files changed +105
-0
lines changed
expensivebuff/cli/release Expand file tree Collapse file tree 3 files changed +105
-0
lines changed Original file line number Diff line number Diff line change 1+ # Expensivebuff
2+
3+ ** The world's most expensive coding agent.** Because sometimes you just need to show off.
4+
5+ An AI coding agent that runs in your terminal with premium branding and absolutely no additional features.
6+
7+ ## Install
8+
9+ ``` bash
10+ npm install -g expensivebuff
11+ ```
12+
13+ ## Usage
14+
15+ ``` bash
16+ cd ~ /my-project
17+ expensivebuff
18+ ```
19+
20+ ## Why Expensivebuff?
21+
22+ ** Expensive** - It says so right in the name. What more do you need?
23+
24+ ** Premium** - Built with luxury in mind. Same code as Codebuff, but fancier.
25+
26+ ** Irony** - Sometimes the best jokes are the ones that cost money.
27+
28+ ## FAQ
29+
30+ ** Is it actually more expensive?** No. It's exactly the same as Codebuff. The joke is the point.
31+
32+ ** Why would I use this?** You probably wouldn't. But it's fun to run ` npm i -g expensivebuff ` and see the logo.
33+
34+ ** Is this for real?** It's an April Fools joke. The code is identical to Codebuff.
35+
36+ ## The Joke
37+
38+ ```
39+ Codebuff is now Expensivebuff!
40+ npm i -g expensivebuff
41+ ```
42+
43+ Because nothing says "I have too much money to spend on software" like a coding agent with a different name.
44+
45+ ## Links
46+
47+ - [ Documentation] ( https://codebuff.com/docs )
48+ - [ GitHub] ( https://github.com/CodebuffAI/codebuff )
49+ - [ Website] ( https://codebuff.com )
50+
51+ > Built on the [ Codebuff] ( https://codebuff.com ) platform.
Original file line number Diff line number Diff line change 1+ #!/usr/bin/env node
2+
3+ const LOGO = `
4+ ███████╗██╗ ██╗██████╗ ███████╗███╗ ██╗███████╗██╗██╗ ██╗███████╗
5+ ██╔════╝╚██╗██╔╝██╔══██╗██╔════╝████╗ ██║██╔════╝██║██║ ██║██╔════╝
6+ █████╗ ╚███╔╝ ██████╔╝█████╗ ██╔██╗ ██║███████╗██║██║ ██║█████╗
7+ ██╔══╝ ██╔██╗ ██╔═══╝ ██╔══╝ ██║╚██╗██║╚════██║██║╚██╗ ██╔╝██╔══╝
8+ ███████╗██╔╝ ██╗██║ ███████╗██║ ╚████║███████║██║ ╚████╔╝ ███████╗
9+ ╚══════╝╚═╝ ╚═╝╚═╝ ╚══════╝╚═╝ ╚═══╝╚══════╝╚═╝ ╚═══╝ ╚══════╝
10+ ██████╗ ██╗ ██╗███████╗███████╗
11+ ██╔══██╗██║ ██║██╔════╝██╔════╝
12+ ██████╔╝██║ ██║█████╗ █████╗
13+ ██╔══██╗██║ ██║██╔══╝ ██╔══╝
14+ ██████╔╝╚██████╔╝██║ ██║
15+ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝
16+ `
17+
18+ console . log ( LOGO )
19+ console . log ( ' 🎉 April Fools! 🎉' )
20+ console . log ( )
21+ console . log ( ' Expensivebuff isn\'t real (yet). But while you\'re here, check out these other coding agents:' )
22+ console . log ( )
23+ console . log ( ' Codebuff — the powerful AI coding agent' )
24+ console . log ( ' \x1b[36mnpm i -g codebuff\x1b[0m' )
25+ console . log ( )
26+ console . log ( ' Freebuff — the free AI coding agent' )
27+ console . log ( ' \x1b[36mnpm i -g freebuff\x1b[0m' )
28+ console . log ( )
29+ console . log ( ' Learn more at \x1b[4mhttps://codebuff.com\x1b[0m' )
30+ console . log ( )
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " expensivebuff" ,
3+ "version" : " 1.0.4" ,
4+ "description" : " The world's most expensive coding agent" ,
5+ "license" : " MIT" ,
6+ "bin" : {
7+ "expensivebuff" : " index.js"
8+ },
9+ "files" : [
10+ " index.js" ,
11+ " README.md"
12+ ],
13+ "engines" : {
14+ "node" : " >=16"
15+ },
16+ "repository" : {
17+ "type" : " git" ,
18+ "url" : " https://github.com/CodebuffAI/codebuff.git"
19+ },
20+ "homepage" : " https://codebuff.com" ,
21+ "publishConfig" : {
22+ "access" : " public"
23+ }
24+ }
You can’t perform that action at this time.
0 commit comments