agent-skillboard 0.1.2 → 0.2.2

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.
Files changed (63) hide show
  1. package/CHANGELOG.md +39 -0
  2. package/README.md +159 -630
  3. package/docs/adapters.md +96 -96
  4. package/docs/ai-skill-routing-goal.md +112 -0
  5. package/docs/capabilities.md +6 -0
  6. package/docs/install.md +172 -114
  7. package/docs/policy-model.md +266 -214
  8. package/docs/positioning.md +94 -94
  9. package/docs/reference.md +349 -0
  10. package/docs/routing.md +85 -0
  11. package/docs/user-flow.md +79 -17
  12. package/docs/value-proof.md +194 -0
  13. package/docs/variant-lifecycle.md +86 -0
  14. package/docs/versioning.md +154 -138
  15. package/examples/multi-source-skills/anthropic/docx/SKILL.md +8 -8
  16. package/examples/multi-source-skills/anthropic/skill-creator/SKILL.md +8 -8
  17. package/examples/multi-source-skills/matt/grill-me/SKILL.md +8 -8
  18. package/examples/multi-source-skills/matt/tdd/SKILL.md +8 -8
  19. package/examples/multi-source-skills/omo/review-work/SKILL.md +8 -8
  20. package/examples/multi-source-skills/omo/ulw-plan/SKILL.md +8 -8
  21. package/examples/multi-source-skills/private/tdd-work-continuity/SKILL.md +8 -8
  22. package/examples/multi-source-skills/private/workflow-router/SKILL.md +8 -8
  23. package/examples/multi-source-skills/wshobson/python-testing/SKILL.md +8 -8
  24. package/examples/multi-source-skills/wshobson/security-review/SKILL.md +8 -8
  25. package/examples/skillboard.config.yaml +8 -3
  26. package/examples/skills/grill-me/SKILL.md +9 -9
  27. package/examples/skills/grill-with-docs/SKILL.md +9 -9
  28. package/examples/skills/requirement-intake/SKILL.md +9 -9
  29. package/examples/skills/tdd/SKILL.md +8 -8
  30. package/package.json +6 -3
  31. package/src/advisor/actions.mjs +25 -3
  32. package/src/advisor/guidance.mjs +232 -0
  33. package/src/advisor/schema.mjs +2 -0
  34. package/src/advisor/skills.mjs +2 -0
  35. package/src/advisor/trust-policy.mjs +5 -3
  36. package/src/advisor.mjs +36 -7
  37. package/src/brief-cli.mjs +6 -5
  38. package/src/brief-renderer.mjs +225 -8
  39. package/src/cli.mjs +574 -27
  40. package/src/config-helpers.mjs +34 -18
  41. package/src/conflicts.mjs +70 -0
  42. package/src/control/can-use-guard.mjs +8 -3
  43. package/src/control/skill-crud.mjs +142 -0
  44. package/src/control/skill-variants.mjs +221 -0
  45. package/src/control/source-trust.mjs +1 -0
  46. package/src/control/variant-files.mjs +265 -0
  47. package/src/control/variant-lifecycle-config.mjs +156 -0
  48. package/src/control/variant-reset.mjs +171 -0
  49. package/src/control/variant-status.mjs +75 -0
  50. package/src/control.mjs +13 -1
  51. package/src/domain/rules/skills.mjs +60 -0
  52. package/src/domain/rules/workflows.mjs +13 -0
  53. package/src/hook-plan.mjs +6 -6
  54. package/src/impact.mjs +21 -12
  55. package/src/index.mjs +13 -1
  56. package/src/lifecycle-cli.mjs +19 -8
  57. package/src/lifecycle-content.mjs +34 -24
  58. package/src/route.mjs +537 -0
  59. package/src/source-verification.mjs +7 -3
  60. package/src/workspace.mjs +141 -43
  61. package/tsconfig.lsp.json +1 -1
  62. package/docs/plans/20260625-080025-skillboard-mvp-review.md +0 -189
  63. package/docs/plans/README.md +0 -20
