ghostycode 0.0.3 → 0.0.6

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.
Files changed (2) hide show
  1. package/README.md +14 -0
  2. package/package.json +17 -9
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,8 +1,8 @@
1
1
  {
2
2
  "name": "ghostycode",
3
- "version": "0.0.3",
4
- "ghostyBinaryVersion": "0.0.3",
5
- "description": "Ghosty Code \u2014 agentic terminal coding agent",
3
+ "version": "0.0.6",
4
+ "ghostyBinaryVersion": "0.0.6",
5
+ "description": "DeepSeek V4 terminal coding agent & constitutional harness — Rust TUI with MCP, sub-agents, and session persistence",
6
6
  "author": "Bliss (blissito)",
7
7
  "license": "MIT",
8
8
  "funding": [
@@ -20,17 +20,25 @@
20
20
  "url": "https://github.com/blissito/ghostycode/issues"
21
21
  },
22
22
  "keywords": [
23
- "ghosty",
24
- "ai",
25
- "cli",
23
+ "deepseek",
24
+ "deepseek-v4",
25
+ "agent",
26
+ "harness",
27
+ "constitution",
28
+ "coding-agent",
29
+ "terminal",
26
30
  "tui",
27
31
  "rust",
28
- "terminal",
29
- "coding-agent"
32
+ "cli",
33
+ "ai",
34
+ "mcp",
35
+ "sub-agent",
36
+ "ghosty"
30
37
  ],
31
38
  "type": "commonjs",
32
39
  "bin": {
33
- "ghosty": "bin/ghosty.js"
40
+ "ghosty": "bin/ghosty.js",
41
+ "ghosty-tui": "bin/ghosty-tui.js"
34
42
  },
35
43
  "scripts": {
36
44
  "release:check": "node scripts/verify-release-assets.js",