openclaw-shortcuts
OpenClaw plugin providing a config-driven /shortcuts command with safe placeholder defaults. Use when you want a /shortcuts command that lists your local commands and project shortcuts without leaking private info to public repos.
Packaged view
This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.
Install command
npx @skill-hub/cli install openclaw-skills-openclaw-shortcuts
Repository
Skill path: skills/homeofe/openclaw-shortcuts
OpenClaw plugin providing a config-driven /shortcuts command with safe placeholder defaults. Use when you want a /shortcuts command that lists your local commands and project shortcuts without leaking private info to public repos.
Open repositoryBest for
Primary workflow: Ship Full Stack.
Technical facets: Full Stack, Integration.
Target audience: everyone.
License: Unknown.
Original source
Catalog source: SkillHub Club.
Repository owner: openclaw.
This is still a mirrored public skill entry. Review the repository before installing into production workflows.
What it helps with
- Install openclaw-shortcuts into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
- Review https://github.com/openclaw/skills before adding openclaw-shortcuts to shared team environments
- Use openclaw-shortcuts for development workflows
Works across
Favorites: 0.
Sub-skills: 0.
Aggregator: No.
Original source / Raw SKILL.md
---
name: openclaw-shortcuts
description: OpenClaw plugin providing a config-driven /shortcuts command with safe placeholder defaults. Use when you want a /shortcuts command that lists your local commands and project shortcuts without leaking private info to public repos.
---
# openclaw-shortcuts
Registers `/shortcuts` in your OpenClaw agent.
## What it does
- `/shortcuts` β prints configured sections (projects, commands, model switching, etc.)
- Ships with generic placeholder defaults β real shortcuts stay in local config
- `requireAuth: false` β gateway `commands.allowFrom` handles authorization
## Configure
Inject your shortcuts via `openclaw.json`:
```json5
{
"plugins": {
"entries": {
"openclaw-shortcuts": {
"enabled": true,
"config": {
"includeTips": false,
"sections": [
{
"title": "π Projects",
"lines": ["/myproject - My project shortcut"]
}
]
}
}
}
}
}
```
## OPSEC
Never commit personal shortcuts to the repo. Local config only.
**Version:** 0.1.0
---
## Skill Companion Files
> Additional files collected from the skill directory layout.
### README.md
```markdown
# openclaw-shortcuts
> OpenClaw plugin providing a config-driven `/shortcuts` command with safe placeholder defaults.
**Current version:** `0.1.0`
> **Replaces:** `openclaw-help` (deprecated β name was misleading; plugin never registered `/help` but `/shortcuts`)
---
## What it does
Registers `/shortcuts` in your OpenClaw agent.
Prints:
- Generic placeholder sections by default
- Custom sections injected via local `openclaw.json` config
**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.
---
## Install
```bash
clawhub install openclaw-shortcuts
```
Or local development:
```bash
openclaw plugins install -l ~/.openclaw/workspace/skills/openclaw-shortcuts
openclaw gateway restart
```
---
## Configure
In `~/.openclaw/openclaw.json` β `plugins.entries.openclaw-shortcuts.config`:
```json5
{
"enabled": true,
"includeTips": false,
"sections": [
{
"title": "π Projects",
"lines": [
"/<project> - Your project shortcut"
]
},
{
"title": "π Tools",
"lines": [
"/<command> - Your custom command"
]
}
]
}
```
---
## OPSEC rule
- Never put personal commands, phone numbers, group IDs, tokens, or internal workflows into this repo
- Keep all real shortcuts in local config only
---
## Changelog
### v0.1.0
- Initial release (merged from deprecated `openclaw-help`)
- Registers `/shortcuts` with `requireAuth: false`
- Config-driven sections via `openclaw.json`
- Safe placeholder defaults
---
## License
MIT
```
### _meta.json
```json
{
"owner": "homeofe",
"slug": "openclaw-shortcuts",
"displayName": "OpenClaw Shortcuts",
"latest": {
"version": "0.1.0",
"publishedAt": 1772980141472,
"commit": "https://github.com/openclaw/skills/commit/0c39a28551d1d157ca4e586bcefd736723d75124"
},
"history": [
{
"version": "0.2.6",
"publishedAt": 1772280801316,
"commit": "https://github.com/openclaw/skills/commit/1163295762e71aa93b05d9a2890d378b0de03784"
},
{
"version": "0.2.5",
"publishedAt": 1771953482567,
"commit": "https://github.com/openclaw/skills/commit/ebf262e6dbe75561e95c1f1c8298707db49d22de"
}
]
}
```