basic-memory 0.2.19__tar.gz → 0.2.21__tar.gz

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 (142) hide show
  1. {basic_memory-0.2.19 → basic_memory-0.2.21}/.github/workflows/release.yml +13 -35
  2. {basic_memory-0.2.19 → basic_memory-0.2.21}/CHANGELOG.md +16 -0
  3. {basic_memory-0.2.19 → basic_memory-0.2.21}/Makefile +1 -0
  4. {basic_memory-0.2.19 → basic_memory-0.2.21}/PKG-INFO +1 -1
  5. basic_memory-0.2.21/installer/README.md +26 -0
  6. {basic_memory-0.2.19 → basic_memory-0.2.21}/installer/setup.py +8 -3
  7. {basic_memory-0.2.19 → basic_memory-0.2.21}/pyproject.toml +1 -1
  8. {basic_memory-0.2.19 → basic_memory-0.2.21}/uv.lock +1 -1
  9. basic_memory-0.2.19/installer/README.md +0 -16
  10. {basic_memory-0.2.19 → basic_memory-0.2.21}/.github/workflows/pr-title.yml +0 -0
  11. {basic_memory-0.2.19 → basic_memory-0.2.21}/.github/workflows/test.yml +0 -0
  12. {basic_memory-0.2.19 → basic_memory-0.2.21}/.gitignore +0 -0
  13. {basic_memory-0.2.19 → basic_memory-0.2.21}/.python-version +0 -0
  14. {basic_memory-0.2.19 → basic_memory-0.2.21}/CITATION.cff +0 -0
  15. {basic_memory-0.2.19 → basic_memory-0.2.21}/CODE_OF_CONDUCT.md +0 -0
  16. {basic_memory-0.2.19 → basic_memory-0.2.21}/CONTRIBUTING.md +0 -0
  17. {basic_memory-0.2.19 → basic_memory-0.2.21}/LICENSE +0 -0
  18. {basic_memory-0.2.19 → basic_memory-0.2.21}/README.md +0 -0
  19. {basic_memory-0.2.19 → basic_memory-0.2.21}/alembic.ini +0 -0
  20. {basic_memory-0.2.19 → basic_memory-0.2.21}/basic-memory.md +0 -0
  21. {basic_memory-0.2.19 → basic_memory-0.2.21}/installer/Basic.icns +0 -0
  22. {basic_memory-0.2.19 → basic_memory-0.2.21}/installer/icon.svg +0 -0
  23. {basic_memory-0.2.19 → basic_memory-0.2.21}/installer/installer.py +0 -0
  24. {basic_memory-0.2.19 → basic_memory-0.2.21}/installer/make_icons.sh +0 -0
  25. {basic_memory-0.2.19 → basic_memory-0.2.21}/memory.json +0 -0
  26. {basic_memory-0.2.19 → basic_memory-0.2.21}/scripts/install.sh +0 -0
  27. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/__init__.py +0 -0
  28. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/alembic/README +0 -0
  29. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/alembic/env.py +0 -0
  30. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/alembic/migrations.py +0 -0
  31. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/alembic/script.py.mako +0 -0
  32. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/alembic/versions/3dae7c7b1564_initial_schema.py +0 -0
  33. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/api/__init__.py +0 -0
  34. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/api/app.py +0 -0
  35. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/api/routers/__init__.py +0 -0
  36. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/api/routers/knowledge_router.py +0 -0
  37. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/api/routers/memory_router.py +0 -0
  38. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/api/routers/resource_router.py +0 -0
  39. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/api/routers/search_router.py +0 -0
  40. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/__init__.py +0 -0
  41. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/app.py +0 -0
  42. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/commands/__init__.py +0 -0
  43. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/commands/db.py +0 -0
  44. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/commands/import_memory_json.py +0 -0
  45. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/commands/mcp.py +0 -0
  46. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/commands/status.py +0 -0
  47. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/commands/sync.py +0 -0
  48. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/cli/main.py +0 -0
  49. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/config.py +0 -0
  50. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/db.py +0 -0
  51. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/deps.py +0 -0
  52. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/file_utils.py +0 -0
  53. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/markdown/__init__.py +0 -0
  54. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/markdown/entity_parser.py +0 -0
  55. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/markdown/markdown_processor.py +0 -0
  56. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/markdown/plugins.py +0 -0
  57. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/markdown/schemas.py +0 -0
  58. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/markdown/utils.py +0 -0
  59. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/__init__.py +0 -0
  60. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/async_client.py +0 -0
  61. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/server.py +0 -0
  62. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/tools/__init__.py +0 -0
  63. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/tools/knowledge.py +0 -0
  64. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/tools/memory.py +0 -0
  65. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/tools/notes.py +0 -0
  66. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/tools/search.py +0 -0
  67. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/mcp/tools/utils.py +0 -0
  68. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/models/__init__.py +0 -0
  69. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/models/base.py +0 -0
  70. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/models/knowledge.py +0 -0
  71. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/models/search.py +0 -0
  72. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/repository/__init__.py +0 -0
  73. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/repository/entity_repository.py +0 -0
  74. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/repository/observation_repository.py +0 -0
  75. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/repository/relation_repository.py +0 -0
  76. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/repository/repository.py +0 -0
  77. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/repository/search_repository.py +0 -0
  78. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/schemas/__init__.py +0 -0
  79. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/schemas/base.py +0 -0
  80. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/schemas/delete.py +0 -0
  81. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/schemas/discovery.py +0 -0
  82. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/schemas/memory.py +0 -0
  83. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/schemas/request.py +0 -0
  84. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/schemas/response.py +0 -0
  85. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/schemas/search.py +0 -0
  86. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/services/__init__.py +0 -0
  87. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/services/context_service.py +0 -0
  88. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/services/entity_service.py +0 -0
  89. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/services/exceptions.py +0 -0
  90. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/services/file_service.py +0 -0
  91. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/services/link_resolver.py +0 -0
  92. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/services/search_service.py +0 -0
  93. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/services/service.py +0 -0
  94. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/sync/__init__.py +0 -0
  95. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/sync/file_change_scanner.py +0 -0
  96. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/sync/sync_service.py +0 -0
  97. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/sync/utils.py +0 -0
  98. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/sync/watch_service.py +0 -0
  99. {basic_memory-0.2.19 → basic_memory-0.2.21}/src/basic_memory/utils.py +0 -0
  100. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/api/conftest.py +0 -0
  101. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/api/test_knowledge_router.py +0 -0
  102. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/api/test_memory_router.py +0 -0
  103. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/api/test_resource_router.py +0 -0
  104. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/api/test_search_router.py +0 -0
  105. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/cli/test_import_memory_json.py +0 -0
  106. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/cli/test_status.py +0 -0
  107. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/cli/test_sync.py +0 -0
  108. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/conftest.py +0 -0
  109. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/edit_file_test.py +0 -0
  110. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/markdown/__init__.py +0 -0
  111. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/markdown/test_entity_parser.py +0 -0
  112. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/markdown/test_markdown_plugins.py +0 -0
  113. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/markdown/test_markdown_processor.py +0 -0
  114. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/markdown/test_observation_edge_cases.py +0 -0
  115. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/markdown/test_parser_edge_cases.py +0 -0
  116. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/markdown/test_relation_edge_cases.py +0 -0
  117. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/markdown/test_task_detection.py +0 -0
  118. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/mcp/conftest.py +0 -0
  119. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/mcp/test_tool_get_entity.py +0 -0
  120. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/mcp/test_tool_knowledge.py +0 -0
  121. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/mcp/test_tool_memory.py +0 -0
  122. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/mcp/test_tool_notes.py +0 -0
  123. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/mcp/test_tool_search.py +0 -0
  124. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/mcp/test_tool_utils.py +0 -0
  125. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/repository/test_entity_repository.py +0 -0
  126. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/repository/test_observation_repository.py +0 -0
  127. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/repository/test_relation_repository.py +0 -0
  128. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/repository/test_repository.py +0 -0
  129. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/schemas/test_memory_url.py +0 -0
  130. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/schemas/test_schemas.py +0 -0
  131. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/schemas/test_search.py +0 -0
  132. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/services/test_context_service.py +0 -0
  133. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/services/test_entity_service.py +0 -0
  134. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/services/test_file_service.py +0 -0
  135. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/services/test_link_resolver.py +0 -0
  136. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/services/test_search_service.py +0 -0
  137. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/sync/test_file_change_scanner.py +0 -0
  138. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/sync/test_sync_service.py +0 -0
  139. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/sync/test_watch_service.py +0 -0
  140. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/test_basic_memory.py +0 -0
  141. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/utils/test_file_utils.py +0 -0
  142. {basic_memory-0.2.19 → basic_memory-0.2.21}/tests/utils/test_permalink_formatting.py +0 -0
