<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: William Wang</title>
    <description>The latest articles on DEV Community by William Wang (@williamwangai).</description>
    <link>https://dev.to/williamwangai</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3818480%2F56201783-a611-4ea3-97cc-93bc3825c740.png</url>
      <title>DEV Community: William Wang</title>
      <link>https://dev.to/williamwangai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/williamwangai"/>
    <language>en</language>
    <item>
      <title>Claude Code Skills vs MCP Servers — What to Use, How to Install, and the Best Ones in 2026</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Fri, 10 Apr 2026 09:05:32 +0000</pubDate>
      <link>https://dev.to/williamwangai/claude-code-skills-vs-mcp-servers-what-to-use-how-to-install-and-the-best-ones-in-2026-548k</link>
      <guid>https://dev.to/williamwangai/claude-code-skills-vs-mcp-servers-what-to-use-how-to-install-and-the-best-ones-in-2026-548k</guid>
      <description>&lt;p&gt;Claude Code has two main extension systems: &lt;strong&gt;skills&lt;/strong&gt; (Markdown files) and &lt;strong&gt;MCP servers&lt;/strong&gt; (protocol-based tools). Both make Claude Code more powerful, but they work differently and are best for different use cases.&lt;/p&gt;

&lt;p&gt;This guide covers what each one does, when to use which, how to install them, and the best ones I've found after months of daily use.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are Claude Code Skills?
&lt;/h2&gt;

&lt;p&gt;Skills are Markdown files (&lt;code&gt;.md&lt;/code&gt;) that you drop into &lt;code&gt;.claude/commands/&lt;/code&gt; in your project. They teach Claude Code how to perform specific tasks — no server, no API, no dependencies.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install a skill from TokRepo&lt;/span&gt;
npx tokrepo &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;skill-name&amp;gt;
&lt;span class="c"&gt;# Or manually: just copy a .md file into .claude/commands/&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When you type &lt;code&gt;/skillname&lt;/code&gt; in Claude Code, it loads the instructions from that file and follows them.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; code review workflows, commit conventions, testing patterns, project-specific rules.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are MCP Servers?
&lt;/h2&gt;

&lt;p&gt;MCP (Model Context Protocol) servers are standalone programs that expose tools, resources, and prompts to Claude Code over a standardized protocol. They can connect to databases, APIs, browsers, file systems — anything.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Add an MCP server&lt;/span&gt;
claude mcp add &amp;lt;name&amp;gt; &lt;span class="nt"&gt;--&lt;/span&gt; npx &amp;lt;package&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; external integrations (databases, APIs, browsers), tools that need runtime state.&lt;/p&gt;

&lt;h2&gt;
  
  
  Skills vs MCP Servers — Quick Comparison
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Skills&lt;/th&gt;
&lt;th&gt;MCP Servers&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Format&lt;/td&gt;
&lt;td&gt;Markdown file&lt;/td&gt;
&lt;td&gt;Standalone server process&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Install&lt;/td&gt;
&lt;td&gt;Copy &lt;code&gt;.md&lt;/code&gt; file&lt;/td&gt;
&lt;td&gt;
&lt;code&gt;claude mcp add&lt;/code&gt; command&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Dependencies&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;td&gt;Node.js/Python runtime&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;External access&lt;/td&gt;
&lt;td&gt;No (text only)&lt;/td&gt;
&lt;td&gt;Yes (APIs, DBs, browsers)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Portability&lt;/td&gt;
&lt;td&gt;Copy-paste&lt;/td&gt;
&lt;td&gt;Config per machine&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Overhead&lt;/td&gt;
&lt;td&gt;Zero&lt;/td&gt;
&lt;td&gt;Process running in background&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Best for&lt;/td&gt;
&lt;td&gt;Workflows, rules&lt;/td&gt;
&lt;td&gt;Integrations, tools&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  The 10 Best Claude Code Skills (Tested)
&lt;/h2&gt;

&lt;p&gt;After testing 30+ skills on production codebases, these are the ones I actually keep installed:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. GSD (Get Stuff Done)
&lt;/h3&gt;

&lt;p&gt;Project management with phase planning, verification, and atomic commits. The most comprehensive skill I've used.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo &lt;span class="nb"&gt;install &lt;/span&gt;gsd
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Frontend Design
&lt;/h3&gt;

&lt;p&gt;Generates production-grade UI components with proper responsive design. Output quality is noticeably better than unguided Claude.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo &lt;span class="nb"&gt;install &lt;/span&gt;frontend-design
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Simplify
&lt;/h3&gt;

&lt;p&gt;Reviews your changed code for reuse and efficiency, then auto-fixes. My favorite "set and forget" skill.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. Commit
&lt;/h3&gt;

&lt;p&gt;Analyzes staged changes and writes why-focused commit messages. Saves 30 seconds per commit.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Webapp Testing
&lt;/h3&gt;

&lt;p&gt;Playwright-based testing. Point at localhost, describe what to verify, get working tests.&lt;/p&gt;

&lt;h3&gt;
  
  
  6. Doc Coauthoring
&lt;/h3&gt;

&lt;p&gt;Structured documentation workflow. Asks the right questions before writing.&lt;/p&gt;

&lt;h3&gt;
  
  
  7. PDF / XLSX / PPTX
&lt;/h3&gt;

&lt;p&gt;File format skills — read, create, and manipulate office documents from the terminal.&lt;/p&gt;

&lt;h3&gt;
  
  
  8. Claude API
&lt;/h3&gt;

&lt;p&gt;If you're building with the Anthropic SDK, this skill knows latest patterns and model IDs.&lt;/p&gt;

&lt;h3&gt;
  
  
  9. MCP Builder
&lt;/h3&gt;

&lt;p&gt;Scaffolds new MCP servers with proper JSON schema. Saved me hours.&lt;/p&gt;

&lt;h3&gt;
  
  
  10. Skill Creator
&lt;/h3&gt;

&lt;p&gt;Meta: creates new skills. Useful for packaging your team's workflows.&lt;/p&gt;

&lt;h2&gt;
  
  
  The 8 Best MCP Servers (Tested)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Playwright MCP (Microsoft)
&lt;/h3&gt;

&lt;p&gt;Browser automation from Claude Code. Navigate, click, fill forms, take screenshots.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add playwright &lt;span class="nt"&gt;--&lt;/span&gt; npx @anthropic-ai/mcp-playwright
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. GitHub MCP
&lt;/h3&gt;

&lt;p&gt;Full GitHub API access — create PRs, review code, manage issues.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add github &lt;span class="nt"&gt;--&lt;/span&gt; npx @modelcontextprotocol/server-github
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Filesystem MCP
&lt;/h3&gt;

&lt;p&gt;Secure file operations with configurable access controls.&lt;/p&gt;

&lt;h3&gt;
  
  
  4. PostgreSQL MCP
&lt;/h3&gt;

&lt;p&gt;Read-only database access with schema inspection. Great for data exploration.&lt;/p&gt;

&lt;h3&gt;
  
  
  5. Firecrawl MCP
&lt;/h3&gt;

&lt;p&gt;Web scraping and crawling from Claude Code.&lt;/p&gt;

&lt;h3&gt;
  
  
  6. TokRepo MCP
&lt;/h3&gt;

&lt;p&gt;Search and install AI assets (skills, prompts, workflows) directly from Claude Code. 500+ assets indexed.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add tokrepo &lt;span class="nt"&gt;--&lt;/span&gt; npx tokrepo-mcp-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  7. Sentry MCP
&lt;/h3&gt;

&lt;p&gt;Retrieve and analyze issues from Sentry directly in your coding flow.&lt;/p&gt;

&lt;h3&gt;
  
  
  8. Memory MCP
&lt;/h3&gt;

&lt;p&gt;Persistent memory across Claude Code sessions using a knowledge graph.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Find More Skills and MCP Servers
&lt;/h2&gt;

&lt;p&gt;The hardest part isn't installing — it's &lt;em&gt;finding&lt;/em&gt; good ones. Here's where I look:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;&lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt;&lt;/strong&gt; — Free registry with 500+ skills, MCP servers, and workflows. Searchable by category with install commands. Also has &lt;a href="https://tokrepo.com/en/guide" rel="noopener noreferrer"&gt;step-by-step guides&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;GitHub Awesome Lists&lt;/strong&gt; — &lt;a href="https://github.com/punkpeye/awesome-mcp-servers" rel="noopener noreferrer"&gt;awesome-mcp-servers&lt;/a&gt; (84K+ stars) and &lt;a href="https://github.com/ComposioHQ/awesome-claude-skills" rel="noopener noreferrer"&gt;awesome-claude-skills&lt;/a&gt; (52K+ stars).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Official MCP Registry&lt;/strong&gt; — Anthropic's own registry at &lt;a href="https://github.com/modelcontextprotocol/registry" rel="noopener noreferrer"&gt;modelcontextprotocol/registry&lt;/a&gt;.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  FAQ
&lt;/h2&gt;

&lt;h3&gt;
  
  
  How many skills can I install at once?
&lt;/h3&gt;

&lt;p&gt;No hard limit, but each active skill consumes context window space. Keep 5-10 active, disable others when not needed.&lt;/p&gt;

&lt;h3&gt;
  
  
  Do skills work with Cursor and Codex CLI?
&lt;/h3&gt;

&lt;p&gt;Most Markdown-based skills are portable. TokRepo skills follow the SKILL.md standard that works across Claude Code, Cursor (as &lt;code&gt;.cursorrules&lt;/code&gt;), Codex CLI (as &lt;code&gt;AGENTS.md&lt;/code&gt;), and Gemini CLI.&lt;/p&gt;

&lt;h3&gt;
  
  
  Are MCP servers secure?
&lt;/h3&gt;

&lt;p&gt;Each MCP server runs as a separate process with its own permissions. The MCP protocol enforces clear boundaries — servers can't access your filesystem unless you explicitly configure them to.&lt;/p&gt;

&lt;h3&gt;
  
  
  Can I create my own skill?
&lt;/h3&gt;

&lt;p&gt;Yes! Create a &lt;code&gt;.md&lt;/code&gt; file in &lt;code&gt;.claude/commands/&lt;/code&gt; with instructions. See the &lt;a href="https://tokrepo.com/en/guide/create-skill" rel="noopener noreferrer"&gt;full tutorial on creating skills&lt;/a&gt;.&lt;/p&gt;

