fixmind 1.0.4 → 1.0.7
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/README.md +1 -2
- package/dist/dashboard/assets/index-DZSvzKoZ.js +16 -0
- package/dist/dashboard/assets/{index-WDmgeIrO.css → index-HSKQ7GzA.css} +63 -0
- package/dist/dashboard/index.html +2 -2
- package/dist/src/cli-sync.d.ts +4 -0
- package/dist/src/cli-sync.js +199 -0
- package/dist/src/cli-sync.js.map +1 -0
- package/dist/src/cli-utils.d.ts +34 -0
- package/dist/src/cli-utils.js +119 -0
- package/dist/src/cli-utils.js.map +1 -0
- package/dist/src/cli.js +22 -229
- package/dist/src/cli.js.map +1 -1
- package/dist/src/dashboard.js +16 -0
- package/dist/src/dashboard.js.map +1 -1
- package/dist/src/sync-backend.d.ts +44 -0
- package/dist/src/sync-backend.js +279 -0
- package/dist/src/sync-backend.js.map +1 -0
- package/dist/src/sync.d.ts +2 -44
- package/dist/src/sync.js +36 -289
- package/dist/src/sync.js.map +1 -1
- package/package.json +1 -1
- package/dist/dashboard/assets/index-Bl0HIoQR.js +0 -14
package/README.md
CHANGED
|
@@ -19,8 +19,7 @@ Fixmind is a local-first CLI and MCP server that records short learning lessons
|
|
|
19
19
|
**Requirements:** Node.js 22.5+
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
|
-
|
|
23
|
-
fixmind setup
|
|
22
|
+
npx fixmind setup
|
|
24
23
|
```
|
|
25
24
|
|
|
26
25
|
`fixmind setup` initializes local storage and automatically configures detected installations of Cursor, Claude Code, and Codex. _Restart your AI clients after running setup._
|