@zibby/skill-ids 0.2.6 → 0.2.7
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 +4 -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.7",
|
|
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
|
@@ -119,6 +119,10 @@ export const SKILL_IDS = Object.freeze({
|
|
|
119
119
|
// changed-file lists + numbers. Zero LLM, zero network. Tier ① → UNGATED.
|
|
120
120
|
// The reproducible backbone under semantic scoring. Backed by codeStatsSkill.
|
|
121
121
|
CODE_STATS: 'code-stats',
|
|
122
|
+
// `chat-progress` — general "report progress back to the triggering chat"
|
|
123
|
+
// primitive for long-running nodes (report_progress). Tier ① → UNGATED.
|
|
124
|
+
// Backed by chatProgressSkill.
|
|
125
|
+
CHAT_PROGRESS: 'chat-progress',
|
|
122
126
|
// `social-card` — LOCAL server-side branded "concept card" renderer
|
|
123
127
|
// (hand-authored SVG → PNG). Tier ① → UNGATED. Opt-in. Backed by
|
|
124
128
|
// socialCardSkill; pairs with the linkedin skill (returns a PNG `path`).
|