@@ -57,10 +57,14 @@ jobs:
57
57
  with:
58
58
  ref: ${{ needs.release.outputs.tag }}
59
59
 
60
- - name: Set up Python
61
- uses: actions/setup-python@v5
60
+ - name: Set up Python "3.12"
61
+ uses: actions/setup-python@v4
62
62
  with:
63
- python-version: '3.12'
63
+ python-version: "3.12"
64
+ cache: 'pip'
65
+
66
+ - name: Install librsvg
67
+ run: brew install librsvg
64
68
 
65
69
  - name: Install uv
66
70
  run: |
@@ -72,47 +76,21 @@ jobs:
72
76
 
73
77
  - name: Install dependencies
74
78
  run: |
75
- uv pip install -e .[dev]
76
-
77
- - name: Install librsvg
78
- run: brew install librsvg
79
-
80
- - name: Create icon
81
- run: |
82
- cd installer
83
- chmod +x make_icons.sh
84
- ./make_icons.sh
79
+ uv sync
85
80
 
86
81
  - name: Build macOS installer
87
82
  run: |
88
- # Debug info
89
- echo "Environment Info:"
90
- uv pip list
91
- python --version
92
- which uv
93
- which python
94
- ls -la $(dirname $(which python))
95
- echo "PYTHONPATH=$PYTHONPATH"
96
-
97
- # Build
98
83
  make installer-mac
