@ory/argus 0.13.5 → 0.13.6

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.
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "repo": "ory-agent-plugins",
3
- "commit": "6a1250a1a231524d64aed17df86d694f829cf938",
4
- "commitShort": "6a1250a",
3
+ "commit": "255043db833b8ebda7cbec0dee740eda045f064e",
4
+ "commitShort": "255043d",
5
5
  "branch": "main",
6
- "commitDate": "2026-07-15T07:09:03-07:00",
6
+ "commitDate": "2026-07-15T09:35:21-07:00",
7
7
  "dirty": false,
8
- "builtAt": "2026-07-15T14:13:28.336Z"
8
+ "builtAt": "2026-07-15T16:39:31.503Z"
9
9
  }
@@ -15,8 +15,8 @@
15
15
  * Built-in tool names known to ship with each supported harness.
16
16
  */
17
17
  export declare const HARNESS_TOOL_CATALOG: {
18
- readonly "claude-code": readonly ["Read", "Write", "Edit", "Bash", "Glob", "Grep", "WebFetch", "WebSearch", "NotebookEdit", "TodoWrite", "Task"];
19
- readonly "claude-agent-sdk": readonly ["Read", "Write", "Edit", "Bash", "Glob", "Grep", "WebFetch", "WebSearch", "NotebookEdit", "TodoWrite", "Task"];
18
+ readonly "claude-code": readonly ["Read", "Write", "Edit", "Bash", "Glob", "Grep", "WebFetch", "WebSearch", "NotebookEdit", "ToolSearch", "Skill", "TodoWrite", "Agent", "Task"];
19
+ readonly "claude-agent-sdk": readonly ["Read", "Write", "Edit", "Bash", "Glob", "Grep", "WebFetch", "WebSearch", "NotebookEdit", "ToolSearch", "Skill", "TodoWrite", "Agent", "Task"];
20
20
  readonly codex: readonly ["Bash", "apply_patch"];
21
21
  readonly "gemini-cli": readonly ["read_file", "write_file", "edit_file", "list_files", "search_files", "shell", "web_search"];
22
22
  readonly openclaw: readonly ["exec", "read", "write", "edit", "apply_patch", "web_search", "web_fetch", "browser"];
@@ -21,6 +21,10 @@ exports.isInteractiveTool = isInteractiveTool;
21
21
  * Built-in tool names known to ship with each supported harness.
22
22
  */
23
23
  exports.HARNESS_TOOL_CATALOG = {
24
+ // Built-in tool names verified against Claude Code's tools reference
25
+ // (code.claude.com/docs/en/tools-reference). `Agent` is the current
26
+ // sub-agent launcher; `Task` is retained as the legacy name so older CLI
27
+ // versions stay covered (bootstrap is additive, so listing both is safe).
24
28
  "claude-code": [
25
29
  "Read",
26
30
  "Write",
@@ -31,7 +35,10 @@ exports.HARNESS_TOOL_CATALOG = {
31
35
  "WebFetch",
32
36
  "WebSearch",
33
37
  "NotebookEdit",
38
+ "ToolSearch",
39
+ "Skill",
34
40
  "TodoWrite",
41
+ "Agent",
35
42
  "Task",
36
43
  ],
37
44
  // The Claude Agent SDK exposes the same built-in tool surface as Claude
@@ -47,7 +54,10 @@ exports.HARNESS_TOOL_CATALOG = {
47
54
  "WebFetch",
48
55
  "WebSearch",
49
56
  "NotebookEdit",
57
+ "ToolSearch",
58
+ "Skill",
50
59
  "TodoWrite",
60
+ "Agent",
51
61
  "Task",
52
62
  ],
53
63
  // Codex serializes its hook `tool_name` as `Bash` (shell) and `apply_patch`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/argus",
3
- "version": "0.13.5",
3
+ "version": "0.13.6",
4
4
  "description": "Ory Argus: the core API for building authentication, authorization, and audit into AI agent harness plugins, extensions, and custom integrations",
5
5
  "license": "Apache-2.0",
6
6
  "homepage": "https://ory.com",