Initial commit: pokebuddy_cli

This commit is contained in:
Felipe Domingues 2026-04-25 23:14:38 -03:00
commit d58df9bd10
47 changed files with 1684 additions and 0 deletions

View file

@ -0,0 +1,11 @@
// Future plugin API example. This file is illustrative only.
export default {
name: 'commit-cheerleader',
version: '0.1.0',
onEvent(event, context) {
if (event.type === 'git:commit') {
return context.say('Your companion approves this commit. Probably.');
}
}
};