&lt;h3&gt;
  
  
  What's the difference between skills, MCP servers, and CLAUDE.md rules?
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Skills&lt;/strong&gt; = reusable slash commands (per-project or global)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP servers&lt;/strong&gt; = external tool integrations (databases, APIs, browsers)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rules&lt;/strong&gt; = always-on project instructions (coding standards, conventions)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;See the &lt;a href="https://tokrepo.com/en/guide/skills-vs-mcp" rel="noopener noreferrer"&gt;complete comparison guide&lt;/a&gt; for details.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What skills and MCP servers are you using? Drop your setup in the comments — I'm always looking for new ones to test.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>mcp</category>
    </item>
    <item>
      <title>5 Claude Code Skills That Actually Save Time (Free, Open Source)</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Fri, 10 Apr 2026 06:52:00 +0000</pubDate>
      <link>https://dev.to/williamwangai/5-claude-code-skills-that-actually-save-time-free-open-source-5cga</link>
      <guid>https://dev.to/williamwangai/5-claude-code-skills-that-actually-save-time-free-open-source-5cga</guid>
      <description>&lt;p&gt;If you're using Claude Code, you've probably noticed it supports &lt;strong&gt;skills&lt;/strong&gt; — reusable instruction sets that teach the AI how to handle specific tasks.&lt;/p&gt;

&lt;p&gt;The problem? Most people write their own from scratch every time. I've been collecting and testing skills from the community, and here are 5 that genuinely saved me hours.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Git Commit Conventions Skill
&lt;/h2&gt;

&lt;p&gt;Teaches Claude Code to follow Conventional Commits format automatically. No more "fix stuff" messages.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it does:&lt;/strong&gt; Analyzes your staged changes, picks the right prefix (&lt;code&gt;feat:&lt;/code&gt;, &lt;code&gt;fix:&lt;/code&gt;, &lt;code&gt;refactor:&lt;/code&gt;), and writes a meaningful commit message.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Code Review Skill
&lt;/h2&gt;

&lt;p&gt;Turns Claude into a senior reviewer. It checks for security issues, performance problems, and style violations — then explains &lt;em&gt;why&lt;/em&gt; something is a problem, not just &lt;em&gt;what&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Test Generation Skill
&lt;/h2&gt;

&lt;p&gt;Point it at a function, and it generates edge-case-aware tests. Supports Jest, pytest, Go testing, and more. Especially useful when you're retrofitting tests onto existing code.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Documentation Writer Skill
&lt;/h2&gt;

&lt;p&gt;Generates docs that actually match your code's style. It reads your existing README patterns and follows them, instead of producing generic boilerplate.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Database Migration Skill
&lt;/h2&gt;

&lt;p&gt;Handles schema changes with rollback safety. Generates up/down migrations and validates them before you apply anything.&lt;/p&gt;




&lt;h2&gt;
  
  
  Where to find more
&lt;/h2&gt;

&lt;p&gt;I've been curating these (and 700+ other AI assets) at &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;tokrepo.com&lt;/a&gt; — it's a free, open library of prompts, skills, MCP configs, scripts, and agent setups for Claude Code, Cursor, and other AI tools.&lt;/p&gt;

&lt;p&gt;You can browse the &lt;strong&gt;Skill Factory&lt;/strong&gt; section for 130+ Claude Code skills:&lt;br&gt;
👉 &lt;a href="https://tokrepo.com/en/featured" rel="noopener noreferrer"&gt;tokrepo.com/en/featured&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Every asset is free to use, copy, and modify. No signup wall.&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;What skills are you using with Claude Code?&lt;/strong&gt; Drop them in the comments — always looking for new ones to add to the collection.&lt;/p&gt;

</description>
      <category>opensource</category>
    </item>
    <item>
      <title>Agent Skills in 2026: How to Customize Claude Code, Codex CLI &amp; Gemini CLI</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Wed, 08 Apr 2026 10:06:02 +0000</pubDate>
      <link>https://dev.to/williamwangai/agent-skills-in-2026-how-to-customize-claude-code-codex-cli-gemini-cli-27i9</link>
      <guid>https://dev.to/williamwangai/agent-skills-in-2026-how-to-customize-claude-code-codex-cli-gemini-cli-27i9</guid>
      <description>&lt;p&gt;AI coding agents like Claude Code, OpenAI Codex CLI, and Google Gemini CLI are powerful out of the box. But they become &lt;strong&gt;dramatically better&lt;/strong&gt; when you teach them your workflows through &lt;strong&gt;Agent Skills&lt;/strong&gt; — simple Markdown files that encode reusable instructions.&lt;/p&gt;

&lt;p&gt;I've been using skills daily for the past few months, and the difference is night and day. Here's everything I've learned about customizing these three major CLI tools.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are Agent Skills?
&lt;/h2&gt;

&lt;p&gt;An Agent Skill is a Markdown file (typically &lt;code&gt;SKILL.md&lt;/code&gt;, &lt;code&gt;AGENTS.md&lt;/code&gt;, or &lt;code&gt;GEMINI.md&lt;/code&gt;) that tells an AI coding agent how to perform a specific task. Think of it as a reusable prompt with structure.&lt;/p&gt;

&lt;p&gt;Unlike MCP servers (which require running code) or simple rules files (which are just text constraints), skills sit in a sweet spot: &lt;strong&gt;powerful enough for complex workflows, simple enough that anyone can create one&lt;/strong&gt;.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight markdown"&gt;&lt;code&gt;&lt;span class="nn"&gt;---&lt;/span&gt;
&lt;span class="na"&gt;name&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;Code Review&lt;/span&gt;
&lt;span class="na"&gt;description&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Thorough&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;adversarial&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;code&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;review"&lt;/span&gt;
&lt;span class="nn"&gt;---&lt;/span&gt;

&lt;span class="gu"&gt;## Steps&lt;/span&gt;
&lt;span class="p"&gt;1.&lt;/span&gt; Read all changed files
&lt;span class="p"&gt;2.&lt;/span&gt; Check for bugs, security issues, performance problems
&lt;span class="p"&gt;3.&lt;/span&gt; Output findings grouped by severity
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. Drop this file in your project, and your AI agent knows how to do a thorough code review every time.&lt;/p&gt;

&lt;p&gt;For a deeper comparison of when to use skills vs MCP vs rules, check out this &lt;a href="https://tokrepo.com/en/guide/skills-vs-mcp" rel="noopener noreferrer"&gt;complete breakdown&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Claude Code: The SKILL.md Ecosystem
&lt;/h2&gt;

&lt;p&gt;Claude Code looks for &lt;code&gt;SKILL.md&lt;/code&gt; files in &lt;code&gt;.claude/commands/&lt;/code&gt; or your project root. As of April 2026, the ecosystem has exploded — there are hundreds of community-built skills covering everything from deployment automation to video production.&lt;/p&gt;

&lt;h3&gt;
  
  
  Getting Started
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install a skill from a registry&lt;/span&gt;
claude &lt;span class="nb"&gt;install&lt;/span&gt; @tokrepo/code-review# Or just create your own
&lt;span class="nb"&gt;mkdir&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; .claude/commands
&lt;span class="nb"&gt;touch&lt;/span&gt; .claude/commands/SKILL.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Best Skills I've Tested
&lt;/h3&gt;

&lt;p&gt;After testing dozens of skills, here are the ones that actually made a difference in my daily workflow:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Adversarial Code Review&lt;/strong&gt; — catches bugs that standard review misses&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Token-Saving Compact&lt;/strong&gt; — reduces context usage by 40-50%&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Git Commit Conventions&lt;/strong&gt; — consistent, meaningful commit messages&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Test Generator&lt;/strong&gt; — writes tests that actually cover edge cases&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Documentation Writer&lt;/strong&gt; — generates docs that stay in sync with code&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I wrote a full ranked list with install commands: &lt;a href="https://tokrepo.com/en/guide/best-claude-code-skills" rel="noopener noreferrer"&gt;15 Best Claude Code Skills in 2026&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  OpenAI Codex CLI: AGENTS.md
&lt;/h2&gt;

&lt;p&gt;Codex CLI uses &lt;code&gt;AGENTS.md&lt;/code&gt; files — similar concept, slightly different format. The good news: most SKILL.md files work with Codex with minimal changes.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install Codex CLI&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; @openai/codex# Create an agent skill
&lt;span class="nb"&gt;touch &lt;/span&gt;AGENTS.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Codex's strength is its sandbox execution model — it runs code in an isolated environment by default, which makes it great for skills that involve running tests or builds.&lt;/p&gt;

&lt;p&gt;If you're getting started with Codex skills, I put together a setup guide: &lt;a href="https://tokrepo.com/en/guide/codex-cli-skills" rel="noopener noreferrer"&gt;Getting Started with Codex CLI Skills&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Google Gemini CLI: GEMINI.md
&lt;/h2&gt;

&lt;p&gt;Google's entry into the CLI agent space (launched 2026) uses &lt;code&gt;GEMINI.md&lt;/code&gt; files. It's the newest of the three, but it already has a growing extension ecosystem with 40+ official Google-built extensions.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install Gemini CLI&lt;/span&gt;
npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; @anthropic-ai/gemini-cli# Create a skill
&lt;span class="nb"&gt;touch &lt;/span&gt;GEMINI.md
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Gemini CLI's advantage is tight integration with Google Cloud services — if your stack is on GCP, the built-in extensions for BigQuery, Cloud Run, and Firebase are excellent.&lt;/p&gt;

&lt;p&gt;Full setup guide here: &lt;a href="https://tokrepo.com/en/guide/gemini-cli-skills" rel="noopener noreferrer"&gt;Gemini CLI Agent Skills Guide&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cross-Platform Skills
&lt;/h2&gt;

&lt;p&gt;Here's the interesting part: the skill formats are converging. A well-written SKILL.md works on Claude Code, Codex CLI, and Gemini CLI with zero or minimal changes. This means you can write once and use across all three tools.&lt;/p&gt;

&lt;p&gt;The key fields that work everywhere:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;code&gt;name&lt;/code&gt; and &lt;code&gt;description&lt;/code&gt; in frontmatter&lt;/li&gt;
&lt;li&gt;Markdown-structured instructions&lt;/li&gt;
&lt;li&gt;Step-by-step workflows&lt;/li&gt;
&lt;li&gt;Code blocks with examples&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you want to learn how to create your own cross-platform skill from scratch, here's a step-by-step tutorial: &lt;a href="https://tokrepo.com/en/guide/create-skill" rel="noopener noreferrer"&gt;How to Create Your First Agent Skill&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where to Find Skills
&lt;/h2&gt;

