arbella 0.1.1 → 0.1.2
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 +661 -21
- package/README.md +8 -6
- package/dist/index.js +661 -219
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
Backup and migration for your Claude Code and Codex setup — skills, subagents,
|
|
10
10
|
plugins, hooks, settings, memories — into a private Git repo you own.
|
|
11
11
|
|
|
12
|
-
[](./LICENSE)
|
|
13
13
|

|
|
14
14
|

|
|
15
15
|

|
|
@@ -49,18 +49,18 @@ arbella --help
|
|
|
49
49
|
## What it does
|
|
50
50
|
|
|
51
51
|
```text
|
|
52
|
-
push ~/.claude · ~/.codex ──▶ strip · template ──▶ private repo
|
|
53
|
-
pull private repo
|
|
52
|
+
push ~/.claude · ~/.codex · Cursor ──▶ strip · template ──▶ private repo
|
|
53
|
+
pull private repo ──▶ install · place ──▶ tools + Cursor User data
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
-
`push` reads the parts of your setup that matter, strips anything secret, swaps machine-specific paths for placeholders, and pushes the result to your repo. `pull` does the reverse: installs the CLIs you don't have, drops files back with this machine's paths, reinstalls plugins and skills, and wires
|
|
56
|
+
`push` reads the parts of your setup that matter, strips anything secret, swaps machine-specific paths for placeholders, and pushes the result to your repo. `pull` does the reverse: installs the CLIs you don't have, drops files back with this machine's paths, reinstalls plugins and skills, and wires shared Claude/Codex instructions back into `CLAUDE.md` and `AGENTS.md`.
|
|
57
57
|
|
|
58
58
|
Two things it deliberately won't do:
|
|
59
59
|
|
|
60
60
|
- **Never commits secrets.** API keys, OAuth tokens, `auth.json`, `.credentials.json` — all excluded, no exceptions. You sign back in after a pull, or carry them yourself with [`arbella secrets`](#arbella-secrets).
|
|
61
61
|
- **Doesn't copy what it can reinstall.** Plugins and registry skills are saved as a list and pulled fresh, so the repo stays small and never goes stale.
|
|
62
62
|
|
|
63
|
-
Supported today: **Claude Code
|
|
63
|
+
Supported today: **Claude Code**, **Codex**, and **Cursor**. Cursor support covers global MCP config, user settings, keybindings, snippets, local skills, skills.sh symlinks, and extension IDs; runtime state and credentials stay out.
|
|
64
64
|
|
|
65
65
|
## Commands
|
|
66
66
|
|
|
@@ -200,4 +200,6 @@ v0.1 — early, but it builds clean, the full test suite passes, and I use it da
|
|
|
200
200
|
|
|
201
201
|
## License
|
|
202
202
|
|
|
203
|
-
|
|
203
|
+
Copyright (c) 2026 Fafoooo.
|
|
204
|
+
|
|
205
|
+
Arbella is licensed under the GNU Affero General Public License v3.0 only (AGPL-3.0-only). See [LICENSE](./LICENSE).
|