From shopware-storefront
Captcha im Shopware-6-Storefront: eingebaute Captchas (Honeypot, basicCaptcha, googleReCaptcha) nutzen/konfigurieren und ein eigenes Captcha via AbstractCaptcha registrieren. Trigger: "Captcha", "AbstractCaptcha", "Honeypot", "reCaptcha shopware", "eigenes Captcha", "Formularschutz storefront". Shopware 6.7.
How this skill is triggered — by the user, by Claude, or both
Slash command
/shopware-storefront:sw-captchaThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Formulare (Kontakt, Registrierung) werden über Captchas geschützt (konfigurierbar in den Basic-Information-Settings).
Formulare (Kontakt, Registrierung) werden über Captchas geschützt (konfigurierbar in den Basic-Information-Settings).
Eigenes Captcha über AbstractCaptcha:
class FfCaptcha extends AbstractCaptcha
{
public function supports(Request $request, array $captchaConfig): bool { return ($captchaConfig['active'] ?? false); }
public function isValid(Request $request, array $captchaConfig): bool { /* Validierung */ return true; }
public function getName(): string { return 'ffCaptcha'; }
}
Registrierung via shopware.storefront.captcha-Tag; Frontend-Markup im Form-Template ergänzen. Für die meisten Fälle
reichen die eingebauten Captchas (Honeypot serverseitig, reCaptcha v2/v3) — eigenes nur bei Sonderanforderung.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub zone1987/claude-a-dev-team --plugin shopware-storefront