Skip to content

Commit 040be05

Browse files
phernandezclaude
andcommitted
fix: normalize project names in config during startup
- Fix case sensitivity bug where config had "Personal" but database expected "personal" - Add project name normalization in synchronize_projects() to use generate_permalink() - Update config file with normalized names and log changes for user visibility - Use proper permalink generation instead of hardcoded name.lower().replace() - Add comprehensive tests for project name normalization scenarios 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent c141d7d commit 040be05

File tree

6 files changed

+168
-340
lines changed

6 files changed

+168
-340
lines changed

RELEASE_NOTES_v0.13.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Basic Memory v0.13.0 is a **major release** that transforms Basic Memory into a
1616
**Key v0.13.0 Accomplishments:**
1717
-**Complete Project Management System** - Project switching and project-specific operations
1818
-**Advanced Note Editing** - Incremental editing with append, prepend, find/replace, and section operations
19+
-**View Notes as Artifacts in Claude Desktop/Web** - Use the view_note tool to view a note as an artifact
1920
-**File Management System** - Full move operations with database consistency and rollback protection
2021
-**Enhanced Search Capabilities** - Frontmatter tags now searchable, improved content discoverability
2122
-**Unified Database Architecture** - Single app-level database for better performance and project management

TESTING.md

Lines changed: 0 additions & 337 deletions
This file was deleted.

docs/AI Assistant Guide.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,13 @@ read_note("specs/search-design") # By path
7777
read_note("memory://specs/search") # By memory URL
7878
```
7979

80+
**Viewing notes as formatted artifacts (Claude Desktop):**
81+
```
82+
view_note("Search Design") # Creates readable artifact
83+
view_note("specs/search-design") # By permalink
84+
view_note("memory://specs/search") # By memory URL
85+
```
86+
8087
**Incremental editing** (v0.13.0):
8188
```
8289
edit_note(

0 commit comments

Comments
 (0)