Umfangreiche Erweiterung der Skill-Bibliothek: Neue Skills für Humanisierung (Englisch/PT-BR), Design-Validierung, AI-SEO und Coolify-Deployment inkl. Regelwerke, Presets, Pattern-Referenzen, Testfälle und Automatisierungsskripte. Zusätzliche Skills für Revenue-Centric Design, Pier Cloud, OKF, Lebenslauf- und LinkedIn-Optimierung sowie zahlreiche Referenzdateien, Checklisten und YAML/JSON/Markdown-Templates. Einführung einer vollständigen OpenWiki-Dokumentation mit Architektur-, Domain- und Workflow-Beschreibungen, zentralem Index und automatisierten Updates. Modularer Aufbau, restriktive Lizenzen und umfassende Qualitäts- und Evaluationsmechanismen für alle neuen Inhalte.
33 lines
1.0 KiB
Markdown
33 lines
1.0 KiB
Markdown
---
|
|
name: agent-ready-web-bot-auth
|
|
description: >
|
|
Sub-skill de agent-ready-cloudflare: Implement Web Bot Auth
|
|
---
|
|
# Implement Web Bot Auth
|
|
|
|
Use Web Bot Auth so your site can identify itself when it sends bot or agent requests, per the
|
|
[IETF WebBotAuth WG](https://datatracker.ietf.org/wg/webbotauth/about/).
|
|
|
|
## Requirements
|
|
|
|
- Publish a JWKS (JSON Web Key Set) at `/.well-known/http-message-signatures-directory`
|
|
- The JWKS must contain at least one public key for signature verification
|
|
- Sign requests sent by your bot or agent so receiving sites can verify them
|
|
- Include `Signature-Agent` and `Signature-Input` headers on those signed requests
|
|
|
|
## Cloudflare
|
|
|
|
[Web Bot Auth on Cloudflare](https://developers.cloudflare.com/bots/reference/bot-verification/web-bot-auth/)
|
|
provides built-in support for verifying bot request signatures.
|
|
|
|
## Validate
|
|
|
|
```
|
|
POST https://isitagentready.com/api/scan
|
|
Content-Type: application/json
|
|
|
|
{"url": "https://YOUR-SITE.com"}
|
|
```
|
|
|
|
Check that `checks.botAccessControl.webBotAuth.status` is `"pass"`.
|