OpenClaw plugin providing a config-driven
/shortcutscommand with safe placeholder defaults.
Current version: 0.1.0
Replaces:
openclaw-help(deprecated — name was misleading; plugin never registered/helpbut/shortcuts)
Registers /shortcuts in your OpenClaw agent.
Prints:
- Generic placeholder sections by default
- Custom sections injected via local
openclaw.jsonconfig
Security design: The repo ships with placeholder-only content. All personal shortcuts, project names, and command mappings live in your local config — never in the repo.
clawhub install openclaw-shortcutsOr local development:
openclaw plugins install -l ~/.openclaw/workspace/skills/openclaw-shortcuts
openclaw gateway restartIn ~/.openclaw/openclaw.json → plugins.entries.openclaw-shortcuts.config:
{
"enabled": true,
"includeTips": false,
"sections": [
{
"title": "📁 Projects",
"lines": [
"/<project> - Your project shortcut"
]
},
{
"title": "🛠 Tools",
"lines": [
"/<command> - Your custom command"
]
}
]
}- Never put personal commands, phone numbers, group IDs, tokens, or internal workflows into this repo
- Keep all real shortcuts in local config only
- Initial release (merged from deprecated
openclaw-help) - Registers
/shortcutswithrequireAuth: false - Config-driven sections via
openclaw.json - Safe placeholder defaults
MIT