@fro.bot/systematic 2.5.1 → 2.5.2

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,4 +1,3 @@
1
1
  import type { Plugin } from '@opencode-ai/plugin';
2
- export declare const INTERNAL_AGENT_SIGNATURES: string[];
3
2
  export declare const SystematicPlugin: Plugin;
4
3
  export default SystematicPlugin;
package/dist/index.js CHANGED
@@ -19,6 +19,11 @@ import { fileURLToPath } from "url";
19
19
  import fs from "fs";
20
20
  import os from "os";
21
21
  import path from "path";
22
+ var INTERNAL_AGENT_SIGNATURES = [
23
+ "You are a title generator",
24
+ "You are a helpful AI assistant tasked with summarizing conversations",
25
+ "Summarize what was done in this conversation"
26
+ ];
22
27
  function getToolMappingTemplate(bundledSkillsDir) {
23
28
  return `**Tool Mapping for OpenCode:**
24
29
  When skills reference tools you don't have, substitute OpenCode equivalents:
@@ -461,11 +466,6 @@ function createSkillTool(options) {
461
466
  }
462
467
 
463
468
  // src/index.ts
464
- var INTERNAL_AGENT_SIGNATURES = [
465
- "You are a title generator",
466
- "You are a helpful AI assistant tasked with summarizing conversations",
467
- "Summarize what was done in this conversation"
468
- ];
469
469
  var __dirname2 = path4.dirname(fileURLToPath(import.meta.url));
470
470
  var packageRoot = path4.resolve(__dirname2, "..");
471
471
  var bundledSkillsDir = path4.join(packageRoot, "skills");
@@ -554,6 +554,5 @@ var SystematicPlugin = async ({ client, directory }) => {
554
554
  var src_default = SystematicPlugin;
555
555
  export {
556
556
  src_default as default,
557
- SystematicPlugin,
558
- INTERNAL_AGENT_SIGNATURES
557
+ SystematicPlugin
559
558
  };
@@ -1,4 +1,5 @@
1
1
  import type { SystematicConfig } from './config.js';
2
+ export declare const INTERNAL_AGENT_SIGNATURES: string[];
2
3
  export interface BootstrapDeps {
3
4
  bundledSkillsDir: string;
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fro.bot/systematic",
3
- "version": "2.5.1",
3
+ "version": "2.5.2",
4
4
  "description": "Structured engineering workflows for OpenCode",
5
5
  "type": "module",
6
6
  "homepage": "https://fro.bot/systematic",