@ory/argus 0.6.0 → 0.6.2

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.
Files changed (2) hide show
  1. package/dist/skills.js +7 -3
  2. package/package.json +1 -1
package/dist/skills.js CHANGED
@@ -117,9 +117,10 @@ function code(value) {
117
117
  * Build the token substitution map for a harness. The reference style differs:
118
118
  *
119
119
  * - Claude Code addresses sibling skills as `/project:<name>` and the commands
120
- * as `/ory:local-up`.
121
- * - Gemini CLI and OpenCode expose the commands as real slash commands
122
- * (`/ory:local-up`) but model-invoke skills by name.
120
+ * under the plugin's own namespace (`/ory-agent-plugin:local-up`), because
121
+ * Claude Code namespaces plugin commands by the plugin's `plugin.json` name.
122
+ * - Gemini CLI and OpenCode expose the commands as real slash commands under
123
+ * the `ory` namespace (`/ory:local-up`) but model-invoke skills by name.
123
124
  * - Codex and OpenClaw render the commands as user-invocable skills, so both
124
125
  * skills and commands are referenced by their bare skill name.
125
126
  */
@@ -129,6 +130,9 @@ function buildProfile(harness, opts) {
129
130
  let localDown;
130
131
  switch (harness) {
131
132
  case "claude-code":
133
+ localUp = code("/ory-agent-plugin:local-up");
134
+ localDown = code("/ory-agent-plugin:local-down");
135
+ break;
132
136
  case "gemini-cli":
133
137
  case "opencode":
134
138
  localUp = code("/ory:local-up");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ory/argus",
3
- "version": "0.6.0",
3
+ "version": "0.6.2",
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",