@@ -1,117 +1,119 @@
1
- # Versioning
2
-
3
- SkillBoard has several versioned surfaces. They should not all move at the same
4
- pace, and not every skill file belongs in central version control.
5
-
1
+ # Versioning
2
+
3
+ SkillBoard has several versioned surfaces. They should not all move at the same
4
+ pace, and not every skill file belongs in central version control.
5
+
6
6
  This document defines the public alpha policy for releases, config compatibility,
7
7
  source profiles, and the generated lockfile.
8
-
9
- ## Status
10
-
11
- Current package version: `0.1.2`
12
-
13
- Current config schema version:
14
-
15
- ```yaml
16
- version: 1
17
- ```
18
-
19
- The project is a public alpha. Breaking changes are allowed before `1.0.0`, but
20
- they must be documented in release notes and should include a migration note when
21
- they affect user config.
22
-
23
- ## Versioned Surfaces
24
-
25
- SkillBoard versions these surfaces deliberately:
26
-
27
- - CLI package version: the npm package and command behavior.
28
- - Config schema version: the top-level `version` field in
29
- `skillboard.config.yaml`.
30
- - Source profile format: YAML files under `profiles/` and project-specific
31
- `.skillboard/profiles/`.
32
- - Workflow contracts: workflow names, required capabilities, active skill pools,
33
- required outputs, and harness choices.
34
- - Capability contracts: canonical skill, alternatives, and default policy for a
35
- capability.
36
- - Exported skill entries: shared or vendor skills governed by SkillBoard.
37
- - Install-unit entries: plugin, marketplace, package, harness, MCP, hook, agent,
38
- and LSP sources.
8
+
9
+ ## Status
10
+
11
+ Current package version: `0.2.2`
12
+
13
+ Current config schema version:
14
+
15
+ ```yaml
16
+ version: 1
17
+ ```
18
+
19
+ The project is a public alpha. Breaking changes are allowed before `1.0.0`, but
20
+ they must be documented in release notes and should include a migration note when
21
+ they affect user config.
22
+
23
+ ## Versioned Surfaces
24
+
25
+ SkillBoard versions these surfaces deliberately:
26
+
27
+ - CLI package version: the npm package and command behavior.
28
+ - Config schema version: the top-level `version` field in
29
+ `skillboard.config.yaml`.
30
+ - Source profile format: YAML files under `profiles/` and project-specific
31
+ `.skillboard/profiles/`.
32
+ - Workflow contracts: workflow names, required capabilities, active skill pools,
33
+ required outputs, and harness choices.
34
+ - Capability contracts: canonical skill, alternatives, and default policy for a
35
+ capability.
36
+ - Exported skill entries: shared or vendor skills governed by SkillBoard.
37
+ - Install-unit entries: plugin, marketplace, package, harness, MCP, hook, agent,
38
+ and LSP sources.
39
39
  - Lockfile data: pinned source/cache digest, skill content digests, policy, and
40
40
  compatible harnesses.
