codogotchi 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 +9 -0
- package/bin/codogotchi.js +6 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# codogotchi
|
|
2
|
+
|
|
3
|
+
Reserved for the [Codogotchi](https://codogotchi.app) CLI.
|
|
4
|
+
|
|
5
|
+
Codogotchi is a macOS menubar + floating pet that visualizes your AI coding agents
|
|
6
|
+
(Codex, Claude Code, Cursor). The full CLI — including `codogotchi add <pet-id>` to
|
|
7
|
+
install community pets from the gallery — is coming soon.
|
|
8
|
+
|
|
9
|
+
Until then this package just prints a pointer to the project.
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codogotchi",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Codogotchi — a macOS menubar + floating pet that visualizes your AI coding agents (Codex, Claude Code, Cursor). Full CLI coming soon. https://codogotchi.app",
|
|
5
|
+
"bin": {
|
|
6
|
+
"codogotchi": "bin/codogotchi.js"
|
|
7
|
+
},
|
|
8
|
+
"keywords": ["codogotchi", "codex", "claude-code", "cursor", "pet", "menubar", "spritesheet"],
|
|
9
|
+
"homepage": "https://codogotchi.app",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/cesarnml/codogotchi.git"
|
|
13
|
+
},
|
|
14
|
+
"bugs": "mailto:admin@codogotchi.app",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Cesar Mejia",
|
|
17
|
+
"files": ["bin", "README.md"]
|
|
18
|
+
}
|