Commands
A Probot extension that adds slash commands to GitHub
Install / Use
/learn @probot/CommandsREADME
Probot: Commands
A Probot extension that adds slash commands to GitHub.
For example, from a comment box someone could type:

A Probot app could then use this extension to listen for the remind slash command.
Installation
$ npm install --save probot-commands
Usage
const commands = require('probot-commands')
module.exports = robot => {
// Type `/label foo, bar` in a comment box for an Issue or Pull Request
commands(robot, 'label', (context, command) => {
const labels = command.arguments.split(/, */);
return context.github.issues.addLabels(context.issue({labels}));
});
}
Related Skills
node-connect
334.9kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
82.3kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
334.9kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
commit-push-pr
82.3kCommit, push, and open a PR
