Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ See [AGENTS.md](./AGENTS.md) for guidelines on creating and submitting skills.

## Skills

| Skill | Description |
|-------|-------------|
| [aws-bedrock-evals](./skills/aws-bedrock-evals/) | Build LLM-as-judge evaluation pipelines with Amazon Bedrock Evaluation Jobs |
| [react-effect-guide](./skills/react-effect-guide/) | Identify unnecessary useEffect usage in React code and recommend the correct alternative pattern |
| [aws-well-architected-review](./skills/aws-well-architected-review/) | Enforces AWS Well-Architected best practices during infrastructure generation and reviews existing infra code for anti-patterns with actionable fixes |
| [agent-web-compatibility](./agent-web-compatibility/) | Audits and redesigns websites for dual consumption optimised |
| [figma-design-audit](./skills/figma-design-audit/) | Audits a Figma design against its design system. Checks color variables, font styles, numeric variables (padding/corner radius/gap), and unnecessary nesting. Posts inline comments on the Figma canvas for every violation found. |
| Skill | Description |
| -------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [aws-bedrock-evals](./skills/aws-bedrock-evals/) | Build LLM-as-judge evaluation pipelines with Amazon Bedrock Evaluation Jobs |
| [react-effect-guide](./skills/react-effect-guide/) | Identify unnecessary useEffect usage in React code and recommend the correct alternative pattern |
| [aws-well-architected-review](./skills/aws-well-architected-review/) | Enforces AWS Well-Architected best practices during infrastructure generation and reviews existing infra code for anti-patterns with actionable fixes |
| [agent-web-compatibility](./skills/agent-web-compatibility/) | Audits websites for AI consumption — agentic task completion, AEO, and GEO. AI-optimized, human-compatible. |
| [figma-design-audit](./skills/figma-design-audit/) | Audits a Figma design against its design system. Checks color variables, font styles, numeric variables (padding/corner radius/gap), and unnecessary nesting. Posts inline comments on the Figma canvas for every violation found. |

## License

Expand Down
32 changes: 23 additions & 9 deletions skills/agent-web-compatibility/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ This skill is used by **practitioners building or redesigning websites for busin
| Audience | Use Case |
| ------------------------ | ------------------------------------------------------- |
| Web agencies | Differentiate packages with "agent-ready" websites |
| No-code platform teams | Bake dual consumption into templates at scale |
| No-code platform teams | Bake AI compatibility into templates at scale |
| Booking software vendors | Make widgets agent-completable by default |
| GEO / SEO consultants | Extend beyond citation into transactional AI visibility |

Expand All @@ -43,13 +43,7 @@ This skill is used by **practitioners building or redesigning websites for busin
## Installation

```bash
npx skills add antstackio/skills
```

Or install directly:

```bash
npx skills add <your-github-username>/skills
npx skills add antstackio/skills --skill agent-web-compatibility
```

---
Expand Down Expand Up @@ -125,13 +119,33 @@ Every audit produces five deliverables:

Detailed implementation specs with ready-to-paste JSON-LD examples are included for:

**Transactional — agentic booking**

| Vertical | Schema Type | Key Fields |
| -------------------- | ---------------------------- | ----------------------------------------------------------- |
| Healthcare / Clinics | `MedicalClinic`, `Physician` | `medicalSpecialty`, `hasCredential`, `availableService` |
| Restaurants / Cafes | `Restaurant` | `hasMenuItem`, `servesCuisine`, `priceRange` |
| Salons / Spas | `BeautySalon`, `DaySpa` | `makesOffer` with duration, `employee` specialisations |
| Local E-commerce | `OnlineStore`, `Product` | `deliveryLeadTime`, `areaServed`, `hasMerchantReturnPolicy` |

**Informational — AEO + GEO**

| Vertical | Schema Type | Key Fields |
| ------------------------------ | ---------------------------------------- | ------------------------------------------------------- |
| Blog / Editorial | `BlogPosting`, `Article` | `author` with `hasCredential`, `dateModified` |
| Company Marketing | `Organization`, `WebSite` | `hasOfferCatalog`, `areaServed`, `sameAs` |
| Personal Portfolio | `Person`, `ProfilePage` | `knowsAbout`, `hasOfferCatalog`, `sameAs` |
| Documentation / Knowledge Base | `TechArticle`, `HowTo` | `HowToStep`, `proficiencyLevel`, `dateModified` |

**Navigational — discovery + contact**

| Vertical | Schema Type | Key Fields |
| --------------------- | ------------------------------------------- | ------------------------------------------------------- |
| Agency / Consultancy | `ProfessionalService` | `serviceType`, `areaServed`, `employee` with credential |
| SaaS / Web App | `SoftwareApplication` | `featureList`, `applicationCategory`, `offers` |
| Education / Courses | `Course`, `EducationalOrganization` | `instructor`, `hasCourseInstance`, `educationalCredentialAwarded` |
| Travel / Hospitality | `LodgingBusiness`, `TravelAgency` | `checkinTime`, `amenityFeature`, `petsAllowed` |

---

## Why Not Just Rely on Zomato / Practo / Google?
Expand Down Expand Up @@ -166,7 +180,7 @@ agent-web-compatibility/
### 1. Install

```bash
npx skills add antstackio/skills
npx skills add antstackio/skills --skill agent-web-compatibility
```

### 2. Trigger with a test prompt
Expand Down
Loading
Loading