baldart 3.8.0 → 3.8.1
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 +11 -0
- package/README.md +46 -25
- package/VERSION +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ All notable changes to BALDART will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.8.1] - 2026-05-22
|
|
9
|
+
|
|
10
|
+
Documentation: promote the "one command for everything" install path in the README and surface the global-install recommendation in CLAUDE.md.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **`README.md` Quick Start** — restructured. Primary path is now `npm i -g baldart` once, then `baldart` (no args) in any project. Added a table that maps every repo state to the action `baldart` proposes (install / migrate / configure / update / push). The `npx baldart …` form remains documented as the no-global-install alternative.
|
|
15
|
+
- **`CLAUDE.md`** — added the recommended end-user install (`npm i -g baldart`) to the distribution note.
|
|
16
|
+
|
|
17
|
+
No behavioural changes; the smart-doctor entry point has worked this way since v3.2.0, this release just makes it discoverable.
|
|
18
|
+
|
|
8
19
|
## [3.8.0] - 2026-05-22
|
|
9
20
|
|
|
10
21
|
`.claude/agents/` and `.claude/commands/` move from bulk symlink to **per-item merge** with an **overlay system** (compile-time merge of base + overlay). Closes the long-standing gap where specializing a framework agent forced you to either fork the whole file (and lose upstream updates) or contaminate `.framework/`.
|
package/README.md
CHANGED
|
@@ -14,47 +14,68 @@ BALDART provides a portable system for:
|
|
|
14
14
|
|
|
15
15
|
## Quick Start
|
|
16
16
|
|
|
17
|
-
###
|
|
17
|
+
### One command for everything (recommended)
|
|
18
|
+
|
|
19
|
+
Install the CLI globally once:
|
|
18
20
|
|
|
19
21
|
```bash
|
|
20
|
-
|
|
21
|
-
npx baldart add
|
|
22
|
+
npm i -g baldart
|
|
22
23
|
```
|
|
23
24
|
|
|
24
|
-
|
|
25
|
+
Then in any project directory just run:
|
|
25
26
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
- Copies customizable templates (hooks, UI guidelines, backlog cards)
|
|
30
|
-
- Creates required directories (docs/, templates/, backlog/)
|
|
27
|
+
```bash
|
|
28
|
+
baldart
|
|
29
|
+
```
|
|
31
30
|
|
|
32
|
-
|
|
31
|
+
That's it. `baldart` with no arguments runs the **smart doctor**: it auto-detects the repo state and proposes the next sensible action with a `Y/n` prompt. You don't need to remember `add` vs `update` vs `configure` vs `migrate` — it picks the right one.
|
|
33
32
|
|
|
34
|
-
|
|
33
|
+
| Repo state | What `baldart` proposes |
|
|
34
|
+
|---|---|
|
|
35
|
+
| No `.framework/` | "Install BALDART framework" → runs `add` |
|
|
36
|
+
| Legacy bulk-symlink (pre-v3.8.0) | "Migrate legacy layout" → runs `migrate` |
|
|
37
|
+
| Missing `baldart.config.yml` | "Generate baldart.config.yml" → runs `configure` |
|
|
38
|
+
| New config keys in this framework version | "Refresh baldart.config.yml" → runs `configure` |
|
|
39
|
+
| `framework-edit-gate` hook not registered | "Register hook" |
|
|
40
|
+
| Remote framework is ahead | "Pull N commit(s) from upstream" → runs `update` |
|
|
41
|
+
| Local framework changes ready to share | "Push local improvements upstream" → runs `push` |
|
|
35
42
|
|
|
36
|
-
|
|
37
|
-
# Smart entry point: diagnose install state and propose next action.
|
|
38
|
-
# `npx baldart` with no arguments runs this; equivalent to `baldart doctor`.
|
|
39
|
-
npx baldart
|
|
43
|
+
If several conditions hold, actions are presented in priority order (e.g. update before push).
|
|
40
44
|
|
|
41
|
-
|
|
42
|
-
|
|
45
|
+
Upgrade the CLI later:
|
|
46
|
+
```bash
|
|
47
|
+
npm i -g baldart@latest
|
|
48
|
+
```
|
|
43
49
|
|
|
44
|
-
|
|
45
|
-
npx baldart status
|
|
50
|
+
### Without the global install
|
|
46
51
|
|
|
47
|
-
|
|
48
|
-
npx baldart configure
|
|
52
|
+
If you don't want a global install, every command also works via `npx`:
|
|
49
53
|
|
|
50
|
-
|
|
54
|
+
```bash
|
|
55
|
+
npx baldart # same smart entry point
|
|
56
|
+
npx baldart add # explicit subcommands
|
|
51
57
|
npx baldart update
|
|
52
|
-
|
|
53
|
-
# Contribute improvements upstream (auto bump + CHANGELOG + tag)
|
|
58
|
+
npx baldart configure
|
|
54
59
|
npx baldart push
|
|
60
|
+
npx baldart version
|
|
61
|
+
npx baldart status
|
|
55
62
|
```
|
|
56
63
|
|
|
57
|
-
>
|
|
64
|
+
> The legacy `npx -y github:antbald/BALDART <cmd>` form still works if you need to install from an unreleased commit on `main`. For pinning a specific version: `npx baldart@3.8.0 <cmd>`.
|
|
65
|
+
|
|
66
|
+
### What `add` (first install) does
|
|
67
|
+
|
|
68
|
+
- Downloads the framework via Git subtree into `.framework/`
|
|
69
|
+
- Creates symlinks for auto-updateable files (AGENTS.md, agents/)
|
|
70
|
+
- Per-item-merges framework agents/commands/skills into `.claude/` (real directories where your own files coexist)
|
|
71
|
+
- Detects Codex on the machine and mirrors skills into `.agents/skills/` if found
|
|
72
|
+
- Copies customizable templates (hooks, UI guidelines, backlog cards)
|
|
73
|
+
- Registers the `framework-edit-gate` hook in `.claude/settings.json`
|
|
74
|
+
- Runs `configure` interactively to populate `baldart.config.yml`
|
|
75
|
+
|
|
76
|
+
No additional activation steps needed — once installed, Claude Code (and Codex) automatically pick up the agents, commands, skills, and protocols.
|
|
77
|
+
|
|
78
|
+
> **Tip**: During installation, BALDART offers to configure git aliases (`fw-version`, `fw-update`, `fw-push`) — handy if you don't want the global install but find `npx baldart …` long.
|
|
58
79
|
|
|
59
80
|
## Features
|
|
60
81
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.8.
|
|
1
|
+
3.8.1
|