lshed 0.3.0 → 0.6.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 +26 -0
- package/README.md +231 -60
- package/dist/cli.js +730 -234
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.6.0 — 2026-09-03
|
|
4
|
+
|
|
5
|
+
- `lshed sync [-m <msg>] [--no-push] [--dry-run]`: commits everything in the shed, `git pull --rebase`, `git push` (setting the upstream the first time). Without `origin` it only commits. When commits come in it says to run `lshed restore`. On a conflict it aborts the rebase, leaves your commit in place and hands you the git command. It warns first if `diff` shows edits you have not saved, and never runs `save` for you.
|
|
6
|
+
- README rewritten as a usage guide: day one, daily loop, new machine, profiles, adding things, updating packages, housekeeping, output marks, every command with its flags.
|
|
7
|
+
|
|
8
|
+
## 0.5.0 — 2026-09-03
|
|
9
|
+
|
|
10
|
+
`init` was a one-shot. Anything you made afterwards had to be copied into the shed and typed into `lshed.yaml` by hand.
|
|
11
|
+
|
|
12
|
+
- `lshed add [keys...] [--all]` scans the agent root the way `init` does and lists what the shed lacks: authored skills, agents, commands, MCP servers, and git clones or plugins that should be packages. Without keys it only lists. Chosen items are copied (or recorded with a lock entry for packages), appended to `lshed.yaml` with your comments intact, added to the current profile, and added to the managed set.
|
|
13
|
+
- `status` reports things outside the shed as `창고 밖 N개 → lshed add`.
|
|
14
|
+
- `init --exclude` is now remembered as `exclude:` in the manifest, so `add` and `status` do not keep proposing the aliases you left out.
|
|
15
|
+
- `init` and `add` share one classification path (`discover`) and one ingest path, so they cannot drift apart. `init` now edits a YAML document instead of serialising an object; output is unchanged.
|
|
16
|
+
|
|
17
|
+
## 0.4.0 — 2026-09-03
|
|
18
|
+
|
|
19
|
+
Hand-configured MCP servers travel with the profile. Secret values do not.
|
|
20
|
+
|
|
21
|
+
- New category `mcp` for Claude Code: each user-scope server in `~/.claude.json` becomes `mcp/<name>.json` in the shed. `restore` writes only `mcpServers.<name>` and leaves the rest of the file (machine ID, session state, servers you added by hand) untouched. The file is replaced atomically.
|
|
22
|
+
- `init` masks values under `env` and `headers` whose key looks like a secret with `${VAR}` (`EXA_API_KEY` → `${EXA_API_KEY}`, `Authorization: Bearer …` → `Bearer ${NOTION_AUTHORIZATION}`). Claude Code expands `${VAR}` from the environment in every scope, so `restore` places the placeholder verbatim and no secret passes through lshed. Verified against the real binary.
|
|
23
|
+
- `restore` and `status` list the variables a profile needs that are not set in the current shell.
|
|
24
|
+
- `diff` shows entry changes by key path; `save` keeps placeholders that still match and masks newly added secret-looking keys.
|
|
25
|
+
- Profile switches remove only the servers lshed placed, backing each up as JSON.
|
|
26
|
+
- Adapter interface: `entries()` returns categories that live as JSON entries instead of files, with `secretKeys` and `expandsEnv` policy. The default root honours `CLAUDE_CONFIG_DIR`.
|
|
27
|
+
- Managed-set paths for entries are written as `mcp:<name>`; a colon cannot appear in a path segment, so they never collide with files.
|
|
28
|
+
|
|
3
29
|
## 0.3.0 — 2026-09-02
|
|
4
30
|
|
|
5
31
|
Claude Code plugins are packages now. On the machine this was built against, the five installed plugins were the only thing a fresh `restore` still left out, and two of them carry MCP servers.
|
package/README.md
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
# lshed
|
|
2
2
|
|
|
3
|
-
Keep your coding-agent harness — skills, subagents, commands, instructions — in a **shed**, and restore it on any machine with one command.
|
|
3
|
+
Keep your coding-agent harness — skills, subagents, commands, instructions, MCP servers — in a **shed**, and restore it on any machine with one command.
|
|
4
4
|
|
|
5
5
|
```
|
|
6
6
|
lshed init --shed ~/lshed # scan ~/.claude into a shed + write lshed.yaml
|
|
7
7
|
lshed restore research # apply a profile anywhere
|
|
8
8
|
```
|
|
9
9
|
|
|
10
|
-
The shed is a plain directory. Put it in a git repo, Dropbox, whatever. lshed
|
|
10
|
+
The shed is a plain directory. Put it in a git repo, Dropbox, whatever. `lshed sync` wraps the git part if you want it to.
|
|
11
11
|
|
|
12
12
|
## Why
|
|
13
13
|
|
|
@@ -17,7 +17,7 @@ lshed adds three first-class ideas on top of "a directory in git":
|
|
|
17
17
|
|
|
18
18
|
| Idea | What it gives you |
|
|
19
19
|
|---|---|
|
|
20
|
-
| **Components** | every skill / agent / command / instruction fragment is one named part in the shed |
|
|
20
|
+
| **Components** | every skill / agent / command / instruction fragment / MCP server is one named part in the shed |
|
|
21
21
|
| **Profiles** | named recipes — `research`, `work`, `minimal` — that pick a subset of parts |
|
|
22
22
|
| **Managed set** | lshed remembers what it placed, so switching profiles removes only its own files and never touches yours |
|
|
23
23
|
|
|
@@ -29,29 +29,190 @@ Currently supports **Claude Code** (`~/.claude`). Other agents plug in through a
|
|
|
29
29
|
npm install -g lshed
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
Node 20 or newer.
|
|
32
|
+
Node 20 or newer. `git` on the PATH for packages and `sync`. `claude` on the PATH if your shed lists plugins.
|
|
33
33
|
|
|
34
34
|
## Quick start
|
|
35
35
|
|
|
36
36
|
```bash
|
|
37
37
|
# 1. On the machine that already has your setup
|
|
38
38
|
lshed init --shed ~/lshed
|
|
39
|
-
cd ~/lshed && git init && git
|
|
39
|
+
cd ~/lshed && git init && git remote add origin <your private repo>
|
|
40
|
+
lshed sync # commit + push
|
|
40
41
|
|
|
41
42
|
# 2. Edit ~/lshed/lshed.yaml — add profiles, drop parts you don't need everywhere
|
|
42
43
|
|
|
43
44
|
# 3. On any other machine
|
|
44
45
|
git clone <your private repo> ~/lshed
|
|
45
|
-
lshed restore research --shed ~/lshed
|
|
46
|
+
lshed restore research --shed ~/lshed # --shed only needed the first time
|
|
46
47
|
```
|
|
47
48
|
|
|
49
|
+
## How to use it
|
|
50
|
+
|
|
51
|
+
### Day one: put what you have into a shed
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
$ lshed init --shed ~/lshed --exclude _gstack-command connect-chrome
|
|
55
|
+
스캔: /home/me/.claude → 창고: /home/me/lshed
|
|
56
|
+
≡ package gstack github:garrytan/gstack@main @253d1df (참조만 기록)
|
|
57
|
+
≡ package claude-plugins-official claude-marketplace:anthropics/claude-plugins-official (참조만 기록)
|
|
58
|
+
≡ package exa claude-plugin:exa@claude-plugins-official @3.4.1 (참조만 기록)
|
|
59
|
+
· skills/browse (gstack 가 생성한 것 → 건너뜀)
|
|
60
|
+
· skills/review (gstack 가 생성한 것 → 건너뜀)
|
|
61
|
+
- skills/_gstack-command (--exclude)
|
|
62
|
+
+ skills/add-drivers
|
|
63
|
+
+ skills/domain-modeling
|
|
64
|
+
+ mcp/notion (시크릿 → ${NOTION_AUTHORIZATION})
|
|
65
|
+
+ instructions/main (CLAUDE.md)
|
|
66
|
+
|
|
67
|
+
lshed.yaml 생성: /home/me/lshed/lshed.yaml (부품 4개, 패키지 3개, 생성물 53개 건너뜀, 제외 2개, 프로필 "default")
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
`init` reads your agent root and writes only to the shed and `~/.claude/lshed/`. It sorts everything into [three kinds](#three-kinds-of-things): authored parts are copied (`+`), things you installed become packages recorded by source and version (`≡`), and files an installer generated are skipped (`·`). Aliases an installer created without symlinks look authored; leave them out with `--exclude`, and lshed remembers that under `exclude:` in the manifest.
|
|
71
|
+
|
|
72
|
+
Then open `lshed.yaml`. It has one profile, `default`, listing everything. Fill in `install:` for git packages that need a post-clone step, and make it a git repo:
|
|
73
|
+
|
|
74
|
+
```
|
|
75
|
+
cd ~/lshed && git init && git remote add origin git@github.com:me/harness.git
|
|
76
|
+
lshed sync
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
### Every day: edit, save, sync
|
|
80
|
+
|
|
81
|
+
You edit skills where the agent reads them, in `~/.claude`. The shed does not change by itself.
|
|
82
|
+
|
|
83
|
+
```
|
|
84
|
+
lshed status # what profile is applied, what drifted, what is new
|
|
85
|
+
lshed diff # file-level differences between ~/.claude and the shed
|
|
86
|
+
lshed save # copy local edits into the shed (or: lshed save skills/add-drivers)
|
|
87
|
+
lshed sync # commit the shed, pull, push
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
`save` is the only path from `~/.claude` to the shed, and it only works for parts the shed owns (`file:` sources). `sync` warns if you have unsaved edits so you do not push a shed that is behind your machine.
|
|
91
|
+
|
|
92
|
+
### A new machine
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
git clone git@github.com:me/harness.git ~/lshed
|
|
96
|
+
lshed restore default --shed ~/lshed
|
|
97
|
+
```
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
+ package gstack (clone https://github.com/garrytan/gstack.git @main → 253d1df)
|
|
101
|
+
+ package claude-plugins-official (claude plugin marketplace add anthropics/claude-plugins-official)
|
|
102
|
+
+ package exa (claude plugin install exa@claude-plugins-official (전에 3.4.1; 고정은 안 됨))
|
|
103
|
+
+ skills/add-drivers
|
|
104
|
+
+ skills/domain-modeling
|
|
105
|
+
+ mcp:notion (${NOTION_AUTHORIZATION})
|
|
106
|
+
+ lshed/instructions/main.md
|
|
107
|
+
+ CLAUDE.md
|
|
108
|
+
|
|
109
|
+
프로필 "default" 적용: 배치 5, 제거 0, 패키지 설치 3
|
|
110
|
+
|
|
111
|
+
설치 명령 1개를 실행하지 않았습니다. 확인 후 '--yes' 로 다시 실행하거나 직접 돌리세요:
|
|
112
|
+
cd /home/me/.claude/skills/gstack && ./setup
|
|
113
|
+
|
|
114
|
+
환경변수가 없는 항목이 있습니다. 시크릿 값은 창고에 담지 않으므로 이 기기의 셸 환경에 넣으세요 (예: ~/.zshrc 의 export):
|
|
115
|
+
mcp:notion: NOTION_AUTHORIZATION
|
|
116
|
+
```
|
|
117
|
+
|
|
118
|
+
Two things need you afterwards. Package `install:` commands are shell commands from a repository you cloned, so `restore` shows them and stops; run them yourself or rerun with `--yes`. MCP servers reference secrets as `${VAR}`; export the variables in your shell and Claude Code fills them in. From then on `lshed restore` with no arguments reapplies the last profile, and the shed location is remembered.
|
|
119
|
+
|
|
120
|
+
### Profiles
|
|
121
|
+
|
|
122
|
+
A profile is a list of ids per category. Add as many as you like to `lshed.yaml`:
|
|
123
|
+
|
|
124
|
+
```yaml
|
|
125
|
+
profiles:
|
|
126
|
+
default:
|
|
127
|
+
packages: [gstack, claude-plugins-official, exa]
|
|
128
|
+
skills: [add-drivers, domain-modeling, grilling]
|
|
129
|
+
instructions: [main]
|
|
130
|
+
mcp: [notion]
|
|
131
|
+
server: # headless box: no browser toolkit, no MCP
|
|
132
|
+
skills: [add-drivers]
|
|
133
|
+
instructions: [main, server-rules]
|
|
134
|
+
```
|
|
135
|
+
|
|
136
|
+
```
|
|
137
|
+
lshed restore server
|
|
138
|
+
- skills/domain-modeling
|
|
139
|
+
- skills/grilling
|
|
140
|
+
- mcp:notion
|
|
141
|
+
= skills/add-drivers
|
|
142
|
+
~ CLAUDE.md
|
|
143
|
+
+ lshed/instructions/server-rules.md
|
|
144
|
+
```
|
|
145
|
+
|
|
146
|
+
Switching removes only what the previous profile placed (`-`), keeps what both use (`=`), and rewrites what changed (`~`). Everything removed or overwritten goes to `~/.claude/lshed/backups/<timestamp>/` first. Packages are additive: a profile that does not list `gstack` leaves the clone alone. `--dry-run` prints this plan without touching anything.
|
|
147
|
+
|
|
148
|
+
Instructions fragments are ordered. `restore` writes a `CLAUDE.md` that `@`-imports each fragment, so editing a fragment in the shed shows up on the next `restore` and there is nothing to merge.
|
|
149
|
+
|
|
150
|
+
### Adding things later
|
|
151
|
+
|
|
152
|
+
Write a new skill, add an MCP server with `claude mcp add`, clone a toolkit into `~/.claude/skills/`. Then:
|
|
153
|
+
|
|
154
|
+
```
|
|
155
|
+
$ lshed add
|
|
156
|
+
창고에 없는 항목 3개 (넣으려면 lshed add <key...> 또는 --all):
|
|
157
|
+
skills/paper-review
|
|
158
|
+
mcp/linear
|
|
159
|
+
≡ packages/superpowers github:obra/superpowers@main
|
|
160
|
+
· 패키지 gstack 가 생성한 것 53개는 담지 않습니다
|
|
161
|
+
|
|
162
|
+
$ lshed add paper-review mcp/linear
|
|
163
|
+
+ skills/paper-review
|
|
164
|
+
+ mcp/linear (시크릿 → ${LINEAR_API_KEY})
|
|
165
|
+
|
|
166
|
+
2개를 창고에 넣고 프로필 "default" 에 추가했습니다. 창고를 커밋하세요: /home/me/lshed
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
`add` classifies exactly like `init`, appends to `lshed.yaml` without disturbing your comments, adds the parts to the current profile and to the managed set. Without keys it only lists. `status` shows the count as `창고 밖`. To put a part that is already in the shed into another profile, edit `profiles:` by hand; `add` tells you when that is the case.
|
|
170
|
+
|
|
171
|
+
### Keeping packages current
|
|
172
|
+
|
|
173
|
+
```
|
|
174
|
+
lshed status # shows "253d1df ≠ lock 0d1bd56 → lshed update" when a clone moved
|
|
175
|
+
lshed update # fast-forward every package in the profile, refresh lshed.lock
|
|
176
|
+
lshed update gstack --yes # one package, and run its install: afterwards
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
Git packages are pinned by commit in `lshed.lock`; a new machine gets exactly that commit. Plugins cannot be pinned, so the lock records what got installed and `status` says when it differs from the machine you came from.
|
|
180
|
+
|
|
181
|
+
### Housekeeping
|
|
182
|
+
|
|
183
|
+
```
|
|
184
|
+
lshed list # everything in the shed and which profiles use it
|
|
185
|
+
lshed list --unused # parts no profile lists
|
|
186
|
+
lshed remove skills/old # delete from the shed (refused while a profile uses it)
|
|
187
|
+
lshed prune --yes # delete everything unused
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
`remove` and `prune` delete from the shed without a backup; the shed lives in git, so commit before you prune.
|
|
191
|
+
|
|
192
|
+
### Reading the output
|
|
193
|
+
|
|
194
|
+
| Mark | Meaning |
|
|
195
|
+
|---|---|
|
|
196
|
+
| `+` | placed / added |
|
|
197
|
+
| `=` | already identical, nothing done |
|
|
198
|
+
| `~` | existed with different content, replaced (backed up) |
|
|
199
|
+
| `-` | removed (backed up) or excluded |
|
|
200
|
+
| `≡` | package: recorded by source, not copied |
|
|
201
|
+
| `·` | generated by an installer, skipped |
|
|
202
|
+
| `!` | needs your attention |
|
|
203
|
+
| `↑` `↓` | pushed / pulled (sync), updated (update) |
|
|
204
|
+
|
|
205
|
+
Errors go to stderr with exit code 1. Everything else is on stdout.
|
|
206
|
+
|
|
48
207
|
## The manifest
|
|
49
208
|
|
|
50
|
-
`lshed.yaml` lives at the root of the shed. `init` generates it; edit it by hand from then on.
|
|
209
|
+
`lshed.yaml` lives at the root of the shed. `init` generates it; edit it by hand from then on. `add` and `remove` edit it for you and keep your comments.
|
|
51
210
|
|
|
52
211
|
```yaml
|
|
53
212
|
version: 1
|
|
54
213
|
agent: claude-code
|
|
214
|
+
exclude: [skills/_gstack-command] # things init/add must not pick up
|
|
215
|
+
ignore: [dist] # extra names never copied (adds to the built-in list)
|
|
55
216
|
|
|
56
217
|
components:
|
|
57
218
|
skills:
|
|
@@ -64,22 +225,32 @@ components:
|
|
|
64
225
|
instructions:
|
|
65
226
|
- id: base # file:./instructions/base.md
|
|
66
227
|
- id: research-style
|
|
228
|
+
mcp:
|
|
229
|
+
- id: exa # file:./mcp/exa.json — secrets replaced by ${VAR}
|
|
230
|
+
|
|
231
|
+
packages:
|
|
232
|
+
- id: gstack
|
|
233
|
+
source: github:garrytan/gstack@main
|
|
234
|
+
into: skills/gstack
|
|
235
|
+
install: ./setup
|
|
67
236
|
|
|
68
237
|
profiles:
|
|
69
238
|
research:
|
|
239
|
+
packages: [gstack]
|
|
70
240
|
skills: [paper-review]
|
|
71
241
|
agents: [reviewer]
|
|
72
242
|
instructions: [base, research-style] # order matters
|
|
243
|
+
mcp: [exa]
|
|
73
244
|
teaching:
|
|
74
245
|
skills: [grading-helper]
|
|
75
246
|
commands: [summarize]
|
|
76
247
|
instructions: [base]
|
|
77
248
|
```
|
|
78
249
|
|
|
79
|
-
- Component `source` accepts `file:<path relative to the shed>`. Package `source` accepts `github:owner/repo@ref
|
|
80
|
-
- Category names come from the adapter. For Claude Code: `skills`, `agents`, `commands`, `instructions`.
|
|
81
|
-
- `ignore:`
|
|
82
|
-
-
|
|
250
|
+
- Component `source` accepts `file:<path relative to the shed>`. Package `source` accepts `github:owner/repo@ref`, `git:<url>#ref`, `claude-marketplace:<owner/repo>`, `claude-plugin:<name>@<marketplace>`.
|
|
251
|
+
- Category names come from the adapter. For Claude Code: `skills`, `agents`, `commands`, `instructions`, `mcp`.
|
|
252
|
+
- `ignore:` adds to the built-in list of things never copied: `node_modules`, `.git`, `__pycache__`, `.venv`, cache directories, `*.log`. Build output like `dist/` is not ignored by default, since some skills ship it.
|
|
253
|
+
- `exclude:` lists parts that exist locally but must not enter the shed. `init --exclude` writes it.
|
|
83
254
|
|
|
84
255
|
## Three kinds of things
|
|
85
256
|
|
|
@@ -87,77 +258,71 @@ A real `~/.claude` mixes three kinds of content, and they need different handlin
|
|
|
87
258
|
|
|
88
259
|
| Kind | Example | What lshed does |
|
|
89
260
|
|---|---|---|
|
|
90
|
-
| **Authored** | a skill you wrote, your `CLAUDE.md
|
|
91
|
-
| **Installed** | a toolkit you `git clone`d, a plugin | records source + commit; `restore` clones it back |
|
|
261
|
+
| **Authored** | a skill you wrote, your `CLAUDE.md`, an MCP server you added | copies it into the shed |
|
|
262
|
+
| **Installed** | a toolkit you `git clone`d, a plugin | records source + commit; `restore` clones or installs it back |
|
|
92
263
|
| **Generated** | stub skills an installer wrote for you | skips them; they return when the installer runs |
|
|
93
264
|
|
|
94
|
-
|
|
265
|
+
A directory with a `.git` and a remote becomes a **package**. A skill whose symlink points inside a package is treated as generated and skipped. Everything else is authored and copied. The rules that keep this safe:
|
|
95
266
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
source: github:garrytan/gstack@main # git:<url>#ref for other hosts
|
|
100
|
-
into: skills/gstack # where it lives under ~/.claude
|
|
101
|
-
install: ./setup # optional; run after clone, only with --yes
|
|
102
|
-
|
|
103
|
-
profiles:
|
|
104
|
-
default:
|
|
105
|
-
packages: [gstack]
|
|
106
|
-
skills: [add-drivers, domain-modeling]
|
|
107
|
-
```
|
|
108
|
-
|
|
109
|
-
`lshed.lock` pins each package to a commit, so a fresh machine gets the same version you had. `lshed update` moves it forward.
|
|
267
|
+
- A package that is already present is never touched by `restore`. Your local checkout is yours.
|
|
268
|
+
- `install:` is a shell command. `restore` and `update` **print it and stop** unless you pass `--yes`. Plugin installs go through Claude Code's own package manager and run without it; `--yes` is forwarded as `-y` for plugins that declare an install command.
|
|
269
|
+
- Packages are not part of the managed set. Switching profiles never deletes a clone.
|
|
110
270
|
|
|
111
|
-
Claude Code plugins are packages
|
|
271
|
+
Claude Code plugins are packages with their own scheme. `init` finds user-scope ones in `~/.claude/plugins`; `restore` adds the marketplace first, then runs `claude plugin install`. Project-scope plugins belong to their project and are not recorded.
|
|
112
272
|
|
|
113
|
-
|
|
114
|
-
packages:
|
|
115
|
-
- id: claude-plugins-official
|
|
116
|
-
source: claude-marketplace:anthropics/claude-plugins-official
|
|
117
|
-
- id: exa
|
|
118
|
-
source: claude-plugin:exa@claude-plugins-official
|
|
119
|
-
```
|
|
273
|
+
## MCP servers and secrets
|
|
120
274
|
|
|
121
|
-
|
|
275
|
+
User-scope MCP servers live in `~/.claude.json`, next to machine IDs and session state. lshed treats each server as a component of category `mcp`: the shed holds `mcp/<name>.json`, and `restore` edits only the `mcpServers.<name>` key of `~/.claude.json`, leaving everything else in that file alone.
|
|
122
276
|
|
|
123
|
-
|
|
277
|
+
**No secret value enters the shed.** `init` and `add` replace values under `env` and `headers` whose key looks like a secret (`key`, `token`, `secret`, `pass`, `auth`, `credential`, `cookie`, `session`) with a `${VAR}` placeholder:
|
|
124
278
|
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
```bash
|
|
131
|
-
lshed init --shed ~/harness --exclude _gstack-command connect-chrome
|
|
279
|
+
```json
|
|
280
|
+
{ "type": "stdio", "command": "npx", "args": ["-y", "exa-mcp-server"],
|
|
281
|
+
"env": { "EXA_API_KEY": "${EXA_API_KEY}" } }
|
|
282
|
+
{ "type": "http", "url": "https://mcp.notion.com/mcp",
|
|
283
|
+
"headers": { "Authorization": "Bearer ${NOTION_AUTHORIZATION}" } }
|
|
132
284
|
```
|
|
133
285
|
|
|
286
|
+
`restore` writes the placeholder as is. Claude Code expands `${VAR}` from the environment when it starts the server, so the value only ever lives in your shell (`export EXA_API_KEY=...` in `~/.zshrc`, or however you manage secrets). `restore` and `status` list the variables the profile needs that are not set. The heuristic is a suggestion: edit the JSON in the shed to add or remove placeholders, and `init` warns when something in `args` or `url` looks like a token. `save` keeps existing placeholders and masks new secret-looking keys, so a rotated key never leaks into the shed by accident. `diff` compares with placeholders as wildcards, so a machine holding real values is not drift.
|
|
287
|
+
|
|
134
288
|
## Commands
|
|
135
289
|
|
|
136
290
|
```
|
|
137
291
|
lshed init [--shed <dir>] [--profile <name>] [--exclude <id...>]
|
|
292
|
+
lshed add [keys...] [--all] put things that appeared since init into the shed
|
|
138
293
|
lshed restore [profile] [--dry-run] [--no-backup] [--yes]
|
|
139
|
-
lshed
|
|
140
|
-
lshed
|
|
141
|
-
lshed diff files that differ between local and shed
|
|
294
|
+
lshed status applied profile, drift, packages, missing env, new things
|
|
295
|
+
lshed diff files (or JSON keys) that differ between local and shed
|
|
142
296
|
lshed save [ids...] copy local edits back into the shed
|
|
297
|
+
lshed sync [-m <msg>] [--no-push] [--dry-run] commit the shed, pull --rebase, push
|
|
298
|
+
lshed update [ids...] [--dry-run] [--yes] pull packages forward, refresh lshed.lock
|
|
143
299
|
lshed list [--unused] what is in the shed, and which profiles use it
|
|
144
300
|
lshed remove <key> drop a component or package from the shed
|
|
145
301
|
lshed prune [--yes] drop everything no profile uses
|
|
146
302
|
```
|
|
147
303
|
|
|
148
|
-
|
|
304
|
+
Keys are `category/id`, or just `id` when unambiguous: `skills/paper-review`, `mcp/exa`, `packages/gstack`.
|
|
149
305
|
|
|
150
|
-
Global options: `--shed <dir>` (or `LSHED_HOME`; after the first restore lshed remembers it), `--root <dir>` (agent config root, default `~/.claude`).
|
|
306
|
+
Global options: `--shed <dir>` (or `LSHED_HOME`; after the first restore lshed remembers it), `--root <dir>` (agent config root, default `~/.claude` or `CLAUDE_CONFIG_DIR`).
|
|
151
307
|
|
|
152
308
|
### What `restore` does
|
|
153
309
|
|
|
154
|
-
0.
|
|
310
|
+
0. Installs any package in the profile that is missing, at the version in `lshed.lock`.
|
|
155
311
|
1. Removes paths that the **previous** profile placed and the new one doesn't need.
|
|
156
|
-
2. Copies every part of the new profile into place.
|
|
312
|
+
2. Copies every part of the new profile into place; writes every MCP entry into `~/.claude.json`.
|
|
157
313
|
3. Regenerates the instructions file.
|
|
158
314
|
|
|
159
315
|
Anything it overwrites or removes is backed up first under `~/.claude/lshed/backups/<timestamp>/`, unless you pass `--no-backup`. Files lshed never placed are left alone. `--dry-run` prints the plan and writes nothing.
|
|
160
316
|
|
|
317
|
+
### What `sync` does
|
|
318
|
+
|
|
319
|
+
1. Warns if `diff` shows local edits you have not saved.
|
|
320
|
+
2. Commits everything in the shed (message names the changed parts, or `-m`).
|
|
321
|
+
3. If `origin` exists: `git pull --rebase`, then `git push` (sets the upstream the first time).
|
|
322
|
+
4. If commits came in, tells you to run `lshed restore`.
|
|
323
|
+
|
|
324
|
+
On a conflict it aborts the rebase, leaves the shed clean with your commit intact, and tells you to resolve with git. Without a remote it only commits. It never runs `save` for you.
|
|
325
|
+
|
|
161
326
|
### Ownership
|
|
162
327
|
|
|
163
328
|
The shed is the source of truth for authored parts: `save` copies local edits back for `file:` components. Packages are owned by their upstream: `update` pulls them, `save` ignores them.
|
|
@@ -166,31 +331,37 @@ The shed is the source of truth for authored parts: `save` copies local edits ba
|
|
|
166
331
|
|
|
167
332
|
```
|
|
168
333
|
<shed>/
|
|
169
|
-
lshed.yaml
|
|
170
|
-
|
|
334
|
+
lshed.yaml manifest
|
|
335
|
+
lshed.lock package versions (generated)
|
|
336
|
+
skills/<id>/ agents/<id>.md commands/<id>.md instructions/<id>.md
|
|
337
|
+
mcp/<id>.json secrets as ${VAR}
|
|
171
338
|
|
|
172
339
|
~/.claude/
|
|
173
340
|
skills/ agents/ commands/ CLAUDE.md ← placed by restore
|
|
174
341
|
lshed/state.json ← which profile, which paths are managed
|
|
175
342
|
lshed/instructions/<id>.md ← fragments imported by CLAUDE.md
|
|
176
343
|
lshed/backups/<timestamp>/ ← whatever restore replaced
|
|
344
|
+
~/.claude.json mcpServers.<id> ← one key per mcp component; the rest of the file is untouched
|
|
177
345
|
```
|
|
178
346
|
|
|
179
|
-
`state.json` is per machine and is not part of the shed.
|
|
347
|
+
`state.json` is per machine and is not part of the shed. If `CLAUDE_CONFIG_DIR` is set, lshed uses it as the root and expects `.claude.json` inside it, as Claude Code does.
|
|
180
348
|
|
|
181
349
|
## Not in scope (yet)
|
|
182
350
|
|
|
183
|
-
-
|
|
351
|
+
- Secrets beyond "name the variable". Encrypted values, `op://` references and OS keychains are possible later; today lshed is deliberately no better than dotfiles here.
|
|
352
|
+
- Project-scope MCP servers (`.mcp.json`, `~/.claude.json` `projects.*`) and project-scope plugins. They belong to the project.
|
|
184
353
|
- `settings.json` merging (hooks, permissions).
|
|
185
|
-
-
|
|
186
|
-
- MCP servers configured by hand in `~/.claude.json`. Plugin-bundled ones are covered.
|
|
187
|
-
- Windows and macOS have not been tested. The code avoids platform-specific paths, but treat 0.1 as Linux/WSL.
|
|
354
|
+
- Windows and macOS have not been tested. The code avoids platform-specific paths, but treat this as Linux/WSL for now.
|
|
188
355
|
|
|
189
356
|
## Troubleshooting
|
|
190
357
|
|
|
191
358
|
- **"창고 위치를 모릅니다"** — pass `--shed <dir>` or set `LSHED_HOME`. After one successful `restore`, lshed remembers it.
|
|
192
359
|
- **restore replaced my `CLAUDE.md`** — it is in `~/.claude/lshed/backups/<timestamp>/CLAUDE.md`. Move its content into a fragment in the shed and add that fragment to your profile.
|
|
193
|
-
- **I edited a skill locally and want to keep it** — `lshed diff` to see, `lshed save <id>` to push it into the shed, then
|
|
360
|
+
- **I edited a skill locally and want to keep it** — `lshed diff` to see, `lshed save <id>` to push it into the shed, then `lshed sync`.
|
|
361
|
+
- **`status` says a package differs from the lock** — something updated the clone or plugin behind lshed's back (Claude Code auto-updates plugins). `lshed update` records the new version.
|
|
362
|
+
- **`status` keeps listing the same new things** — they are installer aliases or scratch. Add them to `exclude:` in `lshed.yaml`.
|
|
363
|
+
- **restore says an MCP variable is missing** — export it in your shell profile and restart Claude Code. The placeholder in `~/.claude.json` is correct; Claude Code fills it at startup.
|
|
364
|
+
- **sync stopped on a conflict** — `cd <shed> && git pull --rebase`, resolve, `git rebase --continue`, then `lshed sync` again.
|
|
194
365
|
|
|
195
366
|
## License
|
|
196
367
|
|