@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 +0 -1
- package/dist/index.js +6 -7
- package/dist/lib/bootstrap.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
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
|
};
|
package/dist/lib/bootstrap.d.ts
CHANGED