claude-nomad 0.69.2 → 0.69.3
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 +16 -0
- package/README.md +9 -7
- package/dist/nomad.mjs +336 -322
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.69.3](https://github.com/funkadelic/claude-nomad/compare/v0.69.2...v0.69.3) (2026-09-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### What's new
|
|
7
|
+
|
|
8
|
+
A quick follow-up to 0.69.2 for a recent change in Claude Code.
|
|
9
|
+
|
|
10
|
+
* Claude Code 2.1.275 and later copy the skills enabled on your claude.ai account into `~/.claude/skills/synced/`, and can also create `skills/.trash/` and `skills/.staging/` next to it. nomad now leaves all three folders alone: `nomad push` no longer copies them into your sync repo and removes any copy an earlier push left there, `nomad pull` never touches them, and `nomad doctor` stops listing their files as out of sync.
|
|
11
|
+
* To stop Claude Code syncing those skills at all, set `"syncClaudeAiSkills": false` in `~/.claude/settings.json` (on a synced machine, put it in your base or host settings file in the sync repo instead).
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
* **skills:** also skip Claude Code's skills .trash and .staging folders ([#618](https://github.com/funkadelic/claude-nomad/issues/618)) ([fbb9eb1](https://github.com/funkadelic/claude-nomad/commit/fbb9eb173842598f6aaf1be387bc73fffc1cb43f))
|
|
17
|
+
* **skills:** stop syncing Claude Code's skills/synced folder ([#616](https://github.com/funkadelic/claude-nomad/issues/616)) ([59618dc](https://github.com/funkadelic/claude-nomad/commit/59618dcc25333b4bed2a7a1da73167d1be5dd660))
|
|
18
|
+
|
|
3
19
|
## [0.69.2](https://github.com/funkadelic/claude-nomad/compare/v0.69.1...v0.69.2) (2026-09-19)
|
|
4
20
|
|
|
5
21
|
|
package/README.md
CHANGED
|
@@ -32,13 +32,15 @@ session history survives different file paths and your secrets never ride along.
|
|
|
32
32
|
- **One shared setup, per-machine exceptions.** Your own skills, slash commands, rules, and your
|
|
33
33
|
`CLAUDE.md` live in one place and follow you everywhere. `hooks/` and `agents/` are installed
|
|
34
34
|
per-host by `@opengsd/gsd-core` via npm and are not synced (syncing them caused version-skew
|
|
35
|
-
churn). Skills sync as a filtered copy: your own skills travel, `gsd-*` skills
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
35
|
+
churn). Skills sync as a filtered copy: your own skills travel, while `gsd-*` skills and Claude
|
|
36
|
+
Code's own account-skills folders (`skills/synced/`, `skills/.trash/`, `skills/.staging/`) stay
|
|
37
|
+
behind (see `SHARED_LINKS` in `src/core/config.ts` and `src/sync/skills-sync.ts`). Claude Code
|
|
38
|
+
keeps its copy of the skills enabled on your claude.ai account there. Settings merge a shared base
|
|
39
|
+
with a per-host override, so one machine can run a different model or MCP URL without forking the
|
|
40
|
+
rest. GSD-owned hook entries (scripts whose basename starts with `gsd-`) are filtered out of the
|
|
41
|
+
generated `~/.claude/settings.json` during pull and stripped from `shared/settings.base.json` on
|
|
42
|
+
the next push; GSD reinstalls the correct per-host hook set itself. A non-gsd hook you add to your
|
|
43
|
+
live settings syncs normally via `nomad capture-settings`.
|
|
42
44
|
- **Every push is secret-scanned.** Only an explicit allow-list of paths ever leaves the machine,
|
|
43
45
|
credentials never sync, and gitleaks scans the exact files about to be published. The push aborts
|
|
44
46
|
on any hit, with an interactive menu to redact, allow, or drop the finding. Always publish through
|