@phuc1403/musketeer 0.4.0 → 0.5.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/README.md +49 -49
- package/manifest.json +301 -292
- package/package.json +1 -1
- package/template/.claude/hooks/lib/characteristics/checker.cjs +357 -0
- package/template/.claude/hooks/validate-characteristics-hook.cjs +66 -0
- package/template/.claude/skills/architecture-characteristic-writer/SKILL.md +197 -99
- package/template/.claude/skills/architecture-characteristic-writer/assets/worksheet-template.md +18 -29
- package/template/.claude/skills/architecture-characteristic-writer/references/characteristics-catalog.md +22 -88
- package/template/.claude/skills/architecture-characteristic-writer/scripts/ranking-table.cjs +171 -0
- package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/Debug/net10.0/__SolutionName__.Api.AssemblyInfo.cs +1 -1
- package/template/dotnet-scaffold/src/__SolutionName__.Api/obj/Debug/net10.0/__SolutionName__.Api.AssemblyInfoInputs.cache +1 -1
- package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/Debug/net10.0/__SolutionName__.Application.AssemblyInfo.cs +1 -1
- package/template/dotnet-scaffold/src/__SolutionName__.Application/obj/Debug/net10.0/__SolutionName__.Application.AssemblyInfoInputs.cache +1 -1
- package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/Debug/net10.0/__SolutionName__.Domain.AssemblyInfo.cs +1 -1
- package/template/dotnet-scaffold/src/__SolutionName__.Domain/obj/Debug/net10.0/__SolutionName__.Domain.AssemblyInfoInputs.cache +1 -1
- package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/__SolutionName__.Infrastructure.AssemblyInfo.cs +1 -1
- package/template/dotnet-scaffold/src/__SolutionName__.Infrastructure/obj/Debug/net10.0/__SolutionName__.Infrastructure.AssemblyInfoInputs.cache +1 -1
- package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/__SolutionName__.Api.Tests.AssemblyInfo.cs +1 -1
- package/template/dotnet-scaffold/tests/__SolutionName__.Api.Tests/obj/Debug/net10.0/__SolutionName__.Api.Tests.AssemblyInfoInputs.cache +1 -1
- package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/__SolutionName__.Application.Tests.AssemblyInfo.cs +1 -1
- package/template/dotnet-scaffold/tests/__SolutionName__.Application.Tests/obj/Debug/net10.0/__SolutionName__.Application.Tests.AssemblyInfoInputs.cache +1 -1
- package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/__SolutionName__.Domain.Tests.AssemblyInfo.cs +1 -1
- package/template/dotnet-scaffold/tests/__SolutionName__.Domain.Tests/obj/Debug/net10.0/__SolutionName__.Domain.Tests.AssemblyInfoInputs.cache +1 -1
- package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/__SolutionName__.Infrastructure.Tests.AssemblyInfo.cs +1 -1
- package/template/dotnet-scaffold/tests/__SolutionName__.Infrastructure.Tests/obj/Debug/net10.0/__SolutionName__.Infrastructure.Tests.AssemblyInfoInputs.cache +1 -1
package/README.md
CHANGED
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
# musketeer
|
|
2
|
-
|
|
3
|
-
> Distributable custom Claude Code harness. One declarative command scaffolds a curated
|
|
4
|
-
> **company** of **musketeers** (skills + agents + hooks) into any project's `./.claude/`.
|
|
5
|
-
|
|
6
|
-
## Install
|
|
7
|
-
|
|
8
|
-
```bash
|
|
9
|
-
npm i -g @phuc1403/musketeer
|
|
10
|
-
```
|
|
11
|
-
|
|
12
|
-
## Use
|
|
13
|
-
|
|
14
|
-
```bash
|
|
15
|
-
musketeer muster # self-update → pick company (multi-select) → refresh all selected skills to latest
|
|
16
|
-
musketeer promote # update the musketeer CLI itself to the latest published version
|
|
17
|
-
musketeer # show usage
|
|
18
|
-
musketeer --help # show usage
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
`musketeer muster` **self-updates first**: it pulls the latest published version (re-execing when behind),
|
|
22
|
-
so the refresh always applies the newest template. Set `MUSKETEER_NO_SELF_UPDATE=1` to skip (offline / pinned).
|
|
23
|
-
|
|
24
|
-
It is also **idempotent** and **force-updating**: the picker pre-checks your current company (from
|
|
25
|
-
`.musketeer.json`); on confirm it **re-writes every selected musketeer's files to the latest template**
|
|
26
|
-
(overwriting any local edits), removes newly-unchecked ones, regenerates `settings.json`, and auto-installs
|
|
27
|
-
any missing prerequisites.
|
|
28
|
-
|
|
29
|
-
`musketeer promote` upgrades the **CLI tool** itself (not your project's company): it checks the npm
|
|
30
|
-
registry, and if a newer version exists, runs `npm i -g @phuc1403/musketeer@latest`. _muster = which
|
|
31
|
-
musketeers are in this project; promote = upgrade the binary._
|
|
32
|
-
|
|
33
|
-
## Musketeers (v1)
|
|
34
|
-
|
|
35
|
-
| Musketeer | Default in muster | What it adds |
|
|
36
|
-
|-----------|-------------------|--------------|
|
|
37
|
-
| **core** | always on (locked, hidden) | research, handoff, skill-creator, git (+ git-manager agent) · statusline, usage-context, format-json hooks |
|
|
38
|
-
| **architecture** | off | adr-writer, architecture-characteristic-writer, context-map · CML validation hook |
|
|
39
|
-
| **hallmark** | off | hallmark, hallmark-explore, hallmark-loop · auditor/explorer agents |
|
|
40
|
-
| **code-review** | off | code-review skill + code-reviewer agent |
|
|
41
|
-
| **dotnet** | off | tdd, knowledge-crunching · EF migration guard hook · always merges 4 quality-gate props into root `Directory.Build.props` (`MUSKETEER_SKIP_DOTNET_PROPS=1` to skip) · scaffolds a generic `src`/`tests` Clean Architecture skeleton when the project is blank |
|
|
42
|
-
| **design-docs** | off | inject-design-docs SessionStart hook |
|
|
43
|
-
|
|
44
|
-
The muster starts every musketeer **unselected**, except ones you already installed (pre-checked from
|
|
45
|
-
`.musketeer.json`). **core** is always included and isn't shown as a toggle — it can't be removed.
|
|
46
|
-
|
|
47
|
-
Vocabulary: **musketeer** = a selectable unit · **muster** = the picker · **company** = your recruited set.
|
|
48
|
-
|
|
49
|
-
See [INSTALLATION.md](INSTALLATION.md) for prerequisites and auto-install behavior.
|
|
1
|
+
# musketeer
|
|
2
|
+
|
|
3
|
+
> Distributable custom Claude Code harness. One declarative command scaffolds a curated
|
|
4
|
+
> **company** of **musketeers** (skills + agents + hooks) into any project's `./.claude/`.
|
|
5
|
+
|
|
6
|
+
## Install
|
|
7
|
+
|
|
8
|
+
```bash
|
|
9
|
+
npm i -g @phuc1403/musketeer
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Use
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
musketeer muster # self-update → pick company (multi-select) → refresh all selected skills to latest
|
|
16
|
+
musketeer promote # update the musketeer CLI itself to the latest published version
|
|
17
|
+
musketeer # show usage
|
|
18
|
+
musketeer --help # show usage
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
`musketeer muster` **self-updates first**: it pulls the latest published version (re-execing when behind),
|
|
22
|
+
so the refresh always applies the newest template. Set `MUSKETEER_NO_SELF_UPDATE=1` to skip (offline / pinned).
|
|
23
|
+
|
|
24
|
+
It is also **idempotent** and **force-updating**: the picker pre-checks your current company (from
|
|
25
|
+
`.musketeer.json`); on confirm it **re-writes every selected musketeer's files to the latest template**
|
|
26
|
+
(overwriting any local edits), removes newly-unchecked ones, regenerates `settings.json`, and auto-installs
|
|
27
|
+
any missing prerequisites.
|
|
28
|
+
|
|
29
|
+
`musketeer promote` upgrades the **CLI tool** itself (not your project's company): it checks the npm
|
|
30
|
+
registry, and if a newer version exists, runs `npm i -g @phuc1403/musketeer@latest`. _muster = which
|
|
31
|
+
musketeers are in this project; promote = upgrade the binary._
|
|
32
|
+
|
|
33
|
+
## Musketeers (v1)
|
|
34
|
+
|
|
35
|
+
| Musketeer | Default in muster | What it adds |
|
|
36
|
+
|-----------|-------------------|--------------|
|
|
37
|
+
| **core** | always on (locked, hidden) | research, handoff, skill-creator, git (+ git-manager agent) · statusline, usage-context, format-json hooks |
|
|
38
|
+
| **architecture** | off | adr-writer, architecture-characteristic-writer, context-map · CML validation hook |
|
|
39
|
+
| **hallmark** | off | hallmark, hallmark-explore, hallmark-loop · auditor/explorer agents |
|
|
40
|
+
| **code-review** | off | code-review skill + code-reviewer agent |
|
|
41
|
+
| **dotnet** | off | tdd, knowledge-crunching · EF migration guard hook · always merges 4 quality-gate props into root `Directory.Build.props` (`MUSKETEER_SKIP_DOTNET_PROPS=1` to skip) · scaffolds a generic `src`/`tests` Clean Architecture skeleton when the project is blank |
|
|
42
|
+
| **design-docs** | off | inject-design-docs SessionStart hook |
|
|
43
|
+
|
|
44
|
+
The muster starts every musketeer **unselected**, except ones you already installed (pre-checked from
|
|
45
|
+
`.musketeer.json`). **core** is always included and isn't shown as a toggle — it can't be removed.
|
|
46
|
+
|
|
47
|
+
Vocabulary: **musketeer** = a selectable unit · **muster** = the picker · **company** = your recruited set.
|
|
48
|
+
|
|
49
|
+
See [INSTALLATION.md](INSTALLATION.md) for prerequisites and auto-install behavior.
|