mindlink 1.0.0
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/LICENSE +21 -0
- package/README.md +201 -0
- package/commands/clear.md +74 -0
- package/commands/config.md +81 -0
- package/commands/doctor.md +98 -0
- package/commands/export.md +90 -0
- package/commands/import.md +80 -0
- package/commands/index.md +81 -0
- package/commands/init.md +124 -0
- package/commands/log.md +65 -0
- package/commands/reset.md +81 -0
- package/commands/status.md +76 -0
- package/commands/summary.md +89 -0
- package/commands/sync.md +96 -0
- package/commands/uninstall.md +88 -0
- package/commands/update.md +62 -0
- package/dist/cli.js +1811 -0
- package/dist/cli.js.map +1 -0
- package/dist/templates/agents/.clinerules +40 -0
- package/dist/templates/agents/.windsurfrules +40 -0
- package/dist/templates/agents/AGENTS.md +63 -0
- package/dist/templates/agents/CLAUDE.md +65 -0
- package/dist/templates/agents/CONVENTIONS.md +42 -0
- package/dist/templates/agents/CURSOR.md +63 -0
- package/dist/templates/agents/GEMINI.md +63 -0
- package/dist/templates/agents/copilot-instructions.md +53 -0
- package/dist/templates/brain/LOG.md +22 -0
- package/dist/templates/brain/MEMORY.md +81 -0
- package/dist/templates/brain/SESSION.md +27 -0
- package/dist/templates/brain/SHARED.md +20 -0
- package/dist/templates/hooks/claude-settings.json +15 -0
- package/package.json +64 -0
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# mindlink update
|
|
2
|
+
|
|
3
|
+
Update mindlink to the latest version.
|
|
4
|
+
|
|
5
|
+
**Run in your terminal only** — this downloads and installs software. Always prompts before doing anything.
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Synopsis
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
mindlink update
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Description
|
|
18
|
+
|
|
19
|
+
Checks the latest version on [GitHub Releases](https://github.com/404-not-found/mindlink/releases) and prompts before installing. Never updates silently — you are always shown what version you're moving to and can cancel.
|
|
20
|
+
|
|
21
|
+
Release notes for every version are available at:
|
|
22
|
+
```
|
|
23
|
+
https://github.com/404-not-found/mindlink/releases
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
## Examples
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
mindlink update
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
## Output
|
|
37
|
+
|
|
38
|
+
**Update available:**
|
|
39
|
+
```
|
|
40
|
+
Current version : 1.0.0
|
|
41
|
+
Latest version : 1.2.0
|
|
42
|
+
|
|
43
|
+
❯ Update to 1.2.0
|
|
44
|
+
Skip this version
|
|
45
|
+
Cancel
|
|
46
|
+
|
|
47
|
+
[████████████████████] 100%
|
|
48
|
+
|
|
49
|
+
✓ Updated to 1.2.0
|
|
50
|
+
See what's new: github.com/404-not-found/mindlink/releases/tag/v1.2.0
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
**Already up to date:**
|
|
54
|
+
```
|
|
55
|
+
✓ You're on the latest version (1.0.0).
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## Related Commands
|
|
61
|
+
|
|
62
|
+
- [`mindlink help`](index.md) — see all commands
|