@jackle.dev/zalox-plugin 1.0.8 → 1.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jackle.dev/zalox-plugin",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "OpenClaw channel plugin for Zalo via zca-js (in-process, single login)",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -40,7 +40,14 @@ export const zaloxScenarioTool = {
40
40
  }
41
41
  }
42
42
  }
43
- return `Imported scenario "${data.name || 'Unknown'}":\n${results.join('\n')}`;
43
+
44
+ let report = `Imported scenario "${data.name || 'Unknown'}":\n${results.join('\n')}`;
45
+
46
+ if (data.instructions) {
47
+ report += `\n\nšŸ“š SOP / INSTRUCTIONS (Save to MEMORY.md):\n${data.instructions}`;
48
+ }
49
+
50
+ return report;
44
51
  } catch (e: any) {
45
52
  return `Scenario import failed: ${e.message}`;
46
53
  }