@zibby/skill-ids 0.2.4 → 0.2.5

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.js +15 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zibby/skill-ids",
3
- "version": "0.2.4",
3
+ "version": "0.2.5",
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
@@ -220,6 +220,21 @@ const deepFreeze = (o) => {
220
220
  };
221
221
 
222
222
  export const SKILL_META = deepFreeze({
223
+ artifact: {
224
+ toggleable: true,
225
+ requiresIntegration: false,
226
+ // Ships ON: every fresh deploy can publish artifacts out of the box, and
227
+ // the Skills settings switch turns it off per agent.
228
+ defaultEnabled: true,
229
+ // Tier ① (API-only): the run talks to the control-plane over HTTP; the
230
+ // control-plane owns the object store + member-gated viewing.
231
+ tier: 1,
232
+ display: {
233
+ name: 'Artifacts',
234
+ description:
235
+ '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.',
236
+ },
237
+ },
223
238
  'codebase-memory': {
224
239
  toggleable: true,
225
240
  requiresIntegration: false,