@visa/cli 4.1.0-rc.161 → 4.1.0-rc.163

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.
@@ -79,6 +79,7 @@ mcp_servers:
79
79
  | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
80
80
  | OpenClaw | Install `@visa/visa-cli-openclaw` for the `pair_agent_*` tools and bundled skill. The plugin auto-mounts the Visa MCP server. The MCP or raw CLI surfaces remain valid alternatives. |
81
81
  | Hermes | Run `visa-cli connect hermes`, install `pair-visa-agent/SKILL.md` under `~/.hermes/skills/`, and use `enroll_agent`. `hermes claw migrate` can import an existing OpenClaw setup. |
82
+ | Codex | Run `visa agent skill --runtime codex`. It plants the skill under `~/.codex/skills/` and mounts the Visa MCP server into `~/.codex/config.toml` in the same step. |
82
83
  | Other runtime | Put `visa` on `PATH`, mount the same MCP server if supported, or use the raw `visa agent enroll` and `visa agent enroll-claim` commands as the universal fallback. |
83
84
 
84
85
  The skill itself can be installed with `visa agent skill`. Pass `--runtime <name>` or
@@ -67,8 +67,8 @@ npm install -g @visa/cli@rc
67
67
  visa agent skill
68
68
  ```
69
69
 
70
- `visa agent skill` auto-detects OpenClaw, Hermes, and Claude Code, falling back to the
71
- project-local `./.agents/skills`. Pass `--runtime <name>` or `--dir <path>` to choose a
70
+ `visa agent skill` auto-detects OpenClaw, Hermes, Claude Code, and Codex, falling back to
71
+ the project-local `./.agents/skills`. Pass `--runtime <name>` or `--dir <path>` to choose a
72
72
  target, `--force` to overwrite, or `--print` to read without writing. Reload or restart
73
73
  the agent runtime after installation so it registers the skill.
74
74
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visa/cli",
3
- "version": "4.1.0-rc.161",
3
+ "version": "4.1.0-rc.163",
4
4
  "description": "Visa CLI runtime for stable agent identity and separately authorized payment capabilities",
5
5
  "bin": {
6
6
  "visa-cli": "./bin/visa-cli.js",
package/server.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
3
3
  "name": "io.github.visa-crypto-labs/visa-cli",
4
- "version": "4.1.0-rc.161",
4
+ "version": "4.1.0-rc.163",
5
5
  "title": "Visa CLI",
6
6
  "description": "Pair a human-approved agent identity, configure payment capabilities separately, and discover and pay x402 services from your AI coding assistant.",
7
7
  "websiteUrl": "https://github.com/Visa-Crypto-Labs/Visa-mono/tree/main/packages/cli#readme",
@@ -9,7 +9,7 @@
9
9
  {
10
10
  "registryType": "npm",
11
11
  "identifier": "@visa/cli",
12
- "version": "4.1.0-rc.161",
12
+ "version": "4.1.0-rc.163",
13
13
  "transport": {
14
14
  "type": "stdio"
15
15
  },