99
- #xattr -dr com.apple.quarantine "installer/build/Basic Memory Installer.app"
84
+ xattr -dr com.apple.quarantine "installer/build/Basic Memory Installer.app"
100
85
 
101
- - name: Inspect build
86
+ - name: Zip macOS installer
102
87
  run: |
103
- echo "Build structure:"
104
- ls -la installer/build/Basic\ Memory\ Installer.app/Contents/MacOS/
105
-
106
-
107
- # - name: Zip macOS installer
108
- # run: |
109
- # cd installer/build
110
- # zip -ry "Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip" "Basic Memory Installer.app"
88
+ cd installer/build
89
+ zip -ry "Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip" "Basic Memory Installer.app"
111
90
 
112
91
  - name: Upload macOS installer
113
92
  uses: softprops/action-gh-release@v1
114
93
  with:
115
- #files: installer/build/Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip
116
- files: installer/build/Basic\ Memory\ Installer.app
94
+ files: installer/build/Basic-Memory-Installer-${{ needs.release.outputs.tag }}.zip
117
95
  tag_name: ${{ needs.release.outputs.tag }}
118
96
  token: ${{ secrets.GITHUB_TOKEN }}
@@ -1,6 +1,22 @@
1
1
  # CHANGELOG
2
2
 
3
3
 
