@zibby/skill-ids 0.2.9 → 2.0.0
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 +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zibby/skill-ids",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "2.0.0",
|
|
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
|
@@ -75,6 +75,17 @@ export const SKILL_IDS = Object.freeze({
|
|
|
75
75
|
// (integration 'lark'); backend REQUIRED_INTEGRATION_MAP: 'lark-docs' →
|
|
76
76
|
// INTEGRATIONS.LARK.
|
|
77
77
|
LARK_DOCS: 'lark-docs',
|
|
78
|
+
// `lark-attendance` — READ-ONLY Lark/Feishu attendance (考勤) discovery + read
|
|
79
|
+
// (larkAttendanceSkill, served over MCP as mcp__larkattendance__* tools).
|
|
80
|
+
// AGENT-DRIVEN by design: the model lists the tenant's 考勤组, lists the
|
|
81
|
+
// available statistic fields (which include a per-tenant 自定义字段 group that
|
|
82
|
+
// exists nowhere in our source) and picks columns from the prompt — so no
|
|
83
|
+
// group name or field code is ever hard-coded. REUSES the ACCOUNT-LEVEL Lark
|
|
84
|
+
// app (integration 'lark_docs') because attendance is tenant-wide while Lark
|
|
85
|
+
// CHAT connects per project; backend REQUIRED_INTEGRATION_MAP:
|
|
86
|
+
// 'lark-attendance' → INTEGRATIONS.LARK_DOCS. That app must also carry the
|
|
87
|
+
// attendance:* scopes.
|
|
88
|
+
LARK_ATTENDANCE: 'lark-attendance',
|
|
78
89
|
// `doc_source` — INTEGRATION-GATE MARKER (like `circleci`), not a runtime MCP
|
|
79
90
|
// skill: no skill registers under this id (the resolver warns + skips it).
|
|
80
91
|
// Declaring it gates deploy on a document source via the OR-group
|