41
-
42
- SkillBoard does not try to centrally version every prompt or helper skill. A
43
- workflow-internal private skill can remain inside that workflow package until it
44
- becomes shared, auto-invokable, vendor-provided, or cross-workflow.
45
-
46
- ## Release Versioning
47
-
48
- The package follows SemVer with a stricter alpha convention:
49
-
50
- - Patch: bug fixes, docs, new tests, safer validation, and non-breaking profile
51
- additions.
52
- - Minor: new commands, new config fields with safe defaults, new report sections,
53
- new built-in source profiles, and new policy checks that are warnings first.
54
- - Major: post-`1.0.0` breaking CLI, config, or policy behavior.
55
-
56
- Before `1.0.0`, breaking changes may happen in minor releases, but the changelog
57
- must call them out clearly.
58
-
41
+
42
+ SkillBoard does not try to centrally version every prompt or helper skill. A
43
+ workflow-internal private skill can remain inside that workflow package until it
44
+ becomes shared, auto-invokable, vendor-provided, or cross-workflow.
45
+
46
+ ## Release Versioning
47
+
48
+ The package follows SemVer with a stricter alpha convention:
49
+
50
+ - Patch: bug fixes, docs, new tests, safer validation, and non-breaking profile
51
+ additions.
52
+ - Minor: new commands, new config fields with safe defaults, new report sections,
53
+ new built-in source profiles, and new policy checks that are warnings first.
54
+ - Major: post-`1.0.0` breaking CLI, config, or policy behavior.
55
+
56
+ Before `1.0.0`, breaking changes may happen in minor releases, but the changelog
57
+ must call them out clearly.
58
+
59
59
  Suggested tags:
60
60
 
61
61
  - `v0.1.0-alpha`: first public GitHub alpha.
62
- - `v0.2.0-alpha`: source inventory refresh, doctor/status, source pin refresh,
62
+ - `v0.2.2`: one-time runtime source review before manual activation, ask-after
63
+ skill routing, README benefit-first positioning,
64
+ source inventory refresh, doctor/status, source pin refresh,
63
65
  installer/config detection, resilient detector warnings, and richer dry-run
64
66
  plans.
65
67
  - `v0.3.0-alpha`: signed remote source verification hardening and migration
66
68
  workflow.
67
69
  - `v1.0.0`: config schema and core CLI behavior are stable enough for external
68
70
  workflows to rely on.
69
-
70
- ## Config Schema Version
71
-
72
- The top-level `version` field is the schema version, not the package version.
73
-
74
- Rules:
75
-
76
- - `version: 1` is the only supported schema today.
77
- - Missing `version` is treated as `1` for early compatibility.
78
- - Unsupported future versions must fail fast rather than silently parsing with
79
- older semantics.
80
- - New fields should default to the safest behavior.
81
- - New automatic invocation behavior must be opt-in.
82
- - New policy checks should start as warnings unless they protect an important
83
- safety boundary.
84
-
85
- Breaking schema changes need a migration note. A future `skillboard migrate`
86
- command can automate those changes, but it is not implemented yet.
87
-
88
- ## Source Profile Versioning
89
-
90
- Source profiles are data, not hardcoded adapter branches. Built-in profiles live
91
- under `profiles/`; project profiles can live under `.skillboard/profiles/`.
92
-
93
- Profile compatibility rules:
94
-
95
- - Adding a new built-in profile is a patch or minor change.
96
- - Changing a built-in profile's namespace, target path prefix, default status,
97
- default invocation, or default exposure is a breaking profile behavior change.
98
- - External profiles should not grant `global-auto` unless they also mark the
99
- imported skills as `global-meta`.
100
- - External repository skills should normally import as `vendor`, `candidate`, or
101
- `quarantined`, with `manual-only` or `router-only` invocation.
102
- - Harness/plugin bundle profiles should use `unit-managed` for child skills when
103
- the parent bundle owns commands, hooks, MCP servers, or config mutation.
104
-
105
- Profile imports can be reviewed as fragments or merged directly:
106
-
107
- ```bash
108
- skillboard import \
109
- --profile github.mattpocock.skills \
110
- --source-root /path/to/source \
111
- --out .skillboard/reports/import-fragment.yaml
112
- ```
113
-
114
- ```bash
71
+
72
+ ## Config Schema Version
73
+
74
+ The top-level `version` field is the schema version, not the package version.
75
+
76
+ Rules:
77
+
78
+ - `version: 1` is the only supported schema today.
79
+ - Missing `version` is treated as `1` for early compatibility.
80
+ - Unsupported future versions must fail fast rather than silently parsing with
81
+ older semantics.
82
+ - New fields should default to the safest behavior.
83
+ - New automatic invocation behavior must be opt-in.
84
+ - New policy checks should start as warnings unless they protect an important
85
+ safety boundary.
86
+
87
+ Breaking schema changes need a migration note. A future `skillboard migrate`
88
+ command can automate those changes, but it is not implemented yet.
89
+
90
+ ## Source Profile Versioning
91
+
92
+ Source profiles are data, not hardcoded adapter branches. Built-in profiles live
93
+ under `profiles/`; project profiles can live under `.skillboard/profiles/`.
94
+
95
+ Profile compatibility rules:
96
+
97
+ - Adding a new built-in profile is a patch or minor change.
98
+ - Changing a built-in profile's namespace, target path prefix, default status,
99
+ default invocation, or default exposure is a breaking profile behavior change.
100
+ - External profiles should not grant `global-auto` unless they also mark the
101
+ imported skills as `global-meta`.
102
+ - External repository skills should normally import as `vendor`, `candidate`, or
103
+ `quarantined`, with `manual-only` or `router-only` invocation.
104
+ - Harness/plugin bundle profiles should use `unit-managed` for child skills when
105
+ the parent bundle owns commands, hooks, MCP servers, or config mutation.
106
+
107
+ Profile imports can be reviewed as fragments or merged directly:
108
+
109
+ ```bash
110
+ skillboard import \
111
+ --profile github.mattpocock.skills \
112
+ --source-root /path/to/source \
113
+ --out .skillboard/reports/import-fragment.yaml
114
+ ```
115
+
116
+ ```bash
115
117
  skillboard import \