4
+ ## v0.2.21 (2025-02-15)
5
+
6
+ ### Bug Fixes
7
+
8
+ - Fix osx installer github action
9
+ ([`65ebe5d`](https://github.com/basicmachines-co/basic-memory/commit/65ebe5d19491e5ff047c459d799498ad5dd9cd1a))
10
+
11
+
12
+ ## v0.2.20 (2025-02-14)
13
+
14
+ ### Bug Fixes
15
+
16
+ - Fix installer artifact
17
+ ([`8de84c0`](https://github.com/basicmachines-co/basic-memory/commit/8de84c0221a1ee32780aa84dac4d3ea60895e05c))
18
+
19
+
4
20
  ## v0.2.19 (2025-02-14)
5
21
 
6
22
  ### Bug Fixes
@@ -32,6 +32,7 @@ run-dev:
32
32
 
33
33
  # Build app installer
34
34
  installer-mac:
35
+ cd installer && chmod +x make_icons.sh && ./make_icons.sh
35
36
  cd installer && uv run python setup.py bdist_mac
36
37
 
37
38
  installer-win:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: basic-memory
3
- Version: 0.2.19
3
+ Version: 0.2.21
4
4
  Summary: Local-first knowledge management combining Zettelkasten with knowledge graphs
5
5
  Project-URL: Homepage, https://github.com/basicmachines-co/basic-memory
6
6
  Project-URL: Repository, https://github.com/basicmachines-co/basic-memory
@@ -0,0 +1,26 @@
1
+ # Basic Memory Installer
2
+
3
+ This installer configures Basic Memory to work with Claude Desktop.
4
+
5
+ ## Installation
6
+
7
+ 1. Download the latest installer from the [releases page](https://github.com/basicmachines-co/basic-memory/releases)
8
+ 2. Unzip the downloaded file
9
+ 3. Since the app is currently unsigned, you'll need to:
10
+
11
+ On your Mac, choose Apple menu > System Settings, then click Privacy & Security in the sidebar. (You may need to
12
+ scroll down.)
13
+
14
+ Go to Security, then click Open.
15
+
16
+ Click Open Anyway.
17
+
18
+ This button is available for about an hour after you try to open the app.
19
+
20
+ Enter your login password, then click OK.
21
+
22
+ https://support.apple.com/guide/mac-help/apple-cant-check-app-for-malicious-software-mchleab3a043/mac
23
+
24
+ 5. Restart Claude Desktop
25
+
26
+ The warning only appears the first time you open the app. Future updates will include proper code signing.
@@ -4,7 +4,11 @@ import sys
4
4
  # Build options for all platforms
5
5
  build_exe_options = {
6
6
  "packages": ["json", "pathlib"],
7
- "excludes": [],
7
+ "excludes": [
8
+ "unittest",
9
+ "pydoc",
10
+ "test"
11
+ ],
8
12
  }
9
13
 
10
14
  # Platform-specific options
@@ -35,8 +39,9 @@ setup(
35
39
  "build_exe": build_exe_options,
36
40
  "bdist_mac": {
37
41
  "bundle_name": "Basic Memory Installer",
38
- "iconfile": "Basic.icns"
42
+ "iconfile": "Basic.icns",
43
+ "codesign_identity": "-", # Force ad-hoc signing
39
44
  }
40
45
  },
41
46
  executables=executables,
42
- )
47
+ )
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "basic-memory"
3
- version = "0.2.19"
3
+ version = "0.2.21"
4
4
  description = "Local-first knowledge management combining Zettelkasten with knowledge graphs"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12.1"
@@ -70,7 +70,7 @@ wheels = [
70
70
 
71
71
  [[package]]
72
72
  name = "basic-memory"
73
- version = "0.1.2"
73
+ version = "0.2.19"
74
74
  source = { editable = "." }
75
75
  dependencies = [
76
76
  { name = "aiosqlite" },
@@ -1,16 +0,0 @@
1
- # Basic Memory Installer
2
-
3
- This installer configures Basic Memory to work with Claude Desktop.
4
-
5
- ## Installation
6
-
7
- 1. Download the latest installer from the [releases page](https://github.com/basicmachines-co/basic-memory/releases)
8
- 2. Unzip the downloaded file
9
- 3. Since the app is currently unsigned, you'll need to:
10
- - Right-click (or Control-click) the app
11
- - Select "Open" from the context menu
12
- - Click "Open" in the warning dialog
13
- 4. Follow the installation instructions
14
- 5. Restart Claude Desktop
15
-
16
- The warning only appears the first time you open the app. Future updates will include proper code signing.
File without changes
File without changes
File without changes
File without changes
File without changes