claude-brain 0.8.0 → 0.9.0

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.8.0
1
+ 0.9.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-brain",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Local development assistant bridging Obsidian vaults with Claude Code via MCP",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -45,6 +45,9 @@
45
45
  ],
46
46
  "author": "",
47
47
  "license": "MIT",
48
+ "publishConfig": {
49
+ "access": "public"
50
+ },
48
51
  "devDependencies": {
49
52
  "@types/bun": "latest",
50
53
  "@types/node": "^20",
@@ -3,7 +3,7 @@ import type { PartialConfig } from './schema'
3
3
  /** Default configuration values for Claude Brain */
4
4
  export const defaultConfig: PartialConfig = {
5
5
  serverName: 'claude-brain',
6
- serverVersion: '0.8.0',
6
+ serverVersion: '0.9.0',
7
7
  logLevel: 'info',
8
8
  logFilePath: './logs/claude-brain.log',
9
9
  dbPath: './data/memory.db',
@@ -325,7 +325,7 @@ export const ConfigSchema = z.object({
325
325
  advancedIntelligence: AdvancedIntelligenceConfigSchema.default({}),
326
326
 
327
327
  /** Phase 16: Unified tool mode — expose only brain() instead of all 25 tools */
328
- unifiedToolMode: z.boolean().default(false),
328
+ unifiedToolMode: z.boolean().default(true),
329
329
 
330
330
  /** Phase 17: Passive learning hooks configuration */
331
331
  hooks: HooksConfigSchema.default({}),