116
118
  --profile github.mattpocock.skills \
117
119
  --source-root /path/to/source \
@@ -123,33 +125,33 @@ skillboard import \
123
125
  `--merge` is append-only by default. `--replace` is required to overwrite
124
126
  existing skill or install-unit ids. Drop `--dry-run` only after reviewing the
125
127
  reported text and YAML semantic change plan.
126
-
127
- ## Workflow And Capability Versioning
128
-
129
- The primary unit of compatibility is the workflow, not an individual skill.
130
-
131
- Version these centrally:
132
-
133
- - workflow name and intent;
134
- - harness and fallback harness assumptions;
135
- - required capabilities;
136
- - active, blocked, and manual-only skill pools;
137
- - required outputs;
138
- - exported skill contracts used by more than one workflow;
139
- - policy decisions that allow automatic invocation.
140
-
141
- Avoid central versioning for:
142
-
143
- - one-off prompts;
144
- - workflow-internal helper skills;
145
- - private skills used by only one workflow;
146
- - temporary templates that are not auto-invokable;
147
- - implementation details inside a harness bundle.
148
-
149
- When a workflow changes its required outputs, required capabilities, or
150
- workflow-auto skill set, treat it as a compatibility change even if no file paths
151
- changed.
152
-
128
+
129
+ ## Workflow And Capability Versioning
130
+
131
+ The primary unit of compatibility is the workflow, not an individual skill.
132
+
133
+ Version these centrally:
134
+
135
+ - workflow name and intent;
136
+ - harness and fallback harness assumptions;
137
+ - required capabilities;
138
+ - active, blocked, and manual-only skill pools;
139
+ - required outputs;
140
+ - exported skill contracts used by more than one workflow;
141
+ - policy decisions that allow automatic invocation.
142
+
143
+ Avoid central versioning for:
144
+
145
+ - one-off prompts;
146
+ - workflow-internal helper skills;
147
+ - private skills used by only one workflow;
148
+ - temporary templates that are not auto-invokable;
149
+ - implementation details inside a harness bundle.
150
+
151
+ When a workflow changes its required outputs, required capabilities, or
152
+ workflow-auto skill set, treat it as a compatibility change even if no file paths
153
+ changed.
154
+
153
155
  ## Lockfile Policy
154
156
 
155
157
  `skillboard lock write` generates `skillboard.lock.yaml` from the current
