@zibby/skills 0.1.65 → 0.1.68
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/dist/chat-notify.js +1 -1
- package/dist/discord.d.ts +77 -0
- package/dist/discord.js +5 -0
- package/dist/figma.js +2 -2
- package/dist/git-write.js +1 -1
- package/dist/github.js +2 -2
- package/dist/gitlab.js +1 -1
- package/dist/googleDocs.d.ts +52 -0
- package/dist/googleDocs.js +6 -5
- package/dist/index.d.ts +3 -1
- package/dist/index.js +92 -87
- package/dist/integrations.d.ts +6 -0
- package/dist/integrations.js +1 -1
- package/dist/jira.js +2 -2
- package/dist/lark.js +1 -1
- package/dist/linear.js +3 -3
- package/dist/linkedin.d.ts +29 -0
- package/dist/linkedin.js +2 -2
- package/dist/llm-billing.js +1 -1
- package/dist/notion.js +4 -4
- package/dist/opendesign.js +2 -2
- package/dist/package.json +1 -1
- package/dist/plane.js +1 -1
- package/dist/sentry.js +2 -2
- package/dist/slack.js +2 -2
- package/dist/trackers/github-adapter.js +2 -2
- package/dist/trackers/index.js +1 -1
- package/dist/trackers/jira-adapter.js +7 -7
- package/dist/trackers/linear-adapter.js +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,7 @@ export namespace SKILLS {
|
|
|
11
11
|
let GIT_WRITE: string;
|
|
12
12
|
let SLACK: string;
|
|
13
13
|
let LARK: string;
|
|
14
|
+
let DISCORD: string;
|
|
14
15
|
let NOTION: string;
|
|
15
16
|
let GOOGLE_DOCS: string;
|
|
16
17
|
let LINKEDIN: string;
|
|
@@ -43,6 +44,7 @@ import { gitSkill } from './git.js';
|
|
|
43
44
|
import { gitWriteSkill } from './git-write.js';
|
|
44
45
|
import { slackSkill } from './slack.js';
|
|
45
46
|
import { larkSkill } from './lark.js';
|
|
47
|
+
import { discordSkill } from './discord.js';
|
|
46
48
|
import { notionSkill } from './notion.js';
|
|
47
49
|
import { linkedinSkill } from './linkedin.js';
|
|
48
50
|
import { googleDocsSkill } from './googleDocs.js';
|
|
@@ -57,7 +59,7 @@ import { testRunnerSkill } from './test-runner.js';
|
|
|
57
59
|
import { skillInstallerSkill } from './skill-installer.js';
|
|
58
60
|
import { coreToolsSkill } from './core-tools.js';
|
|
59
61
|
import { workflowBuilderSkill } from './workflow-builder.js';
|
|
60
|
-
export { browserSkill, jiraSkill, githubSkill, gitlabSkill, figmaSkill, linearSkill, planeSkill, opendesignSkill, gitSkill, gitWriteSkill, slackSkill, larkSkill, notionSkill, linkedinSkill, googleDocsSkill, chatNotifySkill, sentrySkill, memorySkill, chatMemorySkill, kvMemorySkill, datasetStoreSkill, codebaseMemorySkill, testRunnerSkill, testRunnerSkill as runnerSkill, skillInstallerSkill, coreToolsSkill, workflowBuilderSkill };
|
|
62
|
+
export { browserSkill, jiraSkill, githubSkill, gitlabSkill, figmaSkill, linearSkill, planeSkill, opendesignSkill, gitSkill, gitWriteSkill, slackSkill, larkSkill, discordSkill, notionSkill, linkedinSkill, googleDocsSkill, chatNotifySkill, sentrySkill, memorySkill, chatMemorySkill, kvMemorySkill, datasetStoreSkill, codebaseMemorySkill, testRunnerSkill, testRunnerSkill as runnerSkill, skillInstallerSkill, coreToolsSkill, workflowBuilderSkill };
|
|
61
63
|
export { openaiBillingSkill, anthropicBillingSkill, cursorAdminSkill, fetchOpenAICosts, fetchOpenAIProjects, fetchAnthropicCosts, fetchAnthropicWorkspaces, fetchCursorSpend, fetchAllProviders, groupByKey, meanStddev } from "./llm-billing.js";
|
|
62
64
|
export { reportObjectSchema, reportToBlockKit, reportToLarkCard, SEVERITIES as REPORT_SEVERITIES } from "./report.js";
|
|
63
65
|
export { skill, functionSkill } from "./function-skill.js";
|