Technical Documentation

Hands-on guides for building with Claude: skills, plugins, MCP connectors, and deployment.

Schema.org JSON-LD Generator for Blog Posts: Build Guide

2026-08-04

Build a Schema.org JSON-LD generator that outputs valid Article structured data for every blog post automatically, so search engines can show rich results.

Dynamic OG Image Generation with Satori and Sharp: Guide

2026-08-03

Generate dynamic Open Graph images at build time or on demand using Satori and Sharp. Covers JSX layout, font loading, PNG conversion, and caching strategy.

llms.txt Optimization for AI Search Visibility: Setup Guide

2026-08-02

Learn how to structure, generate, and automate an llms.txt file so AI search engines and LLM crawlers can find, parse, and cite your content accurately.

Automated SEO Audits with Claude Skills: Full Guide

2026-08-01

Automate SEO audits with Claude Skills. Catch broken links, missing meta tags, and slow pages before they hurt rankings. Set up your first audit skill today.

Security Headers Configuration Guide: CSP, HSTS, X-Frame

2026-07-31

Configure CSP, HSTS, and X-Frame-Options the right way. This security headers guide covers syntax, testing, and deployment on Vercel, Netlify, and Cloudflare.

DNS Management for Multi-Site Portfolios: Setup Guide

2026-07-30

Manage DNS for a multi-site portfolio without breaking uptime. Covers nameservers, CNAME records, TTLs, and Cloudflare setup. Read the full guide now.

CI/CD Pipelines for Claude Code Projects: A Setup Guide

2026-07-29

Learn how to build CI/CD pipelines for Claude Code projects with GitHub Actions, automated tests, and multi-environment deploys. Start shipping faster today.

Netlify Build Hooks: Automate Deploys with Webhooks

2026-07-28

Use Netlify build hooks to trigger deploys from CMS updates, cron jobs and CI. Covers hook creation, payloads, branch targeting, security and avoiding build storms.

Vercel Environment Variables: Scoping and Secrets Guide

2026-07-27

Master Vercel environment variables: Production, Preview and Development scoping, NEXT_PUBLIC exposure rules, build vs runtime access, secret hygiene and rotation.

Deploy Astro to Cloudflare Pages: Static and SSR Setup

2026-07-26

Deploy an Astro site to Cloudflare Pages. Covers static vs SSR adapters, build config, environment variables, preview branches, redirects and headers, and rollbacks.

MCP OAuth Setup Guide: Auth Flows for Remote Servers

2026-07-25

How OAuth works for MCP servers. Authorization code flow, PKCE, token storage, refresh handling, scope design and the errors that break remote connectors.

Connect Google Calendar to Claude: Setup and Scopes

2026-07-24

Connect Google Calendar to Claude step by step. OAuth consent screen, least-privilege scopes, calendar sharing, timezone handling and fixing common auth errors.

Connect GitHub to Claude: Full Setup and Scoping Guide

2026-07-23

Connect GitHub to Claude via MCP. Covers PAT vs GitHub App auth, least-privilege scopes, repo access, common permission errors and safe token rotation practice.

MCP Connector Troubleshooting: Fix Failed Connections

2026-07-22

Diagnose and fix broken MCP connectors in Claude. Covers handshake failures, auth errors, stdio vs HTTP transport issues, tool discovery problems and log reading.

Debugging Claude Skills That Refuse to Trigger

2026-07-21

A systematic debugging guide for Claude skills that never fire: YAML checks, description diagnosis, overlap conflicts, install paths, and fix verification.

Organising a Claude Skill Library That Scales

2026-07-20

How to organise a growing Claude skill library: naming conventions, folder structure, avoiding trigger overlap, pruning, and grouping skills into plugins.

Claude Skill Security: Secrets, Paths, Permissions

2026-07-19

Security practices for Claude skills: keeping secrets out of skill folders, safe path handling, permission scoping, and auditing third-party skills.

Convert a Reusable Prompt Into a Claude Skill

2026-07-18

Step-by-step guide to converting a reusable prompt into a Claude skill: extract the workflow, write triggers, add structure, and test the converted skill.

Claude Skill Front-Matter: Full Field Reference

2026-07-17

Reference guide to Claude skill SKILL.md front-matter: name, description, and optional metadata fields, with YAML examples, rules, and common errors.

Bundling Scripts and Assets Inside a Claude Skill

2026-07-16

How to bundle scripts, templates, and reference files inside a Claude skill folder, with folder layouts, path conventions, and examples that actually run.

Claude Skill Versioning: Update Without Breaking

2026-07-15

How to version Claude skills safely: semantic versioning for SKILL.md, changelogs, deprecation, rollback, and updating shared skills without breaking users.

Publishing and Sharing Claude Skills

2026-07-14

Learn how to package, publish, and share Claude skills, covering .skill zip files, Cowork sharing, plugin marketplaces, versioning, and update workflows.

Skill Testing and Eval: Measure Before You Ship

2026-07-13

Learn how to test and evaluate a Claude skill before shipping it, covering cold-session trigger tests, eval sets, variance checks, and regression testing.

Building a Skill with MCP Tool Access

2026-07-12

