ocerebro 0.4.2 → 0.4.3

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.
@@ -268,6 +268,16 @@ Se confirmar, chame novamente com dry_run=false.
268
268
  """, encoding="utf-8")
269
269
  print(f"[OK] Slash command criado: {remember_cmd}")
270
270
 
271
+ dashboard_cmd = commands_dir / "cerebro-dashboard.md"
272
+ if not dashboard_cmd.exists():
273
+ dashboard_cmd.write_text("""---
274
+ description: Abrir dashboard visual do OCerebro
275
+ ---
276
+ Use a ferramenta cerebro_dashboard com port=7999.
277
+ Após abrir, confirme ao usuário a URL http://localhost:7999 onde o dashboard está disponível.
278
+ """, encoding="utf-8")
279
+ print(f"[OK] Slash command criado: {dashboard_cmd}")
280
+
271
281
  # Slash commands globais em ~/.claude/commands/
272
282
  if global_commands:
273
283
  global_commands_dir = Path.home() / ".claude" / "commands"
@@ -347,6 +357,16 @@ Se confirmar, chame novamente com dry_run=false.
347
357
  """, encoding="utf-8")
348
358
  print(f"[OK] Slash command global criado: {remember_global}")
349
359
 
360
+ dashboard_global = global_commands_dir / "cerebro-dashboard.md"
361
+ if not dashboard_global.exists():
362
+ dashboard_global.write_text("""---
363
+ description: Abrir dashboard visual do OCerebro (global)
364
+ ---
365
+ Use a ferramenta cerebro_dashboard com port=7999.
366
+ Após abrir, confirme ao usuário a URL http://localhost:7999 onde o dashboard está disponível.
367
+ """, encoding="utf-8")
368
+ print(f"[OK] Slash command global criado: {dashboard_global}")
369
+
350
370
  return True
351
371
 
352
372
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ocerebro",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
4
  "description": "OCerebro - Sistema de Memoria para Agentes (Claude Code/MCP)",
5
5
  "main": "bin/ocerebro.js",
6
6
  "bin": {
package/pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "ocerebro"
7
- version = "0.4.2"
7
+ version = "0.4.3"
8
8
  description = "OCerebro - Sistema de Memoria para Agentes (Claude Code/MCP)"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"