ghostycode 0.0.2 → 0.0.4
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 +14 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -44,6 +44,20 @@ ghosty sessions / resume --last # sesiones guardadas
|
|
|
44
44
|
ghosty update # actualiza el binario
|
|
45
45
|
```
|
|
46
46
|
|
|
47
|
+
## MCP — easybits incluido por defecto
|
|
48
|
+
|
|
49
|
+
Ghosty trae preconfigurado el servidor MCP de **easybits** (gestión de archivos
|
|
50
|
+
desde el agente, 100+ herramientas), **desactivado** hasta que añadas tu llave.
|
|
51
|
+
|
|
52
|
+
1. Consigue tu API key: **https://www.easybits.cloud/dash/developer**
|
|
53
|
+
2. Añádela (esto la activa):
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
ghosty mcp add easybits --url "https://www.easybits.cloud/api/mcp?tools=all" --bearer TU_EASYBITS_API_KEY
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
3. Verifica con `ghosty mcp list`.
|
|
60
|
+
|
|
47
61
|
Código y documentación: https://github.com/blissito/ghostycode
|
|
48
62
|
|
|
49
63
|
## Licencia
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ghostycode",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"ghostyBinaryVersion": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
|
+
"ghostyBinaryVersion": "0.0.4",
|
|
5
5
|
"description": "Ghosty Code \u2014 agentic terminal coding agent",
|
|
6
6
|
"author": "Bliss (blissito)",
|
|
7
7
|
"license": "MIT",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
],
|
|
31
31
|
"type": "commonjs",
|
|
32
32
|
"bin": {
|
|
33
|
-
"ghosty": "bin/ghosty.js"
|
|
33
|
+
"ghosty": "bin/ghosty.js",
|
|
34
|
+
"ghosty-tui": "bin/ghosty-tui.js"
|
|
34
35
|
},
|
|
35
36
|
"scripts": {
|
|
36
37
|
"release:check": "node scripts/verify-release-assets.js",
|