&lt;p&gt;Building your own skills is great, but there's no need to start from scratch for common workflows. Several registries have emerged:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;&lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt;&lt;/strong&gt; — 600+ curated skills, MCP configs, and prompts with one-click install&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub&lt;/strong&gt; — search for &lt;code&gt;SKILL.md&lt;/code&gt; or &lt;code&gt;AGENTS.md&lt;/code&gt; files&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code's &lt;code&gt;/powerup&lt;/code&gt;&lt;/strong&gt; — built-in tutorial that teaches skill basics&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Token Cost Problem (and How Skills Solve It)
&lt;/h2&gt;

&lt;p&gt;One thing nobody talks about enough: &lt;strong&gt;AI coding agents are expensive&lt;/strong&gt;. Claude Opus costs $15/$75 per million tokens. A heavy coding session can easily burn through $20-50.&lt;/p&gt;

&lt;p&gt;Skills help because they:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Replace repetitive prompts&lt;/strong&gt; — encode once, reuse forever&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reduce context size&lt;/strong&gt; — focused instructions instead of rambling conversations
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Minimize iteration&lt;/strong&gt; — better first-pass results mean fewer back-and-forth cycles&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I measured the difference: &lt;a href="https://tokrepo.com/en/guide/save-token-costs" rel="noopener noreferrer"&gt;How to Cut Claude Code Token Costs by 50%&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Next
&lt;/h2&gt;

&lt;p&gt;The agent skills ecosystem is still early but growing fast. The convergence across Claude Code, Codex, and Gemini CLI means that skills you write today will likely work with whatever new tool comes out tomorrow.&lt;/p&gt;

&lt;p&gt;If you're not using skills yet, start with one. Install a code review skill, use it for a week, and see the difference. Then create your own for your most repetitive workflow.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;All the skills and guides mentioned in this article are available on &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt; — a registry of 600+ curated AI assets for coding agents.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>After /powerup: 10 Skills &amp; Tools to Level Up Each Claude Code Lesson</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Wed, 08 Apr 2026 05:45:26 +0000</pubDate>
      <link>https://dev.to/williamwangai/after-powerup-10-skills-tools-to-level-up-each-claude-code-lesson-436g</link>
      <guid>https://dev.to/williamwangai/after-powerup-10-skills-tools-to-level-up-each-claude-code-lesson-436g</guid>
      <description>&lt;p&gt;Claude Code v2.1.90 (released April 1, 2026) shipped a new command called &lt;code&gt;/powerup&lt;/code&gt;. It's an interactive tutorial that walks you through 10 core capabilities — from talking to your codebase to dialing model effort. Each lesson is concise and hands-on.&lt;/p&gt;

&lt;p&gt;But once you finish a lesson, the natural question is: &lt;em&gt;what now?&lt;/em&gt; How do you actually put this into practice on a real project?&lt;/p&gt;

&lt;p&gt;I went through all 10 lessons and matched each one with a specific open-source skill or tool from &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt; that extends what you just learned. Think of this as a companion guide — &lt;code&gt;/powerup&lt;/code&gt; teaches the concept, and these tools help you apply it at scale.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. Talk to your codebase → LLM Wiki Memory Upgrade Prompt
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; You can reference files with &lt;code&gt;@filename&lt;/code&gt;, point to specific lines, and have Claude reason about your codebase structure. It's the foundation of everything else.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; The &lt;a href="https://tokrepo.com/en/workflows/f6d1f761-8d95-452b-9951-711a7cab05b0" rel="noopener noreferrer"&gt;LLM Wiki Memory Upgrade Prompt&lt;/a&gt; gives your agent a structured memory schema — a personal wiki that persists across sessions. Instead of re-explaining your architecture every time, the agent already knows your project layout, naming conventions, and key decisions. It turns "talk to your codebase" from a one-shot interaction into a continuous relationship.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Steer with modes → Claude Code Templates (600+ Agents, Commands &amp;amp; MCPs)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; Shift+Tab toggles between plan mode and auto mode. You can steer how aggressively Claude acts — from careful planning to full autonomy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; Modes are powerful but generic. &lt;a href="https://tokrepo.com/en/workflows/1cf2f5bc-ce0e-4242-ab2f-34ad488b478e" rel="noopener noreferrer"&gt;Claude Code Templates&lt;/a&gt; gives you 600+ pre-configured agent setups, slash commands, and MCP integrations. Instead of manually switching modes per task, you get purpose-built workflows — a code reviewer agent that always plans first, a refactoring agent that runs autonomously, and so on.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. Undo anything → CC Status Board (Smart Status Bar)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; &lt;code&gt;/rewind&lt;/code&gt; rolls back to any previous state. Double-tap Escape cancels the current operation. You always have an escape hatch.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; The problem is knowing &lt;em&gt;when&lt;/em&gt; to hit rewind. &lt;a href="https://tokrepo.com/en/workflows/e7e9ac68" rel="noopener noreferrer"&gt;CC Status Board&lt;/a&gt; adds a smart status bar that shows what Claude is doing in real time — which files it's touching, how many tokens it's burning, and whether it's going off track. You catch problems before they need rewinding.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. Run in the background → Awesome n8n Workflow Automation Templates
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; You can spin up background tasks with &lt;code&gt;/tasks&lt;/code&gt; and let Claude work on multiple things in parallel. It's like having extra hands.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; Background tasks inside Claude are great, but some work belongs outside your editor entirely. &lt;a href="https://tokrepo.com/en/workflows/ab76a229-0dc7-48bc-8b29-95ef9c2c45a9" rel="noopener noreferrer"&gt;Awesome n8n&lt;/a&gt; is a curated collection of workflow automation templates — CI/CD triggers, Slack notifications on PR reviews, scheduled code quality scans. Pair Claude's background tasks with n8n for anything that should run on a schedule or in response to external events.&lt;/p&gt;




&lt;h2&gt;
  
  
  5. Teach Claude your rules → Awesome Cursor Rules
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; &lt;code&gt;CLAUDE.md&lt;/code&gt; files and &lt;code&gt;/memory&lt;/code&gt; let you define project-specific rules — coding standards, forbidden patterns, architectural constraints. Claude follows them automatically.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; Writing good rules from scratch is hard. &lt;a href="https://tokrepo.com/en/workflows/ca000374" rel="noopener noreferrer"&gt;Awesome Cursor Rules&lt;/a&gt; collects 30+ stack-specific rule templates (React, Python, Go, Rust, and more). They were written for Cursor, but the format translates directly to &lt;code&gt;CLAUDE.md&lt;/code&gt;. Fork a template, adapt the rules, and you skip the blank-page problem entirely.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. Extend with tools → Chrome MCP Background Proxy
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; MCP (Model Context Protocol) servers let Claude use external tools — databases, APIs, browsers. &lt;code&gt;/mcp&lt;/code&gt; manages your connections.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; The single biggest MCP pain point is browser automation stealing window focus. Every time Claude uses a Chrome MCP tool, the browser pops to the foreground and interrupts your work. &lt;a href="https://tokrepo.com/en/workflows/29944683-2033-4e30-9449-6d18dffa60f5" rel="noopener noreferrer"&gt;Chrome MCP Background Proxy&lt;/a&gt; solves this by routing MCP calls through a background proxy. Claude browses, scrapes, and tests without ever stealing your screen.&lt;/p&gt;




&lt;h2&gt;
  
  
  7. Automate your workflow → Lark CLI Skill: Skill Maker
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; Skills are reusable capabilities you can teach Claude — custom slash commands, hooks that fire on events, repeatable procedures stored as markdown.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; &lt;a href="https://tokrepo.com/en/workflows/065a3ce6" rel="noopener noreferrer"&gt;Skill Maker&lt;/a&gt; is a meta-skill: it helps you create new skills faster. Describe what you want in plain English, and it generates the skill file with proper frontmatter, parameter definitions, and step-by-step instructions. Instead of hand-writing skill markdown, you scaffold it in seconds.&lt;/p&gt;




&lt;h2&gt;
  
  
  8. Multiply yourself → GPT Researcher (Autonomous Research Agent)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; Subagents let Claude delegate work to child agents. &lt;code&gt;/agents&lt;/code&gt; manages them. You can parallelize research, code review, and testing across multiple agents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; Subagents are only as good as their specialization. &lt;a href="https://tokrepo.com/en/workflows/23330210-b26a-4d97-ad97-1735c203eaa6" rel="noopener noreferrer"&gt;GPT Researcher&lt;/a&gt; is a purpose-built autonomous research agent that searches the web, aggregates sources, and produces structured reports. Use it as a subagent when Claude needs to answer questions that go beyond your codebase — competitor analysis, library comparisons, or technical deep dives.&lt;/p&gt;




&lt;h2&gt;
  
  
  9. Code from anywhere → Tabby (Self-Hosted AI Coding Assistant)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; &lt;code&gt;/remote-control&lt;/code&gt; and &lt;code&gt;/teleport&lt;/code&gt; let you use Claude Code from your phone, another machine, or any browser. Your dev environment goes wherever you go.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; Remote Claude is great, but sometimes you want local AI completions too — especially when you're offline or working on sensitive code. &lt;a href="https://tokrepo.com/en/workflows/1a1d4061" rel="noopener noreferrer"&gt;Tabby&lt;/a&gt; is a self-hosted AI coding assistant that runs on your own hardware. Use Claude remotely for heavy tasks, Tabby locally for fast inline completions. They complement each other.&lt;/p&gt;




&lt;h2&gt;
  
  
  10. Dial the model → Agent Skills Standard (Cross-Platform AI Skills)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What /powerup teaches:&lt;/strong&gt; &lt;code&gt;/model&lt;/code&gt; switches between Claude models. &lt;code&gt;/effort&lt;/code&gt; adjusts how hard Claude thinks. You can optimize for speed or depth depending on the task.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What takes it further:&lt;/strong&gt; Once you start switching models, you realize your skills and prompts might be model-dependent. &lt;a href="https://tokrepo.com/en/workflows/1a1292f5" rel="noopener noreferrer"&gt;Agent Skills Standard&lt;/a&gt; defines a cross-platform skill format that works across Claude, Codex, Gemini, and others. Write your skills once using this standard, and they work regardless of which model you've dialed in — no rewrites needed when you switch.&lt;/p&gt;




