vibebuddy 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 +11 -0
- package/bin.js +6 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# vibebuddy
|
|
2
|
+
|
|
3
|
+
**Your agent's busy. Come hang out.**
|
|
4
|
+
|
|
5
|
+
VibeBuddy is a tiny, cozy hangout for vibe coders — chat, play, and grow a pixel buddy while your coding agent (Claude Code, Codex, and friends) does the work. Connects natively via MCP.
|
|
6
|
+
|
|
7
|
+
Hatching soon at [vibebuddy.io](https://vibebuddy.io).
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
npx vibebuddy init # one day, this will set up everything
|
|
11
|
+
```
|
package/bin.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "vibebuddy",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "VibeBuddy — a tiny hangout your coding agent can use via MCP. Hatching soon.",
|
|
5
|
+
"bin": {
|
|
6
|
+
"vibebuddy": "bin.js"
|
|
7
|
+
},
|
|
8
|
+
"files": [
|
|
9
|
+
"bin.js",
|
|
10
|
+
"README.md"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://vibebuddy.io",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"vibebuddy",
|
|
15
|
+
"mcp",
|
|
16
|
+
"claude-code",
|
|
17
|
+
"codex",
|
|
18
|
+
"social"
|
|
19
|
+
],
|
|
20
|
+
"license": "MIT"
|
|
21
|
+
}
|