@@ -176,7 +178,7 @@ the current working directory, so bundled examples can use project-root-relative
176
178
  paths while project configs can still keep config-local paths.
177
179
  `skillboard lock write` refuses to write when verification has errors unless
178
180
  `--allow-unverified` is passed explicitly for investigation artifacts.
179
-
181
+
180
182
  ## Release Checklist
181
183
 
182
184
  Before tagging a public release:
@@ -187,15 +189,13 @@ Before tagging a public release:
187
189
  - Run at least one CLI smoke test through the public surface.
188
190
  - Confirm docs mention any breaking config, profile, or CLI changes.
189
191
  - Update package version and release notes.
190
- - Confirm npm Trusted Publisher is configured for package `agent-skillboard`,
191
- repository `NyXXiR/skillboard`, workflow filename `publish.yml`, and allowed
192
- action `npm publish`.
193
- - If `npm trust github agent-skillboard --repo NyXXiR/skillboard --file
194
- publish.yml --allow-publish` cannot configure it from the CLI, use the npm
195
- package settings page and add a GitHub Actions trusted publisher with the
196
- same repository, workflow filename, and allowed action.
197
- - Push a version tag that exactly matches `package.json`, for example `v0.1.2`
198
- for package version `0.1.2`.
192
+ - Confirm the repository `NPM_TOKEN` secret can publish `agent-skillboard`.
193
+ The publish job uses that token for npm authentication and requests
194
+ provenance with GitHub Actions OIDC, so keep `permissions.id-token: write`,
195
+ the npm registry URL in `setup-node`, and
196
+ `NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}` on the publish step.
197
+ - Push a version tag that exactly matches `package.json`, for example `v0.2.2`
198
+ for package version `0.2.2`.
199
199
  - Let `.github/workflows/publish.yml` publish from the tag. The workflow runs
200
200
  the full check suite, validates that the tag matches the package version, and
201
201
  skips `npm publish` only when that exact version already exists on npm.
@@ -228,3 +228,19 @@ completion notes:
228
228
  - add a dedicated test for the version flags;
229
229
  - update README quick-start to verify the installed version before running
230
230
  policy commands.
