@fideliosai/adapter-hermes-local 0.0.15 → 0.0.16

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": "@fideliosai/adapter-hermes-local",
3
- "version": "0.0.15",
3
+ "version": "0.0.16",
4
4
  "license": "MIT",
5
5
  "description": "Hermes AI agent adapter for FideliOS",
6
6
  "homepage": "https://github.com/fideliosai/fidelios",
@@ -23,7 +23,7 @@
23
23
  "src"
24
24
  ],
25
25
  "dependencies": {
26
- "@fideliosai/adapter-utils": "0.0.15",
26
+ "@fideliosai/adapter-utils": "0.0.16",
27
27
  "picocolors": "^1.1.0"
28
28
  }
29
29
  }
@@ -277,6 +277,9 @@ export async function execute(ctx) {
277
277
  args.push("--checkpoints");
278
278
  if (cfgBoolean(config.verbose) === true)
279
279
  args.push("-v");
280
+ // Skip dangerous-command security scanner for unattended FideliOS agent runs.
281
+ // Without this, Hermes blocks curl|python pipes used in FideliOS workflow.
282
+ args.push("--yolo");
280
283
  // Tag sessions as "tool" source so they don't clutter the user's session history.
281
284
  // Requires hermes-agent >= PR #3255 (feat/session-source-tag).
282
285
  args.push("--source", "tool");