@zibby/skill-ids 0.2.3 → 0.2.4
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 +9 -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.4",
|
|
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
|
@@ -159,6 +159,15 @@ export const SKILL_IDS = Object.freeze({
|
|
|
159
159
|
// dogfood of the public agent-workflow sub-graph API — see the
|
|
160
160
|
// knowledge-base template + WRAPPER-AGENTS.md.
|
|
161
161
|
GBRAIN: 'gbrain',
|
|
162
|
+
// `artifact` — publish a self-contained, shareable HTML/Markdown page (like
|
|
163
|
+
// Claude Code's Artifact tool) to Zibby's own object store and get back a URL.
|
|
164
|
+
// Tier ① (plain JS → a control-plane endpoint that does the privileged S3 write
|
|
165
|
+
// server-side, keeping object-store creds OUT of the hostile run). The INDEX of
|
|
166
|
+
// what an agent has published rides the shipped kv-memory (prefix `artifact:`),
|
|
167
|
+
// so `artifact_list` is just kv_recall_prefix('artifact:') — no new store. No
|
|
168
|
+
// user connection required → UNGATED (auths with the run's own project token,
|
|
169
|
+
// like kv-memory / dataset-store). Backed by artifactSkill in @zibby/skills.
|
|
170
|
+
ARTIFACT: 'artifact',
|
|
162
171
|
});
|
|
163
172
|
|
|
164
173
|
/**
|