staklink 0.3.10 → 0.3.11

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.
@@ -33901,7 +33901,7 @@ var SSEManager = class {
33901
33901
  var sseManager = new SSEManager();
33902
33902
 
33903
33903
  // src/proxy/version.ts
33904
- var VERSION = "0.3.10";
33904
+ var VERSION = "0.3.11";
33905
33905
 
33906
33906
  // node_modules/uuid/dist/esm/stringify.js
33907
33907
  var byteToHex = [];
@@ -34044,6 +34044,15 @@ function sanitizeShellArg(arg) {
34044
34044
  var net = __toESM(require("net"), 1);
34045
34045
  var fs9 = __toESM(require("fs"), 1);
34046
34046
  var path8 = __toESM(require("path"), 1);
34047
+
34048
+ // src/agent/system_suffix.ts
34049
+ var SYSTEM_SUFFIX = `
34050
+ You can ignore the .pod-config directory if you see it, its just config stuff
34051
+
34052
+ The actual dev server is being run with pm2... so you can use pm2 logs to see dev logs. Other processes (such as DB) are being run with docker.
34053
+ `;
34054
+
34055
+ // src/agent/goose.ts
34047
34056
  function goose_env(apiKey) {
34048
34057
  return {
34049
34058
  GOOSE_CONTEXT_STRATEGY: "summarize",
@@ -34062,7 +34071,7 @@ async function runAgent(prompt, apiKey, cwd, session, system_prompt) {
34062
34071
  console.log("RUN goose with env", env);
34063
34072
  const cleanPrompt = sanitizeShellArg(prompt);
34064
34073
  let system = system_prompt ? sanitizeShellArg(system_prompt) + "\n\n" : "";
34065
- system += "You can ignore the .pod-config directory if you see it, its just config stuff";
34074
+ system += SYSTEM_SUFFIX;
34066
34075
  system = sanitizeShellArg(system);
34067
34076
  console.log("Using Goose CLI", cleanPrompt, system);
34068
34077
  let cmd = `goose run --with-builtin developer -t "${cleanPrompt}" --system "${system}"`;
@@ -10905,7 +10905,7 @@ var glob = Object.assign(glob_, {
10905
10905
  glob.glob = glob;
10906
10906
 
10907
10907
  // src/proxy/version.ts
10908
- var VERSION = "0.3.10";
10908
+ var VERSION = "0.3.11";
10909
10909
 
10910
10910
  // src/cli.ts
10911
10911
  var STAKLINK_PROXY = "staklink-proxy";
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "staklink",
3
3
  "displayName": "staklink",
4
4
  "description": "staklink process manager",
5
- "version": "0.3.10",
5
+ "version": "0.3.11",
6
6
  "type": "module",
7
7
  "publisher": "stakwork",
8
8
  "engines": {