claude-think 0.5.1 → 0.5.2

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/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.5.2] - 2026-02-08
9
+
10
+ ### Fixed
11
+ - Project context path now matches Claude Code's directory convention (leading dash preserved)
12
+ - `/Users/test/project` → `-Users-test-project` (matches Claude Code)
13
+ - Previously stripped the leading dash, causing context to write to wrong directory
14
+
15
+ ## [0.5.1] - 2026-02-08
16
+
17
+ ### Fixed
18
+ - Cleaned up npm package with `.npmignore`
19
+ - Removed obsolete templates (allowed-commands, corrections, pending, settings)
20
+ - Updated README with current commands and features
21
+
8
22
  ## [0.5.0] - 2025-02-08
9
23
 
10
24
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-think",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "Personal context manager for Claude - manage your preferences, patterns, and memory",
5
5
  "author": "Amit Feldman",
6
6
  "license": "MIT",
@@ -51,7 +51,7 @@ export const CONFIG = {
51
51
  */
52
52
  export function getProjectClaudeMdPath(projectDir: string): string {
53
53
  // Convert absolute path to a safe directory name by replacing path separators
54
- const safePath = projectDir.replace(/^\//, "").replace(/\//g, "-");
54
+ const safePath = projectDir.replace(/\//g, "-");
55
55
  return join(CONFIG.claudeProjectsDir, safePath, "CLAUDE.md");
56
56
  }
57
57