axel-setup 0.2.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 +218 -0
- package/CONTRIBUTING.md +58 -0
- package/LICENSE +21 -0
- package/README.md +518 -0
- package/agents/api-design.md +51 -0
- package/agents/bughunter.md +136 -0
- package/agents/changelog.md +89 -0
- package/agents/cleanup.md +126 -0
- package/agents/compare-branch.md +35 -0
- package/agents/cross-repo.md +97 -0
- package/agents/db-check.md +14 -0
- package/agents/debug.md +47 -0
- package/agents/deploy-check.md +100 -0
- package/agents/draft-message.md +19 -0
- package/agents/excelsior-coordinator.md +75 -0
- package/agents/excelsior-verifier.md +94 -0
- package/agents/feature.md +48 -0
- package/agents/harness-optimizer.md +40 -0
- package/agents/incident.md +48 -0
- package/agents/linear-task.md +18 -0
- package/agents/onboard.md +24 -0
- package/agents/perf.md +44 -0
- package/agents/production-validator.md +96 -0
- package/agents/review.md +113 -0
- package/agents/security-check.md +29 -0
- package/agents/sprint-summary.md +15 -0
- package/agents/tdd-mainder.md +178 -0
- package/agents/test-gen.md +39 -0
- package/axel-manifest.json +129 -0
- package/bin/axel-setup.js +597 -0
- package/bootstrap.sh +1087 -0
- package/commands/create-pr.md +13 -0
- package/commands/daily.md +182 -0
- package/commands/deslop.md +13 -0
- package/commands/draft-message.md +23 -0
- package/commands/eod-review.md +154 -0
- package/commands/execute-prp.md +37 -0
- package/commands/generate-prp.md +75 -0
- package/commands/multi-repo-feature.md +60 -0
- package/commands/roadmap.md +31 -0
- package/commands/sprint-status.md +486 -0
- package/commands/style.md +68 -0
- package/commands/visualize.md +17 -0
- package/docs/roadmap/multi-runtime.md +73 -0
- package/docs/superpowers/plans/2026-06-12-setup-hardening-roadmap.md +61 -0
- package/hooks/desktop-notify.sh +26 -0
- package/hooks/enforce-agent-model.jq +14 -0
- package/hooks/gsd-context-monitor.js +156 -0
- package/hooks/linear-lifecycle-sync.sh +112 -0
- package/hooks/memory-dedup.sh +122 -0
- package/hooks/memory-extractor.sh +218 -0
- package/hooks/post-commit-memory-trigger.sh +16 -0
- package/hooks/post-commit-verify.sh +41 -0
- package/hooks/post-edit-lint.sh +43 -0
- package/hooks/precompact-save-context.sh +124 -0
- package/hooks/priority-map-staleness.sh +29 -0
- package/hooks/proactive-resolver.sh +104 -0
- package/hooks/session-auto-title.sh +165 -0
- package/hooks/session-checkpoint.sh +97 -0
- package/hooks/session-cost-log.sh +77 -0
- package/hooks/session-log-action.sh +36 -0
- package/hooks/session-log-prompt.sh +25 -0
- package/hooks/session-restore.sh +45 -0
- package/hooks/session-save.sh +81 -0
- package/hooks/session-summarize.sh +154 -0
- package/hooks/validate-commit-format.sh +38 -0
- package/hooks/weekly-priority-map-review.sh +143 -0
- package/install.sh +46 -0
- package/package.json +67 -0
- package/scripts/ci/bootstrap-dry-run.sh +40 -0
- package/scripts/ci/check.sh +65 -0
- package/scripts/posthog-snapshot-loader.sh +112 -0
- package/skills/context-budget/SKILL.md +86 -0
- package/skills/memory-review/SKILL.md +100 -0
- package/skills/model-routing/SKILL.md +70 -0
- package/skills/posthog-weekly/SKILL.md +271 -0
- package/skills/ui-ux-pro-max/SKILL.md +377 -0
- package/skills/ui-ux-pro-max/data/charts.csv +26 -0
- package/skills/ui-ux-pro-max/data/colors.csv +97 -0
- package/skills/ui-ux-pro-max/data/icons.csv +101 -0
- package/skills/ui-ux-pro-max/data/landing.csv +31 -0
- package/skills/ui-ux-pro-max/data/products.csv +97 -0
- package/skills/ui-ux-pro-max/data/react-performance.csv +45 -0
- package/skills/ui-ux-pro-max/data/stacks/astro.csv +54 -0
- package/skills/ui-ux-pro-max/data/stacks/flutter.csv +53 -0
- package/skills/ui-ux-pro-max/data/stacks/html-tailwind.csv +56 -0
- package/skills/ui-ux-pro-max/data/stacks/jetpack-compose.csv +53 -0
- package/skills/ui-ux-pro-max/data/stacks/nextjs.csv +53 -0
- package/skills/ui-ux-pro-max/data/stacks/nuxt-ui.csv +51 -0
- package/skills/ui-ux-pro-max/data/stacks/nuxtjs.csv +59 -0
- package/skills/ui-ux-pro-max/data/stacks/react-native.csv +52 -0
- package/skills/ui-ux-pro-max/data/stacks/react.csv +54 -0
- package/skills/ui-ux-pro-max/data/stacks/shadcn.csv +61 -0
- package/skills/ui-ux-pro-max/data/stacks/svelte.csv +54 -0
- package/skills/ui-ux-pro-max/data/stacks/swiftui.csv +51 -0
- package/skills/ui-ux-pro-max/data/stacks/vue.csv +50 -0
- package/skills/ui-ux-pro-max/data/styles.csv +68 -0
- package/skills/ui-ux-pro-max/data/typography.csv +58 -0
- package/skills/ui-ux-pro-max/data/ui-reasoning.csv +101 -0
- package/skills/ui-ux-pro-max/data/ux-guidelines.csv +100 -0
- package/skills/ui-ux-pro-max/data/web-interface.csv +31 -0
- package/skills/ui-ux-pro-max/scripts/core.py +253 -0
- package/skills/ui-ux-pro-max/scripts/design_system.py +1067 -0
- package/skills/ui-ux-pro-max/scripts/search.py +114 -0
- package/templates/AGENTS.runtime.md +17 -0
- package/templates/CLAUDE.md +252 -0
- package/templates/claude-monitor.plist +35 -0
- package/templates/keybindings.json +13 -0
- package/templates/merge-settings.jq +53 -0
- package/templates/review-upgrades.md +44 -0
- package/templates/settings.json +255 -0
- package/templates/statusline-command.sh +182 -0
- package/tests/fixtures/hooks/events.json +32 -0
- package/tools/session-costs-view.sh +128 -0
- package/tools/session-dashboard-gen.sh +369 -0
- package/tools/session-live.sh +173 -0
- package/tools/session-server.js +441 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,218 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to AXEL Setup are documented in this file.
|
|
4
|
+
|
|
5
|
+
Format loosely follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
Releases are grouped by date and logical scope. npm package releases use semver tags.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## [Unreleased]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- `axel-setup review-upgrades` for target-aware inspection of generated upgrade proposals before manual apply.
|
|
14
|
+
- `core` install profile as the public safe default for reusable Claude Code setup.
|
|
15
|
+
- Release automation now supports npm Trusted Publishing via GitHub Actions OIDC, with an `NPM_TOKEN` provenance fallback for first publish or migration windows.
|
|
16
|
+
- `install.sh` curl wrapper for a macOS one-line install path that delegates to the packaged AXEL release.
|
|
17
|
+
- Fixture-driven hook harness covering PreToolUse model routing, PostToolUse action logging, and Stop session persistence without a live Claude session.
|
|
18
|
+
- `axel-setup metrics [--json]` report for context-budget, usage-monitor, and hook-harness impact signals generated from package assets and public fixtures only.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
- Default installs now use `--profile core`, keeping `personal` and `full` as explicit choices for fuller local automation.
|
|
22
|
+
- Maintainer release notes now document npm verification commands and conservative rollback through fixed patch releases or `latest` dist-tag movement.
|
|
23
|
+
|
|
24
|
+
### Fixed
|
|
25
|
+
- Re-running the bootstrap with only `MEMORY.md` in the memory directory no longer exits early.
|
|
26
|
+
- Portable targets now generate `axel-upgrades/REVIEW.md` and `MANIFEST.md` when local files differ from the package.
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
30
|
+
## [0.2.0] 2026-06-12 setup hardening and npm release
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
- Install profiles: `personal`, `team-safe`, `minimal`, `ci`, and `full`.
|
|
34
|
+
- Bootstrap flags for CI and safer installs: `--skip-plugins`, `--skip-monitor`, `--skip-keybindings`, `--skip-claude-md`, `--skip-gsd`, and `--no-launchd`.
|
|
35
|
+
- Machine-readable `axel-manifest.json` installed into `~/.claude/axel-manifest.json`.
|
|
36
|
+
- `axel-setup doctor [--home PATH]` to verify installed files against the manifest.
|
|
37
|
+
- Integration tests for dry-run behavior, real temp-home installation, recursive skill assets, CLI doctor, and `merge-settings.jq` fixtures.
|
|
38
|
+
- Public multi-runtime roadmap for keeping Claude Code as the default install target while planning Codex and generic adapters.
|
|
39
|
+
- Experimental `--target codex` and `--target generic --output <dir>` adapters that install portable AXEL assets without Claude-only hooks, plugins, settings, launchd, or GSD side effects.
|
|
40
|
+
- Target-aware `axel-setup doctor --target claude|codex|generic` validation.
|
|
41
|
+
- Manifest-aware `axel-setup diff` and dry-run-first `axel-setup uninstall`, with `--apply` removing only exact package matches.
|
|
42
|
+
- GitHub Actions release workflow for `v*` tags that verifies the tag matches `package.json`, re-runs repository validation, skips already-published versions, and publishes `axel-setup` to npm with provenance when `NPM_TOKEN` is configured.
|
|
43
|
+
|
|
44
|
+
### Changed
|
|
45
|
+
- `--dry-run` now keeps installer filesystem writes read-only.
|
|
46
|
+
- Skill installation now copies nested assets recursively while excluding Python cache files.
|
|
47
|
+
- CI now installs `shellcheck` and `shfmt`; `npm run check` owns shell syntax, shellcheck, shfmt, JSON, jq, integration tests, and package dry-run validation.
|
|
48
|
+
- README now documents `npx axel-setup` as the primary install path, release automation, profiles, skip flags, and `doctor`.
|
|
49
|
+
|
|
50
|
+
## [0.1.1] 2026-06-12 npm publish hardening
|
|
51
|
+
|
|
52
|
+
Prepare the npm package for the first public registry publish without changing bootstrap behavior.
|
|
53
|
+
|
|
54
|
+
### Added
|
|
55
|
+
- npm package metadata for author and discovery keywords.
|
|
56
|
+
- `npm run publish:dry-run` maintainer script.
|
|
57
|
+
- README maintainer publish checklist with root directory and explicit path examples.
|
|
58
|
+
|
|
59
|
+
### Changed
|
|
60
|
+
- `prepublishOnly` now runs the full repository check before registry publish.
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
64
|
+
## [2026-06-12] OSS readiness and package entrypoint
|
|
65
|
+
|
|
66
|
+
Prepare AXEL Setup for a stronger public open source application and a cleaner contributor workflow.
|
|
67
|
+
|
|
68
|
+
### Added
|
|
69
|
+
- `CONTRIBUTING.md` with project scope, local setup, validation, PR expectations, and security reporting guidance.
|
|
70
|
+
- GitHub issue forms for bugs, features, and roadmap items, plus a pull request template.
|
|
71
|
+
- GitHub Actions CI that runs repository checks on pushes to `main` and on pull requests.
|
|
72
|
+
- `package.json` and `bin/axel-setup.js` so the bootstrap can be run through npm from GitHub and published as `axel-setup`.
|
|
73
|
+
- `scripts/ci/check.sh` and `scripts/ci/bootstrap-dry-run.sh` for shell syntax checks, jq validation, JSON validation, bootstrap smoke testing, and npm package dry run checks.
|
|
74
|
+
|
|
75
|
+
### Changed
|
|
76
|
+
- `README.md` now includes an explicit Ecosystem Relevance section and documents the npm based install path.
|
|
77
|
+
|
|
78
|
+
---
|
|
79
|
+
|
|
80
|
+
## [2026-06-11] Subagent model routing
|
|
81
|
+
|
|
82
|
+
With a Fable-class model on the main thread, any Agent call without an explicit `model` param silently inherits the session model, so token-heavy subagent work (exploration, log triage, bounded edits) runs at the most expensive tier in the catalog. This change adds a routing layer: judgment stays on the session model, everything delegated gets an explicit cheaper tier. Pattern distilled from `efficient-fable` (github.com/BuilderIO/skills), completed with the task-to-tier table and cost anchors that the original omits.
|
|
83
|
+
|
|
84
|
+
### Added
|
|
85
|
+
- `skills/model-routing/SKILL.md`: routing table (sonnet for exploration/research/bounded implementation, haiku for mechanical reduction, opus for risky implementation and adversarial verification), handoff packet template, vetting protocol, and anti-waste rules.
|
|
86
|
+
- `hooks/enforce-agent-model.jq`: PreToolUse filter that denies any Agent call missing the `model` param; the deny reason embeds the routing table so the retry succeeds first try.
|
|
87
|
+
|
|
88
|
+
### Changed
|
|
89
|
+
- `templates/settings.json`: new PreToolUse hook entry (matcher `Agent`) wiring the jq filter.
|
|
90
|
+
- `templates/CLAUDE.md`: Coordinator Mode gains step 5 (explicit model routing on every Agent call).
|
|
91
|
+
|
|
92
|
+
## [2026-06-02] — Decouple GSD from AXEL
|
|
93
|
+
|
|
94
|
+
GSD (get-shit-done) was vendored as a frozen snapshot inside AXEL (18 `gsd-*` agents + `commands/gsd/` in the retired `/gsd:` format). GSD now updates independently through its own installer, so the bundled copy only caused version + command-format skew — and on re-bootstrap would resurrect `commands/gsd/` files that GSD deleted upstream in favor of `/gsd-` skills. Complements the settings-template GSD hook removals from 2026-04-22.
|
|
95
|
+
|
|
96
|
+
### Removed
|
|
97
|
+
- `agents/gsd-*.md` (18 vendored GSD agents) — now owned by the GSD installer.
|
|
98
|
+
- `commands/gsd/` (GSD subcommands in `/gsd:` colon format) — superseded by `/gsd-` skills upstream.
|
|
99
|
+
|
|
100
|
+
### Changed
|
|
101
|
+
- `bootstrap.sh` no longer creates `commands/gsd/`, iterates GSD subcommands, or reports GSD counts. It detects the live GSD skills and, if absent, points the user to `npx get-shit-done-cc@latest --claude --global`.
|
|
102
|
+
- Help hints updated `/gsd:help` → `/gsd-help`.
|
|
103
|
+
- `README.md` drops hardcoded agent/command counts (they drifted) and documents the GSD decoupling.
|
|
104
|
+
|
|
105
|
+
### Added
|
|
106
|
+
- `agents/{onboard,feature,debug,security-check}.md` — advisory escalations to current GSD capabilities (`gsd-map-codebase`/`graphify`, `gsd-spike`/`sketch`, `gsd-debug`, `gsd-secure-phase`); subagents recommend, the main loop runs the skill.
|
|
107
|
+
- `templates/CLAUDE.md` — "Agentic Skill Activation" decision tree: canonical skill per intent with an anti-overhead guardrail.
|
|
108
|
+
|
|
109
|
+
---
|
|
110
|
+
|
|
111
|
+
## [2026-04-23] — Linear lifecycle auto-sync hook
|
|
112
|
+
|
|
113
|
+
### Added
|
|
114
|
+
- `hooks/linear-lifecycle-sync.sh` — PostToolUse hook that automatically moves Linear cards through the lifecycle based on git/gh actions: `git commit (KEY-123)` → In Progress, `gh pr create` → In Review, `gh pr merge` → Done. Uses `claude -p haiku` + Linear MCP under the hood. Features a 90-second debounce per action type, skip logic for cards already in the target state or further along, and a `~/.claude/logs/linear-sync.log` audit trail. Configurable ticket pattern (`{{TICKET_PATTERN}}`), repo path filter (`{{REPO_PATH_FILTER}}`), and team name (`{{LINEAR_TEAM}}`) — substituted by bootstrap at install time.
|
|
115
|
+
|
|
116
|
+
---
|
|
117
|
+
|
|
118
|
+
## [2026-04-23] — Linear lifecycle rule + priority-map deprecation
|
|
119
|
+
|
|
120
|
+
### Added
|
|
121
|
+
- `templates/CLAUDE.md` — new `## Linear Lifecycle (HARD RULE)` section: any code change requires a project tracker ticket; covers the full state machine (create before starting, In Progress on start, In Review on PR, Done on merge, Cancelled if dropped). Generic wording works with Linear, Jira, or any equivalent tool.
|
|
122
|
+
|
|
123
|
+
### Changed
|
|
124
|
+
- `templates/CLAUDE.md` — two new HARD RULE bullets from yesterday's session are now visible in the rendered template: no AI co-author attribution in commits, and always draft before sending external messages (Slack, Gmail, Intercom).
|
|
125
|
+
|
|
126
|
+
### Notes
|
|
127
|
+
- The `priority-map-staleness.sh` and `weekly-priority-map-review.sh` hooks remain in the repo as opt-in. The tradeoff: a static priority-map grows stale quickly and can introduce context mismatches against the live state in Linear/Slack. If you use them, treat the file as a rough guide only — Linear is always the source of truth.
|
|
128
|
+
|
|
129
|
+
---
|
|
130
|
+
|
|
131
|
+
## [2026-04-22] — Memory system hardening + hook improvements
|
|
132
|
+
|
|
133
|
+
### Added
|
|
134
|
+
- `hooks/post-commit-memory-trigger.sh` — new PostToolUse hook that triggers memory extraction only after real `git commit` commands (not diff/log/status). Combined with the 5-min rate limit in `memory-extractor.sh`, this prevents extraction on every session end and groups burst commits into a single run.
|
|
135
|
+
- `hooks/gsd-context-monitor.js` — context window monitor now included in the repo (was documented in README but missing from hooks/). Warns the agent when context drops below 15% (warning) or 8% (critical) with debounce and severity escalation.
|
|
136
|
+
|
|
137
|
+
### Changed
|
|
138
|
+
- `hooks/memory-extractor.sh` — added 5-minute rate-limit debounce: skips extraction if run within the last 5 minutes, preventing over-extraction from consecutive commits or rapid session cycling.
|
|
139
|
+
- `hooks/validate-commit-format.sh` — improved error output: `BLOCKED:` instead of `WARNING:`, canonical example, explicit "do not use --no-verify" instruction.
|
|
140
|
+
- `hooks/proactive-resolver.sh` — Docker wait loop reduced from 30s to 15s; adds hint message if Docker does not start within the window.
|
|
141
|
+
- `templates/settings.json` — removed `gsd-prompt-guard.js` (GSD plugin hook, not part of AXEL core); removed `gsd-check-update.js` SessionStart hook; reduced `gsd-context-monitor.js` timeout 10→3; reduced `proactive-resolver.sh` timeout 45→30; added `post-commit-memory-trigger.sh`; reduced `autoCompactWindow` 1,000,000→500,000.
|
|
142
|
+
- `templates/CLAUDE.md` — added two HARD RULE bullets: no AI co-author attribution in commits, and always draft before sending Slack/email/Intercom messages.
|
|
143
|
+
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## [2026-04-17] — Priority Map hooks
|
|
147
|
+
|
|
148
|
+
### Added
|
|
149
|
+
- `hooks/priority-map-staleness.sh` — SessionStart warning when `priority-map.md` is stale (≥14 days without edits).
|
|
150
|
+
- `hooks/weekly-priority-map-review.sh` — weekly cron proposal that reconciles git activity with the current priority map.
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
154
|
+
## [2026-04-14] — Onboarding genericization
|
|
155
|
+
|
|
156
|
+
Make AXEL installable for teammates (Emi, Álex) without hardcoded personal values.
|
|
157
|
+
|
|
158
|
+
### Added
|
|
159
|
+
- `/posthog-weekly` skill — gated behind `--enable-posthog` flag. Weekly analytical review of a PostHog workspace with `--posthog-context` injected into the prompt. Ships `posthog-snapshot-loader.sh` for other commands to consume the 14-day cached snapshot (`66f6fae`)
|
|
160
|
+
- `bootstrap.sh --user-context` and `--language` flags — substituted into `memory-extractor` and `session-summarize` hooks at install time via `sed` (`59b1de9`)
|
|
161
|
+
- `session-auto-title.sh` hook — auto-names the session from the first user prompt, strips greetings and assistant-name salutations. Idempotent via flag file (`dde0f4d`)
|
|
162
|
+
- `validate-commit-format.sh` hook — enforces `type (Scope): Message` format. Parses `-m` flag and heredoc bodies (`dde0f4d`)
|
|
163
|
+
|
|
164
|
+
### Changed
|
|
165
|
+
- Commands `daily` / `eod-review` / `sprint-status` moved to YAML-config model — no hardcoded IDs, paths, or personal context in the command files (`b19c8b0`)
|
|
166
|
+
|
|
167
|
+
### Fixed
|
|
168
|
+
- `claude -p` subprocesses in Stop hooks now isolated via `mktemp -d` — previously they accumulated JSONL in the main project directory and polluted `/resume` history (`80f1f2e`)
|
|
169
|
+
|
|
170
|
+
---
|
|
171
|
+
|
|
172
|
+
## [2026-04-13] — Commands consolidation
|
|
173
|
+
|
|
174
|
+
### Added
|
|
175
|
+
- `/eod-review` command — end-of-day report with 100% non-technical tone targeted at Samu and Javi (`f17f555`, `1372508`)
|
|
176
|
+
- `/daily` Phase 2 — system sync step after the briefing pulls latest state from Linear/Slack/Notion (`921e3db`)
|
|
177
|
+
|
|
178
|
+
### Removed
|
|
179
|
+
- Redundant org skills consolidated into `/daily` and `/eod-review` (`f17f555`)
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## [2026-04-09] — Sprint status overhaul
|
|
184
|
+
|
|
185
|
+
### Added
|
|
186
|
+
- `/sprint-status` (replaces `/sprint-summary`) — consolidated into Linear as source of truth, with privacy gate + review outputs and dual-audience layer (technical + plain-language ~15 lines for mixed Slack channels) (`7b8b91a`, `30480ee`)
|
|
187
|
+
- Session-learned policies encoded into the command: CS messaging tone, backfill granularity (1 PR = 1 card), Notion read-only policy (`e082ab8`, `2d6524a`, `e38fd21`)
|
|
188
|
+
|
|
189
|
+
### Fixed
|
|
190
|
+
- Support channel classified as internal, so drafts are notes for the team and not customer facing (`39efac2`)
|
|
191
|
+
- Draft targeting: reply in the original Slack thread, not the user's DM (`fd64145`)
|
|
192
|
+
|
|
193
|
+
### Changed
|
|
194
|
+
- Sprint/weekly review commands now pull from Notion, Slack, and split main vs staging correctly (`3df1e99`)
|
|
195
|
+
|
|
196
|
+
---
|
|
197
|
+
|
|
198
|
+
## [2026-04-07..09] — Usage monitor
|
|
199
|
+
|
|
200
|
+
### Added
|
|
201
|
+
- Real-time usage monitor — Node.js web dashboard at `http://localhost:9119`, live terminal view, CLI log viewers, launchd agent for auto-start at login (`1bb5e70`)
|
|
202
|
+
- Dashboard troubleshooting section in README covering launchd plist recovery (`6154ae2`)
|
|
203
|
+
|
|
204
|
+
### Fixed
|
|
205
|
+
- Session log deduplication via upsert; start file preserved across restarts (`cd5e3f7`)
|
|
206
|
+
- Cost display: 2 decimal places instead of 3 (`37f0f5d`)
|
|
207
|
+
|
|
208
|
+
---
|
|
209
|
+
|
|
210
|
+
## [2026-04-02] — Initial release
|
|
211
|
+
|
|
212
|
+
### Added
|
|
213
|
+
- Initial AXEL Setup package — Claude Code team configuration with hooks, commands, agents, skills, and plugins (`e21be13`)
|
|
214
|
+
- Full README with usage guide and MIT license (`4dcc6be`)
|
|
215
|
+
- Commit-format PreToolUse hook (`9e00b15`)
|
|
216
|
+
|
|
217
|
+
### Changed
|
|
218
|
+
- Plugin list trimmed to reduce token usage at session start (`9e00b15`, `862df59`)
|
package/CONTRIBUTING.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Contributing to AXEL Setup
|
|
2
|
+
|
|
3
|
+
Thanks for helping improve AXEL Setup. This project packages reusable Claude Code workflows for engineering teams, with a focus on safe automation, repeatable setup, and practical agent operations.
|
|
4
|
+
|
|
5
|
+
## Project Scope
|
|
6
|
+
|
|
7
|
+
Good contributions usually improve one of these areas:
|
|
8
|
+
|
|
9
|
+
- Claude Code bootstrap reliability.
|
|
10
|
+
- Hooks, agents, commands, skills, or templates that are useful beyond one private team.
|
|
11
|
+
- Safety guardrails for agentic coding workflows.
|
|
12
|
+
- Documentation that helps a new user install, audit, or adapt AXEL.
|
|
13
|
+
- Tests and validation that make releases easier to trust.
|
|
14
|
+
|
|
15
|
+
Please avoid adding private company workflow details, credentials, customer data, or project specific rules that would not make sense for other teams.
|
|
16
|
+
|
|
17
|
+
## Local Setup
|
|
18
|
+
|
|
19
|
+
Clone the repo and run the smoke checks:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
git clone https://github.com/cveralyon/axel-setup.git
|
|
23
|
+
cd axel-setup
|
|
24
|
+
npm run check
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Preview the installer without changing your real Claude configuration:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
npm run smoke
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
You can also run the bootstrap manually:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
bash bootstrap.sh --dry-run --user-name "Your Name"
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
## Pull Request Guidelines
|
|
40
|
+
|
|
41
|
+
Before opening a PR:
|
|
42
|
+
|
|
43
|
+
- Keep changes focused on one logical improvement.
|
|
44
|
+
- Update `README.md` when user facing behavior changes.
|
|
45
|
+
- Update `CHANGELOG.md` for meaningful additions, removals, fixes, or workflow changes.
|
|
46
|
+
- Run `npm run check`.
|
|
47
|
+
- Do not include secrets, local paths, or private customer context.
|
|
48
|
+
|
|
49
|
+
## Design Principles
|
|
50
|
+
|
|
51
|
+
- Additive installation: existing user configuration should be preserved.
|
|
52
|
+
- Explicit safety: risky automation should be visible and easy to audit.
|
|
53
|
+
- Portable defaults: examples should work for teams outside the original author environment.
|
|
54
|
+
- Small sharp tools: each hook, command, skill, or agent should have a clear job.
|
|
55
|
+
|
|
56
|
+
## Reporting Security Issues
|
|
57
|
+
|
|
58
|
+
If you find a security problem, avoid publishing exploit details in a public issue. Open a minimal issue asking for a private coordination channel, or contact the maintainer directly through GitHub.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Cristian Vera Lyon
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|