231
+
232
+ ## 0.2.2 Completion Notes
233
+
234
+ - recommend one-time review, not default blocking, for high-risk runtime/plugin
235
+ install units;
236
+ - after source review, allow quarantined runtime/plugin skills to be activated
237
+ as `manual-only` workflow skills before any ask-after preference is recorded;
238
+ - add ask-after route policy suggestions for safe ambiguous workflow skill
239
+ matches while preserving the public route JSON contract;
240
+ - carry route candidate guard and capability roles into AI-facing brief
241
+ guidance;
242
+ - keep no-match and guard-denied routes free of use disclosures or post-use
243
+ policy suggestions;
244
+ - update README positioning around user benefit, no-global-install usage,
245
+ read-only normal checks, explicit approval for policy changes, and
246
+ conservative previewable cleanup.
@@ -1,8 +1,8 @@
1
- ---
2
- name: anthropic.docx
3
- description: Create and edit Word documents.
4
- ---
5
-
6
- # Anthropic DOCX
7
-
8
- Document workflow skill.
1
+ ---
2
+ name: anthropic.docx
3
+ description: Create and edit Word documents.
4
+ ---
5
+
6
+ # Anthropic DOCX
7
+
8
+ Document workflow skill.
@@ -1,8 +1,8 @@
1
- ---
2
- name: anthropic.skill-creator
3
- description: Create Agent Skills with the standard skill structure.
4
- ---
5
-
6
- # Anthropic Skill Creator
7
-
8
- Reference skill authoring workflow.
1
+ ---
2
+ name: anthropic.skill-creator
3
+ description: Create Agent Skills with the standard skill structure.
4
+ ---
5
+
6
+ # Anthropic Skill Creator
7
+
8
+ Reference skill authoring workflow.
@@ -1,8 +1,8 @@
1
- ---
2
- name: matt.grill-me
3
- description: Clarify vague requirements before implementation.
4
- ---
5
-
6
- # Matt Grill Me
7
-
8
- Vendor requirement clarification skill.
1
+ ---
2
+ name: matt.grill-me
3
+ description: Clarify vague requirements before implementation.
4
+ ---
5
+
6
+ # Matt Grill Me
7
+
8
+ Vendor requirement clarification skill.
@@ -1,8 +1,8 @@
1
- ---
2
- name: matt.tdd
3
- description: Run test-driven implementation loops.
4
- ---
5
-
6
- # Matt TDD
7
-
8
- Vendor TDD workflow skill.
1
+ ---
2
+ name: matt.tdd
3
+ description: Run test-driven implementation loops.
4
+ ---
5
+
6
+ # Matt TDD
7
+
8
+ Vendor TDD workflow skill.
@@ -1,8 +1,8 @@
1
- ---
2
- name: omo.review-work
3
- description: Review completed implementation work with strict verification.
4
- ---
5
-
6
- # OMO Review Work
7
-
8
- Harness-owned post-implementation review skill.
1
+ ---
2
+ name: omo.review-work
3
+ description: Review completed implementation work with strict verification.
4
+ ---
5
+
6
+ # OMO Review Work
7
+
8
+ Harness-owned post-implementation review skill.
@@ -1,8 +1,8 @@
1
- ---
2
- name: omo.ulw-plan
3
- description: Plan complex work in a LazyCodex harness.
4
- ---
5
-
6
- # OMO ULW Plan
7
-
8
- Harness-owned planning skill.
1
+ ---
2
+ name: omo.ulw-plan
3
+ description: Plan complex work in a LazyCodex harness.
4
+ ---
5
+
6
+ # OMO ULW Plan
7
+
8
+ Harness-owned planning skill.
@@ -1,8 +1,8 @@
1
- ---
2
- name: private.tdd-work-continuity
3
- description: Keep local TDD work resumable with plan and verification notes.
4
- ---
5
-
6
- # Private TDD Work Continuity
7
-
8
- Maintain continuity for project-specific engineering workflows.
1
+ ---
2
+ name: private.tdd-work-continuity
3
+ description: Keep local TDD work resumable with plan and verification notes.
4
+ ---
5
+
6
+ # Private TDD Work Continuity
7
+
8
+ Maintain continuity for project-specific engineering workflows.
@@ -1,8 +1,8 @@
1
- ---
2
- name: private.workflow-router
3
- description: Route incoming work to the correct workflow before exposing specialized skills.
4
- ---
5
-
6
- # Private Workflow Router
7
-
8
- Keep global routing small and explicit.
1
+ ---
2
+ name: private.workflow-router
3
+ description: Route incoming work to the correct workflow before exposing specialized skills.
4
+ ---
5
+
6
+ # Private Workflow Router
7
+
8
+ Keep global routing small and explicit.
@@ -1,8 +1,8 @@
1
- ---
2
- name: wshobson.python-testing
3
- description: Python testing workflow skill.
4
- ---
5
-
6
- # Wshobson Python Testing
7
-
8
- Marketplace skill for Python test workflows.
1
+ ---
2
+ name: wshobson.python-testing
3
+ description: Python testing workflow skill.
4
+ ---
5
+
6
+ # Wshobson Python Testing
7
+
8
+ Marketplace skill for Python test workflows.
@@ -1,8 +1,8 @@
1
- ---
2
- name: wshobson.security-review
3
- description: Security review workflow skill.
4
- ---
5
-
6
- # Wshobson Security Review
7
-
8
- Marketplace skill for security review workflows.
1
+ ---
2
+ name: wshobson.security-review
3
+ description: Security review workflow skill.
4
+ ---
5
+
6
+ # Wshobson Security Review
7
+
8
+ Marketplace skill for security review workflows.
@@ -1,6 +1,11 @@
1
- version: 1
2
-
3
- defaults:
1
+ # Intentional policy-failure fixture.
2
+ # This file is used by the value-proof tests to show why a raw skill list can
3
+ # look usable while SkillBoard correctly reports policy errors. Use
4
+ # examples/multi-source.config.yaml for a passing multi-source example.
5
+
6
+ version: 1
7
+
8
+ defaults:
4
9
  invocation_policy: deny-by-default
