Get started

Install Pace

Pace is a Claude Code plugin marketplace. Register the marketplace once, then install the plugins your team uses. Two install paths: Claude Code CLI for engineers, and the Cowork desktop app for everyone else.

Claude Code (engineers)

If you already run Claude Code in your terminal, this is the canonical flow. Three commands, no config files to edit, no API keys to manage.

1. Register the marketplace

One-time per project. Tells Claude Code where to find Pace's catalog.

claude plugin marketplace add GoldenBerry-SO/Pace

Claude Code clones the GitHub repo and reads its marketplace.json. The marketplace registers as pace; you install plugins with the @pace suffix.

2. Install the plugins your team uses

Install one plugin per team or function. The router (pace) is optional but recommended; it's where your company-specific commands go.

# The router (company commands like /pace teach)
claude plugin install pace@pace

# Department plugins (install only what you use)
claude plugin install sales@pace
claude plugin install engineering@pace
claude plugin install data@pace
claude plugin install marketing@pace

Not sure which to install? See Picking plugins below, or jump to the team guides for role-based recommendations.

3. Connect your tools (on first use)

Plugins ship with connectors but they're not authorized yet. The first time you run a skill that needs Slack, HubSpot, Notion, or any other MCP server, Claude opens an OAuth flow in your browser. Sign in, approve, and the token is saved for next time.

For the full connector model (OAuth, self-hosted URLs, local stdio servers), see Connectors & MCP.

Cowork (non-technical users)

Cowork is the Claude desktop app, a graphical interface to the same plugin ecosystem Claude Code uses in the terminal. Pace plugins install in Cowork the same way they install anywhere else, with one important difference: in Cowork you click a link instead of running a command.

One-click install per plugin

Each plugin has a deep link that opens Cowork and adds the Pace marketplace plus the plugin in a single step. Open one of these in your browser (Cowork has to be installed first):

# Pattern
https://claude.ai/desktop/customize/plugins/new?marketplace=GoldenBerry-SO/Pace&plugin=<name>

# Examples
https://claude.ai/desktop/customize/plugins/new?marketplace=GoldenBerry-SO/Pace&plugin=sales
https://claude.ai/desktop/customize/plugins/new?marketplace=GoldenBerry-SO/Pace&plugin=marketing
https://claude.ai/desktop/customize/plugins/new?marketplace=GoldenBerry-SO/Pace&plugin=engineering

Cowork prompts you to confirm the install. Restart the app once the install finishes so connectors register cleanly. The pattern is the same the Anthropic-published partner plugins (Apollo, Slack, Zoom, etc.) use; see Cowork's own docs for the current UI specifics.

Authorize connectors when prompted

The first time a skill needs an external tool (Slack, HubSpot, Notion, etc.), Cowork opens an OAuth window. Sign in once, approve the scope, and the connector stays authorized for every plugin that uses it.

One install, multiple users. If you're rolling Pace out to a team of non-technical users, install Cowork on each user's machine and send them a shortlist of deep links for the plugins they need. Each person authorizes connectors against their own accounts, so HR sees only HR's HubSpot, sales sees only sales's HubSpot, and so on.

Picking plugins

Pace ships 50 plugins. Most teams install three to six. Two ways to pick:

By role

The team guides have starter sets for sales, marketing, engineering, data, product, design, finance, legal, operations, people, customer support, and productivity. Each guide lists the plugins to install and a sample week of commands.

By plugin

The plugin catalog shows every plugin with its skills, connectors, and intended audience. Browse it like an app store.

Installing more plugins isn't free: each one adds skills to your / menu and bytes to the agent's context. Start with the few that map to your weekly work and add more as you find gaps.

The pace-tools CLI

Pace ships a small Node CLI you can run with npx. It's a thin wrapper around claude plugin, useful when you want to install many plugins at once or script the setup for an onboarding flow.

# One-time: register the Pace marketplace with Claude Code
npx pace-tools marketplace add

# Install one or more plugins
npx pace-tools install sales
npx pace-tools install engineering data

# Browse the full catalog
npx pace-tools list

# See per-role starter sets
npx pace-tools teams
npx pace-tools teams sales

# What's installed?
npx pace-tools status

# Remove a plugin
npx pace-tools uninstall sales
Requires Claude Code. The CLI wraps claude plugin install, so the claude binary must be on PATH. If you only use Cowork, install through the deep links above instead.

Updating

Claude Code

Refresh the marketplace; reinstall plugins to pick up the new versions:

claude plugin marketplace update pace
claude plugin install <name>@pace      # reinstalls; picks up new version

Cowork

Cowork pulls plugin updates from the marketplace whenever you reopen the app or re-run a plugin install link. The exact in-app update UI is app-version dependent; see Cowork's docs for the current flow.

Pace CLI

npx pace-tools status     # what's installed + which marketplaces are registered

Re-run npx pace-tools install <name> after a marketplace refresh to upgrade a plugin.

Verifying it worked

Open a chat in Claude Code or Cowork and type /. You should see commands prefixed by the plugins you installed: /sales:call-prep, /engineering:standup, /pace:teach, etc. Type one and the corresponding skill takes over.

Connectors stay declared but not authorized until the first skill that needs them runs. That's by design: authorization is just-in-time, so a fresh install doesn't barrage you with OAuth windows you don't need yet.

Stuck? Open an issue at github.com/GoldenBerry-SO/Pace.