claude-nomad 0.48.0 → 0.49.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/CHANGELOG.md +7 -0
- package/README.md +17 -0
- package/dist/nomad.mjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.49.0](https://github.com/funkadelic/claude-nomad/compare/v0.48.0...v0.49.0) (2026-06-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Added
|
|
7
|
+
|
|
8
|
+
* **plugin:** add companion Claude Code plugin ([#281](https://github.com/funkadelic/claude-nomad/issues/281)) ([af85994](https://github.com/funkadelic/claude-nomad/commit/af859940453b6f9419d26072be4b0e04aaea1e8f))
|
|
9
|
+
|
|
3
10
|
## [0.48.0](https://github.com/funkadelic/claude-nomad/compare/v0.47.1...v0.48.0) (2026-06-09)
|
|
4
11
|
|
|
5
12
|
|
package/README.md
CHANGED
|
@@ -111,6 +111,21 @@ commits on a `nomad/stranded-<ts>` branch, and resets to `origin/main`, then re-
|
|
|
111
111
|
any stranded or dirty tracked changes touch synced config (shared/, hosts/, path-map.json), so
|
|
112
112
|
config you care about is never silently discarded.
|
|
113
113
|
|
|
114
|
+
## Claude Code plugin
|
|
115
|
+
|
|
116
|
+
An optional companion plugin puts nomad one slash away inside Claude Code and warns you at session
|
|
117
|
+
start when your synced setup has drifted. It is a thin layer over the CLI: install `claude-nomad`
|
|
118
|
+
first, then add the plugin.
|
|
119
|
+
|
|
120
|
+
```text
|
|
121
|
+
/plugin marketplace add funkadelic/claude-nomad
|
|
122
|
+
/plugin install nomad@claude-nomad
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
It adds `/nomad:pull`, `/nomad:diff`, `/nomad:push` (preview only), `/nomad:doctor`, and
|
|
126
|
+
`/nomad:clean`, plus a session-start drift check. See the
|
|
127
|
+
[plugin guide](https://funkadelic.github.io/claude-nomad/plugin/) for details.
|
|
128
|
+
|
|
114
129
|
## Requirements
|
|
115
130
|
|
|
116
131
|
- Node.js 22.22.1 or newer (24 LTS recommended)
|
|
@@ -128,6 +143,8 @@ version-staleness check and `nomad doctor --check-schema`. The CLI works without
|
|
|
128
143
|
- [Setup and migration](https://funkadelic.github.io/claude-nomad/quickstart/) -- full setup
|
|
129
144
|
walkthrough, migrating an existing `~/.claude/`
|
|
130
145
|
- [Commands reference](https://funkadelic.github.io/claude-nomad/commands/) -- all CLI flags
|
|
146
|
+
- [Claude Code plugin](https://funkadelic.github.io/claude-nomad/plugin/) -- /nomad slash commands
|
|
147
|
+
and the session-start drift check
|
|
131
148
|
- [Recovery flows](https://funkadelic.github.io/claude-nomad/recovery/) -- backups, drop-session,
|
|
132
149
|
redact, gitleaks allowlist, non-interactive allow
|
|
133
150
|
- [FAQ](https://funkadelic.github.io/claude-nomad/faq/) -- common questions, like the right
|
package/dist/nomad.mjs
CHANGED
|
@@ -1920,7 +1920,7 @@ function reportBackupsCheck(section2, backupBase2 = backupBase()) {
|
|
|
1920
1920
|
if (count > DOCTOR_BACKUP_COUNT_WARN || sizeMb > DOCTOR_BACKUP_SIZE_WARN_MB) {
|
|
1921
1921
|
addItem(
|
|
1922
1922
|
section2,
|
|
1923
|
-
`${yellow(warnGlyph)} backups: ${count} dirs / ${sizeMb.toFixed(1)} MB (run 'nomad clean --backups')`
|
|
1923
|
+
`${yellow(warnGlyph)} backups: ${count} dirs / ${sizeMb.toFixed(1)} MB (run 'nomad clean --backups --keep <N>'; bare --backups only prunes dirs older than 14d)`
|
|
1924
1924
|
);
|
|
1925
1925
|
}
|
|
1926
1926
|
}
|
|
@@ -5959,7 +5959,7 @@ function parsePushArgs(argv) {
|
|
|
5959
5959
|
// package.json
|
|
5960
5960
|
var package_default = {
|
|
5961
5961
|
name: "claude-nomad",
|
|
5962
|
-
version: "0.
|
|
5962
|
+
version: "0.49.0",
|
|
5963
5963
|
type: "module",
|
|
5964
5964
|
description: "Sync Claude Code config (~/.claude/) across machines via a private Git repo, with path remapping and per-host settings overrides.",
|
|
5965
5965
|
keywords: [
|
package/package.json
CHANGED