basic-memory 0.8.0__py3-none-any.whl → 0.10.0__py3-none-any.whl

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.

Potentially problematic release.


This version of basic-memory might be problematic. Click here for more details.

Files changed (76) hide show
  1. basic_memory/__init__.py +1 -1
  2. basic_memory/alembic/migrations.py +4 -9
  3. basic_memory/alembic/versions/cc7172b46608_update_search_index_schema.py +106 -0
  4. basic_memory/api/app.py +9 -6
  5. basic_memory/api/routers/__init__.py +2 -1
  6. basic_memory/api/routers/knowledge_router.py +30 -4
  7. basic_memory/api/routers/memory_router.py +3 -2
  8. basic_memory/api/routers/project_info_router.py +274 -0
  9. basic_memory/api/routers/search_router.py +22 -4
  10. basic_memory/cli/app.py +54 -3
  11. basic_memory/cli/commands/__init__.py +15 -2
  12. basic_memory/cli/commands/db.py +9 -13
  13. basic_memory/cli/commands/import_chatgpt.py +31 -36
  14. basic_memory/cli/commands/import_claude_conversations.py +32 -35
  15. basic_memory/cli/commands/import_claude_projects.py +34 -37
  16. basic_memory/cli/commands/import_memory_json.py +26 -28
  17. basic_memory/cli/commands/mcp.py +7 -1
  18. basic_memory/cli/commands/project.py +119 -0
  19. basic_memory/cli/commands/project_info.py +167 -0
  20. basic_memory/cli/commands/status.py +7 -9
  21. basic_memory/cli/commands/sync.py +54 -9
  22. basic_memory/cli/commands/{tools.py → tool.py} +92 -19
  23. basic_memory/cli/main.py +40 -1
  24. basic_memory/config.py +157 -10
  25. basic_memory/db.py +19 -4
  26. basic_memory/deps.py +10 -3
  27. basic_memory/file_utils.py +34 -18
  28. basic_memory/markdown/markdown_processor.py +1 -1
  29. basic_memory/markdown/utils.py +5 -0
  30. basic_memory/mcp/main.py +1 -2
  31. basic_memory/mcp/prompts/__init__.py +6 -2
  32. basic_memory/mcp/prompts/ai_assistant_guide.py +9 -10
  33. basic_memory/mcp/prompts/continue_conversation.py +65 -126
  34. basic_memory/mcp/prompts/recent_activity.py +55 -13
  35. basic_memory/mcp/prompts/search.py +72 -17
  36. basic_memory/mcp/prompts/utils.py +139 -82
  37. basic_memory/mcp/server.py +1 -1
  38. basic_memory/mcp/tools/__init__.py +11 -22
  39. basic_memory/mcp/tools/build_context.py +85 -0
  40. basic_memory/mcp/tools/canvas.py +17 -19
  41. basic_memory/mcp/tools/delete_note.py +28 -0
  42. basic_memory/mcp/tools/project_info.py +51 -0
  43. basic_memory/mcp/tools/{resource.py → read_content.py} +42 -5
  44. basic_memory/mcp/tools/read_note.py +190 -0
  45. basic_memory/mcp/tools/recent_activity.py +100 -0
  46. basic_memory/mcp/tools/search.py +56 -17
  47. basic_memory/mcp/tools/utils.py +245 -17
  48. basic_memory/mcp/tools/write_note.py +124 -0
  49. basic_memory/models/search.py +2 -1
  50. basic_memory/repository/entity_repository.py +3 -2
  51. basic_memory/repository/project_info_repository.py +9 -0
  52. basic_memory/repository/repository.py +23 -6
  53. basic_memory/repository/search_repository.py +33 -10
  54. basic_memory/schemas/__init__.py +12 -0
  55. basic_memory/schemas/memory.py +3 -2
  56. basic_memory/schemas/project_info.py +96 -0
  57. basic_memory/schemas/search.py +27 -32
  58. basic_memory/services/context_service.py +3 -3
  59. basic_memory/services/entity_service.py +8 -2
  60. basic_memory/services/file_service.py +107 -57
  61. basic_memory/services/link_resolver.py +5 -45
  62. basic_memory/services/search_service.py +45 -16
  63. basic_memory/sync/sync_service.py +274 -39
  64. basic_memory/sync/watch_service.py +174 -34
  65. basic_memory/utils.py +40 -40
  66. basic_memory-0.10.0.dist-info/METADATA +386 -0
  67. basic_memory-0.10.0.dist-info/RECORD +99 -0
  68. basic_memory/mcp/prompts/json_canvas_spec.py +0 -25
  69. basic_memory/mcp/tools/knowledge.py +0 -68
  70. basic_memory/mcp/tools/memory.py +0 -177
  71. basic_memory/mcp/tools/notes.py +0 -201
  72. basic_memory-0.8.0.dist-info/METADATA +0 -379
  73. basic_memory-0.8.0.dist-info/RECORD +0 -91
  74. {basic_memory-0.8.0.dist-info → basic_memory-0.10.0.dist-info}/WHEEL +0 -0
  75. {basic_memory-0.8.0.dist-info → basic_memory-0.10.0.dist-info}/entry_points.txt +0 -0
  76. {basic_memory-0.8.0.dist-info → basic_memory-0.10.0.dist-info}/licenses/LICENSE +0 -0
