@zibby/skills 0.1.74 → 0.1.75
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 +3 -1
- package/dist/index.js +179 -158
- package/dist/linkedin.d.ts +36 -0
- package/dist/linkedin.js +5 -2
- package/dist/report.d.ts +10 -10
- package/dist/socialCard.d.ts +89 -0
- package/dist/socialCard.js +19 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export namespace SKILLS {
|
|
|
27
27
|
let KV_MEMORY: string;
|
|
28
28
|
let DATASET_STORE: string;
|
|
29
29
|
let CHART_RENDER: string;
|
|
30
|
+
let SOCIAL_CARD: string;
|
|
30
31
|
let CODEBASE_MEMORY: string;
|
|
31
32
|
let WORKFLOW_BUILDER: string;
|
|
32
33
|
let OPENAI_BILLING: string;
|
|
@@ -59,12 +60,13 @@ import { chatMemorySkill } from './chat-memory.js';
|
|
|
59
60
|
import { kvMemorySkill } from './kvMemory.js';
|
|
60
61
|
import { datasetStoreSkill } from './datasetStore.js';
|
|
61
62
|
import { chartRenderSkill } from './chartRender.js';
|
|
63
|
+
import { socialCardSkill } from './socialCard.js';
|
|
62
64
|
import { codebaseMemorySkill } from './codebaseMemory.js';
|
|
63
65
|
import { testRunnerSkill } from './test-runner.js';
|
|
64
66
|
import { skillInstallerSkill } from './skill-installer.js';
|
|
65
67
|
import { coreToolsSkill } from './core-tools.js';
|
|
66
68
|
import { workflowBuilderSkill } from './workflow-builder.js';
|
|
67
|
-
export { browserSkill, jiraSkill, githubSkill, gitlabSkill, figmaSkill, linearSkill, planeSkill, opendesignSkill, gitSkill, gitWriteSkill, slackSkill, larkSkill, discordSkill, notionSkill, linkedinSkill, googleDocsSkill, larkDocsSkill, chatNotifySkill, sentrySkill, memorySkill, chatMemorySkill, kvMemorySkill, datasetStoreSkill, chartRenderSkill, codebaseMemorySkill, testRunnerSkill, testRunnerSkill as runnerSkill, skillInstallerSkill, coreToolsSkill, workflowBuilderSkill };
|
|
69
|
+
export { browserSkill, jiraSkill, githubSkill, gitlabSkill, figmaSkill, linearSkill, planeSkill, opendesignSkill, gitSkill, gitWriteSkill, slackSkill, larkSkill, discordSkill, notionSkill, linkedinSkill, googleDocsSkill, larkDocsSkill, chatNotifySkill, sentrySkill, memorySkill, chatMemorySkill, kvMemorySkill, datasetStoreSkill, chartRenderSkill, socialCardSkill, codebaseMemorySkill, testRunnerSkill, testRunnerSkill as runnerSkill, skillInstallerSkill, coreToolsSkill, workflowBuilderSkill };
|
|
68
70
|
export { openaiBillingSkill, anthropicBillingSkill, cursorAdminSkill, fetchOpenAICosts, fetchOpenAIProjects, fetchAnthropicCosts, fetchAnthropicWorkspaces, fetchCursorSpend, fetchAllProviders, groupByKey, meanStddev } from "./llm-billing.js";
|
|
69
71
|
export { reportObjectSchema, reportToBlockKit, reportToLarkCard, reportToNotionBlocks, reportToMarkdown, SEVERITIES as REPORT_SEVERITIES } from "./report.js";
|
|
70
72
|
export { skill, functionSkill } from "./function-skill.js";
|