clementine-agent 1.18.68 → 1.18.69

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.
@@ -24042,7 +24042,7 @@ function parseAllowedToolsRaw() {
24042
24042
  var ta = document.getElementById('cron-allowed-tools');
24043
24043
  if (!ta) return [];
24044
24044
  var raw = ta.value || '';
24045
- var tokens = raw.split(/[,\n\s]+/).map(function(s) { return s.trim(); }).filter(Boolean);
24045
+ var tokens = raw.split(/[,\\n\\s]+/).map(function(s) { return s.trim(); }).filter(Boolean);
24046
24046
  return tokens.filter(function(t) { return /^[A-Za-z0-9_:-]+$/.test(t); });
24047
24047
  }
24048
24048
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clementine-agent",
3
- "version": "1.18.68",
3
+ "version": "1.18.69",
4
4
  "description": "Clementine — Personal AI Assistant (TypeScript)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",