5
10
  allow_model_invocation: false
6
11
  require_explicit_workflow: true
@@ -1,9 +1,9 @@
1
- ---
2
- name: grill-me
3
- description: Ask strict clarifying questions before work begins.
4
- ---
5
-
6
- # Grill Me
7
-
8
- Vendor skill kept for manual comparison. It is blocked in the sample night
9
- workflow because `requirement-intake` is canonical.
1
+ ---
2
+ name: grill-me
3
+ description: Ask strict clarifying questions before work begins.
4
+ ---
5
+
6
+ # Grill Me
7
+
8
+ Vendor skill kept for manual comparison. It is blocked in the sample night
9
+ workflow because `requirement-intake` is canonical.
@@ -1,9 +1,9 @@
1
- ---
2
- name: matt.grill-with-docs
3
- description: Requirement clarification that also updates durable project docs.
4
- ---
5
-
6
- # Grill With Docs
7
-
8
- Use only when a workflow explicitly allows requirements clarification that
9
- changes durable project documentation.
1
+ ---
2
+ name: matt.grill-with-docs
3
+ description: Requirement clarification that also updates durable project docs.
4
+ ---
5
+
6
+ # Grill With Docs
7
+
8
+ Use only when a workflow explicitly allows requirements clarification that
9
+ changes durable project documentation.
@@ -1,9 +1,9 @@
1
- ---
2
- name: requirement-intake
3
- description: Route vague feature requests into clear requirements, open questions, and implementation-ready scope.
4
- ---
5
-
6
- # Requirement Intake
7
-
8
- Use when a task needs clarification before implementation. Produce a short
9
- decision brief, unresolved owner decisions, and a suggested workflow.
1
+ ---
2
+ name: requirement-intake
3
+ description: Route vague feature requests into clear requirements, open questions, and implementation-ready scope.
4
+ ---
5
+
6
+ # Requirement Intake
7
+
8
+ Use when a task needs clarification before implementation. Produce a short
9
+ decision brief, unresolved owner decisions, and a suggested workflow.
@@ -1,8 +1,8 @@
1
- ---
2
- name: tdd
3
- description: Drive coding tasks through failing-first tests, implementation, and verification.
4
- ---
5
-
6
- # TDD
7
-
8
- Use when implementation work needs a red-green verification loop.
1
+ ---
2
+ name: tdd
3
+ description: Drive coding tasks through failing-first tests, implementation, and verification.
4
+ ---
5
+
6
+ # TDD
7
+
8
+ Use when implementation work needs a red-green verification loop.
package/package.json CHANGED
@@ -1,10 +1,13 @@
1
1
  {
2
2
  "name": "agent-skillboard",
3
- "version": "0.1.2",
4
- "description": "Policy and visibility layer for AI agent skills.",
3
+ "version": "0.2.2",
4
+ "description": "Let AI agents pick and use allowed skills in each workflow.",
5
5
  "keywords": [
6
6
  "ai-agent",
7
+ "agent-skills",
7
8
  "skills",
9
+ "skill-routing",
10
+ "workflow",
8
11
  "codex",
9
12
  "claude-code",
10
13
  "policy"
@@ -21,7 +24,7 @@
21
24
  "files": [
22
25
  "bin",
23
26
  "src",
24
- "docs",
27
+ "docs/*.md",
25
28
  "examples",
26
29
  "profiles",
27
30
  "README.md",