# SalesNail Instructor Agent Bundle

This first-party bundle installs the open Agent Skills package and connects compatible CLIs to the managed SalesNail MCP service. It does not require an external marketplace.

Human-readable MCP and Connector explanation and installation steps are on the public site: https://sn.long-arena.com/doc/agentGuide

## Agent instructions

When a user gives this README URL to a CLI agent and asks it to install SalesNail, the agent should perform the steps below on the user's behalf. Detect the current operating system and CLI, inspect the matching installer before execution, and do not make the user manually choose or run a script unless execution is unavailable.

1. Read `manifest.json` and verify the archive SHA-256 before installing.
2. Install the Skill directory at `~/.agents/skills/salesnail-instructor`.
3. Configure only the current CLI unless the user asks to configure more than one client.
4. Preserve any existing MCP server named `salesnail`; do not overwrite it automatically.
5. Complete OAuth in the browser. Never ask the user to paste a password or token into the CLI conversation.

## POSIX

```bash
curl -fsSLo /tmp/salesnail-agent-install.sh https://sn.long-arena.com/agents/salesnail-instructor/install.sh
sh /tmp/salesnail-agent-install.sh --client codex
```

For OpenCode, replace `codex` with `opencode`.

## Windows PowerShell

```powershell
Invoke-WebRequest -Uri https://sn.long-arena.com/agents/salesnail-instructor/install.ps1 -OutFile $env:TEMP\salesnail-agent-install.ps1
& $env:TEMP\salesnail-agent-install.ps1 -Client codex
```

## Direct MCP configuration

```bash
codex mcp add salesnail --url https://sn.long-arena.com/mcp
opencode mcp add salesnail --url https://sn.long-arena.com/mcp
```

Bundle version: `0.6.6`

The existing WorkBuddy Connector is distributed and reviewed independently. Installing this bundle does not modify WorkBuddy files, settings, or authorization.