&lt;h2&gt;
  
  
  Keep going
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;/powerup&lt;/code&gt; is a great starting point, but the real leverage comes from the tools and skills the community builds on top. All the resources linked above — and hundreds more — are browsable at &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;tokrepo.com&lt;/a&gt;. Filter by your stack, grab what fits, and skip the setup work that someone else already solved.&lt;/p&gt;

&lt;p&gt;If you've built a skill or workflow that pairs well with a &lt;code&gt;/powerup&lt;/code&gt; lesson, drop a link in the comments. The best dev tools are the ones people actually share.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Top 10 Agent Skills Registries for Claude Code, Codex &amp; Gemini CLI (2026)</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Tue, 07 Apr 2026 13:09:14 +0000</pubDate>
      <link>https://dev.to/williamwangai/top-10-agent-skills-registries-for-claude-code-codex-gemini-cli-2026-5dm0</link>
      <guid>https://dev.to/williamwangai/top-10-agent-skills-registries-for-claude-code-codex-gemini-cli-2026-5dm0</guid>
      <description>&lt;p&gt;The AI coding agent ecosystem exploded in 2026. Claude Code, OpenAI Codex CLI, Google Gemini CLI, Cursor, and GitHub Copilot all now support &lt;strong&gt;Agent Skills&lt;/strong&gt; — modular markdown files (SKILL.md) that teach AI assistants new capabilities.&lt;/p&gt;

&lt;p&gt;But where do you actually &lt;em&gt;find&lt;/em&gt; good skills to install? Here are the 10 best agent skills registries and directories in 2026.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. TokRepo — Open Agent Skills Registry
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://tokrepo.com/en/collections/skills" rel="noopener noreferrer"&gt;tokrepo.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;500+ skills&lt;/strong&gt; across 6 categories: Skills, MCP Servers, Prompts, Scripts, Workflows, and Configs.&lt;/p&gt;

&lt;p&gt;What makes TokRepo stand out:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Community-ranked&lt;/strong&gt; — skills sorted by votes and real usage&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cross-platform&lt;/strong&gt; — works with Claude Code, Codex CLI, Gemini CLI, Cursor&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One-command install&lt;/strong&gt; — every skill includes a ready-to-use install command&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Searchable&lt;/strong&gt; — full-text search with category filtering&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bilingual&lt;/strong&gt; — English + Chinese interface&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Best for: Developers who want a web-based registry with search, filtering, and community curation instead of browsing raw GitHub repos.&lt;/p&gt;

&lt;p&gt;👉 Also check: &lt;a href="https://tokrepo.com/en/collections/mcp-servers" rel="noopener noreferrer"&gt;Best MCP Servers&lt;/a&gt; | &lt;a href="https://tokrepo.com/en/collections/prompts" rel="noopener noreferrer"&gt;AI Prompts&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Anthropic Official Skills Repository
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/anthropics/skills" rel="noopener noreferrer"&gt;github.com/anthropics/skills&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The official skills repo from the creators of Claude Code and the SKILL.md specification. Contains the reference implementation and spec documentation.&lt;/p&gt;

&lt;p&gt;Best for: Understanding the SKILL.md standard and finding officially maintained skills.&lt;/p&gt;




&lt;h2&gt;
  
  
  3. alirezarezvani/claude-skills
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/alirezarezvani/claude-skills" rel="noopener noreferrer"&gt;github.com/alirezarezvani/claude-skills&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;220+ skills&lt;/strong&gt; covering engineering, marketing, product, compliance, and C-level advisory. Compatible with Claude Code, Codex, Gemini CLI, Cursor, and 8 more agents.&lt;/p&gt;

&lt;p&gt;Best for: Finding specialized professional skills beyond just coding.&lt;/p&gt;




&lt;h2&gt;
  
  
  4. VoltAgent/awesome-agent-skills
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/VoltAgent/awesome-agent-skills" rel="noopener noreferrer"&gt;github.com/VoltAgent/awesome-agent-skills&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Community-curated awesome list featuring official skills from Anthropic, Google Labs, Vercel, Stripe, and community contributions.&lt;/p&gt;

&lt;p&gt;Best for: Discovering officially published skills from major dev teams.&lt;/p&gt;




&lt;h2&gt;
  
  
  5. SkillsMP (Skills Marketplace)
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://skillsmp.com" rel="noopener noreferrer"&gt;skillsmp.com&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Claims &lt;strong&gt;700,000+ agent skills&lt;/strong&gt; with intelligent filtering by occupation, author, and popularity. All skills use the open SKILL.md standard.&lt;/p&gt;

&lt;p&gt;Best for: Sheer volume — if it exists, SkillsMP probably has it.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. Antigravity Awesome Skills
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/sickn33/antigravity-awesome-skills" rel="noopener noreferrer"&gt;github.com/sickn33/antigravity-awesome-skills&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1,370+ skills&lt;/strong&gt; with a CLI installer. Install everything at once with:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx antigravity-awesome-skills &lt;span class="nt"&gt;--claude&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Best for: Bulk installing a large skill library in one command.&lt;/p&gt;




&lt;h2&gt;
  
  
  7. OpenAI Codex Skills Catalog
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/openai/skills" rel="noopener noreferrer"&gt;github.com/openai/skills&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Official skills catalog for OpenAI Codex CLI. Includes installation guides and the Codex-specific skill format (compatible with SKILL.md).&lt;/p&gt;

&lt;p&gt;Best for: Codex CLI users who want officially supported skills.&lt;/p&gt;




&lt;h2&gt;
  
  
  8. LobeHub Skills Marketplace
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://lobehub.com/skills" rel="noopener noreferrer"&gt;lobehub.com/skills&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Part of the LobeHub ecosystem. Features skills for Claude Code, Codex, and other agents with a polished marketplace UI.&lt;/p&gt;

&lt;p&gt;Best for: Visual discovery with a clean marketplace interface.&lt;/p&gt;




&lt;h2&gt;
  
  
  9. Cursor Marketplace
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://cursor.com/marketplace" rel="noopener noreferrer"&gt;cursor.com/marketplace&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Launched February 2026. Official Cursor plugin marketplace bundling MCP servers, skills, subagents, hooks, and rules.&lt;/p&gt;

&lt;p&gt;Best for: Cursor users who want one-click plugin installs directly in the editor.&lt;/p&gt;




&lt;h2&gt;
  
  
  10. SkillRegistry.io
&lt;/h2&gt;

&lt;p&gt;🔗 &lt;a href="https://skillregistry.io" rel="noopener noreferrer"&gt;skillregistry.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Dedicated SKILL.md file registry. Find and install skills for Claude, ChatGPT, and other AI agents.&lt;/p&gt;

&lt;p&gt;Best for: Focused SKILL.md discovery without the noise of general-purpose marketplaces.&lt;/p&gt;




&lt;h2&gt;
  
  
  How to Install Agent Skills
&lt;/h2&gt;

&lt;p&gt;All of these registries use the &lt;strong&gt;SKILL.md open standard&lt;/strong&gt; (published by Anthropic at &lt;a href="https://agentskills.io" rel="noopener noreferrer"&gt;agentskills.io&lt;/a&gt;). Installation is typically one command:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claude Code:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude skill add &amp;lt;skill-name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Codex CLI:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;codex plugin &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;skill-name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Gemini CLI:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Copy to ~/.gemini/skills/ or .agents/skills/&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Cursor:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/add-plugin &amp;lt;plugin-name&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Which Registry Should You Use?
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Registry&lt;/th&gt;
&lt;th&gt;Best For&lt;/th&gt;
&lt;th&gt;Skills Count&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Search + community ranking&lt;/td&gt;
&lt;td&gt;500+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Anthropic Official&lt;/td&gt;
&lt;td&gt;Reference skills&lt;/td&gt;
&lt;td&gt;~50&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;alirezarezvani&lt;/td&gt;
&lt;td&gt;Professional skills&lt;/td&gt;
&lt;td&gt;220+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;SkillsMP&lt;/td&gt;
&lt;td&gt;Volume&lt;/td&gt;
&lt;td&gt;700K+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Antigravity&lt;/td&gt;
&lt;td&gt;Bulk install&lt;/td&gt;
&lt;td&gt;1,370+&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cursor Marketplace&lt;/td&gt;
&lt;td&gt;Cursor users&lt;/td&gt;
&lt;td&gt;Growing&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;My recommendation: Start with &lt;strong&gt;&lt;a href="https://tokrepo.com/en/collections/skills" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt;&lt;/strong&gt; for curated, community-ranked skills, then explore the GitHub collections for niche needs.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What's your favorite skills registry? Drop a comment below!&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>claudecode</category>
      <category>programming</category>
      <category>opensource</category>
    </item>
    <item>
      <title>5 Claude Code Skills That Saved Me Hours This Week (With Install Commands)</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Tue, 07 Apr 2026 03:34:52 +0000</pubDate>
      <link>https://dev.to/williamwangai/5-claude-code-skills-that-saved-me-hours-this-week-with-install-commands-oa3</link>
      <guid>https://dev.to/williamwangai/5-claude-code-skills-that-saved-me-hours-this-week-with-install-commands-oa3</guid>
      <description>&lt;p&gt;Last week I spent 14 hours on repetitive dev tasks — writing boilerplate tests, reviewing PRs, generating docs, debugging deploys. This week I spent 3. The difference? Five Claude Code skills I found (and one I built myself) that automate the painful parts.&lt;/p&gt;

&lt;p&gt;Here are the exact skills, what they do, and how to install them in under 30 seconds.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. Code Review — The Adversarial Reviewer
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The problem:&lt;/strong&gt; Self-reviewing your own PRs is like proofreading your own essay. You see what you meant to write, not what you actually wrote.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What this skill does:&lt;/strong&gt; Runs a senior-engineer-level adversarial review on your changed files. It checks for logic bugs, security issues, performance problems, missing edge cases, and naming inconsistencies. Not a linter — it thinks about your code the way a skeptical colleague would.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real example:&lt;/strong&gt; I had a Go handler that returned &lt;code&gt;200 OK&lt;/code&gt; on a database write failure because the error check was on the wrong variable. The skill caught it in 4 seconds. A human reviewer might have missed it on a Friday afternoon.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo search code review
npx tokrepo &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;skill-id&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or browse it at &lt;a href="https://tokrepo.com/en" rel="noopener noreferrer"&gt;tokrepo.com&lt;/a&gt; and copy the one-liner from the asset page.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Git Workflow — Commit Messages That Actually Help
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The problem:&lt;/strong&gt; &lt;code&gt;git log&lt;/code&gt; full of "fix stuff", "WIP", and "update things". Six months later you have no idea why anything changed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What this skill does:&lt;/strong&gt; Analyzes your staged changes, generates a conventional commit message with scope, explains the &lt;em&gt;why&lt;/em&gt; not just the &lt;em&gt;what&lt;/em&gt;, and optionally creates a PR description. It follows your repo's existing commit style.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real example:&lt;/strong&gt; I staged 4 files across 2 directories. Instead of writing "update auth and fix redirect", the skill generated:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;fix(auth): resolve OAuth callback redirect loop when session cookie expires

