Stats
Actions
Tags
From moodle-dev-pro
Runs a bash script on session start and intercepts every Bash command execution. Designed for Interactive Brokers (IBKR) trading automation via shell commands.
2 events · 2 hooks
Safety signals detected in this hook configuration
Where this hook configuration is defined
Defined in hooks/hooks.json
Event handlers and matchers — expand Raw Configuration for the full JSON
Bash(git commit:*)#!/bin/bash
echo '🔍 Running pre-commit checks...'
if [ -f 'version.php' ]; then
if command -v vendor/bin/phpcs &> /dev/null; then
echo ' → Running PSR-12/Moodle code standards check...'
vendor/bin/phpcs --standard=moodle . --extensions=php || {
echo '❌ Code standards violations detected!'
exit 2
}
echo ' ✓ Code standards: PASSED'
fi
fi
echo '✅ Pre-commit checks completed'
exit 0
60000ms#!/bin/bash
echo '🚀 Moodle Dev Pro Plugin Active'
echo ''
echo 'Available Commands:'
echo ' /m:implement - Feature implementation with PSR-12 compliance'
echo ' /m:troubleshoot - Issue diagnosis with GitHub integration'
echo ' /m:git - Git workflow with Moodle conventions'
echo ' /m:task - Complex task management'
echo ' /m:test - PHPUnit, Behat, code standards testing'
echo ''
exit 0
5000msnpx claudepluginhub astoeffer/moodle-plugin-marketplace --plugin moodle-dev-pro