Skip to content

Quick setup

The yorishiro-proxy install command performs MCP configuration, CA certificate generation, and Skills installation in a single step. This is the fastest way to get started.

One-command setup

Run the install command to configure everything at once:

yorishiro-proxy install

This performs the following:

  1. Registers yorishiro-proxy as an MCP server in your project-level .mcp.json
  2. Generates the CA certificate for HTTPS interception
  3. Installs Claude Code skills for yorishiro-proxy

To also register the CA certificate in your OS trust store (requires sudo on macOS/Linux, or Administrator on Windows):

yorishiro-proxy install --trust

Individual setup targets

You can run specific setup targets independently:

Command Description
yorishiro-proxy install mcp Configure MCP server integration only
yorishiro-proxy install ca Generate the CA certificate only
yorishiro-proxy install skills Install Claude Code skills only
yorishiro-proxy install playwright Set up playwright-cli integration (auto-detects browser, installs if needed)

For example, to generate the CA certificate and register it in your OS trust store without touching MCP configuration:

yorishiro-proxy install ca --trust

Additional flags

Flag Description
--trust Register the CA certificate in the OS trust store
--interactive Launch a wizard that walks you through each step
--user-scope Register MCP configuration in the user-level settings file (~/.claude/settings.json) instead of the project-level .mcp.json

Upgrading

Update yorishiro-proxy to the latest release from GitHub:

yorishiro-proxy upgrade

To check for updates without installing:

yorishiro-proxy upgrade --check

After upgrading, update the installed skills to match the new version:

yorishiro-proxy install skills

Next steps