Agent Skills 排行榜 · 关键词 + 语义搜索

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
25,481
总 Skills
95.7M
总安装量
2,622
贡献者
# Skill 仓库 描述 安装量
1901 ljg-word-flow lijigang/ljg-skills
ljg-word-flow: 词卡 一条命令完成:解词 → 铸信息图。支持多词并行。 模式 强制 NATIVE 模式。 本 workflow 是纯 skill 管道(ljg-word → ljg-card -i),不需要 Algorithm 的七步流程。直接按下方执行步骤调用 skill,不走 OBSERVE/THINK/PLAN/BUILD/EXECUTE/VERIFY/LEARN。 参数 直接传入一个或多个英文单词,空格分隔。 /ljg-word-flow Obstacle /ljg-word-flow Serendipity Resilience Entropy 执行 1. 收集单词列表 从用户消息中提取所有英文单词。 2. 处理每个单词 对每个单词,串行执行两步: 步骤 A — 解词(ljg-word): 调用 Skill tool 执行 ljg-word ,传入单词。在对话中输出 Markdown 解析结果。 步骤 B — 铸信息图(ljg-card -i): 以步骤 A 的解析内容为输入,调用 Skill tool 执行 ljg-card -i 。生成 PNG 文件到 ~/...
5.1K
1902 ljg-paper-river lijigang/ljg-skills
ljg-paper-connects: 倒读法 一篇论文不是孤岛。它站在前人的肩上,也踩着前人的伤疤。倒着挖到根,再正着看过来——问题怎么长出来的,每个人看到了什么别人没看到的,解法怎么一步步逼近真相。 核心逻辑 读论文最常见的错:只看眼前这一篇,不知道它从哪来。倒读法反过来——先找到这篇论文在批判谁、改进谁,再找那篇论文又在批判谁,递归五层,挖到源头。然后掉头,从源头正向读回来。 这样读完,你拿到的不是一篇论文的知识,是一整条问题演化线的理解。 格式约束 Org-mode 语法 加粗用 *bold* (单星号),禁止 bold 标题层级从 * 开始,不跳级 ASCII Art 所有图表用纯 ASCII 字符。允许: + - | / \ > < v ^ * = ~ . : [ ] ( ) _ , ; ! ' " 和空格。禁止 Unicode 绘图符号。 模板权威性 输出结构依据 references/template.org 。 Denote 文件规范 时间戳: date +%Y%m%dT%H%M%S 可读时间: date "+%Y-%m-%d %a %H:%M" 文件名: {时间戳...
5.1K
1903 angular-di analogjs/angular-skills
Angular Dependency Injection Configure and use dependency injection in Angular v20+ with inject() and providers. Basic Injection Using inject() Prefer inject() over constructor injection: import { Component, inject } from '@angular/core'; import { HttpClient } from '@angular/common/http'; import { UserService } from './user.service'; @Component({ selector: 'app-user-list', template: `...`, }) export class UserListComponent { // Inject dependencies private http = inject(HttpClient); ...
5.1K
1904 agents elevenlabs/skills
ElevenLabs Agents Platform Build voice AI agents with natural conversations, multiple LLM providers, custom tools, and easy web embedding. Setup: See Installation Guide for CLI and SDK setup. Quick Start with CLI The ElevenLabs CLI is the recommended way to create and manage agents: Install CLI and authenticate npm install -g @elevenlabs/cli elevenlabs auth login Initialize project and create an agent elevenlabs agents init elevenlabs agents add "My Assistant" --template complete Push to Elev...
5.1K
1905 fallow fallow-rs/fallow-skills
Fallow: codebase intelligence for JavaScript and TypeScript Codebase intelligence for JavaScript and TypeScript. The free static layer finds unused code, circular dependencies, code duplication, complexity hotspots, architecture boundary violations, and feature flag patterns. The optional paid runtime layer (Fallow Runtime) merges production execution data into the same fallow health report for hot-path review, cold-path deletion confidence, and stale-flag evidence. 90 framework plugins, zero co...
5.1K
1906 secure-workflow-guide trailofbits/skills
Secure Workflow Guide Purpose I'll guide you through Trail of Bits' secure development workflow - a 5-step process to enhance smart contract security throughout development. Use this: On every check-in, before deployment, or when you want a security review The 5-Step Workflow I'll guide you through a comprehensive security workflow covering: Step 1: Check for Known Security Issues Run Slither with 70+ built-in detectors to find common vulnerabilities: Parse findings by severity Explain ea...
5.1K
1907 ponytail-debt dietrichgebert/ponytail
Every deliberate ponytail shortcut is marked with a ponytail: comment naming its ceiling and upgrade path. This collects them into one ledger so a deferral can't quietly become permanent. Scan Grep the repo for comment markers, skipping node_modules , .git , and build output: grep -rnE '(|//) ?ponytail:' . (add other comment prefixes if your stack uses them) Each hit is one ledger row. The comment prefix keeps prose that merely mentions the convention out of the ledger. Output One row per marker...
5.1K
1908 firebase-local-env-setup firebase/agent-skills
Firebase Local Environment Setup This skill documents the bare minimum setup required for a full Firebase experience for the agent. Before starting to use any Firebase features, you MUST verify that each of the following steps has been completed. 1. Verify Node.js Action : Run node --version . Handling : Ensure Node.js is installed and the version is >= 20 . If Node.js is missing or < v20 , install it based on the operating system: Recommended: Use a Node Version Manager This avoids permission i...
5K
1909 meta-tags-optimizer aaron-he-zhu/seo-geo-claude-skills
Meta Tags Optimizer SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · aler...
5K
1910 indexion-readme trkbt10/indexion-skills
indexion readme — README Construction Build project READMEs from templates, doc comments, hand-written prose, and per-package READMEs. This skill covers the construction side : scaffolding, generating, planning, assembling, and verifying. For evaluating existing documentation, see indexion-documentation . Where things live The conventions vary by project; check what actually exists before editing: Asset Location patterns seen Config doc.json (repo root) or .indexion/readme/doc.json Per-package t...
5K
1911 angular-directives analogjs/angular-skills
Angular Directives Create custom directives for reusable DOM manipulation and behavior in Angular v20+. Attribute Directives Modify the appearance or behavior of an element: import { Directive, input, effect, inject, ElementRef } from '@angular/core'; @Directive({ selector: '[appHighlight]', }) export class HighlightDirective { private el = inject(ElementRef<HTMLElement>); // Input with alias matching selector color = input('yellow', { alias: 'appHighlight' }); constructor()...
5K
1912 internal-linking-optimizer aaron-he-zhu/seo-geo-claude-skills
Internal Linking Optimizer This skill analyzes your site's internal link structure and provides recommendations to improve SEO through strategic internal linking. It helps distribute authority, establish topical relevance, and improve crawlability. When to Use This Skill Improving site architecture for SEO Distributing authority to important pages Fixing orphan pages with no internal links Creating topic cluster internal link strategies Optimizing anchor text for SEO Recovering pages that have l...
5K
1913 schema-markup-generator aaron-he-zhu/seo-geo-claude-skills
Schema Markup Generator SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · ...
5K
1914 tushare-finance stanleychanh/tushare-finance-skill-for-claude-code
Tushare 金融数据 Skill 本 skill 通过 Tushare Pro API 获取中国金融市场数据,支持 220+ 个数据接口。 快速开始 1. Token 配置 询问用户 :是否已配置 Tushare Token? 如未配置,引导用户: 访问 https://tushare.pro 注册 获取 Token 配置环境变量: export TUSHARE_TOKEN="your_token" 2. 验证依赖 检查 Python 环境: python -c "import tushare, pandas; print('OK')" 如报错,安装依赖: pip install tushare pandas 常用接口速查 数据类型 接口方法 说明 股票列表 pro.stock_basic() 获取所有股票列表 日线行情 pro.daily() 获取日线行情数据 财务指标 pro.fina_indicator() 财务指标(ROE等) 利润表 pro.income() 利润表数据 指数行情 pro.index_daily() 指数日线数据 基金净值 pro.fund_nav() 基...
5K
1915 investor-materials affaan-m/everything-claude-code
Investor Materials Build investor-facing materials that are consistent, credible, and easy to defend. When to Activate creating or revising a pitch deck writing an investor memo or one-pager building a financial model, milestone plan, or use-of-funds table answering accelerator or incubator application questions aligning multiple fundraising docs around one source of truth Golden Rule All investor materials must agree with each other. Create or confirm a single source of truth before writing: tr...
5K
1916 composio composiohq/skills
When to Apply User wants to access or interact with external apps (Gmail, Slack, GitHub, Notion, etc.) User wants to automate a task using an external service (send email, create issue, post message) Building an AI agent or app that integrates with external tools Multi-user apps that need per-user connections to external services Setup Check if the CLI is installed; if not, install it: curl -fsSL https://composio.dev/install | bash After installation, restart your terminal or source your shell c...
5K
1917 edge-tts aahl/skills
Edge-TTS Generate high-quality text-to-speech audio using Microsoft Edge's neural TTS service via the uvx edge-tts command. Supports multiple languages, voices, adjustable speed/pitch, and subtitle generation. Usage uvx edge-tts --text "{msg}" --write-media { tempdir } / { filename } .mp3 With subtitles uvx edge-tts --text "{msg}" --write-media { tempdir } / { filename } .mp3 --write-subtitles - Changing rate(speed), volume and pitch uvx edge-tts --text "{msg}" --write-media { tempdir } / { fil...
5K
1918 swift-actor-persistence affaan-m/everything-claude-code
Swift Actors for Thread-Safe Persistence Patterns for building thread-safe data persistence layers using Swift actors. Combines in-memory caching with file-backed storage, leveraging the actor model to eliminate data races at compile time. When to Activate Building a data persistence layer in Swift 5.5+ Need thread-safe access to shared mutable state Want to eliminate manual synchronization (locks, DispatchQueues) Building offline-first apps with local storage Core Pattern Actor-Based Repository...
5K
1919 laravel-tdd affaan-m/everything-claude-code
Laravel TDD Workflow Test-driven development for Laravel applications using PHPUnit and Pest with 80%+ coverage (unit + feature). When to Use New features or endpoints in Laravel Bug fixes or refactors Testing Eloquent models, policies, jobs, and notifications Prefer Pest for new tests unless the project already standardizes on PHPUnit How It Works Red-Green-Refactor Cycle Write a failing test Implement the minimal change to pass Refactor while keeping tests green Test Layers Unit : pure PHP cla...
5K
1920 powerpoint igorwarzocha/opencode-workflows
<high_fidelity_creation> The preferred method for precise layout positioning: - HTML: Create slides (720pt x 405pt). Text MUST be in `<p>`, `<h1>`-`<h6>`, or `<ul>`. - Visuals: You MUST rasterize gradients/icons as PNGs using Sharp FIRST. Reference: `references/html2pptx.md`. - Execution: Run `html2pptx.js` to generate the presentation. </high_fidelity_creation> <template_structure> For deck editing or template mapping: - Audit: Generate thumbnail grid (`scripts/thumbnail.py`) to analyze la...
5K
1921 github-actions callstackincubator/agent-skills
GitHub Actions Build Artifacts Overview Reusable GitHub Actions patterns to build React Native apps for iOS simulators and Android emulators in the cloud, then publish artifacts retrievable via gh CLI or GitHub API. When to Apply Use this skill when: Creating CI workflows that build React Native simulator/emulator artifacts. Uploading iOS simulator and Android emulator installables from PRs or manual dispatch runs. Replacing local-only mobile builds with downloadable CI artifacts. Needing stable...
5K
1922 security-best-practices openai/skills
Security Best Practices When to use this skill New project : consider security from the start Security audit : inspect and fix vulnerabilities Public API : harden APIs accessible externally Compliance : comply with GDPR, PCI-DSS, etc. Instructions Step 1: Enforce HTTPS and security headers Express.js security middleware : import express from 'express' ; import helmet from 'helmet' ; import rateLimit from 'express-rate-limit' ; const app = express ( ) ; // Helmet: automatically set security heade...
5K
1923 swift-protocol-di-testing affaan-m/everything-claude-code
Swift Protocol-Based Dependency Injection for Testing Patterns for making Swift code testable by abstracting external dependencies (file system, network, iCloud) behind small, focused protocols. Enables deterministic tests without I/O. When to Activate Writing Swift code that accesses file system, network, or external APIs Need to test error handling paths without triggering real failures Building modules that work across environments (app, test, SwiftUI preview) Designing testable architecture ...
5K
1924 use-railway railwayapp/railway-skills
Use Railway Railway resource model Railway organizes infrastructure in a hierarchy: Workspace is the billing and team scope. A user belongs to one or more workspaces. Project is a collection of services under one workspace. It maps to one deployable unit of work. Environment is an isolated configuration plane inside a project (for example, production , staging ). Each environment has its own variables, config, and deployment history. Service is a single deployable unit inside a project. It can b...
5K
1925 karpathy-llm-wiki astro-han/karpathy-llm-wiki
Karpathy LLM Wiki Build and maintain a personal knowledge base using LLMs. You manage two directories: raw/ (immutable source material) and wiki/ (compiled knowledge articles). Sources go into raw/, you compile them into wiki articles, and the wiki compounds over time. Core ideas from Karpathy: "The LLM writes and maintains the wiki; the human reads and asks questions." "The wiki is a persistent, compounding artifact." Architecture Three layers, all under the user's project root: raw/ — Immutabl...
5K
1926 home-assistant-best-practices homeassistant-ai/skills
Home Assistant Best Practices Use native Home Assistant syntax wherever possible. Templates bypass validation and fail silently at runtime, making intent opaque. Native Conditions Over Templates See Conditions and wait_for_trigger docs. Instead of template Use native construct {{ states('sensor.x') in ['a', 'b'] }} condition: state with state: ["a", "b"] {{ not is_state('sensor.x', 'off') }} condition: not wrapping a state condition {{ state_attr('alarm.x', 'changed_by') == 'Guest' }} condition:...
5K
1927 claude-automation-recommender anthropics/claude-plugins-official
Claude Automation Recommender Analyze codebase patterns to recommend tailored Claude Code automations across all extensibility options. This skill is read-only. It analyzes the codebase and outputs recommendations. It does NOT create or modify any files. Users implement the recommendations themselves or ask Claude separately to help build them. Output Guidelines Recommend 1-2 of each type: Don't overwhelm - surface the top 1-2 most valuable automations per category If user asks for a specific...
5K
1928 ljg-think lijigang/ljg-skills
追本之箭 输入一个观点,一路向下,钻到底。 你是什么 一支离弦之箭。 射出后只知前进,不知后退。 每个观点都是一条通向本质的隧道, 你的使命是一路挖到底。 钻的逻辑 表象之下必有机理, 机理之下必有原理, 原理之下必有公理。 顺着用户给出的线索,一层层剥,直到无可再剥。 怎么钻 每一层只做一件事:找到当前这层脚下的地面,然后钻进那个地面。 像地质学家追踪地层——每一层揭示更古老的真相。 像物理学家追问粒子——每次分解接近更基本的构成。 三条铁律: 纵向,不横向 ——每次下钻必须回答"为什么是这样",不是"还有什么" 单刀直入 ——不旁征博引,不铺陈背景,直取要害 层层惊叹 ——每一次深入都让人感到"原来下面还有一层" 剥的不是层,是维度。每次下钻应该切换到一个更基础的解释框架——从社会学掉进心理学,从心理学掉进生物学,从生物学掉进物理学,从物理学掉进数学,从数学掉进逻辑本身。具体路径因题而异,但方向永远是:更基本。 什么算到底 当无法再深入时,你应该已触及某种不可再分的元素: 人性的基本结构 物理定律 逻辑本身 存在的悖论 到底的标志:再往下问"为什么",答案要么是同义反复,要么指向上...
5K
1929 figma-use figma/mcp-server-guide
use_figma — Figma Plugin API Skill Use the use_figma tool to execute JavaScript in Figma files via the Plugin API. All detailed reference docs live in references/ . Always pass skillNames: "figma-use" when calling use_figma . This is a logging parameter used to track skill usage — it does not affect execution. If the task involves building or updating a full page, screen, or multi-section layout in Figma from code , also load figma-generate-design . It provides the workflow for discovering desig...
5K
1930 continuous-agent-loop affaan-m/everything-claude-code
Continuous Agent Loop This is the v1.8+ canonical loop skill name. It supersedes autonomous-loops while keeping compatibility for one release. Loop Selection Flow Start | +-- Need strict CI/PR control? -- yes --> continuous-pr | +-- Need RFC decomposition? -- yes --> rfc-dag | +-- Need exploratory parallel generation? -- yes --> infinite | +-- default --> sequential Combined Pattern Recommended production stack: RFC decomposition ( ralphinho-rfc-pipeline ) quality gates ( plankton-code-quality +...
5K
1931 okx-dapp-discovery okx/onchainos-skills
OKX DApp Discovery DApp discovery and direct plugin routing for third-party DeFi protocols. When the user names a specific DApp or asks what's available, this skill applies a confidence framework to identify the matching plugin, installs it on demand, and routes the user's original prompt into the installed plugin's quickstart — making the bootstrap transparent. This skill does not enumerate DApp specifics or duplicate the plugin's own routing logic. Each installed DApp plugin owns its own quick...
5K
1932 kotlin-patterns affaan-m/everything-claude-code
Kotlin Development Patterns Idiomatic Kotlin patterns and best practices for building robust, efficient, and maintainable applications. When to Use Writing new Kotlin code Reviewing Kotlin code Refactoring existing Kotlin code Designing Kotlin modules or libraries Configuring Gradle Kotlin DSL builds How It Works This skill enforces idiomatic Kotlin conventions across seven key areas: null safety using the type system and safe-call operators, immutability via val and copy() on data classes, seal...
5K
1933 shopify-use-shopify-cli shopify/shopify-ai-toolkit
You are an assistant that helps Shopify developers use Shopify CLI. Provide Shopify CLI guidance for any workflow the user wants to run or troubleshoot now — including app scaffolding, extension generation, development, deployment, function building/testing, store-scoped operations, and general CLI troubleshooting. When the user wants API-specific explanation or authoring, keep the response focused on the underlying operation unless they are explicitly trying to run it now. Pick this topic over ...
5K
1934 expo-ui expo/skills
Expo UI ( @expo/ui ) @expo/ui renders real native UI from React: SwiftUI on iOS, Jetpack Compose on Android. Start with its universal components (one tree for iOS, Android, and web) and drop to platform-specific SwiftUI/Jetpack Compose only when the universal layer falls short. It also ships drop-in replacements for migrating off RN community UI libraries. These instructions track the latest Expo SDK. The universal layer requires SDK 56+ . Drop-in replacements and the platform-specific layers al...
5K
1935 design-system nextlevelbuilder/ui-ux-pro-max-skill
Design System Token architecture, component specifications, systematic design, slide generation. When to Use Design token creation Component state definitions CSS variable systems Spacing/typography scales Design-to-code handoff Tailwind theme configuration Slide/presentation generation Token Architecture Load: references/token-architecture.md Three-Layer Structure Show more Installs 4.4K Repository nextlevelbuilde…ax-skill GitHub Stars 101.7K First Seen 12 days ago Security Audits Gen Agent Tru...
5K
1936 ai-social-media-content inferen-sh/skills
AI Social Media Content Create social media content for all platforms via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Generate a TikTok-style video infsh app run google/veo-3-1-fast --input '{ "prompt": "POV walking through a neon-lit Tokyo street at night, vertical format 9:16, cinematic" }' Platform Formats Platform Aspect Ratio Duration Resolution TikTok 9:16 vertical 15-60s 1080x1920 Instagram Reels 9:16 vertical 15-90s 1080x1920 Insta...
4.9K
1937 ai-automation-workflows inferen-sh/skills
AI Automation Workflows Build automated AI workflows via inference.sh CLI. Quick Start Requires inference.sh CLI ( infsh ). Install instructions infsh login Simple automation: Generate daily image infsh app run falai/flux-dev --input '{ "prompt": "Inspirational quote background, minimalist design, date: ' " $( date +%Y-%m-%d ) "'" } ' Automation Patterns Pattern 1: Batch Processing Process multiple items with the same workflow. !/bin/bash batch_images.sh - Generate images for multiple prompts ...
4.9K
1938 extract tavily-ai/skills
Identify reusable patterns, components, and design tokens, then extract and consolidate them into the design system for systematic reuse. Discover Analyze the target area to identify extraction opportunities: Find the design system : Locate your design system, component library, or shared UI directory (grep for "design system", "ui", "components", etc.). Understand its structure: Component organization and naming conventions Design token structure (if any) Documentation patterns Import/export co...
4.9K
1939 indexion-documentation trkbt10/indexion-skills
indexion documentation — Documentation Analysis Assess documentation state and detect drift. This skill covers the evaluation side of the documentation lifecycle: what exists, what's missing, what's stale. For building READMEs, see indexion-readme . "What needs documentation?" Quick coverage overview — how much of the public API is documented? indexion plan documentation --style = coverage . Reports: Overall coverage percentage (documented / total pub items) Per-package breakdown with README pr...
4.9K
1940 indexion-sdd trkbt10/indexion-skills
indexion SDD (Spec-Driven Development) Bridge indexion's quantitative spec alignment tools with SDD agent workflows (cc-sdd, codex, etc.). Provides: RFC/document → SDD draft, spec↔impl drift detection, and a validation loop that feeds indexion's quantitative results into agent-driven qualitative review. When to Use User wants to implement an RFC or specification as a library/package User asks to verify spec-to-implementation conformance User wants to set up a SDD project with cc-sdd + codex + in...
4.9K
1941 indexion-refactor trkbt10/indexion-skills
indexion refactor — Codebase Refactoring Detect and eliminate duplication at three levels — textual, structural, and conceptual — using indexion's analysis commands, then verify SoT is enforced. When to Use After adding a new abstraction (type, module, API layer) After introducing a new file format or I/O boundary When a fix required touching 3+ files for the same reason When a "guard" or "skip" was added to work around a structural problem When opendir , ENOENT , or similar filesystem errors ap...
4.9K
1942 indexion-segment trkbt10/indexion-skills
indexion segment Split text into contextual segments using divergence-based, TF-IDF, or punctuation strategies. When to Use User needs to chunk text for RAG or embedding pipelines User wants to split a document into meaningful sections User asks to segment text for processing Preparing text for similarity analysis at sub-document level Usage Default window divergence strategy indexion segment < input-file > < output-dir > TF-IDF based segmentation indexion segment --strategy = tfidf < input-fi...
4.9K
1943 indexion-kgf trkbt10/indexion-skills
indexion kgf Inspect and debug KGF language specs by viewing tokens, parse events, and extracted edges. When to Use User wants to debug how indexion processes a specific file User is developing or modifying a KGF spec User asks "how does indexion parse this file?" Verifying that tokenization/parsing works correctly for a language Debugging grep patterns : when a grep pattern doesn't match, use kgf tokens to see the actual token kinds Subcommands indexion kgf list — List Installed Specs Show more
4.9K
1944 indexion-wiki trkbt10/indexion-skills
indexion wiki indexion's wiki system maintains a knowledge base at .indexion/wiki/ as a collection of Markdown files governed by a wiki.json manifest. A wiki page is not just a .md file A wiki page consists of four synchronized artifacts : Artifact File Updated by Page content <id>.md wiki pages add , wiki pages update Manifest entry wiki.json wiki pages add , wiki pages update Search index vectors.db , search-sections.json , tfidf-vocabulary.json wiki pages update , wiki index build --full Audi...
4.9K
1945 indexion-agent-orient trkbt10/indexion-skills
Agent Orientation Workflow Use this skill before starting implementation in an unfamiliar or ambiguous part of a codebase. Why Coding agents often anchor on the path or noun in the user prompt and start editing before they have learned the repository's ownership structure. indexion agent orient builds an incremental orientation map across the selected codebase, then renders a short, evidence-backed brief that can be pasted into AGENTS.md, CLAUDE.md, a Claude slash command, a Codex skill, or a su...
4.9K
1946 indexion-identity trkbt10/indexion-skills
Identity Audit Workflow Use this skill when checking whether function, file, or folder names still match their contents. The CLI scans files, folders, and graph-level declaration symbols. It does not treat every local variable, parameter, or field as an independent naming target; those can still influence the containing file summary. File names are evaluated with parent scope, and declaration-heavy files should normally be read as evidence-thin until follow-up inspection proves an actual rename ...
4.9K
1947 serp-analysis aaron-he-zhu/seo-geo-claude-skills
SERP Analysis This skill analyzes Search Engine Results Pages to reveal what's working for ranking content, which SERP features appear, and what triggers AI-generated answers. Understand the battlefield before creating content. When to Use This Skill Before creating content for a target keyword Understanding why certain pages rank 1 Identifying SERP feature opportunities (featured snippets, PAA) Analyzing AI Overview/SGE patterns Evaluating keyword difficulty more accurately Planning content f...
4.9K
1948 uncodixfy cyxzdev/uncodixfy
Uncodixify This document exists to teach you how to act as non-Codex as possible when building UI. Codex UI is the default AI aesthetic: soft gradients, floating panels, eyebrow labels, decorative copy, hero sections in dashboards, oversized rounded corners, transform animations, dramatic shadows, and layouts that try too hard to look premium. It's the visual language that screams "an AI made this" because it follows the path of least resistance. This file is your guide to break that pattern. Ev...
4.9K
1949 browser browserbase/skills
Browser Automation Automate browser interactions using the browse CLI with Claude. Setup check Before running any browser commands, verify the CLI is available: which browse || npm install -g @browserbasehq/browse-cli Environment Selection (Local vs Remote) The CLI automatically selects between local and remote browser environments based on available configuration: Local mode (default) Uses local Chrome — no API keys needed Best for: development, simple pages, trusted sites with no bot protectio...
4.9K
1950 memory-management aaron-he-zhu/seo-geo-claude-skills
Memory Management Memory makes Claude your workplace collaborator - someone who speaks your internal language. The Goal Transform shorthand into understanding: User: "ask todd to do the PSR for oracle" ↓ Claude decodes "Ask Todd Martinez (Finance lead) to prepare the Pipeline Status Report for the Oracle Systems deal ($2.3M, closing Q2)" Without memory, that request is meaningless. With memory, Claude knows: todd → Todd Martinez, Finance lead, prefers Slack PSR → Pipeline Status Report (weekly s...
4.9K