@zibby/skill-ids 0.2.4 → 0.2.6
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/package.json +1 -1
- package/src/index.js +20 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zibby/skill-ids",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Single authoritative Zibby skill-id map (zero-dep leaf). The one source of truth for well-known skill ids — every consumer (agent-workflow, core, skills, backend, templates) imports it, so the ids can never drift.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
package/src/index.js
CHANGED
|
@@ -114,6 +114,11 @@ export const SKILL_IDS = Object.freeze({
|
|
|
114
114
|
// @resvg/resvg-js PNG). Tier ① (API-only/local) → UNGATED. Opt-in. Backed by
|
|
115
115
|
// chartRenderSkill.
|
|
116
116
|
CHART_RENDER: 'chart-render',
|
|
117
|
+
// `code-stats` — PURE, DETERMINISTIC code statistics (extension/work-kind
|
|
118
|
+
// mix, size bucket, core-path glob coverage, percentile rank) from
|
|
119
|
+
// changed-file lists + numbers. Zero LLM, zero network. Tier ① → UNGATED.
|
|
120
|
+
// The reproducible backbone under semantic scoring. Backed by codeStatsSkill.
|
|
121
|
+
CODE_STATS: 'code-stats',
|
|
117
122
|
// `social-card` — LOCAL server-side branded "concept card" renderer
|
|
118
123
|
// (hand-authored SVG → PNG). Tier ① → UNGATED. Opt-in. Backed by
|
|
119
124
|
// socialCardSkill; pairs with the linkedin skill (returns a PNG `path`).
|
|
@@ -220,6 +225,21 @@ const deepFreeze = (o) => {
|
|
|
220
225
|
};
|
|
221
226
|
|
|
222
227
|
export const SKILL_META = deepFreeze({
|
|
228
|
+
artifact: {
|
|
229
|
+
toggleable: true,
|
|
230
|
+
requiresIntegration: false,
|
|
231
|
+
// Ships ON: every fresh deploy can publish artifacts out of the box, and
|
|
232
|
+
// the Skills settings switch turns it off per agent.
|
|
233
|
+
defaultEnabled: true,
|
|
234
|
+
// Tier ① (API-only): the run talks to the control-plane over HTTP; the
|
|
235
|
+
// control-plane owns the object store + member-gated viewing.
|
|
236
|
+
tier: 1,
|
|
237
|
+
display: {
|
|
238
|
+
name: 'Artifacts',
|
|
239
|
+
description:
|
|
240
|
+
'Publish self-contained shareable pages (reports, plans, write-ups) and get back a member-gated URL; the index of published artifacts is the agent\'s memory of its own output.',
|
|
241
|
+
},
|
|
242
|
+
},
|
|
223
243
|
'codebase-memory': {
|
|
224
244
|
toggleable: true,
|
|
225
245
|
requiresIntegration: false,
|