ansible-automation-eng…
Ansible automation: playbooks, roles, collections, Molecule testing, Vault security.
This is the full PostToolUse hook that fires on Edit/Write of `.php` files. It emits format/analyse reminders and scans for debug output, raw SQL interpolation, and CSRF/session bypass patterns.
$ npx -y skills add notque/vexjoy-agent --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
This is the full PostToolUse hook that fires on Edit/Write of `.php` files. It emits format/analyse reminders and scans for debug output, raw SQL interpolation, and CSRF/session bypass patterns.
This is the full PostToolUse hook that fires on Edit/Write of `.php` files. It emits format/analyse reminders and scans for debug output, raw SQL interpolation, and CSRF/session bypass patterns.
hooks:
PostToolUse:
- type: command
command: |
python3 -c "
import sys, json, subprocess, os
try:
data = json.loads(sys.stdin.read())
tool = data.get('tool', '')
inp = data.get('input', {})
if tool in ('Edit', 'Write'):
filepath = inp.get('file_path', '')
if not filepath.endswith('.php'):
sys.exit(0)
# Format reminder
print('[php-agent] Format: ./vendor/bin/pint ' + filepath + ' OR php-cs-fixer fix ' + filepath)
# Static analysis reminder
print('[php-agent] Analyse: ./vendor/bin/phpstan analyse ' + filepath + ' OR ./vendor/bin/psalm --show-info=true')
# Debug output detection
try:
result = subprocess.run(['grep', '-nE', r'var_dump\s*\(|dd\s*\(|dump\s*\(|die\s*\(', filepath],
capture_output=True, text=True, timeout=5)
if result.stdout.strip():
print('[php-agent] WARNING: debug output found in ' + filepath + ':')
for line in result.stdout.strip().splitlines():
print(' ' + line)
print('[php-agent] Remove var_dump/dd/dump/die() before committing.')
except Exception:
pass
# Raw SQL interpolation detection
try:
result = subprocess.run(
['grep', '-nE', r'(query|exec|prepare)\s*\(\s*[\"' + \"'\" + r']\s*(SELECT|INSERT|UPDATE|DELETE).*\$', filepath],
capture_output=True, text=True, timeout=5)
if result.stdout.strip():
print('[php-agent] SECURITY WARNING: possible raw SQL interpolation in ' + filepath)
print('[php-agent] Use prepared statements (PDO), Doctrine QueryBuilder, or Eloquent query builder instead.')
except Exception:
pass
# Disabled CSRF/session protection detection
try:
result = subprocess.run(
['grep', '-nE', r'VerifyCsrfToken|withoutMiddleware.*csrf|csrf.*except|session_regenerate_id.*false', filepath],
capture_output=True, text=True, timeout=5)
if result.stdout.strip():
print('[php-agent] SECURITY WARNING: possible CSRF/session protection bypass in ' + filepath)
print('[php-agent] Ensure CSRF exclusions and session_regenerate_id(true) are intentional and documented.')
except Exception:
pass
except Exception:
pass
"
timeout: 5000| Framework | Key Idioms | |-----------|-----------| | Laravel | Eloquent, form requests for validation, policies for authorization, Queues for deferred work, Artisan commands for CLI | | Symfony | Dependency injection container, EventDispatcher, Security component, Messenger for async, Twig templates | | Plain PHP | PSR-11 containers (PHP-DI, Pimple), PSR-7/15 middleware stacks | | SAP Commerce Cloud (Hybris) | Hybris service layer conventions, Spring-like DI, impex imports, backoffice customization via extension |
| Tool | Preferred Configuration | |------|------------------------| | PHPStan | Level 8+ (`phpstan.neon`), Larastan for Laravel projects | | Psalm | Strict mode (`psalm.xml`), errorLevel 1 | | PHP-CS-Fixer | PSR-12 rule set, or Laravel Pint for Laravel projects |
-
Essays and writing behind this toolkit live at vexjoy.com. VexJoy Agent connects plain-English requests to specialist agents, skills, and workflows. /do selects the knowledge and tools needed for your task.
Repo: notque/vexjoy-agent
Ansible automation: playbooks, roles, collections, Molecule testing, Vault security.
**Scope**: Module selection patterns, builtin vs command/shell decisions, collection modules, and version-specific module changes **Version range**:…
**Scope**: Molecule test scenarios, ansible-lint rules, idempotency validation, and check-mode patterns **Version range**: Molecule 6.0+ / ansible-lint 6.0+ /…
Universal rules injected by /do at dispatch. Each agent's .md file supplies domain rules.
**Scope**: Failure modes in agent output style — over-reporting, self-congratulation, verbose narration, and hedging. Covers what to detect and how to fix…
Zero-dependency combat visual upgrades: CSS particle replacement, Framer Motion combat juice, CSS 3D card transforms.