@fro.bot/systematic 2.4.1 → 2.5.1

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 CHANGED
@@ -1,3 +1,4 @@
1
1
  import type { Plugin } from '@opencode-ai/plugin';
2
+ export declare const INTERNAL_AGENT_SIGNATURES: string[];
2
3
  export declare const SystematicPlugin: Plugin;
3
4
  export default SystematicPlugin;
package/dist/index.js CHANGED
@@ -554,5 +554,6 @@ var SystematicPlugin = async ({ client, directory }) => {
554
554
  var src_default = SystematicPlugin;
555
555
  export {
556
556
  src_default as default,
557
- SystematicPlugin
557
+ SystematicPlugin,
558
+ INTERNAL_AGENT_SIGNATURES
558
559
  };
@@ -8,6 +8,7 @@ export interface ConvertOptions {
8
8
  skipBodyTransform?: boolean;
9
9
  }
10
10
  export declare const CONVERTER_VERSION = 2;
11
+ export declare const TOOL_NAME_MAP: Record<string, string>;
11
12
  export declare function convertContent(content: string, type: ContentType, options?: ConvertOptions): string;
12
13
  export declare function convertFileWithCache(filePath: string, type: ContentType, options?: ConvertOptions): string;
13
14
  export declare function clearConverterCache(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fro.bot/systematic",
3
- "version": "2.4.1",
3
+ "version": "2.5.1",
4
4
  "description": "Structured engineering workflows for OpenCode",
5
5
  "type": "module",
6
6
  "homepage": "https://fro.bot/systematic",