social-proof-widgets

social-proof-widgets is a skill for Claude Code, Codex from S3YED/appie-kit. It costs 54 tokens per session (885 once invoked), scanned A, original, MIT.

A website component that retrieves customer reviews from services such as Google Places and displays them in responsive sliders or carousels.

In plain words
What is it for?
Use it to add Google, Trustpilot, or Facebook reviews and testimonial sections to Next.js or React landing pages.
Why use it?
It removes the need to manually copy testimonials into a landing page, while keeping the displayed review data connected to a review service.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to add Google, Trustpilot, or Facebook reviews and testimonial sections to Next.js or React landing pages.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s3yed/appie-kit/social-proof-widgets
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add S3YED/appie-kit --skill social-proof-widgets
Clone the repo
git clone --depth 1 https://github.com/S3YED/appie-kit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for social-proof-widgets

README.md
[![agentmods](https://agentmods.dev/badge/skills/s3yed/appie-kit/social-proof-widgets/github.svg)](https://agentmods.dev/skills/s3yed/appie-kit/social-proof-widgets)
Your own site
<a href="https://agentmods.dev/skills/s3yed/appie-kit/social-proof-widgets"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/social-proof-widgets/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for social-proof-widgets

Your own site · 80×15
<a href="https://agentmods.dev/skills/s3yed/appie-kit/social-proof-widgets"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/social-proof-widgets.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 885 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00054 $0.00885
Opus 5 $0.00027 $0.00443
Sonnet 5 $0.00011 $0.00177
Haiku 4.5 $0.00005 $0.00089

Measured 9d ago against content hash 2d270a6e5b89, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

social-proof-widgets scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://maps.googleapis.com/maps/api/place/findplacefromtext/json?input=<business name> <city>&inputtype=textquery&fields=place_id,name,rating&key=<API_KEY>"
skills/content/social-proof-widgets/SKILL.md · 69 lines

How it starts

The opening of the file, as written. The whole thing — 69 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Social Proof Widgets

Pull live third-party reviews and embed them as branded, responsive carousels on landing pages.

Trigger Conditions

  • User asks to add Google reviews, Trustpilot reviews, Facebook reviews to a website
  • User wants a "What Clients Say" or testimonials section with live data
  • User wants to integrate review platform data into a Next.js/React landing page

Workflow

1. Fetch Reviews from Google Places API

# Step 1: Find the Place ID
curl -s "https://maps.googleapis.com/maps/api/place/findplacefromtext/json?input=<business name> <city>&inputtype=textquery&fields=place_id,name,rating&key=<API_KEY>"

# Step 2: Pull reviews (max 5 returned by API)
curl -s "https://maps.googleapis.com/maps/api/place/details/json?place_id=<ID>&fields=name,rating,user_ratings_total,reviews&key=<API_KEY>&language=en&reviews_sort=newest"

2. Maximize Review Count

The Google Places API hard-limits to 5 reviews per call. Multi-language calls return the same reviews translated — do not count them as unique. The only way to get more is:

  • Scraping via the Google Maps web UI (often blocked by bot detection)
  • Third-party services like Outscraper or SerpApi
  • Accept the 5-review limit and supplement with the total count badge ("59 Google reviews")

For most landing pages, 4-5 quality reviews in a slider + the total count badge is sufficient social proof.

3. Build the Slider Component

See references/responsive-slider-pattern.md for the full component template.

Key architectural decisions:

  • Client component ('use client') for motion/interactivity
  • Framer Motion for card transitions (initial/animate/exit)
  • Auto-advance via useEffect + setInterval (pause on hover via state)
  • Manual prev/next buttons + dot indicators
  • Google brand badge: Inline SVG G-logo + star row + count pill
  • Profile pictures from Google photos array (use unoptimized to avoid Next.js image limits)
  • External link to full Google Maps review page via CID

4. Mobile Optimization

Read the full file on GitHub · 69 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 69 lines · 54 tokens per session scan A 2d270a6e5b89

Subscribe to this mod's changes

social-proof-widgets is a skill published in the GitHub repository S3YED/appie-kit (9 stars, last pushed 17d ago), licensed MIT. It adds 54 tokens to every session and 885 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

frontend-code-review

Trigger when the user requests a review of frontend files (e.g., .tsx, .ts, .js). Support both pending-change reviews and focused file reviews while applying the checklist rules.

sangrokjung/claude-forge · 42 tokens

animation-patterns

Framer Motion patterns, page transitions, skeleton loading, scroll-linked animations, and gesture-based interactions for React.

vibeeval/vibecosystem · 26 tokens

tanstack-start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 +…

jezweb/claude-skills · 115 tokens

tailwind-theme-builder

Set up Tailwind v4 + shadcn/ui themed UI with dark mode. Install deps, configure CSS variables via @theme inline, wire dark mode toggle, verify. Use whenever the user mentions Tailwind v4, setting up Tailwind theming, shadcn/ui colours, dark mode, or troubleshooting colours not working, tw-animate-css errors, @theme…

jezweb/claude-skills · 98 tokens

react-native

React Native and Expo patterns for building performant mobile apps. Covers list performance, animations with Reanimated, navigation, UI patterns, state management, platform-specific code, and Expo workflows. Use when building or reviewing React Native code. Triggers: 'react native', 'expo', 'mobile app', 'react native…

jezweb/claude-skills · 91 tokens

react-patterns

React 19 performance patterns and composition architecture for Vite + Cloudflare projects. 50+ rules ranked by impact — eliminating waterfalls, bundle optimisation, re-render prevention, composition over boolean props, server/client boundaries, and React 19 APIs. Use when writing, reviewing, or refactoring React…

jezweb/claude-skills · 110 tokens