opencode-swarm 6.86.8 → 6.86.9

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.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * The platform config directory used by this plugin.
3
+ * Mirrors CONFIG_DIR in src/cli/index.ts.
4
+ */
5
+ export declare function getPluginConfigDir(): string;
6
+ /**
7
+ * All known locations where OpenCode may cache the opencode-swarm plugin.
8
+ * Order: newest/canonical first so status reporting shows the most relevant
9
+ * path at the top.
10
+ */
11
+ export declare function getPluginCachePaths(): readonly string[];
package/dist/index.d.ts CHANGED
@@ -1,7 +1,8 @@
1
1
  import type { Plugin } from '@opencode-ai/plugin';
2
- import { addDeferredWarning, deferredWarnings } from './services/warning-buffer.js';
3
- export { addDeferredWarning, deferredWarnings };
4
- declare const OpenCodeSwarm: Plugin;
5
- export default OpenCodeSwarm;
2
+ declare const _default: {
3
+ id: "opencode-swarm";
4
+ server: Plugin;
5
+ };
6
+ export default _default;
6
7
  export type { AgentDefinition } from './agents';
7
8
  export type { AgentName, AutomationCapabilities, AutomationConfig, AutomationMode, PipelineAgentName, PluginConfig, QAAgentName, } from './config';