oh-my-opencode 3.5.3 → 3.5.5
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 +3 -3
- package/dist/agents/builtin-agents/agent-overrides.d.ts +2 -2
- package/dist/agents/builtin-agents/atlas-agent.d.ts +1 -0
- package/dist/agents/builtin-agents/resolve-file-uri.d.ts +1 -0
- package/dist/cli/doctor/checks/config.d.ts +2 -8
- package/dist/cli/doctor/checks/dependencies.d.ts +1 -5
- package/dist/cli/doctor/checks/index.d.ts +4 -16
- package/dist/cli/doctor/checks/model-resolution.d.ts +4 -4
- package/dist/cli/doctor/checks/{opencode.d.ts → system-binary.d.ts} +6 -12
- package/dist/cli/doctor/checks/system-loaded-version.d.ts +9 -0
- package/dist/cli/doctor/checks/system-plugin.d.ts +15 -0
- package/dist/cli/doctor/checks/system.d.ts +3 -0
- package/dist/cli/doctor/checks/{gh.d.ts → tools-gh.d.ts} +0 -3
- package/dist/cli/doctor/checks/tools-lsp.d.ts +6 -0
- package/dist/cli/doctor/checks/tools-mcp.d.ts +3 -0
- package/dist/cli/doctor/checks/tools.d.ts +3 -0
- package/dist/cli/doctor/constants.d.ts +4 -17
- package/dist/cli/doctor/format-default.d.ts +2 -0
- package/dist/cli/doctor/format-shared.d.ts +6 -0
- package/dist/cli/doctor/format-status.d.ts +2 -0
- package/dist/cli/doctor/format-verbose.d.ts +2 -0
- package/dist/cli/doctor/formatter.d.ts +2 -11
- package/dist/cli/doctor/index.d.ts +1 -1
- package/dist/cli/doctor/runner.d.ts +1 -3
- package/dist/cli/doctor/types.d.ts +39 -6
- package/dist/cli/index.js +946 -1142
- package/dist/cli/run/runner.d.ts +1 -0
- package/dist/config/schema/background-task.d.ts +1 -0
- package/dist/config/schema/hooks.d.ts +0 -1
- package/dist/config/schema/oh-my-opencode-config.d.ts +11 -11
- package/dist/config/schema/skills.d.ts +10 -10
- package/dist/create-hooks.d.ts +0 -1
- package/dist/features/background-agent/constants.d.ts +1 -0
- package/dist/features/background-agent/index.d.ts +1 -0
- package/dist/features/background-agent/manager.d.ts +2 -0
- package/dist/features/background-agent/poll-running-tasks.d.ts +3 -1
- package/dist/features/background-agent/task-history.d.ts +18 -0
- package/dist/features/background-agent/task-poller.d.ts +4 -0
- package/dist/features/background-agent/types.d.ts +4 -0
- package/dist/features/claude-code-agent-loader/loader.d.ts +1 -1
- package/dist/features/claude-code-command-loader/loader.d.ts +3 -3
- package/dist/features/opencode-skill-loader/config-source-discovery.d.ts +7 -0
- package/dist/features/opencode-skill-loader/index.d.ts +1 -0
- package/dist/features/opencode-skill-loader/loader.d.ts +8 -5
- package/dist/features/opencode-skill-loader/merger.d.ts +1 -1
- package/dist/features/opencode-skill-loader/skill-resolution-options.d.ts +2 -0
- package/dist/features/tmux-subagent/grid-planning.d.ts +1 -1
- package/dist/features/tmux-subagent/pane-split-availability.d.ts +3 -3
- package/dist/features/tmux-subagent/spawn-action-decider.d.ts +1 -1
- package/dist/hooks/claude-code-hooks/transcript.d.ts +8 -13
- package/dist/hooks/compaction-context-injector/hook.d.ts +2 -1
- package/dist/hooks/index.d.ts +0 -1
- package/dist/hooks/keyword-detector/ultrawork/source-detector.d.ts +2 -5
- package/dist/hooks/think-mode/switcher.d.ts +1 -2
- package/dist/hooks/todo-continuation-enforcer/constants.d.ts +1 -0
- package/dist/hooks/todo-continuation-enforcer/session-state.d.ts +1 -0
- package/dist/hooks/todo-continuation-enforcer/types.d.ts +2 -0
- package/dist/index.js +1854 -1398
- package/dist/plugin/hooks/create-core-hooks.d.ts +0 -1
- package/dist/plugin/hooks/create-session-hooks.d.ts +1 -2
- package/dist/plugin/session-agent-resolver.d.ts +19 -0
- package/dist/plugin-config.d.ts +1 -0
- package/dist/plugin-handlers/command-config-handler.d.ts +3 -0
- package/dist/shared/session-tools-store.d.ts +3 -0
- package/dist/tools/call-omo-agent/sync-executor.d.ts +10 -1
- package/dist/tools/delegate-task/constants.d.ts +1 -1
- package/dist/tools/slashcommand/command-discovery.d.ts +1 -1
- package/package.json +8 -8
- package/dist/cli/doctor/checks/auth.d.ts +0 -7
- package/dist/cli/doctor/checks/lsp.d.ts +0 -8
- package/dist/cli/doctor/checks/mcp-oauth.d.ts +0 -15
- package/dist/cli/doctor/checks/mcp.d.ts +0 -6
- package/dist/cli/doctor/checks/plugin.d.ts +0 -4
- package/dist/cli/doctor/checks/version.d.ts +0 -4
- package/dist/hooks/subagent-question-blocker/hook.d.ts +0 -2
- package/dist/hooks/subagent-question-blocker/index.d.ts +0 -1
|
@@ -35,7 +35,6 @@ export declare function createCoreHooks(args: {
|
|
|
35
35
|
prometheusMdOnly: ReturnType<typeof import("../../hooks").createPrometheusMdOnlyHook> | null;
|
|
36
36
|
sisyphusJuniorNotepad: ReturnType<typeof import("../../hooks").createSisyphusJuniorNotepadHook> | null;
|
|
37
37
|
questionLabelTruncator: ReturnType<typeof import("../../hooks").createQuestionLabelTruncatorHook>;
|
|
38
|
-
subagentQuestionBlocker: ReturnType<typeof import("../../hooks").createSubagentQuestionBlockerHook>;
|
|
39
38
|
taskResumeInfo: ReturnType<typeof import("../../hooks").createTaskResumeInfoHook>;
|
|
40
39
|
anthropicEffort: ReturnType<typeof import("../../hooks/anthropic-effort").createAnthropicEffortHook> | null;
|
|
41
40
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { OhMyOpenCodeConfig, HookName } from "../../config";
|
|
2
2
|
import type { PluginContext } from "../types";
|
|
3
|
-
import { createContextWindowMonitorHook, createSessionRecoveryHook, createSessionNotification, createThinkModeHook, createAnthropicContextWindowLimitRecoveryHook, createAutoUpdateCheckerHook, createAgentUsageReminderHook, createNonInteractiveEnvHook, createInteractiveBashSessionHook, createRalphLoopHook, createEditErrorRecoveryHook, createDelegateTaskRetryHook, createTaskResumeInfoHook, createStartWorkHook, createPrometheusMdOnlyHook, createSisyphusJuniorNotepadHook, createQuestionLabelTruncatorHook,
|
|
3
|
+
import { createContextWindowMonitorHook, createSessionRecoveryHook, createSessionNotification, createThinkModeHook, createAnthropicContextWindowLimitRecoveryHook, createAutoUpdateCheckerHook, createAgentUsageReminderHook, createNonInteractiveEnvHook, createInteractiveBashSessionHook, createRalphLoopHook, createEditErrorRecoveryHook, createDelegateTaskRetryHook, createTaskResumeInfoHook, createStartWorkHook, createPrometheusMdOnlyHook, createSisyphusJuniorNotepadHook, createQuestionLabelTruncatorHook, createPreemptiveCompactionHook } from "../../hooks";
|
|
4
4
|
import { createAnthropicEffortHook } from "../../hooks/anthropic-effort";
|
|
5
5
|
export type SessionHooks = {
|
|
6
6
|
contextWindowMonitor: ReturnType<typeof createContextWindowMonitorHook> | null;
|
|
@@ -20,7 +20,6 @@ export type SessionHooks = {
|
|
|
20
20
|
prometheusMdOnly: ReturnType<typeof createPrometheusMdOnlyHook> | null;
|
|
21
21
|
sisyphusJuniorNotepad: ReturnType<typeof createSisyphusJuniorNotepadHook> | null;
|
|
22
22
|
questionLabelTruncator: ReturnType<typeof createQuestionLabelTruncatorHook>;
|
|
23
|
-
subagentQuestionBlocker: ReturnType<typeof createSubagentQuestionBlockerHook>;
|
|
24
23
|
taskResumeInfo: ReturnType<typeof createTaskResumeInfoHook>;
|
|
25
24
|
anthropicEffort: ReturnType<typeof createAnthropicEffortHook> | null;
|
|
26
25
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface SessionMessage {
|
|
2
|
+
info?: {
|
|
3
|
+
agent?: string;
|
|
4
|
+
role?: string;
|
|
5
|
+
};
|
|
6
|
+
}
|
|
7
|
+
type SessionClient = {
|
|
8
|
+
session: {
|
|
9
|
+
messages: (opts: {
|
|
10
|
+
path: {
|
|
11
|
+
id: string;
|
|
12
|
+
};
|
|
13
|
+
}) => Promise<{
|
|
14
|
+
data?: SessionMessage[];
|
|
15
|
+
}>;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export declare function resolveSessionAgent(client: SessionClient, sessionId: string): Promise<string | undefined>;
|
|
19
|
+
export {};
|
package/dist/plugin-config.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type OhMyOpenCodeConfig } from "./config";
|
|
2
|
+
export declare function parseConfigPartially(rawConfig: Record<string, unknown>): OhMyOpenCodeConfig | null;
|
|
2
3
|
export declare function loadConfigFromPath(configPath: string, ctx: unknown): OhMyOpenCodeConfig | null;
|
|
3
4
|
export declare function mergeConfigs(base: OhMyOpenCodeConfig, override: OhMyOpenCodeConfig): OhMyOpenCodeConfig;
|
|
4
5
|
export declare function loadPluginConfig(directory: string, ctx: unknown): OhMyOpenCodeConfig;
|
|
@@ -3,5 +3,8 @@ import type { PluginComponents } from "./plugin-components-loader";
|
|
|
3
3
|
export declare function applyCommandConfig(params: {
|
|
4
4
|
config: Record<string, unknown>;
|
|
5
5
|
pluginConfig: OhMyOpenCodeConfig;
|
|
6
|
+
ctx: {
|
|
7
|
+
directory: string;
|
|
8
|
+
};
|
|
6
9
|
pluginComponents: PluginComponents;
|
|
7
10
|
}): Promise<void>;
|
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
import type { CallOmoAgentArgs } from "./types";
|
|
2
2
|
import type { PluginInput } from "@opencode-ai/plugin";
|
|
3
|
+
import { createOrGetSession } from "./session-creator";
|
|
4
|
+
import { waitForCompletion } from "./completion-poller";
|
|
5
|
+
import { processMessages } from "./message-processor";
|
|
6
|
+
type ExecuteSyncDeps = {
|
|
7
|
+
createOrGetSession: typeof createOrGetSession;
|
|
8
|
+
waitForCompletion: typeof waitForCompletion;
|
|
9
|
+
processMessages: typeof processMessages;
|
|
10
|
+
};
|
|
3
11
|
export declare function executeSync(args: CallOmoAgentArgs, toolContext: {
|
|
4
12
|
sessionID: string;
|
|
5
13
|
messageID: string;
|
|
@@ -9,4 +17,5 @@ export declare function executeSync(args: CallOmoAgentArgs, toolContext: {
|
|
|
9
17
|
title?: string;
|
|
10
18
|
metadata?: Record<string, unknown>;
|
|
11
19
|
}) => void;
|
|
12
|
-
}, ctx: PluginInput): Promise<string>;
|
|
20
|
+
}, ctx: PluginInput, deps?: ExecuteSyncDeps): Promise<string>;
|
|
21
|
+
export {};
|
|
@@ -6,7 +6,7 @@ export declare const ARTISTRY_CATEGORY_PROMPT_APPEND = "<Category_Context>\nYou
|
|
|
6
6
|
export declare const QUICK_CATEGORY_PROMPT_APPEND = "<Category_Context>\nYou are working on SMALL / QUICK tasks.\n\nEfficient execution mindset:\n- Fast, focused, minimal overhead\n- Get to the point immediately\n- No over-engineering\n- Simple solutions for simple problems\n\nApproach:\n- Minimal viable implementation\n- Skip unnecessary abstractions\n- Direct and concise\n</Category_Context>\n\n<Caller_Warning>\nTHIS CATEGORY USES A LESS CAPABLE MODEL (claude-haiku-4-5).\n\nThe model executing this task has LIMITED reasoning capacity. Your prompt MUST be:\n\n**EXHAUSTIVELY EXPLICIT** - Leave NOTHING to interpretation:\n1. MUST DO: List every required action as atomic, numbered steps\n2. MUST NOT DO: Explicitly forbid likely mistakes and deviations\n3. EXPECTED OUTPUT: Describe exact success criteria with concrete examples\n\n**WHY THIS MATTERS:**\n- Less capable models WILL deviate without explicit guardrails\n- Vague instructions \u2192 unpredictable results\n- Implicit expectations \u2192 missed requirements\n\n**PROMPT STRUCTURE (MANDATORY):**\n```\nTASK: [One-sentence goal]\n\nMUST DO:\n1. [Specific action with exact details]\n2. [Another specific action]\n...\n\nMUST NOT DO:\n- [Forbidden action + why]\n- [Another forbidden action]\n...\n\nEXPECTED OUTPUT:\n- [Exact deliverable description]\n- [Success criteria / verification method]\n```\n\nIf your prompt lacks this structure, REWRITE IT before delegating.\n</Caller_Warning>";
|
|
7
7
|
export declare const UNSPECIFIED_LOW_CATEGORY_PROMPT_APPEND = "<Category_Context>\nYou are working on tasks that don't fit specific categories but require moderate effort.\n\n<Selection_Gate>\nBEFORE selecting this category, VERIFY ALL conditions:\n1. Task does NOT fit: quick (trivial), visual-engineering (UI), ultrabrain (deep logic), artistry (creative), writing (docs)\n2. Task requires more than trivial effort but is NOT system-wide\n3. Scope is contained within a few files/modules\n\nIf task fits ANY other category, DO NOT select unspecified-low.\nThis is NOT a default choice - it's for genuinely unclassifiable moderate-effort work.\n</Selection_Gate>\n</Category_Context>\n\n<Caller_Warning>\nTHIS CATEGORY USES A MID-TIER MODEL (claude-sonnet-4-5).\n\n**PROVIDE CLEAR STRUCTURE:**\n1. MUST DO: Enumerate required actions explicitly\n2. MUST NOT DO: State forbidden actions to prevent scope creep\n3. EXPECTED OUTPUT: Define concrete success criteria\n</Caller_Warning>";
|
|
8
8
|
export declare const UNSPECIFIED_HIGH_CATEGORY_PROMPT_APPEND = "<Category_Context>\nYou are working on tasks that don't fit specific categories but require substantial effort.\n\n<Selection_Gate>\nBEFORE selecting this category, VERIFY ALL conditions:\n1. Task does NOT fit: quick (trivial), visual-engineering (UI), ultrabrain (deep logic), artistry (creative), writing (docs)\n2. Task requires substantial effort across multiple systems/modules\n3. Changes have broad impact or require careful coordination\n4. NOT just \"complex\" - must be genuinely unclassifiable AND high-effort\n\nIf task fits ANY other category, DO NOT select unspecified-high.\nIf task is unclassifiable but moderate-effort, use unspecified-low instead.\n</Selection_Gate>\n</Category_Context>";
|
|
9
|
-
export declare const WRITING_CATEGORY_PROMPT_APPEND = "<Category_Context>\nYou are working on WRITING / PROSE tasks.\n\nWordsmith mindset:\n- Clear, flowing prose\n- Appropriate tone and voice\n- Engaging and readable\n- Proper structure and organization\n\nApproach:\n- Understand the audience\n- Draft with care\n- Polish for clarity and impact\n- Documentation, READMEs, articles, technical writing\n</Category_Context>";
|
|
9
|
+
export declare const WRITING_CATEGORY_PROMPT_APPEND = "<Category_Context>\nYou are working on WRITING / PROSE tasks.\n\nWordsmith mindset:\n- Clear, flowing prose\n- Appropriate tone and voice\n- Engaging and readable\n- Proper structure and organization\n\nApproach:\n- Understand the audience\n- Draft with care\n- Polish for clarity and impact\n- Documentation, READMEs, articles, technical writing\n\nANTI-AI-SLOP RULES (NON-NEGOTIABLE):\n- NEVER use em dashes (\u2014) or en dashes (\u2013). Use commas, periods, ellipses, or line breaks instead. Zero tolerance.\n- Remove AI-sounding phrases: \"delve\", \"it's important to note\", \"I'd be happy to\", \"certainly\", \"please don't hesitate\", \"leverage\", \"utilize\", \"in order to\", \"moving forward\", \"circle back\", \"at the end of the day\", \"robust\", \"streamline\", \"facilitate\"\n- Pick plain words. \"Use\" not \"utilize\". \"Start\" not \"commence\". \"Help\" not \"facilitate\".\n- Use contractions naturally: \"don't\" not \"do not\", \"it's\" not \"it is\".\n- Vary sentence length. Don't make every sentence the same length.\n- NEVER start consecutive sentences with the same word.\n- No filler openings: skip \"In today's world...\", \"As we all know...\", \"It goes without saying...\"\n- Write like a human, not a corporate template.\n</Category_Context>";
|
|
10
10
|
export declare const DEEP_CATEGORY_PROMPT_APPEND = "<Category_Context>\nYou are working on GOAL-ORIENTED AUTONOMOUS tasks.\n\n**CRITICAL - AUTONOMOUS EXECUTION MINDSET (NON-NEGOTIABLE)**:\nYou are NOT an interactive assistant. You are an autonomous problem-solver.\n\n**BEFORE making ANY changes**:\n1. SILENTLY explore the codebase extensively (5-15 minutes of reading is normal)\n2. Read related files, trace dependencies, understand the full context\n3. Build a complete mental model of the problem space\n4. DO NOT ask clarifying questions - the goal is already defined\n\n**Autonomous executor mindset**:\n- You receive a GOAL, not step-by-step instructions\n- Figure out HOW to achieve the goal yourself\n- Thorough research before any action\n- Fix hairy problems that require deep understanding\n- Work independently without frequent check-ins\n\n**Approach**:\n- Explore extensively, understand deeply, then act decisively\n- Prefer comprehensive solutions over quick patches\n- If the goal is unclear, make reasonable assumptions and proceed\n- Document your reasoning in code comments only when non-obvious\n\n**Response format**:\n- Minimal status updates (user trusts your autonomy)\n- Focus on results, not play-by-play progress\n- Report completion with summary of changes made\n</Category_Context>";
|
|
11
11
|
export declare const DEFAULT_CATEGORIES: Record<string, CategoryConfig>;
|
|
12
12
|
export declare const CATEGORY_PROMPT_APPENDS: Record<string, string>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import type { CommandInfo } from "./types";
|
|
2
|
-
export declare function discoverCommandsSync(): CommandInfo[];
|
|
2
|
+
export declare function discoverCommandsSync(directory?: string): CommandInfo[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oh-my-opencode",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.5",
|
|
4
4
|
"description": "The Best AI Agent Harness - Batteries-Included OpenCode Plugin with Multi-Model Orchestration, Parallel Background Agents, and Crafted LSP/AST Tools",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
"typescript": "^5.7.3"
|
|
75
75
|
},
|
|
76
76
|
"optionalDependencies": {
|
|
77
|
-
"oh-my-opencode-darwin-arm64": "3.5.
|
|
78
|
-
"oh-my-opencode-darwin-x64": "3.5.
|
|
79
|
-
"oh-my-opencode-linux-arm64": "3.5.
|
|
80
|
-
"oh-my-opencode-linux-arm64-musl": "3.5.
|
|
81
|
-
"oh-my-opencode-linux-x64": "3.5.
|
|
82
|
-
"oh-my-opencode-linux-x64-musl": "3.5.
|
|
83
|
-
"oh-my-opencode-windows-x64": "3.5.
|
|
77
|
+
"oh-my-opencode-darwin-arm64": "3.5.5",
|
|
78
|
+
"oh-my-opencode-darwin-x64": "3.5.5",
|
|
79
|
+
"oh-my-opencode-linux-arm64": "3.5.5",
|
|
80
|
+
"oh-my-opencode-linux-arm64-musl": "3.5.5",
|
|
81
|
+
"oh-my-opencode-linux-x64": "3.5.5",
|
|
82
|
+
"oh-my-opencode-linux-x64-musl": "3.5.5",
|
|
83
|
+
"oh-my-opencode-windows-x64": "3.5.5"
|
|
84
84
|
},
|
|
85
85
|
"trustedDependencies": [
|
|
86
86
|
"@ast-grep/cli",
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { CheckResult, CheckDefinition, AuthProviderInfo, AuthProviderId } from "../types";
|
|
2
|
-
export declare function getAuthProviderInfo(providerId: AuthProviderId): AuthProviderInfo;
|
|
3
|
-
export declare function checkAuthProvider(providerId: AuthProviderId): Promise<CheckResult>;
|
|
4
|
-
export declare function checkAnthropicAuth(): Promise<CheckResult>;
|
|
5
|
-
export declare function checkOpenAIAuth(): Promise<CheckResult>;
|
|
6
|
-
export declare function checkGoogleAuth(): Promise<CheckResult>;
|
|
7
|
-
export declare function getAuthCheckDefinitions(): CheckDefinition[];
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { CheckResult, CheckDefinition, LspServerInfo } from "../types";
|
|
2
|
-
export declare function getLspServersInfo(): Promise<LspServerInfo[]>;
|
|
3
|
-
export declare function getLspServerStats(servers: LspServerInfo[]): {
|
|
4
|
-
installed: number;
|
|
5
|
-
total: number;
|
|
6
|
-
};
|
|
7
|
-
export declare function checkLspServers(): Promise<CheckResult>;
|
|
8
|
-
export declare function getLspCheckDefinition(): CheckDefinition;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { CheckResult, CheckDefinition } from "../types";
|
|
2
|
-
interface OAuthTokenData {
|
|
3
|
-
accessToken: string;
|
|
4
|
-
refreshToken?: string;
|
|
5
|
-
expiresAt?: number;
|
|
6
|
-
clientInfo?: {
|
|
7
|
-
clientId: string;
|
|
8
|
-
clientSecret?: string;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
type TokenStore = Record<string, OAuthTokenData>;
|
|
12
|
-
export declare function readTokenStore(): TokenStore | null;
|
|
13
|
-
export declare function checkMcpOAuthTokens(): Promise<CheckResult>;
|
|
14
|
-
export declare function getMcpOAuthCheckDefinition(): CheckDefinition;
|
|
15
|
-
export {};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { CheckResult, CheckDefinition, McpServerInfo } from "../types";
|
|
2
|
-
export declare function getBuiltinMcpInfo(): McpServerInfo[];
|
|
3
|
-
export declare function getUserMcpInfo(): McpServerInfo[];
|
|
4
|
-
export declare function checkBuiltinMcpServers(): Promise<CheckResult>;
|
|
5
|
-
export declare function checkUserMcpServers(): Promise<CheckResult>;
|
|
6
|
-
export declare function getMcpCheckDefinitions(): CheckDefinition[];
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import type { CheckResult, CheckDefinition, PluginInfo } from "../types";
|
|
2
|
-
export declare function getPluginInfo(): PluginInfo;
|
|
3
|
-
export declare function checkPluginRegistration(): Promise<CheckResult>;
|
|
4
|
-
export declare function getPluginCheckDefinition(): CheckDefinition;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import type { CheckResult, CheckDefinition, VersionCheckInfo } from "../types";
|
|
2
|
-
export declare function getVersionInfo(): Promise<VersionCheckInfo>;
|
|
3
|
-
export declare function checkVersionStatus(): Promise<CheckResult>;
|
|
4
|
-
export declare function getVersionCheckDefinition(): CheckDefinition;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { createSubagentQuestionBlockerHook } from "./hook";
|