The callback handler was not clearing stale session tokens before
writing new ones, causing an infinite redirect on expired sessions.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's a message future-me will actually thank present-me for.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo search git workflow
npx tokrepo &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;skill-id&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  3. Test Generation — Coverage Without the Tedium
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The problem:&lt;/strong&gt; You know you should write tests. You also know it's 6pm and you'd rather do literally anything else.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What this skill does:&lt;/strong&gt; Reads your implementation, identifies the critical paths and edge cases, then generates test files with proper setup/teardown. Supports Jest, Vitest, Go testing, and pytest. It doesn't just test the happy path — it generates boundary tests, error cases, and concurrency scenarios.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real example:&lt;/strong&gt; For a Nuxt 3 composable that fetches and caches API data, it generated 11 test cases covering: successful fetch, network failure, cache hit, cache expiry, concurrent requests, malformed response, and empty result set. Took me 90 seconds to review and merge vs. 40 minutes to write myself.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo search &lt;span class="nb"&gt;test &lt;/span&gt;generation
npx tokrepo &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;skill-id&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  4. Documentation — From Code to Readable Docs
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The problem:&lt;/strong&gt; Your code is self-documenting (it's not). Your teammates can just read the source (they won't). The README was last updated in 2024.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What this skill does:&lt;/strong&gt; Scans your codebase structure, public APIs, and type definitions, then generates documentation that's actually useful. It creates function references, architecture overviews, setup guides, and API docs. It respects JSDoc/GoDoc/docstring conventions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real example:&lt;/strong&gt; I pointed it at a Go-Zero microservice with 23 endpoints. In 2 minutes I had a complete API reference with request/response examples, auth requirements, and error codes. Previously this was a "we'll do it later" task that never got done.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo search documentation
npx tokrepo &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;skill-id&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  5. Deployment — Pre-flight Checks That Catch Problems Early
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;The problem:&lt;/strong&gt; "Works on my machine" followed by a 2am production incident.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What this skill does:&lt;/strong&gt; Runs a structured pre-deployment checklist: environment variable validation, dependency audit, build verification, migration status check, and smoke test generation. It's not a CI/CD replacement — it's the human checklist you forget to follow when you're rushing to ship.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real example:&lt;/strong&gt; Before deploying a Nuxt 3 SSR app, the skill caught that my &lt;code&gt;.env.production&lt;/code&gt; was missing a new API key I'd added during development. Without it, the app would have booted fine but silently failed on every authenticated request. That's a subtle bug that takes hours to diagnose in production.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Install:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo search deployment
npx tokrepo &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;skill-id&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Where These Skills Live
&lt;/h2&gt;

&lt;p&gt;All five are available on &lt;a href="https://tokrepo.com/en" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt; — an open registry of 200+ AI skills, prompts, MCP configs, and scripts. Think of it as npm for AI workflows.&lt;/p&gt;

&lt;p&gt;You can browse the full catalog at &lt;a href="https://tokrepo.com/en/featured" rel="noopener noreferrer"&gt;tokrepo.com/en/featured&lt;/a&gt; or search from your terminal:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo search &amp;lt;keyword&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each asset page has a one-click install command. Skills get saved to your Claude Code config, and you can start using them immediately.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;The skills that save the most time aren't the flashy ones. They're the ones that automate the tasks you &lt;em&gt;already know how to do&lt;/em&gt; but dread doing. Code review, commit messages, test writing, docs, deploy checks — none of these are hard. They're just tedious enough that you cut corners.&lt;/p&gt;

&lt;p&gt;The compound effect is real. Five skills, each saving 30-60 minutes per week, adds up to an extra day of productive work every month.&lt;/p&gt;

&lt;p&gt;If you've built a skill that saves you time, consider &lt;a href="https://tokrepo.com/en/workflows/submit" rel="noopener noreferrer"&gt;sharing it on TokRepo&lt;/a&gt;. The registry is open and every contribution helps the community.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What Claude Code skills are you using? Drop them in the comments — I'm always looking for new ones to try.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>claudecode</category>
      <category>ai</category>
      <category>productivity</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>The Rise of AI Asset Marketplaces: Why Developers Need a Registry for Skills, Prompts, and MCP Configs</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Mon, 06 Apr 2026 09:58:27 +0000</pubDate>
      <link>https://dev.to/williamwangai/the-rise-of-ai-asset-marketplaces-why-developers-need-a-registry-for-skills-prompts-and-mcp-7kk</link>
      <guid>https://dev.to/williamwangai/the-rise-of-ai-asset-marketplaces-why-developers-need-a-registry-for-skills-prompts-and-mcp-7kk</guid>
      <description>&lt;p&gt;The AI tooling ecosystem is growing faster than anyone can keep up with. New MCP servers appear daily. Claude Code skills are being shared in GitHub gists, Discord channels, and random blog posts. System prompts and agent workflows are scattered across dozens of repos with no standard format.&lt;/p&gt;

&lt;p&gt;If you have worked with AI coding assistants for more than a few months, you know the pain: you had a perfect MCP config for Supabase three projects ago, but now you cannot find it. Someone shared a great code review skill on Discord, but the message is buried. You wrote a deployment workflow prompt that worked perfectly, but it lives in a repo you archived.&lt;/p&gt;

&lt;h2&gt;
  
  
  The npm Moment for AI Assets
&lt;/h2&gt;

&lt;p&gt;Every developer tooling ecosystem eventually needs a registry. JavaScript had npm. Python had PyPI. Ruby had RubyGems. The pattern is always the same:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Tools get created and shared informally&lt;/li&gt;
&lt;li&gt;The ecosystem grows past the point where informal sharing works&lt;/li&gt;
&lt;li&gt;Someone builds a searchable, installable registry&lt;/li&gt;
&lt;li&gt;The ecosystem accelerates because discovery and reuse become trivial&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;AI assets — skills, prompts, MCP configs, workflows — are at stage 2 right now. There are thousands of useful assets out there, but finding them requires knowing the right GitHub repos, Discord servers, or blog authors.&lt;/p&gt;

&lt;h2&gt;
  
  
  What an AI Asset Registry Looks Like
&lt;/h2&gt;

&lt;p&gt;I have been building &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt;, an open registry that aims to solve this problem. Here is what I think the minimum viable registry needs:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Structured metadata&lt;/strong&gt;: Every asset should have a type (skill, prompt, MCP config, workflow), compatibility info (which tools it works with), and a description that is actually useful for search.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;One-command install&lt;/strong&gt;: Finding an asset should lead directly to using it. No manual copy-paste from README files.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo search &lt;span class="s2"&gt;"git workflow"&lt;/span&gt;
npx tokrepo &lt;span class="nb"&gt;install&lt;/span&gt; &amp;lt;uuid&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Agent-native access&lt;/strong&gt;: If the whole point is to make AI assistants more capable, the registry itself should be accessible to AI assistants. TokRepo ships an MCP server so Claude Code can search and install assets mid-conversation:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add tokrepo &lt;span class="nt"&gt;--&lt;/span&gt; npx tokrepo-mcp-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once connected, your AI can search the &lt;a href="https://tokrepo.com/en/featured" rel="noopener noreferrer"&gt;registry&lt;/a&gt; directly. Say "find me a database migration skill" and it returns matching results with install commands.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Quality curation&lt;/strong&gt;: Unlike a package registry where everything is code that either runs or does not, AI assets are more subjective. A prompt that works great for one use case might be terrible for another. Curation and community feedback matter.&lt;/p&gt;

&lt;h2&gt;
  
  
  Categories That Matter
&lt;/h2&gt;

&lt;p&gt;After curating 200+ assets on TokRepo, I have seen clear patterns in what developers search for:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;MCP Server Configs&lt;/strong&gt; — The most popular category. Developers want ready-to-use configurations for database connectors, browser automation, search tools, and API integrations. The value is not the server itself (those are open source) but the tested, documented config that just works.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claude Code Skills&lt;/strong&gt; — CLAUDE.md rules and behaviors that teach Claude Code how to handle specific tasks: code reviews, git workflows, documentation generation, test writing. These are surprisingly powerful — a well-written skill can transform how an AI assistant approaches your codebase.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;System Prompts&lt;/strong&gt; — Instruction sets for specialized tasks. Technical writing, API design review, security auditing, data analysis. Good prompts encode domain expertise in a reusable format.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Workflows&lt;/strong&gt; — Multi-step processes that combine tools and prompts. "Research a topic, draft an article, format for publishing" or "analyze a codebase, find issues, create fix PRs."&lt;/p&gt;

&lt;h2&gt;
  
  
  Why This Matters for the AI Ecosystem
&lt;/h2&gt;

&lt;p&gt;The current state of AI asset sharing is roughly where JavaScript was before npm or where Python was before PyPI. Developers are doing amazing work, but the results are trapped in silos.&lt;/p&gt;

&lt;p&gt;A good registry does not just make existing assets easier to find. It creates a feedback loop:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Developers publish assets that work well&lt;/li&gt;
&lt;li&gt;Other developers find and use them, providing feedback&lt;/li&gt;
&lt;li&gt;Assets improve based on real-world usage&lt;/li&gt;
&lt;li&gt;More developers contribute because publishing is easy&lt;/li&gt;
&lt;li&gt;The quality of the entire ecosystem rises&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;We are at the beginning of this cycle. The tools are still young, the formats are still evolving, and the best assets have not been written yet. But the trajectory is clear: AI development will be defined not just by the models, but by the ecosystem of reusable assets built on top of them.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It
&lt;/h2&gt;

&lt;p&gt;If you work with Claude Code, Cursor, or any MCP-compatible tool:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Search the registry&lt;/span&gt;
npx tokrepo search &lt;span class="s2"&gt;"code review"&lt;/span&gt;

