@zibby/skill-ids 2.0.2 → 2.0.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 +14 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zibby/skill-ids",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.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
|
@@ -158,13 +158,21 @@ export const SKILL_IDS = Object.freeze({
|
|
|
158
158
|
// (the flaky-test-fixer pattern).
|
|
159
159
|
CIRCLECI: 'circleci',
|
|
160
160
|
// `vikunja` — INTEGRATION-GATE MARKER (same shape as `circleci`): no skill
|
|
161
|
-
// registers under this id
|
|
162
|
-
//
|
|
163
|
-
//
|
|
164
|
-
//
|
|
165
|
-
//
|
|
166
|
-
//
|
|
161
|
+
// registers under this id (a vikunja tracker resolves the instance + token
|
|
162
|
+
// deterministically via resolveIntegrationToken('vikunja') and calls the
|
|
163
|
+
// Vikunja REST API itself, so the agent gets no vikunja tools). Mapped
|
|
164
|
+
// OPTIONAL in the backend — declaring it surfaces a non-blocking Vikunja
|
|
165
|
+
// connect row. board-runner no longer declares it: its tracker requirement
|
|
166
|
+
// moved to the REQUIRED one-of `board_tracker` group below (founder ruling,
|
|
167
|
+
// 2026-08-21).
|
|
167
168
|
VIKUNJA: 'vikunja',
|
|
169
|
+
// `board_tracker` — INTEGRATION-GATE MARKER (the `doc_source` shape): no
|
|
170
|
+
// skill registers under this id. The backend maps it to the REQUIRED
|
|
171
|
+
// OR-group {any:[jira, vikunja]} (+ a trigger-time gate with a PingCode env
|
|
172
|
+
// alternative), so a board-driving template declares it to mean "at least
|
|
173
|
+
// ONE board tracker must be available". Declared by board-runner's poll +
|
|
174
|
+
// writeback nodes (as a literal string — see the 0.x-caret note there).
|
|
175
|
+
BOARD_TRACKER: 'board_tracker',
|
|
168
176
|
// LLM-provider admin/billing skills (paste-token integrations). See
|
|
169
177
|
// @zibby/skills' llm-billing.js + backend/src/handlers/llm-billing.js.
|
|
170
178
|
OPENAI_BILLING: 'openai_billing',
|