@zibby/skills 0.1.41 → 0.1.42
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 +93 -78
- package/dist/kvMemory.d.ts +78 -0
- package/dist/kvMemory.js +16 -0
- package/dist/package.json +1 -1
- package/docs/cloud/editing-prompts.md +79 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export namespace SKILLS {
|
|
|
18
18
|
let CORE_TOOLS: string;
|
|
19
19
|
let CHAT_MEMORY: string;
|
|
20
20
|
let REVIEW_MEMORY: string;
|
|
21
|
+
let KV_MEMORY: string;
|
|
21
22
|
let WORKFLOW_BUILDER: string;
|
|
22
23
|
let OPENAI_BILLING: string;
|
|
23
24
|
let ANTHROPIC_BILLING: string;
|
|
@@ -39,11 +40,12 @@ import { sentrySkill } from './sentry.js';
|
|
|
39
40
|
import { memorySkill } from './memory.js';
|
|
40
41
|
import { chatMemorySkill } from './chat-memory.js';
|
|
41
42
|
import { reviewMemorySkill } from './reviewMemory.js';
|
|
43
|
+
import { kvMemorySkill } from './kvMemory.js';
|
|
42
44
|
import { testRunnerSkill } from './test-runner.js';
|
|
43
45
|
import { skillInstallerSkill } from './skill-installer.js';
|
|
44
46
|
import { coreToolsSkill } from './core-tools.js';
|
|
45
47
|
import { workflowBuilderSkill } from './workflow-builder.js';
|
|
46
|
-
export { browserSkill, jiraSkill, githubSkill, gitlabSkill, figmaSkill, linearSkill, planeSkill, gitSkill, slackSkill, larkSkill, notionSkill, chatNotifySkill, sentrySkill, memorySkill, chatMemorySkill, reviewMemorySkill, testRunnerSkill, testRunnerSkill as runnerSkill, skillInstallerSkill, coreToolsSkill, workflowBuilderSkill };
|
|
48
|
+
export { browserSkill, jiraSkill, githubSkill, gitlabSkill, figmaSkill, linearSkill, planeSkill, gitSkill, slackSkill, larkSkill, notionSkill, chatNotifySkill, sentrySkill, memorySkill, chatMemorySkill, reviewMemorySkill, kvMemorySkill, testRunnerSkill, testRunnerSkill as runnerSkill, skillInstallerSkill, coreToolsSkill, workflowBuilderSkill };
|
|
47
49
|
export { openaiBillingSkill, anthropicBillingSkill, cursorAdminSkill, fetchOpenAICosts, fetchOpenAIProjects, fetchAnthropicCosts, fetchAnthropicWorkspaces, fetchCursorSpend, fetchAllProviders, groupByKey, meanStddev } from "./llm-billing.js";
|
|
48
50
|
export { reportObjectSchema, reportToBlockKit, reportToLarkCard, SEVERITIES as REPORT_SEVERITIES } from "./report.js";
|
|
49
51
|
export { skill, functionSkill } from "./function-skill.js";
|