Learn how to build a Claude skill that calls MCP tools: listing connectors, writing safe tool-call sequences, and guiding Claude through each step reliably.

Using Web Search Inside a Claude Skill

2026-07-11

Learn how to add web search inside a Claude skill, when to trigger it, how to cite sources, and how to avoid stale or hallucinated answers in your output.

Skill Chaining: Loading Multiple Skills in One Task

2026-07-10

Learn how Claude loads multiple skills in one task, why chaining works, and how to design companion skills that combine without blowing your context budget.

Skill Triggers: Making Claude Load the Right Skill

2026-07-09

Claude only loads a skill when its description matches your task. Learn how skill triggers work and how to write descriptions that fire reliably every time.

How to Write a Claude Skill from Scratch

2026-07-08

Learn how to write a Claude skill from scratch, covering SKILL.md frontmatter, folder structure, references, testing, and packaging as a .skill file for Cowork.

AI Text Summariser Tool Spotlight: How to Use It

2026-07-07

A practical guide to using AI text summariser tools. What they do, how to use them step-by-step, the best use cases, and free alternatives to try today.

IndexNow and Sitemap Automation for Faster Indexing

2026-07-06

Automate IndexNow URL submissions and sitemap.xml generation for faster search engine indexing. Covers Astro, manual builds, CI/CD, and Search Console verification.

Supabase Auth with Google OAuth: Step-by-Step

2026-07-05

Set up Google OAuth sign-in with Supabase Auth. Covers Google Cloud Console config, redirect URLs, signInWithOAuth, and session handling in React.

Deploy a React App to Vercel: Complete Guide

2026-07-04

How to deploy a React app to Vercel in 2026. Covers Vite and CRA, env vars, custom domains, preview deployments, and the Vercel CLI. Step-by-step.

Deploy a Static Site to Cloudflare Pages

2026-07-03

Step-by-step guide to deploying a static website to Cloudflare Pages. Covers GitHub integration, build settings, custom domains, and the Wrangler CLI.

Schedule Recurring Claude Tasks: Complete Guide

2026-06-28

Set up automated recurring tasks in Claude that run on a schedule without you present. This guide covers the schedule skill, cron patterns, and real-world examples.

Build an MCP Server with Node SDK: TypeScript Guide

2026-06-27

Build a TypeScript MCP server using the official Anthropic Node SDK. This guide covers setup, tool definitions, resources, and connecting to Claude with working examples.

Build an MCP Server with Python FastMCP: Step-by-Step

2026-06-26

FastMCP makes building Python MCP servers fast. This guide covers installation, writing your first tool, connecting to Claude, and deploying. Complete with code examples.

Set Up Desktop Commander for Claude: Full Guide

2026-06-25

Desktop Commander gives Claude terminal access, file operations, and process management on your Mac. Install and configure it in under 10 minutes with this guide.

Set Up MemPalace Memory in Claude: Complete Guide

2026-06-24

Learn how to install, configure, and use MemPalace with Claude. Persistent memory across sessions using a knowledge graph. Step-by-step setup with examples.

Build a Website Checklist Skill for Claude in 2026

2026-06-16

Build a website checklist skill for Claude: UI/UX gates, responsive design, auth flows and conversion checks. Browse free AI tools at yanni.uk/ai-tools/.

Create an SEO and AI Search Checklist Skill for AEO

2026-06-15

Create an SEO checklist skill for Claude covering meta tags, schema, OG images and AEO files like llms.txt. Explore 1,000+ free AI tools at yanni.uk now.

Build a Token Budget Skill to Cut Claude Costs in 2026

2026-06-14

Cut Claude token costs with a budget skill: compress output, truncate tool results and load skills on demand. Try 1,000+ free AI tools at yanni.uk today.

Create a File Organization Skill for Claude Desktop

2026-06-13

Create a file organization skill for Claude Desktop: timestamp naming, folder routing and versioning rules. See 1,000+ free AI tools at yanni.uk/ai-tools/.

Build an Anti-Hallucination Skill for Claude in 2026

2026-06-12

Build an anti hallucination skill for Claude: verify before stating, cite sources, flag unverified claims. Explore 1,000+ free AI tools at yanni.uk today.

Create a Cowork Navigator Skill for Claude Sessions

2026-06-11

Create a Cowork navigator skill that bootstraps every Claude session: load memory, check prior work, auto-load skills. Free AI tools at yanni.uk/ai-tools/.

Build a 21-Agent GTM Pipeline with Claude Skills in 2026

2026-06-10

Build a Claude GTM pipeline with 21 sequential skills: market intel, positioning, SEO, content and analytics. Explore 1,000+ free AI tools at yanni.uk.

Build a 21-Agent Product Pipeline with Claude Skills

2026-06-09

Step-by-step guide to a 21-agent Claude pipeline: spec, architecture, build, QA, security and launch skills with gates. Explore free AI tools at yanni.uk.

How to Build a Claude Plugin from Scratch (2026 Guide)

2026-06-08

Learn how to build a Claude plugin from scratch: plugin.json manifest, skills folder, packaging, and marketplace install. Explore free AI tools at yanni.uk.