@prnv/tuck 1.8.0 → 1.9.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/README.md +12 -1
- package/dist/index.js +2093 -928
- package/dist/index.js.map +1 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -128,6 +128,17 @@ tuck restore --all
|
|
|
128
128
|
| `tuck config remote` | Configure git provider (GitHub/GitLab/local) |
|
|
129
129
|
| `tuck config wizard` | Interactive configuration setup |
|
|
130
130
|
|
|
131
|
+
### Diagnostics
|
|
132
|
+
|
|
133
|
+
| Command | Description |
|
|
134
|
+
| --------------- | ---------------------------------------------------- |
|
|
135
|
+
| `tuck doctor` | Run repository health and safety diagnostics |
|
|
136
|
+
|
|
137
|
+
`tuck doctor` flags:
|
|
138
|
+
- `--json`: Machine-readable output for CI
|
|
139
|
+
- `--strict`: Treat warnings as non-zero exit
|
|
140
|
+
- `--category <env|repo|manifest|security|hooks>`: Run one check group
|
|
141
|
+
|
|
131
142
|
## How It Works
|
|
132
143
|
|
|
133
144
|
tuck stores your dotfiles in `~/.tuck`, organized by category:
|
|
@@ -212,7 +223,7 @@ Configure tuck via `~/.tuck/.tuckrc.json` or `tuck config wizard`:
|
|
|
212
223
|
### File Strategies
|
|
213
224
|
|
|
214
225
|
- **copy** (default) — Files are copied. Run `tuck sync` to update the repo.
|
|
215
|
-
- **symlink** —
|
|
226
|
+
- **symlink** — tuck copies the file into the repo, then replaces the original path with a symlink to the repo file. Changes are instant, but this modifies your home dotfile paths.
|
|
216
227
|
|
|
217
228
|
## Windows Support
|
|
218
229
|
|