@@ -1,379 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: basic-memory
3
- Version: 0.8.0
4
- Summary: Local-first knowledge management combining Zettelkasten with knowledge graphs
5
- Project-URL: Homepage, https://github.com/basicmachines-co/basic-memory
6
- Project-URL: Repository, https://github.com/basicmachines-co/basic-memory
7
- Project-URL: Documentation, https://github.com/basicmachines-co/basic-memory#readme
8
- Author-email: Basic Machines <hello@basic-machines.co>
9
- License: AGPL-3.0-or-later
10
- License-File: LICENSE
11
- Requires-Python: >=3.12.1
12
- Requires-Dist: aiosqlite>=0.20.0
13
- Requires-Dist: alembic>=1.14.1
14
- Requires-Dist: dateparser>=1.2.0
15
- Requires-Dist: fastapi[standard]>=0.115.8
16
- Requires-Dist: greenlet>=3.1.1
17
- Requires-Dist: icecream>=2.1.3
18
- Requires-Dist: logfire[fastapi,httpx,sqlalchemy,sqlite3]>=3.6.0
19
- Requires-Dist: loguru>=0.7.3
20
- Requires-Dist: markdown-it-py>=3.0.0
21
- Requires-Dist: mcp>=1.2.0
22
- Requires-Dist: pillow>=11.1.0
23
- Requires-Dist: pydantic-settings>=2.6.1
24
- Requires-Dist: pydantic[email,timezone]>=2.10.3
25
- Requires-Dist: pyright>=1.1.390
26
- Requires-Dist: python-frontmatter>=1.1.0
27
- Requires-Dist: pyyaml>=6.0.1
28
- Requires-Dist: qasync>=0.27.1
29
- Requires-Dist: rich>=13.9.4
30
- Requires-Dist: sqlalchemy>=2.0.0
31
- Requires-Dist: typer>=0.9.0
32
- Requires-Dist: unidecode>=1.3.8
33
- Requires-Dist: watchfiles>=1.0.4
34
- Description-Content-Type: text/markdown
35
-
36
- # Basic Memory
37
-
38
- Basic Memory lets you build persistent knowledge through natural conversations with Large Language Models (LLMs) like
39
- Claude, while keeping everything in simple markdown files on your computer. It uses the Model Context Protocol (MCP) to
40
- enable any compatible LLM to read and write to your local knowledge base.
41
-
42
- ## What is Basic Memory?
43
-
44
- Most people use LLMs like calculators - paste in some text, expect to get an answer back, repeat. Each conversation
45
- starts fresh,
46
- and any knowledge or context is lost. Some try to work around this by:
47
-
48
- - Saving chat histories (but they're hard to reference)
49
- - Copying and pasting previous conversations (messy and repetitive)
50
- - Using RAG systems to query documents (complex and often cloud-based)
51
-
52
- Basic Memory takes a different approach by letting both humans and LLMs read and write knowledge naturally using
53
- standard markdown files. This means:
54
-
55
- - Your knowledge stays in files you control
56
- - Both you and the LLM can read and write notes
57
- - Context persists across conversations
58
- - Context stays local and user controlled
59
-
60
- ## How It Works in Practice
61
-
62
- Let's say you're working on a new project and want to capture design decisions. Here's how it works:
63
-
64
- 1. Start by chatting normally:
65
-
66
- ```markdown
67
- We need to design a new auth system, some key features:
68
-
69
- - local first, don't delegate users to third party system
70
- - support multiple platforms via jwt
71
- - want to keep it simple but secure
72
- ```
73
-
74
- ... continue conversation.
75
-
76
- 2. Ask Claude to help structure this knowledge:
77
-
78
- ```
79
- "Lets write a note about the auth system design."
80
- ```
81
-
82
- Claude creates a new markdown file on your system (which you can see instantly in Obsidian or your editor):
83
-
84
- ```markdown
85
- ---
86
- title: Auth System Design
87
- permalink: auth-system-design
88
- tags
89
- - design
90
- - auth
91
- ---
92
-
93
- # Auth System Design
94
-
95
- ## Observations
96
-
97
- - [requirement] Local-first authentication without third party delegation
98
- - [tech] JWT-based auth for cross-platform support
99
- - [principle] Balance simplicity with security
100
-
101
- ## Relations
102
-
103
- - implements [[Security Requirements]]
104
- - relates_to [[Platform Support]]
105
- - referenced_by [[JWT Implementation]]
106
- ```
107
-
108
- The note embeds semantic content (Observations) and links to other topics (Relations) via simple markdown formatting.
109
-
110
- 3. You can edit this file directly in your editor in real time:
111
-
112
- ```markdown
113
- # Auth System Design
114
-
115
- ## Observations
116
-
117
- - [requirement] Local-first authentication without third party delegation
118
- - [tech] JWT-based auth for cross-platform support
119
- - [principle] Balance simplicity with security
120
- - [decision] Will use bcrypt for password hashing # Added by you
121
-
122
- ## Relations
123
-
124
- - implements [[Security Requirements]]
125
- - relates_to [[Platform Support]]
126
- - referenced_by [[JWT Implementation]]
127
- - blocks [[User Service]] # Added by you
128
- ```
129
-
130
- 4. In a new chat with Claude, you can reference this knowledge:
131
-
132
- ```
133
- "Claude, look at memory://auth-system-design for context about our auth system"
134
- ```
135
-
136
- Claude can now build rich context from the knowledge graph. For example:
137
-
138
- ```
139
- Following relation 'implements [[Security Requirements]]':
140
- - Found authentication best practices
141
- - OWASP guidelines for JWT
142
- - Rate limiting requirements
143
-
144
- Following relation 'relates_to [[Platform Support]]':
145
- - Mobile auth requirements
146
- - Browser security considerations
147
- - JWT storage strategies
148
- ```
149
-
150
- Each related document can lead to more context, building a rich semantic understanding of your knowledge base. All of
151
- this context comes from standard markdown files that both humans and LLMs can read and write.
152
-
153
- Everything stays in local markdown files that you can:
154
-
155
- - Edit in any text editor
156
- - Version via git
157
- - Back up normally
158
- - Share when you want to
159
-
160
- ## Technical Implementation
161
-
162
- Under the hood, Basic Memory:
163
-
164
- 1. Stores everything in markdown files
165
- 2. Uses a SQLite database just for searching and indexing
166
- 3. Extracts semantic meaning from simple markdown patterns
167
- 4. Maintains a local knowledge graph from file content
168
-
169
- The file format is just markdown with some simple markup:
170
-
171
- Frontmatter
172
-
173
- - title
174
- - type
175
- - permalink
176
- - optional metadata
177
-
178
- Observations
179
-
180
- - facts about a topic
181
-
182
- ```markdown
183
- - [category] content #tag (optional context)
184
- ```
185
-
186
- Relations
187
-
188
- - links to other topics
189
-
190
- ```markdown
191
- - relation_type [[WikiLink]] (optional context)
192
- ```
193
-
194
- Example:
195
-
196
- ```markdown
197
- ---
198
- title: Note tile
199
- type: note
200
- permalink: unique/stable/id # Added automatically
201
- tags
202
- - tag1
203
- - tag2
204
- ---
205
-
206
- # Note Title
207
-
208
- Regular markdown content...
209
-
210
- ## Observations
211
-
212
- - [category] Structured knowledge #tag (optional context)
213
- - [idea] Another observation
214
-
215
- ## Relations
216
-
217
- - links_to [[Other Note]]
218
- - implements [[Some Spec]]
219
- ```
220
-
221
- Basic Memory will parse the markdown and derive the semantic relationships in the content. When you run
222
- `basic-memory sync`:
223
-
224
- 1. New and changed files are detected
225
- 2. Markdown patterns become semantic knowledge:
226
-
227
- - `[tech]` becomes a categorized observation
228
- - `[[WikiLink]]` creates a relation in the knowledge graph
229
- - Tags and metadata are indexed for search
230
-
231
- 3. A SQLite database maintains these relationships for fast querying
232
- 4. Claude and other MCP-compatible LLMs can access this knowledge via memory:// URLs
233
-
234
- This creates a two-way flow where:
235
-
236
- - Humans write and edit markdown files
237
- - LLMs read and write through the MCP protocol
238
- - Sync keeps everything consistent
239
- - All knowledge stays in local files.
240
-
241
- ## Using with Claude
242
-
243
- Basic Memory works with the Claude desktop app (https://claude.ai/):
244
-
245
- 1. Install Basic Memory locally:
246
-
247
- ```bash
248
- {
249
- "mcpServers": {
250
- "basic-memory": {
251
- "command": "uvx",
252
- "args": [
253
- "basic-memory"
254
- ]
255
- }
256
- }
257
- ```
258
-
259
- 2. Add to Claude Desktop:
260
-
261
- ```
262
- Basic Memory is available with these tools:
263
- - write_note() for creating/updating notes
264
- - read_note() for loading notes
265
- - build_context() to load notes via memory:// URLs
266
- - recent_activity() to find recently updated information
267
- - search() to search infomation in the knowledge base
268
- ```
269
-
270
- 3. Install via uv
271
-
272
- ```bash
273
- uv add basic-memory
274
-
275
- # sync local knowledge updates
276
- basic-memory sync
277
-
278
- # run realtime sync process
279
- basic-memory sync --watch
280
- ```
281
-
282
- ## Design Philosophy
283
-
284
- Basic Memory is built on some key ideas:
285
-
286
- - Your knowledge should stay in files you control
287
- - Both humans and AI should use natural formats
288
- - Simple text patterns can capture rich meaning
289
- - Local-first doesn't mean feature-poor
290
-
291
- ## Importing data
292
-
293
- Basic memory has cli commands to import data from several formats into Markdown files
294
-
295
- ### Claude.ai
296
-
297
- First, request an export of your data from your Claude account. The data will be emailed to you in several files,
298
- including
299
- `conversations.json` and `projects.json`.
300
-
301
- Import Claude.ai conversation data
302
-
303
- ```bash
304
- basic-memory import claude conversations
305
- ```
306
-
307
- The conversations will be turned into Markdown files and placed in the "conversations" folder by default (this can be
308
- changed with the --folder arg).
309
-
310
- Example:
311
-
312
- ```bash
313
- Importing chats from conversations.json...writing to .../basic-memory
314
- Reading chat data... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100%
315
- ╭────────────────────────────╮
316
- │ Import complete! │
317
- │ │
318
- │ Imported 307 conversations │
319
- │ Containing 7769 messages │
320
- ╰────────────────────────────╯
321
- ```
322
-
323
- Next, you can run the `sync` command to import the data into basic-memory
324
-
325
- ```bash
326
- basic-memory sync
327
- ```
328
-
329
- You can also import project data from Claude.ai
330
-
331
- ```bash
332
- ➜ basic-memory import claude projects
333
- Importing projects from projects.json...writing to .../basic-memory/projects
334
- Reading project data... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100%
335
- ╭────────────────────────────────╮
336
- │ Import complete! │
337
- │ │
338
- │ Imported 101 project documents │
339
- │ Imported 32 prompt templates │
340
- ╰────────────────────────────────╯
341
-
342
- Run 'basic-memory sync' to index the new files.
343
- ```
344
-
345
- ### Chat Gpt
346
-
347
- ```bash
348
- ➜ basic-memory import chatgpt
349
- Importing chats from conversations.json...writing to .../basic-memory/conversations
350
-
351
- Reading chat data... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100%
352
- ╭────────────────────────────╮
353
- │ Import complete! │
354
- │ │
355
- │ Imported 198 conversations │
356
- │ Containing 11777 messages │
357
- ╰────────────────────────────╯
358
-
359
-
360
- ```
361
-
362
- ### Memory json
363
-
364
- ```bash
365
- ➜ basic-memory import memory-json
366
- Importing from memory.json...writing to .../basic-memory
367
- Reading memory.json... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100%
368
- Creating entities... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100%
369
- ╭──────────────────────╮
370
- │ Import complete! │
371
- │ │
372
- │ Created 126 entities │
373
- │ Added 252 relations │
374
- ╰──────────────────────╯
375
- ```
376
-
377
- ## License
378
-
379
- AGPL-3.0
@@ -1,91 +0,0 @@
1
- basic_memory/__init__.py,sha256=1Vkhl1i_QQpYLtQxxfrs_tJ3ZUbmJC0C4zxgmVy7C60,122
2
- basic_memory/config.py,sha256=kh3LC9slFHoxfIufziyqafbI2tS9NXpEgJ8y3bH1Ixk,2129
3
- basic_memory/db.py,sha256=EVX3pgA2rah4tZpxy5wKvZSN8vVcrvo5l-hKjAXBb0U,5284
4
- basic_memory/deps.py,sha256=8LkcfppQEJpiflYZxLk-SmQuL04qknbsdfzIkM_ctuY,5530
5
- basic_memory/file_utils.py,sha256=Kx2WVewno_SnLMnorHdiWwsZztY6esKRVirmDQSiv2w,5864
6
- basic_memory/utils.py,sha256=2GOo14HUcnzpft6tkSCr8QTESlS5baxfm8oZJ6vdVds,3711
7
- basic_memory/alembic/alembic.ini,sha256=IEZsnF8CbbZnkwBr67LzKKNobHuzTaQNUvM8Psop5xc,3733
8
- basic_memory/alembic/env.py,sha256=GyQpEpQu84flqAdelxR0-H9nbkHrVoCboYGfmltBDoA,2737
9
- basic_memory/alembic/migrations.py,sha256=CIbkMHEKZ60aDUhFGSQjv8kDNM7sazfvEYHGGcy1DBk,858
10
- basic_memory/alembic/script.py.mako,sha256=MEqL-2qATlST9TAOeYgscMn1uy6HUS9NFvDgl93dMj8,635
11
- basic_memory/alembic/versions/3dae7c7b1564_initial_schema.py,sha256=lTbWlAnd1es7xU99DoJgfaRe1_Kte8TL98riqeKGV80,4363
12
- basic_memory/alembic/versions/502b60eaa905_remove_required_from_entity_permalink.py,sha256=k6xYTmYPM9Ros-7CA7BwZBKYwoK_gmVdC-2n8FAjdoE,1840
13
- basic_memory/alembic/versions/b3c3938bacdb_relation_to_name_unique_index.py,sha256=RsGymQzfRXV1LSNKiyi0lMilTxW1NgwS9jR67ye2apI,1428
14
- basic_memory/api/__init__.py,sha256=wCpj-21j1D0KzKl9Ql6unLBVFY0K1uGp_FeSZRKtqpk,72
15
- basic_memory/api/app.py,sha256=Ma-kLPkwlHUQ1dutExIqedMiFurzgBcazusQDq7IDsE,1374
16
- basic_memory/api/routers/__init__.py,sha256=iviQ1QVYobC8huUuyRhEjcA0BDjrOUm1lXHXhJkxP9A,239
17
- basic_memory/api/routers/knowledge_router.py,sha256=2encEkZw7gKyfwa2HjFtTJh5aXhl96DFLrSB2pk-HfI,5291
18
- basic_memory/api/routers/memory_router.py,sha256=wGoAWm1ehWSlDYI66eUtp99b7uPJtymh2RMaZiohh0Y,5371
19
- basic_memory/api/routers/resource_router.py,sha256=WEJEqEaY_yTKj5-U-rW4kXQKUcJflykgwI6_g_R41ck,8058
20
- basic_memory/api/routers/search_router.py,sha256=WCLuAkEZ-DpwHU8RsnZg63_LDiSYbbLLlBb9Avbc2fA,1164
21
- basic_memory/cli/__init__.py,sha256=arcKLAWRDhPD7x5t80MlviZeYzwHZ0GZigyy3NKVoGk,33
22
- basic_memory/cli/app.py,sha256=EyE-qactiI4QMGXZzmYcVNtn3-16zy1jT_G-a-yx2AU,324
23
- basic_memory/cli/main.py,sha256=KH2JDvQNIwV7VRKnKZ2jTkMSlTECziUmk1xgmU6ezfw,433
24
- basic_memory/cli/commands/__init__.py,sha256=OQGLaKTsOdPsp2INM_pHzmOlbVfdL0sytBNgvqTqCDY,159
25
- basic_memory/cli/commands/db.py,sha256=BW3VmoTKNfzkl85m9lyrx8lkk1IRb6wuAmrPKFQxNE8,906
26
- basic_memory/cli/commands/import_chatgpt.py,sha256=py3q9iMlB85olQBsBcEpUt0X03hHvAmRy8iQl2dbbuc,8394
27
- basic_memory/cli/commands/import_claude_conversations.py,sha256=_7n-nn1tbsaarwR25QXjYxSC_K2M0cXBTzthnCZ_4-w,7030
28
- basic_memory/cli/commands/import_claude_projects.py,sha256=fvXu6wwlmfA2wJCcp8IoJnz3INefkVcFhqAX8KhnCtc,6851
29
- basic_memory/cli/commands/import_memory_json.py,sha256=cS-1rxGYUC0-QsETIbA0QqbB1Cl74YcnoJRNCkMkM-o,5395
30
- basic_memory/cli/commands/mcp.py,sha256=BPdThcufdriIvrDskc87a0oCC1BkZ0PZsgNao_-oNKk,611
31
- basic_memory/cli/commands/status.py,sha256=YEw6SA82Y8GbtTIn-h6m15zjX5bGMx5abAbu19LXVjs,5398
32
- basic_memory/cli/commands/sync.py,sha256=uSzGPdjbMX7PKh8iA_Oo06zLc0tixX_cV6i_JWph95I,6766
33
- basic_memory/cli/commands/tools.py,sha256=P5EMifFHDlaTFje97Yxp9GawoRlCOML5Dy6wBBjMnjo,6117
34
- basic_memory/markdown/__init__.py,sha256=DdzioCWtDnKaq05BHYLgL_78FawEHLpLXnp-kPSVfIc,501
35
- basic_memory/markdown/entity_parser.py,sha256=LnjG_wg38LVN8JndsZJV2UVGPIaoIV5sGs94iQ9PL6k,3781
36
- basic_memory/markdown/markdown_processor.py,sha256=mV3pYoDTaQMEl1tA5n_XztBvNlYyH2SzKs4vnKdAet4,4952
37
- basic_memory/markdown/plugins.py,sha256=gtIzKRjoZsyvBqLpVNnrmzl_cbTZ5ZGn8kcuXxQjRko,6639
38
- basic_memory/markdown/schemas.py,sha256=mzVEDUhH98kwETMknjkKw5H697vg_zUapsJkJVi17ho,1894
39
- basic_memory/markdown/utils.py,sha256=ZtHa-dG--ZwFEUC3jfl04KZGhM_ZWo5b-8d8KpJ90gY,2758
40
- basic_memory/mcp/__init__.py,sha256=dsDOhKqjYeIbCULbHIxfcItTbqudEuEg1Np86eq0GEQ,35
41
- basic_memory/mcp/async_client.py,sha256=Eo345wANiBRSM4u3j_Vd6Ax4YtMg7qbWd9PIoFfj61I,236
42
- basic_memory/mcp/main.py,sha256=p_zjCDSeT9EsjNmlzDfEQ7xI8Y_bBLmMG0g-y-DakTA,703
43
- basic_memory/mcp/server.py,sha256=vlhURihp7Ly1eVyI01J9zvYhbz7wgHkhoNLNq6KOGug,286
44
- basic_memory/mcp/prompts/__init__.py,sha256=BsjRBgxYjS-JXK8RqJQQd1xPEoWWgQ4Hw3BynaYxGwA,670
45
- basic_memory/mcp/prompts/ai_assistant_guide.py,sha256=e2DoP2Dv2HSDd00m6xGjGMWxUIqYJceJhw3RxuuJdeA,925
46
- basic_memory/mcp/prompts/continue_conversation.py,sha256=tXE626Qay8aY4tDQhAmvZYO8nf7tTfAMRqE24JShTvc,6666
47
- basic_memory/mcp/prompts/json_canvas_spec.py,sha256=yKO_9_ojF4tCEWSMuHn5YNHFkAibzPdOgluAKJ-K924,827
48
- basic_memory/mcp/prompts/recent_activity.py,sha256=3b9_jxPQ-c4lQH05Ig2a6k4ApWW5d9WhcArhMU0S6BM,1552
49
- basic_memory/mcp/prompts/search.py,sha256=1E8dHcPRCy19Emv7r4MWJ2ZYsuQNa4qRmIy2fnuWuoA,4496
50
- basic_memory/mcp/prompts/utils.py,sha256=cPdlJl1D5bS36hQBoBgf0RACE2ToUy-HgHukO8eRkZ4,3734
51
- basic_memory/mcp/tools/__init__.py,sha256=_MXdi0AJr5WB5C20WSQAwHhWOyhspyzbgWL9ijQh3to,953
52
- basic_memory/mcp/tools/canvas.py,sha256=wbSg-NauRmz_reNH3SUY2kLWNUKMA5kPvSoz_6ec7uw,3162
53
- basic_memory/mcp/tools/knowledge.py,sha256=JotFMQpMwidx0WLvOG4yWpwWwLmyp-PoO6bVjpQseYQ,2671
54
- basic_memory/mcp/tools/memory.py,sha256=rteQJSXIUGsJbA-AzZN1dyHKr98EELHGc-rvMXlG2JI,6474
55
- basic_memory/mcp/tools/notes.py,sha256=vAiQsJqJvxevYUPxVib10Jd5qvEMATeiSeu1sGe32nM,7415
56
- basic_memory/mcp/tools/resource.py,sha256=Imbl8exE27qPmWEZ4DXIeCdpQXSYYv_ul8whTu3d_cE,6526
57
- basic_memory/mcp/tools/search.py,sha256=UFPBDzfZ60SrvAgvISO3Jt6WdNwEQKsvibQdPxC7dOg,1511
58
- basic_memory/mcp/tools/utils.py,sha256=h_iDGduofU4GyQyyARkI4L-OJ9Rwppkx48BDSEMYsLY,4866
59
- basic_memory/models/__init__.py,sha256=Bf0xXV_ryndogvZDiVM_Wb6iV2fHUxYNGMZNWNcZi0s,307
60
- basic_memory/models/base.py,sha256=4hAXJ8CE1RnjKhb23lPd-QM7G_FXIdTowMJ9bRixspU,225
61
- basic_memory/models/knowledge.py,sha256=lbKd8VOOVPqXtIhNMY30bIokoQutFjLpHwLD5At90MY,6644
62
- basic_memory/models/search.py,sha256=IB-ySJUqlQq9FqLGfWnraIFcB_brWa9eBwsQP1rVTeI,1164
63
- basic_memory/repository/__init__.py,sha256=TnscLXARq2iOgQZFvQoT9X1Bn9SB_7s1xw2fOqRs3Jg,252
64
- basic_memory/repository/entity_repository.py,sha256=VFLymzJ1W6AZru_s1S3U6nlqSprBrVV5Toy0-qysIfw,3524
65
- basic_memory/repository/observation_repository.py,sha256=BOcy4wARqCXu-thYyt7mPxt2A2C8TW0le3s_X9wrK6I,1701
66
- basic_memory/repository/relation_repository.py,sha256=DwpTcn9z_1sZQcyMOUABz1k1VSwo_AU63x2zR7aerTk,2933
67
- basic_memory/repository/repository.py,sha256=X59h8JevRn9sEZz6R41NvtyXo9Gbq22mY-XxsoIEwrQ,11324
68
- basic_memory/repository/search_repository.py,sha256=3AOrfTihzLKiXZTGerrKyRUpITNtXyLrp_XWEVpY3h0,10503
69
- basic_memory/schemas/__init__.py,sha256=WXQ2okYPC-OFa2xmCWq-EP52lSuqFX9Sx-zMJUPv8to,1318
70
- basic_memory/schemas/base.py,sha256=dwnaI5fJXsdp81mdH0ZpmJ-WICY-0M7ZPWeW5OUgBG8,5685
71
- basic_memory/schemas/delete.py,sha256=UAR2JK99WMj3gP-yoGWlHD3eZEkvlTSRf8QoYIE-Wfw,1180
72
- basic_memory/schemas/memory.py,sha256=ap8lKHxUfM6WTiAFlObs_rZWz3sQxhiGlcvc_NVA9f8,3094
73
- basic_memory/schemas/request.py,sha256=58r9mPGc4Am9rR_zGzo-yqXcsrl5I6n3M5LjGK5gFFk,1626
74
- basic_memory/schemas/response.py,sha256=lVYR31DTtSeFRddGWX_wQWnQgyiwX0LEpNJ4f4lKpTM,6440
75
- basic_memory/schemas/search.py,sha256=riODPc4EWgXTM4QRBJZ9vZga9lP9lYRF7Nfbtlw_gjg,3344
76
- basic_memory/services/__init__.py,sha256=oop6SKmzV4_NAYt9otGnupLGVCCKIVgxEcdRQWwh25I,197
77
- basic_memory/services/context_service.py,sha256=y2Kd9YRPdQbJ6uWcY71z2qCZZUt8Sb2Dy52dh2OMJxo,9651
78
- basic_memory/services/entity_service.py,sha256=cMas6BjtWJLt3QMUsR1U21Js_vpFFKz1SMwSnXD8Suk,12133
79
- basic_memory/services/exceptions.py,sha256=VGlCLd4UD2w5NWKqC7QpG4jOM_hA7jKRRM-MqvEVMNk,288
80
- basic_memory/services/file_service.py,sha256=Z81qnaIHEQd9M9SMCQwvo5Wga3R3hfP43hEllt5KTmc,8008
81
- basic_memory/services/link_resolver.py,sha256=m1ycdKrU9tnVHaMn1vuEN4_2YJ5f912Us61PTB2O7QI,4708
82
- basic_memory/services/search_service.py,sha256=OYnv15DVUZGI3WBVwdW3VARlWR377hwb5GH2eNts400,9336
83
- basic_memory/services/service.py,sha256=V-d_8gOV07zGIQDpL-Ksqs3ZN9l3qf3HZOK1f_YNTag,336
84
- basic_memory/sync/__init__.py,sha256=CVHguYH457h2u2xoM8KvOilJC71XJlZ-qUh8lHcjYj4,156
85
- basic_memory/sync/sync_service.py,sha256=1lytLbJO1RxKhihv3n7zsuek4MpbJ_bc2aCcqGl7hh0,13724
86
- basic_memory/sync/watch_service.py,sha256=FtamKOp_aTMdTdd8fNL60Bn3VU2IjHJJh8wzp3-T5DQ,7662
87
- basic_memory-0.8.0.dist-info/METADATA,sha256=7z2Vt7lYowomq0uUxzNT6aHcwfz8IseOPcmYCbZcZfE,10885
88
- basic_memory-0.8.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
89
- basic_memory-0.8.0.dist-info/entry_points.txt,sha256=IDQa_VmVTzmvMrpnjhEfM0S3F--XsVGEj3MpdJfuo-Q,59
90
- basic_memory-0.8.0.dist-info/licenses/LICENSE,sha256=hIahDEOTzuHCU5J2nd07LWwkLW7Hko4UFO__ffsvB-8,34523
91
- basic_memory-0.8.0.dist-info/RECORD,,