agent-skillboard 0.2.16 → 0.2.18
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 +33 -0
- package/README.md +75 -49
- package/bin/postinstall.mjs +2 -2
- package/docs/install.md +37 -42
- package/docs/reference.md +27 -18
- package/docs/user-flow.md +9 -17
- package/docs/versioning.md +1 -1
- package/package.json +1 -1
- package/src/agent-integration-cli.mjs +2 -2
- package/src/agent-integration-content.mjs +1 -1
- package/src/cli.mjs +118 -113
- package/src/doctor.mjs +2 -2
- package/src/source-profiles.mjs +144 -144
- package/src/workspace.mjs +79 -79
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,39 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 0.2.18 — 2026-07-07
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Deprecated `skillboard init` from the normal first-use path across README,
|
|
10
|
+
install docs, reference docs, CLI help, postinstall/setup guidance, and
|
|
11
|
+
generated agent guidance.
|
|
12
|
+
- Reframed normal onboarding around global install/postinstall and agent-layer
|
|
13
|
+
`skillboard setup`, with `init` reserved for legacy project-local policy
|
|
14
|
+
workspaces.
|
|
15
|
+
- Updated `doctor` help and recommendations so it no longer reads as an
|
|
16
|
+
`init` prerequisite for new users.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Added regression coverage that prevents primary README/install/reference/help
|
|
21
|
+
surfaces from reintroducing `init` or bare project-bootstrap wording as the
|
|
22
|
+
normal setup flow.
|
|
23
|
+
|
|
24
|
+
## 0.2.17 — 2026-07-07
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Reworked the README opening and quick start so developers using multiple
|
|
29
|
+
agents, skill packs, plugins, MCP tools, or marketplaces can understand
|
|
30
|
+
SkillBoard's purpose and try the CLI with read-only `npm exec` commands before
|
|
31
|
+
installing it globally.
|
|
32
|
+
|
|
33
|
+
### Fixed
|
|
34
|
+
|
|
35
|
+
- Kept packaged npm smoke tests compatible with Node 20 release checks that run
|
|
36
|
+
inside an outer `npx -p node@20 -c ...` invocation.
|
|
37
|
+
|
|
5
38
|
## 0.2.16 — 2026-07-06
|
|
6
39
|
|
|
7
40
|
### Changed
|
package/README.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Keep AI-agent skills broadly available, then route overlaps consistently.
|
|
4
4
|
|
|
5
|
+
If you use more than one coding agent, skill pack, plugin, MCP tool, or
|
|
6
|
+
marketplace, SkillBoard answers the practical questions before you install
|
|
7
|
+
anything or change workflow policy: which skills are usable now, which one
|
|
8
|
+
should win when skills overlap, which external skills need review, and how
|
|
9
|
+
Codex, Claude, OpenCode, and Hermes can follow the same policy.
|
|
10
|
+
|
|
5
11
|
Ask your AI normal work requests: "write tests before implementation",
|
|
6
12
|
"review this plan and point out weak assumptions", "help me refine this UX
|
|
7
13
|
flow", or explicit control requests like "use the Codex test-first skill in
|
|
@@ -12,14 +18,15 @@ when similar skills overlap, and a short disclosure of what was used.
|
|
|
12
18
|
|
|
13
19
|
The burden stays low:
|
|
14
20
|
|
|
15
|
-
- No global install is required
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
- No global install is required for a trial; use
|
|
22
|
+
`npm exec --yes --package agent-skillboard@latest -- skillboard`.
|
|
23
|
+
- Most use is read-only: `brief`, `route`, and `guard use` answer what can run
|
|
24
|
+
now and which route fits the request; `doctor` checks local policy and source
|
|
25
|
+
health without writing changes.
|
|
18
26
|
- Nothing changes until you approve a policy action.
|
|
19
|
-
-
|
|
20
|
-
uninstall
|
|
21
|
-
|
|
22
|
-
project policy and bridge guidance.
|
|
27
|
+
- Agent-layer cleanup is previewable with
|
|
28
|
+
`skillboard uninstall --agent-layer --dry-run`; it removes only managed
|
|
29
|
+
SkillBoard guidance while preserving other agent skills.
|
|
23
30
|
|
|
24
31
|
Status: public alpha. The current config schema is config schema v1; breaking
|
|
25
32
|
changes may still happen before `1.0.0` and are documented in release notes.
|
|
@@ -59,12 +66,25 @@ Names you may see in setup and logs:
|
|
|
59
66
|
- `agent-skillboard`: the npm package.
|
|
60
67
|
- `skillboard`: the CLI binary.
|
|
61
68
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
69
|
+
## Who This Is For
|
|
70
|
+
|
|
71
|
+
Use SkillBoard if you use more than one coding agent, skill pack, plugin, MCP
|
|
72
|
+
tool, or marketplace and want one answer to:
|
|
73
|
+
|
|
74
|
+
- Which skills can this agent use right now?
|
|
75
|
+
- Which skill should win when several match the same task?
|
|
76
|
+
- Which external or plugin skills are reviewed, blocked, or waiting for approval?
|
|
77
|
+
- How can Codex, Claude, OpenCode, and Hermes follow the same skill policy?
|
|
78
|
+
|
|
79
|
+
If you use one agent with a few hand-written local skills, you probably do not
|
|
80
|
+
need SkillBoard yet. SkillBoard is for setups that have grown beyond one trusted
|
|
81
|
+
skill folder and need workflow-scoped control without turning skill governance
|
|
82
|
+
into a manual checklist.
|
|
83
|
+
|
|
84
|
+
If you are changing routing, brief, bridge, policy, or workflow UX, read
|
|
85
|
+
[AI Skill Routing Goal](docs/ai-skill-routing-goal.md) first; it defines the
|
|
86
|
+
non-blocking `observe → route → work → explain briefly → ask after → remember
|
|
87
|
+
policy` loop that development should preserve.
|
|
68
88
|
|
|
69
89
|
<p align="center">
|
|
70
90
|
<img src="https://raw.githubusercontent.com/NyXXiR/skillboard/main/skillboard.png" alt="SkillBoard architecture diagram: sources, inventory scanner, SkillBoard model, policy engine, and user and agent surfaces." width="100%">
|
|
@@ -95,8 +115,17 @@ See [Tested Value Proof](#tested-value-proof) for the executable proof.
|
|
|
95
115
|
|
|
96
116
|
## 5-Minute Quick Start
|
|
97
117
|
|
|
98
|
-
|
|
99
|
-
|
|
118
|
+
Try it without a global install. These read-only commands download the latest
|
|
119
|
+
package for one run and do not create project files:
|
|
120
|
+
|
|
121
|
+
```bash
|
|
122
|
+
npm exec --yes --package agent-skillboard@latest -- skillboard --version
|
|
123
|
+
npm exec --yes --package agent-skillboard@latest -- skillboard help brief
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
Install the CLI when you want SkillBoard connected to your agent layer. On a
|
|
127
|
+
normal global install, SkillBoard auto-connects the agent layer for detected
|
|
128
|
+
Codex, Claude, OpenCode, and Hermes user skill roots:
|
|
100
129
|
|
|
101
130
|
AI/automation/operator details:
|
|
102
131
|
|
|
@@ -121,8 +150,7 @@ It does not create `skillboard.config.yaml`,
|
|
|
121
150
|
No separate setup command is required after a normal global install or update:
|
|
122
151
|
npm lifecycle scripts run agent-layer setup automatically, rerun the agent-home
|
|
123
152
|
scan, refresh managed SkillBoard guidance files, and add newly detected
|
|
124
|
-
supported agent roots. This setup
|
|
125
|
-
only inside a workspace where you want project-local policy files.
|
|
153
|
+
supported agent roots. This setup is agent-layer only.
|
|
126
154
|
|
|
127
155
|
Run `skillboard setup --agent codex,claude,opencode,hermes --yes` later only
|
|
128
156
|
after adding another supported agent, enabling a new agent home, or installing
|
|
@@ -142,37 +170,6 @@ skill root. If the source contains agent-specific instructions, the agent asks
|
|
|
142
170
|
before creating an adapted target-agent `SKILL.md` and installs that file with
|
|
143
171
|
provenance.
|
|
144
172
|
|
|
145
|
-
If you intentionally maintain local workspace policy files, use the explicit
|
|
146
|
-
operator commands for that layer. `skillboard init` is needed only for a
|
|
147
|
-
workspace where you want project-local policy, bridge guidance, and reports:
|
|
148
|
-
|
|
149
|
-
```bash
|
|
150
|
-
npx --yes --package agent-skillboard skillboard init
|
|
151
|
-
npx --yes --package agent-skillboard skillboard doctor --summary
|
|
152
|
-
npx --yes --package agent-skillboard skillboard brief --workflow <workflow-from-init>
|
|
153
|
-
```
|
|
154
|
-
|
|
155
|
-
Remove SkillBoard from a project when you are done:
|
|
156
|
-
|
|
157
|
-
```bash
|
|
158
|
-
npx --yes --package agent-skillboard skillboard uninstall --dir /path/to/your/project --dry-run
|
|
159
|
-
npx --yes --package agent-skillboard skillboard uninstall --dir /path/to/your/project
|
|
160
|
-
```
|
|
161
|
-
|
|
162
|
-
Default project uninstall removes SkillBoard config, bridge guidance, and
|
|
163
|
-
`.skillboard/` project state while preserving local `skills/*/SKILL.md` files.
|
|
164
|
-
It reports what it removed or preserved.
|
|
165
|
-
|
|
166
|
-
```bash
|
|
167
|
-
npx --yes --package agent-skillboard skillboard uninstall --dir /path/to/your/project --keep-settings --dry-run
|
|
168
|
-
npx --yes --package agent-skillboard skillboard uninstall --dir /path/to/your/project --keep-settings
|
|
169
|
-
```
|
|
170
|
-
|
|
171
|
-
Use `--keep-settings` only when you want to keep project SkillBoard policy and
|
|
172
|
-
bridge guidance in place, for example while cleaning generated helper files.
|
|
173
|
-
`--purge` remains accepted as an explicit spelling for the default clean
|
|
174
|
-
project removal.
|
|
175
|
-
|
|
176
173
|
Remove SkillBoard's managed agent-layer guidance before package removal when
|
|
177
174
|
you want agent homes back to their pre-SkillBoard guidance state:
|
|
178
175
|
|
|
@@ -212,6 +209,35 @@ For action cards, use `skillboard apply-action <action-id> --yes --json`; raw
|
|
|
212
209
|
`skillboard hook install ... --dry-run --json` previews are underlying manual
|
|
213
210
|
operator detail, not the primary action-card flow.
|
|
214
211
|
|
|
212
|
+
## Legacy Project Policy Mode
|
|
213
|
+
|
|
214
|
+
Legacy project policy mode is for existing workspaces that still carry local
|
|
215
|
+
SkillBoard policy files.
|
|
216
|
+
|
|
217
|
+
`skillboard init` is deprecated project-local policy bootstrap and is not
|
|
218
|
+
needed for normal use. Global install/postinstall and `skillboard setup`
|
|
219
|
+
connect SkillBoard at the agent layer without creating `skillboard.config.yaml`,
|
|
220
|
+
`.skillboard/`, `AGENTS.md`, or `CLAUDE.md` in projects. Agent-layer setup does
|
|
221
|
+
not run `skillboard init`.
|
|
222
|
+
|
|
223
|
+
The command remains for existing workspaces that intentionally maintain local
|
|
224
|
+
policy files, bridge guidance, and reports. Use `skillboard help init` before
|
|
225
|
+
using it in an existing workspace.
|
|
226
|
+
|
|
227
|
+
Default legacy project uninstall removes SkillBoard config, bridge guidance,
|
|
228
|
+
and `.skillboard/` project state while preserving local `skills/*/SKILL.md`
|
|
229
|
+
files:
|
|
230
|
+
|
|
231
|
+
```bash
|
|
232
|
+
skillboard uninstall --dir /path/to/your/project --dry-run
|
|
233
|
+
skillboard uninstall --dir /path/to/your/project
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
Use `--keep-settings` only when you want to keep legacy project policy and
|
|
237
|
+
bridge guidance in place, for example while cleaning generated helper files.
|
|
238
|
+
`--purge` remains accepted as an explicit spelling for the default clean
|
|
239
|
+
project removal.
|
|
240
|
+
|
|
215
241
|
## What Works Today
|
|
216
242
|
|
|
217
243
|
SkillBoard currently supports:
|
|
@@ -258,7 +284,7 @@ fixtures, and assertions.
|
|
|
258
284
|
## Where To Go Next
|
|
259
285
|
|
|
260
286
|
- [AI skill routing goal](docs/ai-skill-routing-goal.md)
|
|
261
|
-
- [Install and
|
|
287
|
+
- [Install and agent-layer setup](docs/install.md)
|
|
262
288
|
- [First-time control flow](docs/user-flow.md)
|
|
263
289
|
- [Capability routing](docs/routing.md)
|
|
264
290
|
- [Command and config reference](docs/reference.md)
|
package/bin/postinstall.mjs
CHANGED
|
@@ -9,7 +9,7 @@ if (isTruthy(process.env.SKILLBOARD_SKIP_POSTINSTALL)) {
|
|
|
9
9
|
process.stderr.write(`${[
|
|
10
10
|
"SkillBoard installed or updated.",
|
|
11
11
|
"It can refresh user-agent guidance on global installs, but it does not initialize projects.",
|
|
12
|
-
"
|
|
12
|
+
"skillboard init is deprecated project-local policy bootstrap and is not needed for normal use.",
|
|
13
13
|
""
|
|
14
14
|
].join("\n")}\n`);
|
|
15
15
|
|
|
@@ -20,7 +20,7 @@ if (!shouldAutoSetup(process.env)) {
|
|
|
20
20
|
" skillboard setup",
|
|
21
21
|
"",
|
|
22
22
|
"Setup only writes user agent skill files. It does not create skillboard.config.yaml or .skillboard/.",
|
|
23
|
-
"
|
|
23
|
+
"skillboard init is deprecated project-local policy bootstrap and is not needed for normal use.",
|
|
24
24
|
""
|
|
25
25
|
].join("\n")}`);
|
|
26
26
|
process.exit(0);
|
package/docs/install.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Install And
|
|
1
|
+
# Install And Agent-Layer Setup
|
|
2
2
|
|
|
3
3
|
SkillBoard sits one layer above skill installers, plugin marketplaces, harness
|
|
4
4
|
bundles, and local skill repositories.
|
|
@@ -20,8 +20,8 @@ CLI available and the postinstall step runs agent-layer setup for detected
|
|
|
20
20
|
Codex, Claude, OpenCode, and Hermes user skill roots. The setup is best-effort:
|
|
21
21
|
it never fails the package install, does not edit agent config files, and does
|
|
22
22
|
not create project policy files. It does not run `skillboard init`; run `init`
|
|
23
|
-
only
|
|
24
|
-
and reports.
|
|
23
|
+
only when maintaining an existing workspace that intentionally keeps local
|
|
24
|
+
SkillBoard policy, bridge guidance, and reports.
|
|
25
25
|
|
|
26
26
|
The published CLI supports Node.js 14.21 or newer. Node 12 and older are not
|
|
27
27
|
supported without a transpiled bundle because the source uses modern ESM and
|
|
@@ -78,34 +78,16 @@ SkillBoard reports `needs-adaptation`, the agent explains why, asks before
|
|
|
78
78
|
changing the skill body for the target runtime, then installs the approved
|
|
79
79
|
adapted file with `--adapted-file <path> --yes`.
|
|
80
80
|
|
|
81
|
-
Use no-prompt
|
|
82
|
-
|
|
83
|
-
binary installed:
|
|
81
|
+
Use no-prompt package execution when you want read-only help without keeping a
|
|
82
|
+
global SkillBoard binary installed:
|
|
84
83
|
|
|
85
84
|
```bash
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
npx --yes --package agent-skillboard skillboard brief --workflow <workflow-from-init>
|
|
85
|
+
npm exec --yes --package agent-skillboard -- skillboard --version
|
|
86
|
+
npm exec --yes --package agent-skillboard -- skillboard help brief
|
|
89
87
|
```
|
|
90
88
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
manual-only and keeps runtime/plugin skills quarantined until their source is
|
|
94
|
-
reviewed. The brief presents unreviewed runtime sources as one-time review
|
|
95
|
-
decisions rather than default block recommendations; after review, individual
|
|
96
|
-
quarantined skills can be activated as manual-only workflow skills. When `init`
|
|
97
|
-
creates or discovers workflows, use one of the workflow names it prints for the
|
|
98
|
-
first brief. If `init` does not print a workflow, run the unscoped `brief`
|
|
99
|
-
command it prints instead. The explicit package/binary spelling avoids an extra
|
|
100
|
-
npx install prompt and keeps the executable name clear.
|
|
101
|
-
|
|
102
|
-
The equivalent `npm exec` spelling is also no-prompt and works well in scripts:
|
|
103
|
-
|
|
104
|
-
```bash
|
|
105
|
-
npm exec --yes --package agent-skillboard -- skillboard init
|
|
106
|
-
npm exec --yes --package agent-skillboard -- skillboard doctor --summary
|
|
107
|
-
npm exec --yes --package agent-skillboard -- skillboard brief --workflow <workflow-from-init>
|
|
108
|
-
```
|
|
89
|
+
The explicit package/binary spelling avoids an extra install prompt and keeps
|
|
90
|
+
the executable name clear.
|
|
109
91
|
|
|
110
92
|
For repeated local use, install the CLI globally:
|
|
111
93
|
|
|
@@ -119,6 +101,21 @@ skillboard setup --agent codex,claude,opencode,hermes --yes
|
|
|
119
101
|
The executable remains `skillboard` even though the npm package name is
|
|
120
102
|
`agent-skillboard`.
|
|
121
103
|
|
|
104
|
+
## Deprecated Project Policy Mode
|
|
105
|
+
|
|
106
|
+
`skillboard init` is deprecated project-local policy bootstrap and is not
|
|
107
|
+
needed for normal use. Package install, postinstall, and `skillboard setup`
|
|
108
|
+
connect SkillBoard at the agent layer without creating project files.
|
|
109
|
+
|
|
110
|
+
The command remains available for existing workspaces that intentionally keep
|
|
111
|
+
local `skillboard.config.yaml`, `.skillboard/`, `AGENTS.md`, or `CLAUDE.md`
|
|
112
|
+
policy files. If you maintain one of those workspaces, inspect `skillboard help
|
|
113
|
+
init`, then run `skillboard init` from that workspace or pass `--dir`.
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
npm exec --yes --package agent-skillboard -- skillboard help init
|
|
117
|
+
```
|
|
118
|
+
|
|
122
119
|
## Run Unreleased Builds From GitHub
|
|
123
120
|
|
|
124
121
|
Use GitHub npx only when you intentionally want the current repository state
|
|
@@ -127,17 +124,15 @@ before the next npm release:
|
|
|
127
124
|
AI/automation/operator details:
|
|
128
125
|
|
|
129
126
|
```bash
|
|
130
|
-
npx --yes --package github:NyXXiR/skillboard skillboard
|
|
131
|
-
npx --yes --package github:NyXXiR/skillboard skillboard
|
|
132
|
-
npx --yes --package github:NyXXiR/skillboard skillboard brief --workflow <workflow-from-init>
|
|
127
|
+
npx --yes --package github:NyXXiR/skillboard skillboard --version
|
|
128
|
+
npx --yes --package github:NyXXiR/skillboard skillboard help
|
|
133
129
|
```
|
|
134
130
|
|
|
135
131
|
The equivalent `npm exec` spelling is explicit about the package and binary:
|
|
136
132
|
|
|
137
133
|
```bash
|
|
138
|
-
npm exec --yes --package github:NyXXiR/skillboard -- skillboard
|
|
139
|
-
npm exec --yes --package github:NyXXiR/skillboard -- skillboard
|
|
140
|
-
npm exec --yes --package github:NyXXiR/skillboard -- skillboard brief --workflow <workflow-from-init>
|
|
134
|
+
npm exec --yes --package github:NyXXiR/skillboard -- skillboard --version
|
|
135
|
+
npm exec --yes --package github:NyXXiR/skillboard -- skillboard help
|
|
141
136
|
```
|
|
142
137
|
|
|
143
138
|
## Install From A Clone
|
|
@@ -150,16 +145,16 @@ AI/automation/operator details:
|
|
|
150
145
|
git clone https://github.com/NyXXiR/skillboard.git
|
|
151
146
|
cd skillboard
|
|
152
147
|
npm install
|
|
153
|
-
node bin/skillboard.mjs
|
|
154
|
-
node bin/skillboard.mjs
|
|
155
|
-
node bin/skillboard.mjs brief --dir /path/to/your/project --workflow <workflow-from-init>
|
|
148
|
+
node bin/skillboard.mjs --version
|
|
149
|
+
node bin/skillboard.mjs help
|
|
156
150
|
```
|
|
157
151
|
|
|
158
|
-
## What init Does
|
|
152
|
+
## What Deprecated init Does
|
|
159
153
|
|
|
160
|
-
`skillboard init` is the
|
|
161
|
-
installation and `skillboard setup` do not modify a project, but init
|
|
162
|
-
local files for teams that intentionally keep workflow policy in
|
|
154
|
+
`skillboard init` is the legacy local policy-file generation step. npm
|
|
155
|
+
installation and `skillboard setup` do not modify a project, but init still
|
|
156
|
+
creates local files for teams that intentionally keep workflow policy in an
|
|
157
|
+
existing workspace.
|
|
163
158
|
|
|
164
159
|
Created project files:
|
|
165
160
|
|
|
@@ -190,8 +185,8 @@ extensions without flattening them into loose skills. After the owning source is
|
|
|
190
185
|
reviewed, action cards can activate a quarantined runtime skill into a workflow
|
|
191
186
|
as `manual-only`; automatic preference should still be remembered later through
|
|
192
187
|
the normal ask-after-use policy loop. Use `--no-scan-installed` for a
|
|
193
|
-
scaffold-only
|
|
194
|
-
skill roots during
|
|
188
|
+
scaffold-only initialization, or `--scan-root <dir>[,<dir>]` to add
|
|
189
|
+
server-specific skill roots during initialization.
|
|
195
190
|
|
|
196
191
|
After init, run:
|
|
197
192
|
|
package/docs/reference.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
This is the operator reference for users who already understand the basic
|
|
4
4
|
SkillBoard flow and need exact command, config, and lifecycle details.
|
|
5
5
|
|
|
6
|
-
For installation and
|
|
6
|
+
For installation and agent-layer setup commands, start with [install.md](install.md).
|
|
7
7
|
For a guided first workflow, use [user-flow.md](user-flow.md).
|
|
8
8
|
|
|
9
9
|
## Command Forms
|
|
@@ -16,12 +16,8 @@ The npm package is `agent-skillboard`; the executable remains `skillboard`.
|
|
|
16
16
|
For CI or scripts, the explicit package form avoids binary-name ambiguity:
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
npx --yes --package agent-skillboard skillboard brief --workflow <workflow-from-init>
|
|
22
|
-
npm exec --yes --package agent-skillboard -- skillboard init
|
|
23
|
-
npm exec --yes --package agent-skillboard -- skillboard doctor --summary
|
|
24
|
-
npm exec --yes --package agent-skillboard -- skillboard brief --workflow <workflow-from-init>
|
|
19
|
+
npm exec --yes --package agent-skillboard -- skillboard --version
|
|
20
|
+
npm exec --yes --package agent-skillboard -- skillboard help brief
|
|
25
21
|
```
|
|
26
22
|
|
|
27
23
|
After a global install, postinstall auto-runs agent-layer setup for detected
|
|
@@ -31,16 +27,12 @@ guidance. This is agent-layer integration; it does not initialize, attach, or
|
|
|
31
27
|
manage individual projects. To remove only managed agent-layer guidance, run
|
|
32
28
|
`skillboard uninstall --agent-layer` before package removal.
|
|
33
29
|
|
|
34
|
-
If `init` does not print a workflow, run the unscoped `brief` command it prints
|
|
35
|
-
instead.
|
|
36
|
-
|
|
37
30
|
Unreleased GitHub builds are available when intentionally testing repository
|
|
38
31
|
state before the next npm release:
|
|
39
32
|
|
|
40
33
|
```bash
|
|
41
|
-
npx --yes --package github:NyXXiR/skillboard skillboard
|
|
42
|
-
npx --yes --package github:NyXXiR/skillboard skillboard
|
|
43
|
-
npx --yes --package github:NyXXiR/skillboard skillboard brief --workflow <workflow-from-init>
|
|
34
|
+
npx --yes --package github:NyXXiR/skillboard skillboard --version
|
|
35
|
+
npx --yes --package github:NyXXiR/skillboard skillboard help
|
|
44
36
|
```
|
|
45
37
|
|
|
46
38
|
From a source clone:
|
|
@@ -50,9 +42,8 @@ git clone https://github.com/NyXXiR/skillboard.git
|
|
|
50
42
|
cd skillboard
|
|
51
43
|
npm install
|
|
52
44
|
npm test
|
|
53
|
-
node bin/skillboard.mjs
|
|
54
|
-
node bin/skillboard.mjs
|
|
55
|
-
node bin/skillboard.mjs brief --dir /path/to/your/project --workflow <workflow-from-init>
|
|
45
|
+
node bin/skillboard.mjs --version
|
|
46
|
+
node bin/skillboard.mjs help
|
|
56
47
|
```
|
|
57
48
|
|
|
58
49
|
## Commands
|
|
@@ -60,7 +51,6 @@ node bin/skillboard.mjs brief --dir /path/to/your/project --workflow <workflow-f
|
|
|
60
51
|
```bash
|
|
61
52
|
skillboard setup [--yes] [--agent codex[,claude,opencode,hermes]]
|
|
62
53
|
skillboard import-skill --from <agent> --to <agent> --skill <id-or-dir> [--target-skill <id-or-dir>] [--adapted-file <path>] [--dry-run] [--yes] [--replace] [--json]
|
|
63
|
-
skillboard init [--dir <path>] [--scan-root <dir>[,<dir>]] [--no-scan-installed]
|
|
64
54
|
skillboard uninstall [--dir <path>] [--dry-run] [--keep-settings] [--purge] [--remove-config|--reset-config] [--remove-reports] [--remove-hooks] [--keep-empty-dirs] [--agent-layer] [--agent codex[,claude,opencode,hermes]]
|
|
65
55
|
skillboard inventory refresh [--dir <path>] [--config <path>] [--scan-root <dir>[,<dir>]] [--dry-run] [--json]
|
|
66
56
|
skillboard inventory detect --unit <id> --config <path> [--install-output <path>] [--config-file a,b] [--source <value>] [--kind <kind>] [--scope <scope>] [--dry-run] [--json]
|
|
@@ -136,6 +126,24 @@ This is separate from `variant` commands. `import-skill` installs a target-agent
|
|
|
136
126
|
user skill file; `variant` records project-local policy relationships,
|
|
137
127
|
snapshots, and workflow preferences.
|
|
138
128
|
|
|
129
|
+
## Deprecated Project Policy Mode
|
|
130
|
+
|
|
131
|
+
`skillboard init` is deprecated project-local policy bootstrap and is not
|
|
132
|
+
needed for normal use. Package install, postinstall, and `skillboard setup`
|
|
133
|
+
connect SkillBoard at the agent layer without initializing, attaching, or
|
|
134
|
+
managing individual projects.
|
|
135
|
+
|
|
136
|
+
```bash
|
|
137
|
+
skillboard init [--dir <path>] [--scan-root <dir>[,<dir>]] [--no-scan-installed]
|
|
138
|
+
skillboard help init
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
The command remains available for existing workspaces that intentionally keep
|
|
142
|
+
local `skillboard.config.yaml`, `.skillboard/`, `AGENTS.md`, or `CLAUDE.md`
|
|
143
|
+
policy files. If `init` creates or discovers workflows, use one of the workflow
|
|
144
|
+
names it prints for the first `brief`. If it does not print a workflow, run the
|
|
145
|
+
unscoped `brief` command it prints instead.
|
|
146
|
+
|
|
139
147
|
## Capability Routing
|
|
140
148
|
|
|
141
149
|
For the normal AI-mediated flow, prefer `brief --intent`: it returns the current
|
|
@@ -396,7 +404,8 @@ for the full lifecycle guide.
|
|
|
396
404
|
|
|
397
405
|
## Related Runbooks
|
|
398
406
|
|
|
399
|
-
- [install.md](install.md): install,
|
|
407
|
+
- [install.md](install.md): install, agent-layer setup, legacy policy mode,
|
|
408
|
+
doctor, refresh, and uninstall.
|
|
400
409
|
- [user-flow.md](user-flow.md): first-time skill governance workflow.
|
|
401
410
|
- [policy-model.md](policy-model.md): policy states, invocation modes, and install units.
|
|
402
411
|
- [capabilities.md](capabilities.md): capability catalog and workflow resolution.
|
package/docs/user-flow.md
CHANGED
|
@@ -38,29 +38,21 @@ SkillBoard non-blocking: observe the request, route to the current best skill,
|
|
|
38
38
|
work normally, explain briefly, ask after use only when a policy preference would
|
|
39
39
|
help, and remember that usage policy without rewriting skill bodies.
|
|
40
40
|
|
|
41
|
-
## 1.
|
|
41
|
+
## 1. Start From Agent-Layer Setup
|
|
42
42
|
|
|
43
43
|
AI/automation/operator details:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
skillboard
|
|
47
|
-
skillboard doctor
|
|
46
|
+
skillboard setup --agent codex,claude,opencode,hermes --yes
|
|
48
47
|
```
|
|
49
48
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
`
|
|
56
|
-
|
|
57
|
-
legacy-state warning noise. Runtime-supplied or external skills are quarantined
|
|
58
|
-
until an explicit source and workflow decision exists. Reviewable items should
|
|
59
|
-
appear as "Needs your decision"; only provenance failures, explicit user blocks,
|
|
60
|
-
disabled sources, or other hard policy failures should remain "Blocked for
|
|
61
|
-
safety". Use
|
|
62
|
-
`skillboard doctor --strict` when review-needed safe-mode warnings should fail
|
|
63
|
-
automation.
|
|
49
|
+
Package install and `skillboard setup` write user-agent guidance only. They do
|
|
50
|
+
not create `skillboard.config.yaml`, `.skillboard/`, `AGENTS.md`, or
|
|
51
|
+
`CLAUDE.md` in projects. `skillboard init` is deprecated project-local policy
|
|
52
|
+
bootstrap and is not needed for normal use; use it only when maintaining an
|
|
53
|
+
existing workspace that intentionally keeps local SkillBoard policy files. Use
|
|
54
|
+
`skillboard doctor --strict` only for an existing policy workspace when
|
|
55
|
+
review-needed safe-mode warnings should fail automation.
|
|
64
56
|
|
|
65
57
|
When the user asks the agent what it can use, the agent should read the current
|
|
66
58
|
brief with `skillboard brief --json` first and answer from the brief rather than
|
package/docs/versioning.md
CHANGED
package/package.json
CHANGED
|
@@ -35,7 +35,7 @@ export async function runSetupCommand(options, stdout, runtime = defaultRuntime(
|
|
|
35
35
|
writeList(stdout, "Preserved", result.preserved);
|
|
36
36
|
stdout.write("Next:\n");
|
|
37
37
|
stdout.write("- Restart or refresh agents that cache user skills.\n");
|
|
38
|
-
stdout.write("- No project was initialized;
|
|
38
|
+
stdout.write("- No project was initialized; skillboard init is deprecated project-local policy bootstrap and is not needed for normal use.\n");
|
|
39
39
|
stdout.write('- Ask the agent in a workspace: "Review this plan and point out weak assumptions."\n');
|
|
40
40
|
stdout.write("- SkillBoard will step in when skills overlap, routing is ambiguous, or you ask for a skill decision.\n");
|
|
41
41
|
return 0;
|
|
@@ -76,7 +76,7 @@ function writeList(stdout, label, values) {
|
|
|
76
76
|
function writeSetupConfirmation(stdout, targets, command) {
|
|
77
77
|
stdout.write("SkillBoard setup installs agent-layer integration, not project files.\n");
|
|
78
78
|
stdout.write("It writes a SkillBoard guidance skill into detected user agent skill roots so agents can resolve skill priority when choices overlap.\n");
|
|
79
|
-
stdout.write("It does not create skillboard.config.yaml or .skillboard/;
|
|
79
|
+
stdout.write("It does not create skillboard.config.yaml or .skillboard/; skillboard init is deprecated project-local policy bootstrap and is not needed for normal use.\n");
|
|
80
80
|
stdout.write("Targets:\n");
|
|
81
81
|
for (const target of targets) {
|
|
82
82
|
stdout.write(`- ${target.agent}: ${target.skillPath}\n`);
|
|
@@ -16,7 +16,7 @@ Use this skill to let SkillBoard guide skill selection above individual projects
|
|
|
16
16
|
- SkillBoard is the user-level control plane for skill priority, overlap resolution, and workflow-aware routing.
|
|
17
17
|
- Project management belongs to the agent or workspace layer. Do not initialize, attach, rewrite, or manage a project just because SkillBoard is installed.
|
|
18
18
|
- Package install and \`skillboard setup\` install user-agent guidance only.
|
|
19
|
-
- \`skillboard init\` is
|
|
19
|
+
- \`skillboard init\` is deprecated project-local policy bootstrap. It is not needed for normal use; use it only when maintaining an existing workspace that intentionally keeps local policy files such as \`skillboard.config.yaml\`, \`.skillboard/\`, \`AGENTS.md\`, or \`CLAUDE.md\`.
|
|
20
20
|
|
|
21
21
|
## Default Behavior
|
|
22
22
|
|