nexo-brain 0.1.0 → 0.1.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/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "nexo-brain",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "NEXO — Cognitive co-operator for Claude Code. Atkinson-Shiffrin memory, semantic RAG, trust scoring, and metacognitive error prevention.",
5
5
  "bin": {
6
- "nexo-brain": "./bin/create-nexo.js"
6
+ "nexo-brain": "./bin/nexo-brain.js"
7
7
  },
8
8
  "keywords": [
9
9
  "claude-code",
@@ -5,11 +5,13 @@ import json
5
5
  import sys
6
6
  from pathlib import Path
7
7
  from datetime import datetime
8
+ import os
8
9
 
9
- sys.path.insert(0, str(Path(os.environ.get("NEXO_HOME", str(Path.home() / ".nexo")))))
10
+ NEXO_HOME = Path(os.environ.get("NEXO_HOME", str(Path.home() / ".nexo")))
11
+ sys.path.insert(0, str(NEXO_HOME / "src"))
10
12
  import cognitive
11
13
 
12
- STATE_FILE = Path(os.environ.get("NEXO_HOME", str(Path.home() / ".nexo"))) / "operations" / ".catchup-state.json"
14
+ STATE_FILE = NEXO_HOME / "operations" / ".catchup-state.json"
13
15
 
14
16
 
15
17
  def update_catchup_state():
File without changes