← Back to Plugins
Tools

Shortcuts

homeofe By homeofe 👁 175 views ▲ 0 votes

OpenClaw plugin: Enhanced /help command with local config-driven shortcuts.

GitHub

Install

openclaw plugins install -l

Configuration Example

{
  "plugins": {
    "entries": {
      "openclaw-shortcuts": {
        "enabled": true,
        "config": {
          "includeTips": true,
          "sections": [
            {
              "title": "Public example projects",
              "lines": [
                "- AAHP - protocol + handoff structure example",
                "- BMAS - research project example"
              ]
            },
            {
              "title": "Your shortcuts (fill in locally)",
              "lines": [
                "- /<project> - your project shortcut",
                "- /<command> - your custom command"
              ]
            }
          ]
        }
      }
    }
  }
}

README

# openclaw-shortcuts

Enhanced `/shortcuts` command for OpenClaw.

## Security note

This plugin is intentionally **generic by default**. Do not hardcode personal commands, group names, phone numbers, or private workflow details into the repository.

Instead, customize the output via plugin config.

## Install (dev)

```bash
openclaw plugins install -l ~/.openclaw/workspace/openclaw-shortcuts
openclaw gateway restart
```

## ClawHub

```bash
clawhub install openclaw-shortcuts
```

## Configure

The repo stays placeholder-only. You customize `/shortcuts` locally via plugin config.

Example (using **public** projects as references):

```json
{
  "plugins": {
    "entries": {
      "openclaw-shortcuts": {
        "enabled": true,
        "config": {
          "includeTips": true,
          "sections": [
            {
              "title": "Public example projects",
              "lines": [
                "- AAHP - protocol + handoff structure example",
                "- BMAS - research project example"
              ]
            },
            {
              "title": "Your shortcuts (fill in locally)",
              "lines": [
                "- /<project> - your project shortcut",
                "- /<command> - your custom command"
              ]
            }
          ]
        }
      }
    }
  }
}
```

Security reminder: keep private commands, phone numbers, group IDs, tokens, and internal workflows out of the repo. Store them only in local config.
tools

Comments

Sign in to leave a comment

Loading comments...