@zibby/skill-ids 0.2.7 → 0.2.8
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 +8 -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.8",
|
|
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
|
@@ -146,6 +146,14 @@ export const SKILL_IDS = Object.freeze({
|
|
|
146
146
|
// registers under this id. Declaring it gates deploy on a connected CircleCI
|
|
147
147
|
// (the flaky-test-fixer pattern).
|
|
148
148
|
CIRCLECI: 'circleci',
|
|
149
|
+
// `vikunja` — INTEGRATION-GATE MARKER (same shape as `circleci`): no skill
|
|
150
|
+
// registers under this id. board-runner's vikunja tracker resolves the
|
|
151
|
+
// instance + token deterministically via resolveIntegrationToken('vikunja')
|
|
152
|
+
// and calls the Vikunja REST API itself, so the agent gets no vikunja tools.
|
|
153
|
+
// Declaring it surfaces Vikunja on the deploy modal — as an OPTIONAL row, not
|
|
154
|
+
// a gate: board-runner picks one of three tracker backends at run time, so a
|
|
155
|
+
// Jira-only user must not be blocked on a Vikunja connection.
|
|
156
|
+
VIKUNJA: 'vikunja',
|
|
149
157
|
// LLM-provider admin/billing skills (paste-token integrations). See
|
|
150
158
|
// @zibby/skills' llm-billing.js + backend/src/handlers/llm-billing.js.
|
|
151
159
|
OPENAI_BILLING: 'openai_billing',
|