@zibby/skills 0.1.68 → 0.1.70
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/index.d.ts +4 -1
- package/dist/index.js +148 -136
- package/dist/larkDocs.d.ts +212 -0
- package/dist/larkDocs.js +11 -0
- package/dist/notion.d.ts +50 -0
- package/dist/notion.js +8 -6
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -14,6 +14,8 @@ export namespace SKILLS {
|
|
|
14
14
|
let DISCORD: string;
|
|
15
15
|
let NOTION: string;
|
|
16
16
|
let GOOGLE_DOCS: string;
|
|
17
|
+
let LARK_DOCS: string;
|
|
18
|
+
let DOC_SOURCE: string;
|
|
17
19
|
let LINKEDIN: string;
|
|
18
20
|
let CHAT_NOTIFY: string;
|
|
19
21
|
let SENTRY: string;
|
|
@@ -48,6 +50,7 @@ import { discordSkill } from './discord.js';
|
|
|
48
50
|
import { notionSkill } from './notion.js';
|
|
49
51
|
import { linkedinSkill } from './linkedin.js';
|
|
50
52
|
import { googleDocsSkill } from './googleDocs.js';
|
|
53
|
+
import { larkDocsSkill } from './larkDocs.js';
|
|
51
54
|
import { chatNotifySkill } from './chat-notify.js';
|
|
52
55
|
import { sentrySkill } from './sentry.js';
|
|
53
56
|
import { memorySkill } from './memory.js';
|
|
@@ -59,7 +62,7 @@ import { testRunnerSkill } from './test-runner.js';
|
|
|
59
62
|
import { skillInstallerSkill } from './skill-installer.js';
|
|
60
63
|
import { coreToolsSkill } from './core-tools.js';
|
|
61
64
|
import { workflowBuilderSkill } from './workflow-builder.js';
|
|
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 };
|
|
65
|
+
export { browserSkill, jiraSkill, githubSkill, gitlabSkill, figmaSkill, linearSkill, planeSkill, opendesignSkill, gitSkill, gitWriteSkill, slackSkill, larkSkill, discordSkill, notionSkill, linkedinSkill, googleDocsSkill, larkDocsSkill, chatNotifySkill, sentrySkill, memorySkill, chatMemorySkill, kvMemorySkill, datasetStoreSkill, codebaseMemorySkill, testRunnerSkill, testRunnerSkill as runnerSkill, skillInstallerSkill, coreToolsSkill, workflowBuilderSkill };
|
|
63
66
|
export { openaiBillingSkill, anthropicBillingSkill, cursorAdminSkill, fetchOpenAICosts, fetchOpenAIProjects, fetchAnthropicCosts, fetchAnthropicWorkspaces, fetchCursorSpend, fetchAllProviders, groupByKey, meanStddev } from "./llm-billing.js";
|
|
64
67
|
export { reportObjectSchema, reportToBlockKit, reportToLarkCard, SEVERITIES as REPORT_SEVERITIES } from "./report.js";
|
|
65
68
|
export { skill, functionSkill } from "./function-skill.js";
|