&lt;span class="c"&gt;# Add the MCP server to Claude Code&lt;/span&gt;
claude mcp add tokrepo &lt;span class="nt"&gt;--&lt;/span&gt; npx tokrepo-mcp-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Browse the full collection at &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;tokrepo.com&lt;/a&gt;. Everything is free and open — no signup required to search or install.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What AI assets do you find yourself recreating across projects? I am curious what kinds of skills, prompts, or configs you would want in a registry like this.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>productivity</category>
      <category>devops</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Top 10 MCP Servers Every AI Developer Should Know About</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Mon, 06 Apr 2026 07:58:52 +0000</pubDate>
      <link>https://dev.to/williamwangai/top-10-mcp-servers-every-ai-developer-should-know-about-ibo</link>
      <guid>https://dev.to/williamwangai/top-10-mcp-servers-every-ai-developer-should-know-about-ibo</guid>
      <description>&lt;p&gt;The Model Context Protocol (MCP) has quietly become the standard way to give AI coding assistants superpowers. Instead of being limited to reading and writing files, MCP lets tools like Claude Code, Cursor, and Codex connect to databases, browsers, APIs, and more.&lt;/p&gt;

&lt;p&gt;But with dozens of MCP servers out there, which ones are actually worth setting up? Here are 10 that I use regularly and recommend to every developer working with AI tools.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Filesystem
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What it does&lt;/strong&gt;: Gives your AI assistant controlled read/write access to files and directories outside the default workspace.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;: Essential when your AI needs to access config files, logs, or assets in other directories.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add filesystem &lt;span class="nt"&gt;--&lt;/span&gt; npx @anthropic/mcp-filesystem ~/projects ~/configs
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  2. GitHub
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What it does&lt;/strong&gt;: Search repos, read issues, create PRs, manage branches — all through your AI assistant.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;: You can say "check my open PRs" or "create an issue for this bug" without leaving your terminal.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add github &lt;span class="nt"&gt;--&lt;/span&gt; npx @anthropic/mcp-github&lt;span class="sb"&gt;```&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;
Requires a GitHub personal access token &lt;span class="nb"&gt;set &lt;/span&gt;as &lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;&lt;span class="sb"&gt;`&lt;/span&gt;GITHUB_TOKEN&lt;span class="sb"&gt;`&lt;/span&gt;&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;&lt;span class="nb"&gt;.&lt;/span&gt;

&lt;span class="c"&gt;## 3. Brave Search&lt;/span&gt;

&lt;span class="k"&gt;**&lt;/span&gt;What it does&lt;span class="k"&gt;**&lt;/span&gt;: Web search through the Brave Search API — your AI can look things up &lt;span class="k"&gt;in &lt;/span&gt;real time.

&lt;span class="k"&gt;**&lt;/span&gt;Why it matters&lt;span class="k"&gt;**&lt;/span&gt;: When your AI needs current documentation, error messages, or API references that aren&lt;span class="s1"&gt;'t in its training data.
{% raw %}


```bash
claude mcp add brave-search -- npx @anthropic/mcp-brave-search```

Requires a free API key from [brave.com/search/api](https://brave.com/search/api/).

## 4. SQLite

**What it does**: Query and modify SQLite databases directly from your AI session.

**Why it matters**: Perfect for prototyping, exploring local databases, or building data-driven features. Your AI can write and run SQL queries, inspect schemas, and analyze results.



```bash
claude mcp add sqlite -- npx @anthropic/mcp-sqlite --db-path ./mydb.sqlite
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  5. TokRepo
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What it does&lt;/strong&gt;: Search, browse, and install from a registry of 200+ curated AI assets — skills, MCP configs, prompts, and workflows.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;: Instead of googling for "best Claude Code skill for code review" or digging through GitHub, your AI can search &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt; directly and install assets in one step.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add tokrepo &lt;span class="nt"&gt;--&lt;/span&gt; npx tokrepo-mcp-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once connected, you get tools like &lt;code&gt;tokrepo_search&lt;/code&gt;, &lt;code&gt;tokrepo_trending&lt;/code&gt;, and &lt;code&gt;tokrepo_install&lt;/code&gt;. Say "find me a good git workflow" and it returns matching assets from the &lt;a href="https://tokrepo.com/en/featured" rel="noopener noreferrer"&gt;registry&lt;/a&gt; with install commands. No API key needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  6. Puppeteer
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;What it does&lt;/strong&gt;: Browser automation — navigate pages, take screenshots, click elements, fill forms.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why it matters&lt;/strong&gt;: Great for testing web apps, scraping data, or debugging UI issues. Your AI can literally look at your app and tell you what's wrong.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;claude mcp add puppeteer &lt;span class="nt"&gt;--&lt;/span&gt; npx @anthropic/mcp-puppeteer&lt;span class="sb"&gt;```&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;
&lt;span class="c"&gt;## 7. Memory&lt;/span&gt;

&lt;span class="k"&gt;**&lt;/span&gt;What it does&lt;span class="k"&gt;**&lt;/span&gt;: Persistent key-value memory that survives across sessions using a &lt;span class="nb"&gt;local &lt;/span&gt;knowledge graph.

&lt;span class="k"&gt;**&lt;/span&gt;Why it matters&lt;span class="k"&gt;**&lt;/span&gt;: Your AI can remember project decisions, coding conventions, and context between conversations. No more re-explaining your architecture every session.
&lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;


&lt;span class="sb"&gt;```&lt;/span&gt;bash
claude mcp add memory &lt;span class="nt"&gt;--&lt;/span&gt; npx @anthropic/mcp-memory&lt;span class="sb"&gt;```&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;
&lt;span class="c"&gt;## 8. Fetch&lt;/span&gt;

&lt;span class="k"&gt;**&lt;/span&gt;What it does&lt;span class="k"&gt;**&lt;/span&gt;: Makes HTTP requests — GET, POST, PUT, DELETE — to any URL.

&lt;span class="k"&gt;**&lt;/span&gt;Why it matters&lt;span class="k"&gt;**&lt;/span&gt;: Your AI can &lt;span class="nb"&gt;test &lt;/span&gt;APIs, pull data from endpoints, check &lt;span class="k"&gt;if &lt;/span&gt;services are running, or interact with webhooks.
&lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;


&lt;span class="sb"&gt;```&lt;/span&gt;bash
claude mcp add fetch &lt;span class="nt"&gt;--&lt;/span&gt; npx @anthropic/mcp-fetch&lt;span class="sb"&gt;```&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;
&lt;span class="c"&gt;## 9. Sequential Thinking&lt;/span&gt;

&lt;span class="k"&gt;**&lt;/span&gt;What it does&lt;span class="k"&gt;**&lt;/span&gt;: Provides a structured thinking framework that helps your AI &lt;span class="nb"&gt;break &lt;/span&gt;down complex problems step by step.

&lt;span class="k"&gt;**&lt;/span&gt;Why it matters&lt;span class="k"&gt;**&lt;/span&gt;: For architectural decisions, debugging complex issues, or planning multi-step implementations, this server helps the AI reason more carefully instead of jumping to solutions.
&lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;


&lt;span class="sb"&gt;```&lt;/span&gt;bash
claude mcp add sequential-thinking &lt;span class="nt"&gt;--&lt;/span&gt; npx @anthropic/mcp-sequential-thinking&lt;span class="sb"&gt;```&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;
&lt;span class="c"&gt;## 10. PostgreSQL&lt;/span&gt;

&lt;span class="k"&gt;**&lt;/span&gt;What it does&lt;span class="k"&gt;**&lt;/span&gt;: Connect to PostgreSQL databases — run queries, inspect schemas, analyze data.

&lt;span class="k"&gt;**&lt;/span&gt;Why it matters&lt;span class="k"&gt;**&lt;/span&gt;: If your production or staging database is PostgreSQL, this lets your AI understand your data model, write queries, and &lt;span class="nb"&gt;help &lt;/span&gt;debug data issues.
&lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;


&lt;span class="sb"&gt;```&lt;/span&gt;bash
claude mcp add postgres &lt;span class="nt"&gt;--&lt;/span&gt; npx @anthropic/mcp-postgres postgresql://user:pass@localhost/mydb&lt;span class="sb"&gt;```&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;
&lt;span class="nt"&gt;---&lt;/span&gt;&lt;span class="c"&gt;## How to Set Up Multiple MCP Servers&lt;/span&gt;

You can add MCP servers one by one with &lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;&lt;span class="sb"&gt;`&lt;/span&gt;claude mcp add&lt;span class="sb"&gt;`&lt;/span&gt;&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;, or configure them all at once &lt;span class="k"&gt;in &lt;/span&gt;your &lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;&lt;span class="sb"&gt;`&lt;/span&gt;.mcp.json&lt;span class="sb"&gt;`&lt;/span&gt;&lt;span class="o"&gt;{&lt;/span&gt;% endraw %&lt;span class="o"&gt;}&lt;/span&gt;:
&lt;span class="o"&gt;{&lt;/span&gt;% raw %&lt;span class="o"&gt;}&lt;/span&gt;


