@zibby/skill-ids 0.2.0 → 0.2.1
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.1",
|
|
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
|
@@ -83,6 +83,14 @@ export const SKILL_IDS = Object.freeze({
|
|
|
83
83
|
// `linkedin` — publish to the connected PERSONAL LinkedIn profile
|
|
84
84
|
// (linkedinSkill → linkedin_publish_post).
|
|
85
85
|
LINKEDIN: 'linkedin',
|
|
86
|
+
// `hubspot` — HubSpot CRM (contacts/companies/deals/tickets/notes/tasks/
|
|
87
|
+
// feedback_submissions/custom) over the HubSpot REST API. OAuth 2.0
|
|
88
|
+
// integration: the user connects HubSpot in Integrations; the backend
|
|
89
|
+
// (handlers/hubspot.js) auto-refreshes the access token and the skill
|
|
90
|
+
// resolves it via resolveIntegrationToken('hubspot'). Declaring SKILLS.HUBSPOT
|
|
91
|
+
// gates deploy on a connected HubSpot (backend SKILL_INTEGRATION_MAP:
|
|
92
|
+
// 'hubspot' → INTEGRATIONS.HUBSPOT). Backed by hubspotSkill in @zibby/skills.
|
|
93
|
+
HUBSPOT: 'hubspot',
|
|
86
94
|
// `chat_notify` — provider-agnostic chat notification. Routes to Slack OR Lark
|
|
87
95
|
// depending on which integration the project has connected. Backend renders
|
|
88
96
|
// this as "Slack OR Lark" via {any:[...]}.
|