auditor-lambda 0.3.16 → 0.3.17

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": "auditor-lambda",
3
- "version": "0.3.16",
3
+ "version": "0.3.17",
4
4
  "private": false,
5
5
  "description": "Portable hybrid code-auditing framework for arbitrary repositories.",
6
6
  "type": "module",
@@ -47,6 +47,14 @@ function mergeOpenCodeGlobalConfig(existing, promptBody) {
47
47
  subtask: false,
48
48
  },
49
49
  },
50
+ agent: {
51
+ ...(parsed.agent && typeof parsed.agent === 'object' && !Array.isArray(parsed.agent)
52
+ ? parsed.agent
53
+ : {}),
54
+ auditor: {
55
+ description: 'Read-heavy audit orchestration agent for the /audit-code workflow.',
56
+ },
57
+ },
50
58
  };
51
59
  }
52
60