&lt;span class="sb"&gt;```&lt;/span&gt;json
&lt;span class="o"&gt;{&lt;/span&gt;
  &lt;span class="s2"&gt;"mcpServers"&lt;/span&gt;: &lt;span class="o"&gt;{&lt;/span&gt;
    &lt;span class="s2"&gt;"filesystem"&lt;/span&gt;: &lt;span class="o"&gt;{&lt;/span&gt;
      &lt;span class="s2"&gt;"command"&lt;/span&gt;: &lt;span class="s2"&gt;"npx"&lt;/span&gt;,
      &lt;span class="s2"&gt;"args"&lt;/span&gt;: &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"@anthropic/mcp-filesystem"&lt;/span&gt;, &lt;span class="s2"&gt;"~/projects"&lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt;
    &lt;span class="o"&gt;}&lt;/span&gt;,
    &lt;span class="s2"&gt;"github"&lt;/span&gt;: &lt;span class="o"&gt;{&lt;/span&gt;
      &lt;span class="s2"&gt;"command"&lt;/span&gt;: &lt;span class="s2"&gt;"npx"&lt;/span&gt;,
      &lt;span class="s2"&gt;"args"&lt;/span&gt;: &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"@anthropic/mcp-github"&lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt;    &lt;span class="o"&gt;}&lt;/span&gt;,
    &lt;span class="s2"&gt;"tokrepo"&lt;/span&gt;: &lt;span class="o"&gt;{&lt;/span&gt;
      &lt;span class="s2"&gt;"command"&lt;/span&gt;: &lt;span class="s2"&gt;"npx"&lt;/span&gt;,
      &lt;span class="s2"&gt;"args"&lt;/span&gt;: &lt;span class="o"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"tokrepo-mcp-server"&lt;/span&gt;&lt;span class="o"&gt;]&lt;/span&gt;
    &lt;span class="o"&gt;}&lt;/span&gt;
  &lt;span class="o"&gt;}&lt;/span&gt;
&lt;span class="o"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Start with 2-3 that match your workflow, then add more as needed. Each server runs as a lightweight subprocess — they don't consume resources until your AI actually calls them.&lt;/p&gt;

&lt;h2&gt;
  
  
  Wrapping Up
&lt;/h2&gt;

&lt;p&gt;MCP servers turn your AI assistant from a code-completion tool into something closer to a full development partner. The ones listed here cover the most common needs: file access, search, databases, browsers, APIs, and asset management.&lt;/p&gt;

&lt;p&gt;What MCP servers are you using? I'm always looking for new ones to try — drop your favorites in the comments.&lt;/p&gt;

</description>
      <category>mcp</category>
      <category>ai</category>
      <category>webdev</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>How I Built a Searchable Registry of 200+ Claude Code Skills and MCP Configs</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Mon, 06 Apr 2026 06:21:37 +0000</pubDate>
      <link>https://dev.to/williamwangai/how-i-built-a-searchable-registry-of-200-claude-code-skills-and-mcp-configs-4b23</link>
      <guid>https://dev.to/williamwangai/how-i-built-a-searchable-registry-of-200-claude-code-skills-and-mcp-configs-4b23</guid>
      <description>&lt;p&gt;Last year I hit a wall.&lt;/p&gt;

&lt;p&gt;I had dozens of Claude Code skills, MCP server configs, system prompts, and automation scripts scattered across different repos, gists, Notion pages, and Slack threads. Every time I started a new project, I'd spend 20 minutes hunting for "that one MCP config that worked perfectly with Supabase" or "the git workflow prompt I wrote three months ago."&lt;/p&gt;

&lt;p&gt;Sound familiar?&lt;/p&gt;

&lt;p&gt;I'm William, and I build developer tools. After losing the same configs for the third time, I decided to solve this properly. The result is &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;TokRepo&lt;/a&gt; — an open registry for AI assets that works like npm, but for skills, prompts, MCP configs, and workflows.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem: AI Config Sprawl Is Real
&lt;/h2&gt;

&lt;p&gt;The MCP ecosystem is exploding. There are hundreds of MCP servers, thousands of Claude Code skills being shared on GitHub, and new agent workflows popping up every week. But there's no central place to find and install them.&lt;/p&gt;

&lt;p&gt;Right now, if you want a good MCP config, you either:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Google it and hope someone wrote a blog post&lt;/li&gt;
&lt;li&gt;Dig through GitHub repos with inconsistent README formats&lt;/li&gt;
&lt;li&gt;Ask in Discord and wait for someone to paste a JSON snippet&lt;/li&gt;
&lt;li&gt;Copy from a colleague's dotfiles&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;None of these are searchable. None are installable with one command. And none tell you if the config actually works with your setup.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;TokRepo is a searchable registry of curated AI assets — currently hosting 200+ entries across several categories:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Skills&lt;/strong&gt; — Claude Code skills (CLAUDE.md rules and behaviors)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP Configs&lt;/strong&gt; — Server configurations for Claude, Cursor, Codex, Gemini CLI&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prompts&lt;/strong&gt; — System prompts and instruction templates&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scripts&lt;/strong&gt; — Automation scripts for AI-assisted workflows&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Configs&lt;/strong&gt; — Editor configs, rules files, agent settings&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Every asset has structured metadata, install instructions, and a detail page. You can browse the full collection on the &lt;a href="https://tokrepo.com/en/featured" rel="noopener noreferrer"&gt;featured page&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works: CLI + MCP Server
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. CLI Search and Install
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Search for git-related workflows&lt;/span&gt;
npx tokrepo search &lt;span class="s2"&gt;"git workflow"&lt;/span&gt;

&lt;span class="c"&gt;# Search for MCP server configs&lt;/span&gt;
npx tokrepo search &lt;span class="s2"&gt;"database mcp"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. MCP Server (Agent-Native)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Add to Claude Code&lt;/span&gt;
claude mcp add tokrepo &lt;span class="nt"&gt;--&lt;/span&gt; npx tokrepo-mcp-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or add to your MCP config:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"tokrepo"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"npx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"tokrepo-mcp-server"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Once connected, your AI assistant can search, browse trending, get details, and install assets — all from within your coding session.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Inside
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Popular MCP configs&lt;/strong&gt;: Database connectors, browser automation, search tools, and development tools.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Claude Code skills&lt;/strong&gt;: Code review, git automation, documentation generators, test writing assistants.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;System prompts&lt;/strong&gt;: Technical writing, code refactoring, API design review, security auditing.&lt;/p&gt;

&lt;p&gt;Browse the &lt;a href="https://tokrepo.com/en/featured" rel="noopener noreferrer"&gt;featured assets&lt;/a&gt; to see what's popular.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx tokrepo search &lt;span class="s2"&gt;"code review"&lt;/span&gt;
claude mcp add tokrepo &lt;span class="nt"&gt;--&lt;/span&gt; npx tokrepo-mcp-server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Browse at &lt;a href="https://tokrepo.com" rel="noopener noreferrer"&gt;tokrepo.com&lt;/a&gt;. Feedback welcome — drop a comment.&lt;/p&gt;

</description>
      <category>claudecode</category>
      <category>ai</category>
      <category>productivity</category>
      <category>webdev</category>
    </item>
    <item>
      <title>5 robots.txt Mistakes That Make Your Site Invisible to AI Search</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Tue, 31 Mar 2026 10:33:20 +0000</pubDate>
      <link>https://dev.to/williamwangai/5-robotstxt-mistakes-that-make-your-site-invisible-to-ai-search-42ij</link>
      <guid>https://dev.to/williamwangai/5-robotstxt-mistakes-that-make-your-site-invisible-to-ai-search-42ij</guid>
      <description>&lt;p&gt;AI search engines like ChatGPT, Perplexity, and Claude now answer millions of queries daily. But here's the thing — they can only cite your site if their crawlers can actually reach it.&lt;/p&gt;

&lt;p&gt;I've scanned thousands of sites and these are the 5 most common robots.txt mistakes I see:&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Blanket Disallow for unknown user agents
&lt;/h2&gt;

&lt;p&gt;Many sites default to blocking all unrecognized bots. Problem: GPTBot, ClaudeBot, and PerplexityBot are relatively new. If your robots.txt has a catch-all block, you're invisible to AI search.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Blocking /api/ paths that contain public content
&lt;/h2&gt;

&lt;p&gt;Some sites serve blog content through API routes. Blocking &lt;code&gt;/api/&lt;/code&gt; might seem like good security practice, but if your content lives there, AI crawlers can't see it.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. No explicit Allow for AI crawlers
&lt;/h2&gt;

&lt;p&gt;Even if you don't block them, explicitly allowing AI bots signals that you welcome their indexing. Add these to your robots.txt:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;User-agent: GPTBot
Allow: /

User-agent: ClaudeBot
Allow: /

User-agent: PerplexityBot
Allow: /

User-agent: Google-Extended
Allow: /
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  4. Aggressive Crawl-delay values
&lt;/h2&gt;

&lt;p&gt;Setting &lt;code&gt;Crawl-delay: 30&lt;/code&gt; means a bot waits 30 seconds between requests. For large sites, this means AI crawlers may only index a fraction of your content before timing out.&lt;/p&gt;

&lt;h2&gt;
  
  
  5. Forgetting to update after CMS migrations
&lt;/h2&gt;

&lt;p&gt;Moved from WordPress to Next.js? Your old robots.txt rules might still be blocking paths that no longer exist — while failing to protect paths that should be private.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to check
&lt;/h2&gt;

&lt;p&gt;You can manually review your robots.txt, or run a free scan at &lt;a href="https://geoscoreai.com" rel="noopener noreferrer"&gt;geoscoreai.com&lt;/a&gt; — it checks all 9 AI search readiness signals including crawler access, structured data, and content structure. Takes about 60 seconds.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;What robots.txt mistakes have you encountered? Drop them in the comments.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>seo</category>
      <category>ai</category>
      <category>webdev</category>
    </item>
    <item>
      <title>How I Built an AI Trading Discipline Scorer (and Why Profit Isn't the Right Metric)</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Sun, 29 Mar 2026 12:11:43 +0000</pubDate>
      <link>https://dev.to/williamwangai/how-i-built-an-ai-trading-discipline-scorer-and-why-profit-isnt-the-right-metric-44c8</link>
      <guid>https://dev.to/williamwangai/how-i-built-an-ai-trading-discipline-scorer-and-why-profit-isnt-the-right-metric-44c8</guid>
      <description>&lt;p&gt;90% of traders lose money. Not because they can't read charts — but because they can't follow their own rules.&lt;/p&gt;

&lt;p&gt;I've been building &lt;a href="https://keeprule.com" rel="noopener noreferrer"&gt;KeepRule&lt;/a&gt;, a trading journal that uses AI to score your &lt;strong&gt;discipline&lt;/strong&gt; rather than just tracking profit and loss. Here's the story behind it and the tech that powers it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every trader has experienced this cycle:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Market dips → panic sell&lt;/li&gt;
&lt;li&gt;Price bounces back → regret&lt;/li&gt;
&lt;li&gt;Buy high on FOMO → repeat&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The problem isn't strategy. It's execution. Warren Buffett's Rule #1 is "Never lose money" — but &lt;em&gt;how&lt;/em&gt; do you actually implement that?&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Score Discipline, Not Profit
&lt;/h2&gt;

&lt;p&gt;KeepRule works in three steps:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Record
&lt;/h3&gt;

&lt;p&gt;Before every trade, the user logs their thesis AND their emotional state. Not just "I bought AAPL at $150" but "I bought AAPL because of strong earnings, and I'm feeling confident but not FOMO-driven."&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Refine
&lt;/h3&gt;

&lt;p&gt;Over time, wins and losses become patterns. The app helps extract personal trading rules like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"Never risk more than 2% on a single position"&lt;/li&gt;
&lt;li&gt;"Don't trade within 30 minutes of market open"&lt;/li&gt;
&lt;li&gt;"Don't trade on FOMO"&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. AI Discipline Score
&lt;/h3&gt;

&lt;p&gt;Here's where it gets interesting. An AI reviews each trade and scores whether the trader &lt;strong&gt;followed their own rules&lt;/strong&gt; — not whether they made money. A disciplined loss is better than a lucky win.&lt;/p&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend&lt;/strong&gt;: Nuxt 3 (SSR for SEO)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend&lt;/strong&gt;: Go-Zero (high-performance Go microservice framework)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Scoring&lt;/strong&gt;: Claude API for analyzing trade journals against personal rules&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Database&lt;/strong&gt;: MySQL with structured trade logs&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The Explainer Video
&lt;/h2&gt;

&lt;p&gt;I also built an explainer video using &lt;strong&gt;Remotion&lt;/strong&gt; (React-based programmatic video framework) with Edge-TTS for voiceover generation. The whole video is code — every animation, transition, and scene is a React component.&lt;/p&gt;

&lt;p&gt;  &lt;iframe src="https://www.youtube.com/embed/DXWyrXoNYxM"&gt;
  &lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;Key lesson from video production: &lt;strong&gt;never use CSS &lt;code&gt;filter: blur()&lt;/code&gt; in Remotion&lt;/strong&gt; — it causes frame-to-frame flickering in headless Chrome's multi-threaded rendering. Use &lt;code&gt;radial-gradient&lt;/code&gt; and &lt;code&gt;textShadow&lt;/code&gt; instead, and render with &lt;code&gt;--concurrency=1&lt;/code&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned
&lt;/h2&gt;

&lt;p&gt;The biggest insight: traders don't need more information. They need a system that makes their existing knowledge actionable even when emotions are running high.&lt;/p&gt;

&lt;p&gt;If you're interested, try it free at &lt;a href="https://keeprule.com" rel="noopener noreferrer"&gt;keeprule.com&lt;/a&gt;. Would love feedback from the dev community!&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built by &lt;a href="https://keeprule.com" rel="noopener noreferrer"&gt;William Wang&lt;/a&gt; — also building &lt;a href="https://geoscoreai.com" rel="noopener noreferrer"&gt;GEOScore AI&lt;/a&gt; for AI search visibility.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>javascript</category>
      <category>startup</category>
    </item>
    <item>
      <title>From Invisible to Cited: How One Website Improved Their GEO Score from 23 to 87</title>
      <dc:creator>William Wang</dc:creator>
      <pubDate>Fri, 27 Mar 2026 10:17:45 +0000</pubDate>
      <link>https://dev.to/williamwangai/from-invisible-to-cited-how-one-website-improved-their-geo-score-from-23-to-87-173h</link>
      <guid>https://dev.to/williamwangai/from-invisible-to-cited-how-one-website-improved-their-geo-score-from-23-to-87-173h</guid>
      <description>&lt;p&gt;&lt;em&gt;By William Wang, Founder of GEOScore AI&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;This is the story of how a mid-sized B2B SaaS company went from being completely invisible to AI search engines to being regularly cited by ChatGPT, Perplexity, and Google's AI Overviews — in 8 weeks.&lt;/p&gt;

&lt;p&gt;The company (which asked to remain anonymous) sells project management software. They had strong traditional SEO — ranking on page 1 for several competitive keywords. But when they tested queries about their product category in ChatGPT and Perplexity, they were never mentioned. Their competitors were.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Starting Point: GEO Score 23/100
&lt;/h2&gt;

&lt;p&gt;When they ran their first scan through &lt;a href="https://geoscoreai.com" rel="noopener noreferrer"&gt;GEOScore AI&lt;/a&gt;, the results were sobering:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Overall GEO Score&lt;/strong&gt;: 23/100 (Grade: F)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Crawler Access&lt;/strong&gt;: Blocked — robots.txt was blocking GPTBot, ClaudeBot, and PerplexityBot&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;llms.txt&lt;/strong&gt;: Missing entirely&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Schema Markup&lt;/strong&gt;: Only basic Organization schema, no Article or FAQ markup&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Content Structure&lt;/strong&gt;: Long-form content buried answers under lengthy introductions&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Author Signals&lt;/strong&gt;: No author bylines on blog posts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The diagnosis was clear: their site was technically invisible to AI search engines, and even if crawlers could access it, the content was not structured for citation.&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 1-2: Technical Foundation
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Fix 1: robots.txt (Impact: Critical)
&lt;/h3&gt;

&lt;p&gt;They updated robots.txt to explicitly allow all major AI crawlers. This single change was the most important — without it, nothing else would matter.&lt;/p&gt;

&lt;p&gt;Before:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight conf"&gt;&lt;code&gt;&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: *
&lt;span class="n"&gt;Disallow&lt;/span&gt;: /&lt;span class="n"&gt;api&lt;/span&gt;/
&lt;span class="n"&gt;Disallow&lt;/span&gt;: /&lt;span class="n"&gt;admin&lt;/span&gt;/
&lt;span class="c"&gt;# No AI-specific rules = default allow, BUT...
# Their Cloudflare WAF was blocking unknown user agents
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;After:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight conf"&gt;&lt;code&gt;&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;GPTBot&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /

&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;ChatGPT&lt;/span&gt;-&lt;span class="n"&gt;User&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /

&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;ClaudeBot&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /

&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;PerplexityBot&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /

&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: &lt;span class="n"&gt;Google&lt;/span&gt;-&lt;span class="n"&gt;Extended&lt;/span&gt;
&lt;span class="n"&gt;Allow&lt;/span&gt;: /

&lt;span class="n"&gt;User&lt;/span&gt;-&lt;span class="n"&gt;agent&lt;/span&gt;: *
&lt;span class="n"&gt;Disallow&lt;/span&gt;: /&lt;span class="n"&gt;api&lt;/span&gt;/
&lt;span class="n"&gt;Disallow&lt;/span&gt;: /&lt;span class="n"&gt;admin&lt;/span&gt;/
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;They also updated their Cloudflare WAF rules to whitelist AI crawler user agents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GEO Score after Week 2: 41/100&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Fix 2: llms.txt (Impact: High)
&lt;/h3&gt;

&lt;p&gt;They created a comprehensive llms.txt file listing their product pages, key blog posts, documentation, and case studies.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Time to implement: 30 minutes&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 3-4: Content Restructuring
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Fix 3: Direct Answer Format
&lt;/h3&gt;

&lt;p&gt;They restructured their top 15 blog posts to lead with direct answers. Instead of:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"In today's fast-paced business environment, project management has become increasingly complex..."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;They rewrote openings like:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;"The best project management methodology for remote teams in 2026 is a hybrid approach combining async Kanban boards with weekly synchronous sprint reviews. Here is why, and how to implement it."&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Fix 4: FAQ Sections
&lt;/h3&gt;

&lt;p&gt;They added FAQ sections with Schema.org FAQPage markup to their 10 most-visited pages. Each FAQ contained 5-8 questions that mapped to real queries users ask AI search engines.&lt;/p&gt;

&lt;h3&gt;
  
  
  Fix 5: Factual Density
&lt;/h3&gt;

&lt;p&gt;They audited content for vague claims and replaced them with specifics:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;"Improves productivity" → "Reduces project delivery time by 31% based on data from 2,400 teams"&lt;/li&gt;
&lt;li&gt;"Many companies use our tool" → "Used by 8,500+ teams including 12 Fortune 500 companies"&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;GEO Score after Week 4: 62/100&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 5-6: Authority Building
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Fix 6: Author Bylines
&lt;/h3&gt;

&lt;p&gt;Every blog post got a proper author byline with credentials, photo, and link to the author's LinkedIn. They also created individual author pages.&lt;/p&gt;

&lt;h3&gt;
  
  
  Fix 7: Schema Markup Expansion
&lt;/h3&gt;

&lt;p&gt;They added:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Article schema to all blog posts (with author, datePublished, dateModified)&lt;/li&gt;
&lt;li&gt;FAQPage schema to FAQ sections&lt;/li&gt;
&lt;li&gt;Organization schema with comprehensive company details&lt;/li&gt;
&lt;li&gt;Product schema to product pages&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;GEO Score after Week 6: 74/100&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Week 7-8: Optimization and Monitoring
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Fix 8: Internal Linking
&lt;/h3&gt;

&lt;p&gt;They improved internal linking to ensure their most important content was discoverable within 2 clicks from the homepage.&lt;/p&gt;

&lt;h3&gt;
  
  
  Fix 9: Content Freshness
&lt;/h3&gt;

&lt;p&gt;They updated dates on all evergreen content and added "Last updated" timestamps.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Final GEO Score: 87/100 (Grade: A)&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Results
&lt;/h2&gt;

&lt;p&gt;Within 4 weeks of reaching GEO Score 87:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;ChatGPT&lt;/strong&gt; started citing their blog posts in responses about project management best practices&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Perplexity&lt;/strong&gt; began including their product in comparison queries ("best project management tools for remote teams")&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Google AI Overviews&lt;/strong&gt; started featuring snippets from their FAQ sections&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;They estimated the AI search traffic represented approximately &lt;strong&gt;15% additional organic traffic&lt;/strong&gt; on top of their existing traditional search traffic — and this percentage was growing monthly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Key Takeaways
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;robots.txt is the #1 blocker&lt;/strong&gt; — If AI crawlers cannot access your site, nothing else matters. This accounted for the biggest single score jump (23 → 41).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Content structure matters more than content quality&lt;/strong&gt; — Their content was already high quality. The problem was that it was not structured for AI extraction.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Small changes compound&lt;/strong&gt; — No single fix transformed their score. It was the combination of 9 targeted improvements that moved them from 23 to 87.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Speed matters&lt;/strong&gt; — The sooner you fix technical blockers, the sooner AI systems start indexing your content. They wished they had started 6 months earlier.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Measurement drives improvement&lt;/strong&gt; — Running regular &lt;a href="https://geoscoreai.com" rel="noopener noreferrer"&gt;GEOScore&lt;/a&gt; scans after each change let them see which fixes had the most impact and prioritize accordingly.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Your Turn
&lt;/h2&gt;

&lt;p&gt;Want to know your GEO score? Run a free scan at &lt;a href="https://geoscoreai.com" rel="noopener noreferrer"&gt;geoscoreai.com&lt;/a&gt; — takes 60 seconds, no signup. You will get your score, top 3 blocking issues, and a clear starting point for improvement.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;William Wang is the founder of &lt;a href="https://geoscoreai.com" rel="noopener noreferrer"&gt;GEOScore AI&lt;/a&gt;. He writes about AI search optimization and helping websites get found by the next generation of search engines.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>seo</category>
      <category>ai</category>
      <category>webdev</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
