@clinebot/core 0.0.12 → 0.0.14

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @clinebot/core
1
+ # [experimental] @clinebot/core
2
2
 
3
3
  `@clinebot/core` is the stateful orchestration layer of the Cline SDK. It
4
4
  connects the agent runtime, provider settings, storage, default tools, and
@@ -3,6 +3,7 @@ type AgentPlugin = NonNullable<AgentConfig["extensions"]>[number];
3
3
  export interface LoadAgentPluginFromPathOptions {
4
4
  exportName?: string;
5
5
  cwd?: string;
6
+ useCache?: boolean;
6
7
  }
7
8
  export declare function loadAgentPluginFromPath(pluginPath: string, options?: LoadAgentPluginFromPathOptions): Promise<AgentPlugin>;
8
9
  export declare function loadAgentPluginsFromPaths(pluginPaths: string[], options?: LoadAgentPluginFromPathOptions): Promise<AgentPlugin[]>;
@@ -11,10 +11,14 @@ export * from "./index";
11
11
  export type { FastFileIndexOptions, MentionEnricherOptions, MentionEnrichmentResult, } from "./input";
12
12
  export { enrichPromptWithMentions, getFileIndex, prewarmFileIndex, } from "./input";
13
13
  export { addLocalProvider, ensureCustomProvidersLoaded, getLocalProviderModels, listLocalProviders, loginLocalProvider, normalizeOAuthProvider, resolveLocalClineAuthToken, saveLocalProviderOAuthCredentials, saveLocalProviderSettings, } from "./providers/local-provider-service";
14
+ export type { AvailableRuntimeCommand } from "./runtime/commands";
15
+ export { listAvailableRuntimeCommandsFromWatcher, resolveRuntimeSlashCommandFromWatcher, } from "./runtime/commands";
14
16
  export { formatRulesForSystemPrompt, isRuleEnabled, listEnabledRulesFromWatcher, loadRulesForSystemPromptFromWatcher, } from "./runtime/rules";
15
17
  export { createTeamName, DefaultRuntimeBuilder, } from "./runtime/runtime-builder";
16
18
  export { type SandboxCallOptions, SubprocessSandbox, type SubprocessSandboxOptions, } from "./runtime/sandbox/subprocess-sandbox";
17
19
  export type { BuiltRuntime, RuntimeBuilder, RuntimeBuilderInput, SessionRuntime, } from "./runtime/session-runtime";
20
+ export type { AvailableSkill } from "./runtime/skills";
21
+ export { listAvailableSkillsFromWatcher, resolveSkillsSlashCommandFromWatcher, } from "./runtime/skills";
18
22
  export { type DesktopToolApprovalOptions, requestDesktopToolApproval, } from "./runtime/tool-approval";
19
23
  export type { AvailableWorkflow } from "./runtime/workflows";
20
24
  export { listAvailableWorkflowsFromWatcher, resolveWorkflowSlashCommandFromWatcher, } from "./runtime/workflows";