agent-skillboard 0.1.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/CONTRIBUTING.md +83 -0
- package/LICENSE +21 -0
- package/README.md +645 -0
- package/bin/skillboard.mjs +4 -0
- package/docs/adapters.md +127 -0
- package/docs/capabilities.md +107 -0
- package/docs/install.md +346 -0
- package/docs/plans/20260625-080025-skillboard-mvp-review.md +189 -0
- package/docs/plans/README.md +20 -0
- package/docs/policy-model.md +251 -0
- package/docs/positioning.md +94 -0
- package/docs/profiles.md +166 -0
- package/docs/rollout-runbook.md +60 -0
- package/docs/user-flow.md +231 -0
- package/docs/versioning.md +201 -0
- package/examples/multi-source-skills/anthropic/docx/SKILL.md +8 -0
- package/examples/multi-source-skills/anthropic/skill-creator/SKILL.md +8 -0
- package/examples/multi-source-skills/matt/grill-me/SKILL.md +8 -0
- package/examples/multi-source-skills/matt/tdd/SKILL.md +8 -0
- package/examples/multi-source-skills/omo/review-work/SKILL.md +8 -0
- package/examples/multi-source-skills/omo/ulw-plan/SKILL.md +8 -0
- package/examples/multi-source-skills/private/tdd-work-continuity/SKILL.md +8 -0
- package/examples/multi-source-skills/private/workflow-router/SKILL.md +8 -0
- package/examples/multi-source-skills/wshobson/python-testing/SKILL.md +8 -0
- package/examples/multi-source-skills/wshobson/security-review/SKILL.md +8 -0
- package/examples/multi-source.config.yaml +271 -0
- package/examples/skillboard.config.yaml +194 -0
- package/examples/skills/grill-me/SKILL.md +9 -0
- package/examples/skills/grill-with-docs/SKILL.md +9 -0
- package/examples/skills/requirement-intake/SKILL.md +9 -0
- package/examples/skills/tdd/SKILL.md +8 -0
- package/package.json +58 -0
- package/profiles/anthropics-skills.yaml +17 -0
- package/profiles/mattpocock-skills.yaml +26 -0
- package/profiles/oh-my-openagent.yaml +32 -0
- package/profiles/voltagent-awesome-agent-skills.yaml +18 -0
- package/profiles/wshobson-agents.yaml +19 -0
- package/src/advisor/action-core.mjs +74 -0
- package/src/advisor/actions.mjs +256 -0
- package/src/advisor/application-commands.mjs +59 -0
- package/src/advisor/apply-action.mjs +183 -0
- package/src/advisor/schema.mjs +112 -0
- package/src/advisor/setup-actions.mjs +42 -0
- package/src/advisor/skills.mjs +191 -0
- package/src/advisor/sort.mjs +15 -0
- package/src/advisor/sources.mjs +160 -0
- package/src/advisor/trust-policy.mjs +65 -0
- package/src/advisor/workflow.mjs +41 -0
- package/src/advisor.mjs +134 -0
- package/src/agent-inventory-platforms.mjs +100 -0
- package/src/agent-inventory.mjs +804 -0
- package/src/brief-cli.mjs +40 -0
- package/src/brief-renderer.mjs +362 -0
- package/src/change-plan.mjs +169 -0
- package/src/cli.mjs +1171 -0
- package/src/config-helpers.mjs +72 -0
- package/src/control/can-use-guard.mjs +91 -0
- package/src/control/config-write.mjs +163 -0
- package/src/control/skill-crud.mjs +394 -0
- package/src/control/source-trust.mjs +161 -0
- package/src/control/workflow-crud.mjs +104 -0
- package/src/control.mjs +197 -0
- package/src/doctor.mjs +299 -0
- package/src/domain/constants.mjs +47 -0
- package/src/domain/indexes.mjs +29 -0
- package/src/domain/rules/capabilities.mjs +33 -0
- package/src/domain/rules/harnesses.mjs +16 -0
- package/src/domain/rules/install-units.mjs +95 -0
- package/src/domain/rules/skills.mjs +105 -0
- package/src/domain/rules/workflows.mjs +105 -0
- package/src/domain/skill-state-matrix.mjs +79 -0
- package/src/domain/source-classes.mjs +99 -0
- package/src/hook-plan.mjs +152 -0
- package/src/impact.mjs +41 -0
- package/src/index.mjs +82 -0
- package/src/init.mjs +136 -0
- package/src/install-output-detector.mjs +337 -0
- package/src/install-units.mjs +62 -0
- package/src/inventory-refresh.mjs +45 -0
- package/src/lifecycle-cli.mjs +166 -0
- package/src/lifecycle-content.mjs +87 -0
- package/src/policy.mjs +42 -0
- package/src/reconcile.mjs +111 -0
- package/src/report.mjs +151 -0
- package/src/review.mjs +88 -0
- package/src/rollout.mjs +453 -0
- package/src/skill-paths.mjs +17 -0
- package/src/source-cache.mjs +178 -0
- package/src/source-profile-loader.mjs +160 -0
- package/src/source-profiles.mjs +299 -0
- package/src/source-verification.mjs +252 -0
- package/src/uninstall.mjs +258 -0
- package/src/workspace.mjs +219 -0
- package/tsconfig.lsp.json +15 -0
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
defaults:
|
|
3
|
+
invocation_policy: deny-by-default
|
|
4
|
+
allow_model_invocation: false
|
|
5
|
+
require_explicit_workflow: true
|
|
6
|
+
|
|
7
|
+
skills:
|
|
8
|
+
private.workflow-router:
|
|
9
|
+
path: private/workflow-router
|
|
10
|
+
status: active
|
|
11
|
+
invocation: router-only
|
|
12
|
+
exposure: global-meta
|
|
13
|
+
category: meta
|
|
14
|
+
owner_install_unit: local.agent-skills-private
|
|
15
|
+
|
|
16
|
+
private.tdd-work-continuity:
|
|
17
|
+
path: private/tdd-work-continuity
|
|
18
|
+
status: active
|
|
19
|
+
invocation: router-only
|
|
20
|
+
exposure: exported
|
|
21
|
+
category: engineering
|
|
22
|
+
owner_install_unit: local.agent-skills-private
|
|
23
|
+
|
|
24
|
+
matt.grill-me:
|
|
25
|
+
path: matt/grill-me
|
|
26
|
+
status: vendor
|
|
27
|
+
invocation: manual-only
|
|
28
|
+
exposure: exported
|
|
29
|
+
category: requirements
|
|
30
|
+
owner_install_unit: github.mattpocock.skills
|
|
31
|
+
replaced_by: private.workflow-router
|
|
32
|
+
|
|
33
|
+
matt.tdd:
|
|
34
|
+
path: matt/tdd
|
|
35
|
+
status: active
|
|
36
|
+
invocation: workflow-auto
|
|
37
|
+
exposure: exported
|
|
38
|
+
category: engineering
|
|
39
|
+
owner_install_unit: github.mattpocock.skills
|
|
40
|
+
|
|
41
|
+
omo.ulw-plan:
|
|
42
|
+
path: omo/ulw-plan
|
|
43
|
+
status: vendor
|
|
44
|
+
invocation: manual-only
|
|
45
|
+
exposure: unit-managed
|
|
46
|
+
category: handoff
|
|
47
|
+
owner_install_unit: github.code-yeongyu.oh-my-openagent
|
|
48
|
+
|
|
49
|
+
omo.review-work:
|
|
50
|
+
path: omo/review-work
|
|
51
|
+
status: vendor
|
|
52
|
+
invocation: manual-only
|
|
53
|
+
exposure: unit-managed
|
|
54
|
+
category: review
|
|
55
|
+
owner_install_unit: github.code-yeongyu.oh-my-openagent
|
|
56
|
+
|
|
57
|
+
anthropic.docx:
|
|
58
|
+
path: anthropic/docx
|
|
59
|
+
status: vendor
|
|
60
|
+
invocation: manual-only
|
|
61
|
+
exposure: exported
|
|
62
|
+
category: documents
|
|
63
|
+
owner_install_unit: github.anthropics.skills
|
|
64
|
+
|
|
65
|
+
anthropic.skill-creator:
|
|
66
|
+
path: anthropic/skill-creator
|
|
67
|
+
status: vendor
|
|
68
|
+
invocation: manual-only
|
|
69
|
+
exposure: exported
|
|
70
|
+
category: meta
|
|
71
|
+
owner_install_unit: github.anthropics.skills
|
|
72
|
+
|
|
73
|
+
wshobson.python-testing:
|
|
74
|
+
path: wshobson/python-testing
|
|
75
|
+
status: candidate
|
|
76
|
+
invocation: router-only
|
|
77
|
+
exposure: exported
|
|
78
|
+
category: engineering
|
|
79
|
+
owner_install_unit: github.wshobson.agents
|
|
80
|
+
|
|
81
|
+
wshobson.security-review:
|
|
82
|
+
path: wshobson/security-review
|
|
83
|
+
status: candidate
|
|
84
|
+
invocation: router-only
|
|
85
|
+
exposure: exported
|
|
86
|
+
category: security
|
|
87
|
+
owner_install_unit: github.wshobson.agents
|
|
88
|
+
|
|
89
|
+
capabilities:
|
|
90
|
+
workflow-routing:
|
|
91
|
+
canonical: private.workflow-router
|
|
92
|
+
alternatives: []
|
|
93
|
+
default_policy: router-only
|
|
94
|
+
|
|
95
|
+
test-first-implementation:
|
|
96
|
+
canonical: matt.tdd
|
|
97
|
+
alternatives:
|
|
98
|
+
- private.tdd-work-continuity
|
|
99
|
+
- wshobson.python-testing
|
|
100
|
+
default_policy: workflow-auto
|
|
101
|
+
|
|
102
|
+
implementation-review:
|
|
103
|
+
canonical: omo.review-work
|
|
104
|
+
alternatives:
|
|
105
|
+
- wshobson.security-review
|
|
106
|
+
default_policy: router-only
|
|
107
|
+
|
|
108
|
+
harnesses:
|
|
109
|
+
codex:
|
|
110
|
+
status: primary
|
|
111
|
+
workflows:
|
|
112
|
+
- codex-night-workflow
|
|
113
|
+
- skill-discovery-workflow
|
|
114
|
+
|
|
115
|
+
lazycodex:
|
|
116
|
+
status: fallback
|
|
117
|
+
workflows:
|
|
118
|
+
- large-refactor-workflow
|
|
119
|
+
commands:
|
|
120
|
+
- $ulw-plan
|
|
121
|
+
- $start-work
|
|
122
|
+
|
|
123
|
+
claude-code:
|
|
124
|
+
status: configured
|
|
125
|
+
workflows:
|
|
126
|
+
- document-workflow
|
|
127
|
+
|
|
128
|
+
workflows:
|
|
129
|
+
codex-night-workflow:
|
|
130
|
+
harness: codex
|
|
131
|
+
active_skills:
|
|
132
|
+
- matt.tdd
|
|
133
|
+
- private.tdd-work-continuity
|
|
134
|
+
blocked_skills:
|
|
135
|
+
- matt.grill-me
|
|
136
|
+
required_capabilities:
|
|
137
|
+
test-first-implementation:
|
|
138
|
+
preferred: matt.tdd
|
|
139
|
+
fallback:
|
|
140
|
+
- private.tdd-work-continuity
|
|
141
|
+
policy: workflow-auto
|
|
142
|
+
|
|
143
|
+
large-refactor-workflow:
|
|
144
|
+
harness: lazycodex
|
|
145
|
+
active_skills:
|
|
146
|
+
- omo.ulw-plan
|
|
147
|
+
- omo.review-work
|
|
148
|
+
- wshobson.security-review
|
|
149
|
+
required_capabilities:
|
|
150
|
+
implementation-review:
|
|
151
|
+
preferred: omo.review-work
|
|
152
|
+
fallback:
|
|
153
|
+
- wshobson.security-review
|
|
154
|
+
policy: router-only
|
|
155
|
+
|
|
156
|
+
document-workflow:
|
|
157
|
+
harness: claude-code
|
|
158
|
+
active_skills:
|
|
159
|
+
- anthropic.docx
|
|
160
|
+
|
|
161
|
+
skill-discovery-workflow:
|
|
162
|
+
harness: codex
|
|
163
|
+
active_skills:
|
|
164
|
+
- private.workflow-router
|
|
165
|
+
|
|
166
|
+
install_units:
|
|
167
|
+
local.agent-skills-private:
|
|
168
|
+
kind: skill
|
|
169
|
+
source: ./examples/multi-source-skills/private
|
|
170
|
+
scope: user-global
|
|
171
|
+
provided_components:
|
|
172
|
+
- skills
|
|
173
|
+
components:
|
|
174
|
+
skills:
|
|
175
|
+
- private.workflow-router
|
|
176
|
+
- private.tdd-work-continuity
|
|
177
|
+
enabled: true
|
|
178
|
+
trust_level: trusted
|
|
179
|
+
permission_risk: low
|
|
180
|
+
rollback: git
|
|
181
|
+
|
|
182
|
+
github.mattpocock.skills:
|
|
183
|
+
kind: marketplace
|
|
184
|
+
source: npx skills@latest add mattpocock/skills
|
|
185
|
+
scope: user-global
|
|
186
|
+
provided_components:
|
|
187
|
+
- skills
|
|
188
|
+
components:
|
|
189
|
+
skills:
|
|
190
|
+
- matt.grill-me
|
|
191
|
+
- matt.tdd
|
|
192
|
+
enabled: true
|
|
193
|
+
trust_level: reviewed
|
|
194
|
+
permission_risk: medium
|
|
195
|
+
rollback: reinstall
|
|
196
|
+
|
|
197
|
+
github.code-yeongyu.oh-my-openagent:
|
|
198
|
+
kind: harness
|
|
199
|
+
source: npx lazycodex-ai install
|
|
200
|
+
scope: user-global
|
|
201
|
+
provided_components:
|
|
202
|
+
- skills
|
|
203
|
+
- commands
|
|
204
|
+
- hooks
|
|
205
|
+
- mcp-server
|
|
206
|
+
components:
|
|
207
|
+
skills:
|
|
208
|
+
- omo.ulw-plan
|
|
209
|
+
- omo.review-work
|
|
210
|
+
commands:
|
|
211
|
+
- $ulw-plan
|
|
212
|
+
- $start-work
|
|
213
|
+
hooks:
|
|
214
|
+
- post-tool-use
|
|
215
|
+
mcp_servers:
|
|
216
|
+
- omo-docs
|
|
217
|
+
modified_config_files:
|
|
218
|
+
- ~/.codex/config.toml
|
|
219
|
+
enabled: true
|
|
220
|
+
trust_level: reviewed
|
|
221
|
+
workflow_dependencies:
|
|
222
|
+
- large-refactor-workflow
|
|
223
|
+
permission_risk: high
|
|
224
|
+
rollback: manual
|
|
225
|
+
|
|
226
|
+
github.anthropics.skills:
|
|
227
|
+
kind: marketplace
|
|
228
|
+
source: /plugin marketplace add anthropics/skills
|
|
229
|
+
scope: project
|
|
230
|
+
provided_components:
|
|
231
|
+
- skills
|
|
232
|
+
components:
|
|
233
|
+
skills:
|
|
234
|
+
- anthropic.docx
|
|
235
|
+
- anthropic.skill-creator
|
|
236
|
+
enabled: true
|
|
237
|
+
trust_level: reviewed
|
|
238
|
+
permission_risk: medium
|
|
239
|
+
rollback: plugin uninstall
|
|
240
|
+
|
|
241
|
+
github.wshobson.agents:
|
|
242
|
+
kind: marketplace
|
|
243
|
+
source: npx codex-marketplace add wshobson/agents
|
|
244
|
+
scope: project
|
|
245
|
+
provided_components:
|
|
246
|
+
- skills
|
|
247
|
+
- agents
|
|
248
|
+
- commands
|
|
249
|
+
components:
|
|
250
|
+
skills:
|
|
251
|
+
- wshobson.python-testing
|
|
252
|
+
- wshobson.security-review
|
|
253
|
+
commands:
|
|
254
|
+
- /plugin install python-development
|
|
255
|
+
enabled: true
|
|
256
|
+
trust_level: reviewed
|
|
257
|
+
permission_risk: medium
|
|
258
|
+
rollback: plugin uninstall
|
|
259
|
+
|
|
260
|
+
github.voltagent.awesome-agent-skills:
|
|
261
|
+
kind: marketplace
|
|
262
|
+
source: git clone https://github.com/VoltAgent/awesome-agent-skills
|
|
263
|
+
scope: cache
|
|
264
|
+
provided_components:
|
|
265
|
+
- marketplace
|
|
266
|
+
enabled: true
|
|
267
|
+
trust_level: unreviewed
|
|
268
|
+
workflow_dependencies:
|
|
269
|
+
- skill-discovery-workflow
|
|
270
|
+
permission_risk: low
|
|
271
|
+
rollback: remove cache
|
|
@@ -0,0 +1,194 @@
|
|
|
1
|
+
version: 1
|
|
2
|
+
|
|
3
|
+
defaults:
|
|
4
|
+
invocation_policy: deny-by-default
|
|
5
|
+
allow_model_invocation: false
|
|
6
|
+
require_explicit_workflow: true
|
|
7
|
+
|
|
8
|
+
skills:
|
|
9
|
+
meerkat.requirement-intake:
|
|
10
|
+
path: requirement-intake
|
|
11
|
+
status: active
|
|
12
|
+
invocation: router-only
|
|
13
|
+
exposure: exported
|
|
14
|
+
category: requirements
|
|
15
|
+
canonical_for:
|
|
16
|
+
- requirement-clarification
|
|
17
|
+
conflicts_with:
|
|
18
|
+
- matt.grill-me
|
|
19
|
+
|
|
20
|
+
matt.tdd:
|
|
21
|
+
path: tdd
|
|
22
|
+
status: active
|
|
23
|
+
invocation: workflow-auto
|
|
24
|
+
exposure: exported
|
|
25
|
+
category: engineering
|
|
26
|
+
|
|
27
|
+
matt.grill-me:
|
|
28
|
+
path: grill-me
|
|
29
|
+
status: vendor
|
|
30
|
+
invocation: manual-only
|
|
31
|
+
exposure: exported
|
|
32
|
+
category: requirements
|
|
33
|
+
replaced_by: meerkat.requirement-intake
|
|
34
|
+
|
|
35
|
+
matt.grill-with-docs:
|
|
36
|
+
path: grill-with-docs
|
|
37
|
+
status: quarantined
|
|
38
|
+
invocation: blocked
|
|
39
|
+
exposure: exported
|
|
40
|
+
category: requirements
|
|
41
|
+
replaced_by: meerkat.requirement-intake
|
|
42
|
+
|
|
43
|
+
meerkat.test-first-implementation:
|
|
44
|
+
path: vendor/meerkat-test-first-implementation
|
|
45
|
+
status: candidate
|
|
46
|
+
invocation: workflow-auto
|
|
47
|
+
exposure: exported
|
|
48
|
+
category: engineering
|
|
49
|
+
|
|
50
|
+
meerkat.codex-ready-task:
|
|
51
|
+
path: vendor/meerkat-codex-ready-task
|
|
52
|
+
status: candidate
|
|
53
|
+
invocation: router-only
|
|
54
|
+
exposure: exported
|
|
55
|
+
category: handoff
|
|
56
|
+
|
|
57
|
+
lazycodex.ulw-plan:
|
|
58
|
+
path: vendor/lazycodex-ulw-plan
|
|
59
|
+
status: vendor
|
|
60
|
+
invocation: manual-only
|
|
61
|
+
exposure: unit-managed
|
|
62
|
+
category: handoff
|
|
63
|
+
owner_install_unit: lazycodex.omo
|
|
64
|
+
|
|
65
|
+
user.workflow-router:
|
|
66
|
+
path: user/workflow-router
|
|
67
|
+
status: active
|
|
68
|
+
invocation: global-auto
|
|
69
|
+
exposure: global-meta
|
|
70
|
+
category: meta
|
|
71
|
+
|
|
72
|
+
capabilities:
|
|
73
|
+
requirement-clarification:
|
|
74
|
+
canonical: meerkat.requirement-intake
|
|
75
|
+
alternatives:
|
|
76
|
+
- matt.grill-me
|
|
77
|
+
- matt.grill-with-docs
|
|
78
|
+
default_policy: router-only
|
|
79
|
+
|
|
80
|
+
test-first-implementation:
|
|
81
|
+
canonical: matt.tdd
|
|
82
|
+
alternatives:
|
|
83
|
+
- meerkat.test-first-implementation
|
|
84
|
+
default_policy: workflow-auto
|
|
85
|
+
|
|
86
|
+
codex-handoff:
|
|
87
|
+
canonical: meerkat.codex-ready-task
|
|
88
|
+
alternatives:
|
|
89
|
+
- lazycodex.ulw-plan
|
|
90
|
+
default_policy: router-only
|
|
91
|
+
|
|
92
|
+
harnesses:
|
|
93
|
+
codex:
|
|
94
|
+
status: primary
|
|
95
|
+
workflows:
|
|
96
|
+
- codex-night-workflow
|
|
97
|
+
|
|
98
|
+
claude:
|
|
99
|
+
status: configured
|
|
100
|
+
workflows:
|
|
101
|
+
- requirement-review
|
|
102
|
+
|
|
103
|
+
lazycodex:
|
|
104
|
+
status: fallback
|
|
105
|
+
workflows:
|
|
106
|
+
- large-refactor-workflow
|
|
107
|
+
commands:
|
|
108
|
+
- $ulw-plan
|
|
109
|
+
- $start-work
|
|
110
|
+
- $ulw-loop
|
|
111
|
+
|
|
112
|
+
install_units:
|
|
113
|
+
lazycodex.omo:
|
|
114
|
+
kind: harness
|
|
115
|
+
source: npx lazycodex-ai install
|
|
116
|
+
scope: user-global
|
|
117
|
+
manifest_path: ~/.codex/plugins/cache/sisyphuslabs/omo/plugin.json
|
|
118
|
+
cache_path: ~/.codex/plugins/cache/sisyphuslabs/omo
|
|
119
|
+
provided_components:
|
|
120
|
+
- skills
|
|
121
|
+
- commands
|
|
122
|
+
- mcp-server
|
|
123
|
+
- hook
|
|
124
|
+
components:
|
|
125
|
+
skills:
|
|
126
|
+
- lazycodex.ulw-plan
|
|
127
|
+
commands:
|
|
128
|
+
- $ulw-plan
|
|
129
|
+
- $start-work
|
|
130
|
+
- $ulw-loop
|
|
131
|
+
hooks:
|
|
132
|
+
- post-tool-use
|
|
133
|
+
mcp_servers:
|
|
134
|
+
- omo-docs
|
|
135
|
+
modified_config_files:
|
|
136
|
+
- ~/.codex/config.toml
|
|
137
|
+
- ~/.codex/plugins/cache
|
|
138
|
+
- ~/.local/bin
|
|
139
|
+
auto_update: false
|
|
140
|
+
enabled: true
|
|
141
|
+
trust_level: reviewed
|
|
142
|
+
workflow_dependencies:
|
|
143
|
+
- large-refactor-workflow
|
|
144
|
+
permission_risk: high
|
|
145
|
+
rollback: manual
|
|
146
|
+
|
|
147
|
+
workflows:
|
|
148
|
+
codex-night-workflow:
|
|
149
|
+
harness: codex
|
|
150
|
+
active_skills:
|
|
151
|
+
- meerkat.requirement-intake
|
|
152
|
+
- matt.tdd
|
|
153
|
+
blocked_skills:
|
|
154
|
+
- matt.grill-me
|
|
155
|
+
required_outputs:
|
|
156
|
+
- diff_summary
|
|
157
|
+
- test_result_or_reason
|
|
158
|
+
- risk_notes
|
|
159
|
+
required_capabilities:
|
|
160
|
+
test-first-implementation:
|
|
161
|
+
preferred: matt.tdd
|
|
162
|
+
fallback:
|
|
163
|
+
- meerkat.test-first-implementation
|
|
164
|
+
policy: workflow-auto
|
|
165
|
+
|
|
166
|
+
requirement-review:
|
|
167
|
+
harness: claude
|
|
168
|
+
active_skills:
|
|
169
|
+
- meerkat.requirement-intake
|
|
170
|
+
blocked_skills: []
|
|
171
|
+
required_outputs:
|
|
172
|
+
- clarified_requirements
|
|
173
|
+
- open_questions
|
|
174
|
+
required_capabilities:
|
|
175
|
+
requirement-clarification:
|
|
176
|
+
preferred: meerkat.requirement-intake
|
|
177
|
+
fallback:
|
|
178
|
+
- matt.grill-with-docs
|
|
179
|
+
policy: router-only
|
|
180
|
+
|
|
181
|
+
large-refactor-workflow:
|
|
182
|
+
harness: lazycodex
|
|
183
|
+
active_skills:
|
|
184
|
+
- lazycodex.ulw-plan
|
|
185
|
+
blocked_skills: []
|
|
186
|
+
required_outputs:
|
|
187
|
+
- migration_plan
|
|
188
|
+
- verification_summary
|
|
189
|
+
required_capabilities:
|
|
190
|
+
codex-handoff:
|
|
191
|
+
preferred: lazycodex.ulw-plan
|
|
192
|
+
fallback:
|
|
193
|
+
- meerkat.codex-ready-task
|
|
194
|
+
policy: manual-only
|
|
@@ -0,0 +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.
|
package/package.json
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-skillboard",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Policy and visibility layer for AI agent skills.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai-agent",
|
|
7
|
+
"skills",
|
|
8
|
+
"codex",
|
|
9
|
+
"claude-code",
|
|
10
|
+
"policy"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://github.com/NyXXiR/skillboard#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/NyXXiR/skillboard/issues"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/NyXXiR/skillboard.git"
|
|
19
|
+
},
|
|
20
|
+
"type": "module",
|
|
21
|
+
"files": [
|
|
22
|
+
"bin",
|
|
23
|
+
"src",
|
|
24
|
+
"docs",
|
|
25
|
+
"examples",
|
|
26
|
+
"profiles",
|
|
27
|
+
"README.md",
|
|
28
|
+
"CONTRIBUTING.md",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"tsconfig.lsp.json"
|
|
31
|
+
],
|
|
32
|
+
"bin": {
|
|
33
|
+
"skillboard": "bin/skillboard.mjs",
|
|
34
|
+
"agent-skillboard": "bin/skillboard.mjs"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"scripts": {
|
|
40
|
+
"test": "node --test",
|
|
41
|
+
"test:unit": "node --test test/advisor-brief-actions.test.mjs test/advisor-brief.test.mjs test/ecosystem-docs.test.mjs test/install-units.test.mjs test/package.test.mjs test/policy.test.mjs test/skillboard.test.mjs",
|
|
42
|
+
"test:integration": "node --test test/brief-cli.test.mjs test/cli.test.mjs test/control-exports.test.mjs test/first-time-ux.test.mjs test/hook-dry-run.test.mjs test/hook-install-cli.test.mjs test/hook-json-errors.test.mjs test/install-units.test.mjs test/lifecycle-cli.test.mjs test/lifecycle-reset-cli.test.mjs test/multi-source-integration.test.mjs test/package.test.mjs test/policy-hardening.test.mjs test/review-cli.test.mjs test/source-profiles.test.mjs",
|
|
43
|
+
"diagnostics": "tsc -p tsconfig.lsp.json",
|
|
44
|
+
"check": "node --check bin/skillboard.mjs && npm run diagnostics && node --test"
|
|
45
|
+
},
|
|
46
|
+
"dependencies": {
|
|
47
|
+
"yaml": "^2.8.1"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=20"
|
|
51
|
+
},
|
|
52
|
+
"license": "MIT",
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/node": "^26.0.0",
|
|
55
|
+
"typescript": "^6.0.3",
|
|
56
|
+
"typescript-language-server": "^5.3.0"
|
|
57
|
+
}
|
|
58
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
id: github.anthropics.skills
|
|
2
|
+
source: anthropics/skills
|
|
3
|
+
kind: marketplace
|
|
4
|
+
namespace: anthropic
|
|
5
|
+
target_path_prefix: anthropic
|
|
6
|
+
scope: project
|
|
7
|
+
default_status: vendor
|
|
8
|
+
default_invocation: manual-only
|
|
9
|
+
default_exposure: exported
|
|
10
|
+
default_category: uncategorized
|
|
11
|
+
provided_components:
|
|
12
|
+
- skills
|
|
13
|
+
skill_paths:
|
|
14
|
+
- "skills/**/SKILL.md"
|
|
15
|
+
- "*/SKILL.md"
|
|
16
|
+
permission_risk: medium
|
|
17
|
+
rollback: plugin uninstall
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
id: github.mattpocock.skills
|
|
2
|
+
source: mattpocock/skills
|
|
3
|
+
kind: marketplace
|
|
4
|
+
namespace: matt
|
|
5
|
+
target_path_prefix: matt
|
|
6
|
+
scope: user-global
|
|
7
|
+
default_status: vendor
|
|
8
|
+
default_invocation: manual-only
|
|
9
|
+
default_exposure: exported
|
|
10
|
+
default_category: uncategorized
|
|
11
|
+
category_path_segment: 1
|
|
12
|
+
path_rules:
|
|
13
|
+
- pattern: "skills/deprecated/**/SKILL.md"
|
|
14
|
+
status: deprecated
|
|
15
|
+
invocation: deprecated
|
|
16
|
+
category: deprecated
|
|
17
|
+
- pattern: "skills/in-progress/**/SKILL.md"
|
|
18
|
+
status: candidate
|
|
19
|
+
category: in-progress
|
|
20
|
+
provided_components:
|
|
21
|
+
- skills
|
|
22
|
+
skill_paths:
|
|
23
|
+
- "skills/**/SKILL.md"
|
|
24
|
+
- "*/SKILL.md"
|
|
25
|
+
permission_risk: medium
|
|
26
|
+
rollback: reinstall
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
id: github.code-yeongyu.oh-my-openagent
|
|
2
|
+
source: code-yeongyu/oh-my-openagent
|
|
3
|
+
kind: harness
|
|
4
|
+
namespace: omo
|
|
5
|
+
target_path_prefix: omo
|
|
6
|
+
scope: user-global
|
|
7
|
+
default_status: vendor
|
|
8
|
+
default_invocation: manual-only
|
|
9
|
+
default_exposure: unit-managed
|
|
10
|
+
default_category: uncategorized
|
|
11
|
+
provided_components:
|
|
12
|
+
- skills
|
|
13
|
+
- commands
|
|
14
|
+
- hooks
|
|
15
|
+
- mcp-server
|
|
16
|
+
skill_paths:
|
|
17
|
+
- "skills/**/SKILL.md"
|
|
18
|
+
- "plugins/*/skills/**/SKILL.md"
|
|
19
|
+
components:
|
|
20
|
+
commands:
|
|
21
|
+
- $ulw-plan
|
|
22
|
+
- $start-work
|
|
23
|
+
hooks:
|
|
24
|
+
- post-tool-use
|
|
25
|
+
mcp_servers:
|
|
26
|
+
- omo-docs
|
|
27
|
+
modified_config_files:
|
|
28
|
+
- ~/.codex/config.toml
|
|
29
|
+
auto_update: false
|
|
30
|
+
enabled: true
|
|
31
|
+
permission_risk: high
|
|
32
|
+
rollback: manual
|