axel-setup 0.3.0 → 0.4.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 +9 -1
- package/README.md +13 -2
- package/axel-manifest.json +1 -1
- package/install.sh +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,15 @@ Releases are grouped by date and logical scope. npm package releases use semver
|
|
|
9
9
|
|
|
10
10
|
## [Unreleased]
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## [0.4.0] 2026-06-28 iTerm2 session theming add-on
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- `extras/iterm-theming/` optional add-on (macOS + iTerm2 only): per-session tab color, directory plus git branch badge, `tabname`/`tabcolor` helpers, and an opt-in "Claude" dynamic profile (bigger badge, confirm-before-closing, unlimited scrollback). Installed explicitly via `extras/iterm-theming/install.sh` (idempotent, backs up `~/.zshrc`, ShellCheck-clean). Not run by `bootstrap.sh`, which stays additive to `~/.claude` only.
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
- CI: `actions/checkout` bumped to v7 (#29) and `actions/setup-node` bumped to v6 (#27).
|
|
13
21
|
|
|
14
22
|
---
|
|
15
23
|
|
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ See [AXEL Multi-Runtime Roadmap](docs/roadmap/multi-runtime.md) for the adapter
|
|
|
54
54
|
The recommended install path is directly through npx:
|
|
55
55
|
|
|
56
56
|
```bash
|
|
57
|
-
npx axel-setup@0.
|
|
57
|
+
npx axel-setup@0.4.0 --dry-run --user-name "Your Name"
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
By default AXEL uses `--profile core`, a public safe Claude Code install that keeps conservative permissions and skips optional side effects such as plugin installation, usage monitor launchd setup, keybindings, and the external GSD installer. Use `--profile personal` or `--profile full` when you explicitly want the fuller local automation setup.
|
|
@@ -62,7 +62,7 @@ By default AXEL uses `--profile core`, a public safe Claude Code install that ke
|
|
|
62
62
|
Alternatively, for a macOS one-line installer, use the pinned curl wrapper. It checks for Claude Code, jq, zsh, and Node before delegating to the packaged npm release:
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
curl -fsSL https://raw.githubusercontent.com/cveralyon/axel-setup/v0.
|
|
65
|
+
curl -fsSL https://raw.githubusercontent.com/cveralyon/axel-setup/v0.4.0/install.sh | bash -s -- --dry-run --user-name "Your Name"
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
Before the first npm publish, use the same wrapper against the GitHub package source:
|
|
@@ -190,6 +190,17 @@ bash bootstrap.sh --dry-run
|
|
|
190
190
|
|
|
191
191
|
**Safe to run multiple times.** The bootstrap is fully additive — it only adds what's missing, proposes upgrades for existing files, and never overwrites your configuration, memory, or CLAUDE.md.
|
|
192
192
|
|
|
193
|
+
### Optional: iTerm2 session theming (macOS)
|
|
194
|
+
|
|
195
|
+
A separate, opt-in add-on under [`extras/iterm-theming/`](extras/iterm-theming/) gives each iTerm2 session a distinct, stable tab color plus a directory and git branch badge, so parallel sessions are easy to tell apart at a glance. It is **not** run by `bootstrap.sh`: it is macOS + iTerm2 only, and it is the one component that writes outside `~/.claude` (to `~/.config/iterm`, `~/.zshrc`, and iTerm2 DynamicProfiles). Install it explicitly:
|
|
196
|
+
|
|
197
|
+
```bash
|
|
198
|
+
bash extras/iterm-theming/install.sh # install (idempotent, backs up ~/.zshrc)
|
|
199
|
+
bash extras/iterm-theming/install.sh --dry-run # preview, change nothing
|
|
200
|
+
```
|
|
201
|
+
|
|
202
|
+
See [`extras/iterm-theming/README.md`](extras/iterm-theming/README.md) for what it does, the commands it adds, and how to revert.
|
|
203
|
+
|
|
193
204
|
## Prerequisites
|
|
194
205
|
|
|
195
206
|
| Tool | Why | Install |
|
package/axel-manifest.json
CHANGED
package/install.sh
CHANGED
package/package.json
CHANGED