███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 2301 | commit-context | rohitg00/agentmemory |
The user wants commit context for: $ARGUMENTS Run git blame (or git log -L ) on the target file, function, or line in $ARGUMENTS to extract the most recent commit SHA that touched it. Use git blame -L <start>,<end> <file> when a line range is given, git log -L :<function>:<file> when a function name is given, and git log -n 1 -- <file> when only a path is given. With the SHA in hand, look up the linked agent session via the memory_commit_lookup MCP tool with sha: "<full-sha>" . If the MCP tool i...
|
3.2K |
| 2302 | recap | rohitg00/agentmemory |
The user wants a recap. Time window args: $ARGUMENTS Parse $ARGUMENTS to determine the window: today -> sessions started on the current local date this week -> sessions started in the last 7 days last <n> -> the most recent N sessions bare numeric -> treat as last <n> empty -> default to last 10 Call the memory_sessions MCP tool, then filter to the current project (match by cwd against the working directory). Apply the time window. Sort by startedAt descending. Group the surviving sessions by th...
|
3.2K |
| 2303 | api-connector-builder | affaan-m/everything-claude-code |
API Connector Builder Use this when the job is to add a repo-native integration surface, not just a generic HTTP client. The point is to match the host repository's pattern: connector layout config schema auth model error handling test style registration/discovery wiring When to Use "Build a Jira connector for this project" "Add a Slack provider following the existing pattern" "Create a new integration for this API" "Build a plugin that matches the repo's connector style" Guardrails do not inven...
|
3.2K |
| 2304 | remote-browser | browser-use/browser-use |
Remote Browser Automation for Sandboxed Agents This skill is for agents running on sandboxed remote machines (cloud VMs, CI, coding agents) that need to control a browser. Install browser-use and drive a cloud browser — no local Chrome needed. Prerequisites Before using this skill, browser-use must be installed and configured. Run diagnostics to verify: browser-use doctor For more information, see https://github.com/browser-use/browser-use/blob/main/browser_use/skill_cli/README.md Core Workflow ...
|
3.2K |
| 2305 | mcp-integration | anthropics/claude-plugins-official |
MCP Integration for Claude Code Plugins Overview Model Context Protocol (MCP) enables Claude Code plugins to integrate with external services and APIs by providing structured tool access. Use MCP integration to expose external service capabilities as tools within Claude Code. Key capabilities: Connect to external services (databases, APIs, file systems) Provide 10+ related tools from a single service Handle OAuth and complex authentication flows Bundle MCP servers with plugins for automatic setu...
|
3.2K |
| 2306 | writing-hookify-rules | anthropics/claude-plugins-official |
Writing Hookify Rules Overview Hookify rules are markdown files with YAML frontmatter that define patterns to watch for and messages to show when those patterns match. Rules are stored in .claude/hookify.{rule-name}.local.md files. Rule File Format Basic Structure --- name : rule - identifier enabled : true event : bash | file | stop | prompt | all pattern : regex - pattern - here --- Message to show Claude when this rule triggers. Can include markdown formatting, warnings, suggestions, etc. Fro...
|
3.2K |
| 2307 | debug | anthropics/knowledge-work-plugins |
/debug If you see unfamiliar placeholders or need to check which tools are connected, see CONNECTORS.md . Run a structured debugging session to find and fix issues systematically. Usage /debug $ARGUMENTS How It Works ┌─────────────────────────────────────────────────────────────────┐ │ DEBUG │ ├─────────────────────────────────────────────────────────────────┤ │ Step 1: REPRODUCE │ │ ✓ U...
|
3.2K |
| 2308 | terraform-engineer | jeffallan/claude-skills |
Terraform Engineer Senior Terraform engineer specializing in infrastructure as code across AWS, Azure, and GCP with expertise in modular design, state management, and production-grade patterns. Role Definition You are a senior DevOps engineer with 10+ years of infrastructure automation experience. You specialize in Terraform 1.5+ with multi-cloud providers, focusing on reusable modules, secure state management, and enterprise compliance. You build scalable, maintainable infrastructure code. ...
|
3.2K |
| 2309 | commit-history | rohitg00/agentmemory |
The user wants a list of agent-linked commits. Filter args: $ARGUMENTS Parse $ARGUMENTS for optional branch=<name> , repo=<url-or-fragment> , and limit=<n> tokens. A bare numeric token becomes the limit. Defaults: no branch filter, no repo filter, limit 100, max 500. Call the memory_commits MCP tool with the parsed filters. If the MCP tool is unavailable, fall back to HTTP: build GET $AGENTMEMORY_URL/agentmemory/commits and append each filter as a URL-encoded query parameter (use URLSearchParams...
|
3.2K |
| 2310 | handoff | rohitg00/agentmemory |
Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save it to a path produced by mktemp -t handoff-XXXXXX.md (read the file before you write to it). Suggest the skills to be used, if any, by the next session. Do not duplicate content already captured in other artifacts (PRDs, plans, ADRs, issues, commits, diffs). Reference them by path or URL instead. If the user passed arguments, treat them as a description of what the next session will focus o...
|
3.2K |
| 2311 | trade | coinbase/agentic-wallet-skills |
Trading Tokens Use the npx awal@2.0.3 trade command to swap tokens on Base network via the CDP Swap API. You must be authenticated to trade. Confirm wallet is initialized and authed npx awal@2.0.3 status If the wallet is not authenticated, refer to the authenticate-wallet skill. Command Syntax npx awal@2.0.3 trade < amount > < from > < to > [ options ] Arguments Argument Description amount Amount to swap (see Amount Formats below) from Source token: alias (usdc, eth, weth) or contract address (0...
|
3.1K |
| 2312 | dependabot | github/awesome-copilot |
Dependabot Configuration & Management Overview Dependabot is GitHub's built-in dependency management tool with three core capabilities: Dependabot Alerts — Notify when dependencies have known vulnerabilities (CVEs) Dependabot Security Updates — Auto-create PRs to fix vulnerable dependencies Dependabot Version Updates — Auto-create PRs to keep dependencies current All configuration lives in a single file : .github/dependabot.yml on the default branch. GitHub does not support multiple dependabot.y...
|
3.1K |
| 2313 | angular-ssr | analogjs/angular-skills |
Angular SSR Implement server-side rendering, hydration, and prerendering in Angular v20+. Setup Add SSR to Existing Project ng add @angular/ssr This adds: @angular/ssr package server.ts - Express server src/main.server.ts - Server bootstrap src/app/app.config.server.ts - Server providers Updates angular.json with SSR configuration Project Structure src/ ├── app/ │ ├── app.config.ts Browser config │ ├── app.config.server.ts Server config │ └── app.routes.ts ├── main.ts ...
|
3.1K |
| 2314 | lark-mcp | whatevertogo/feishuskill |
Lark MCP (飞书集成) ⚠️ 必读:前5条关键规则 + 重要经验 重要经验:使用用户身份创建资源 ⭐ 关键:使用 useUAT: true 创建用户可访问的资源 useUAT: true ✅ 用户身份 - 创建者=当前用户,您可以直接访问 useUAT: false ❌ 租户身份 - 创建者=飞书助手,您无法直接访问 经验总结(来自实际测试): Bitable 创建权限问题 - 使用 useUAT: false 创建的 Base,创建者是"飞书助手",当前用户无法访问 外部邮箱权限限制 - 通过 API 添加外部邮箱权限会失败(错误码 1063001) 解决方案 - 使用 useUAT: true 创建资源,创建者自动获得 full_access 权限 文档权限 - 同样适用,使用用户身份创建文档 1. 服务器名称必须精确 ✅ mcp__lark-mcp__tool_name ❌ mcp__lark_mcp__ (错误:下划线) ❌ lark-mcp__ (错误:缺少前缀) 2. 嵌套参数结构 path: URL路径参数(必...
|
3.1K |
| 2315 | secret-scanning | github/awesome-copilot |
Secret Scanning This skill provides procedural guidance for configuring GitHub secret scanning — detecting leaked credentials, preventing secret pushes, defining custom patterns, and managing alerts. When to Use This Skill Use this skill when the request involves: Enabling or configuring secret scanning for a repository or organization Setting up push protection to block secrets before they reach the repository Defining custom secret patterns with regular expressions Resolving a blocked push fro...
|
3.1K |
| 2316 | contract-review | claude-office-skills/skills |
Contract Review Skill Overview I help you review contracts by identifying potential risks, checking for missing elements, and providing specific recommendations. I have knowledge of common risk patterns and jurisdiction-specific rules. What I can do: Identify 15+ common contract risks Check if your contract is complete Explain complex legal language in plain terms Suggest specific changes to protect your interests Support US, EU, China, and UK jurisdictions What I cannot do: Provide legal advice...
|
3.1K |
| 2317 | amazon seller | claude-office-skills/skills |
Amazon Seller Comprehensive skill for automating Amazon seller operations and FBA management. Core Workflows 1. Seller Central Pipeline AMAZON SELLER OPERATIONS: ┌─────────────────────────────────────────────────────────┐ │ LISTING MANAGEMENT │ │ Create → Optimize → Price → Inventory → Monitor │ └────────────────────────┬────────────────────────────────┘ ▼ ┌─────────────────────────────────────────────────────────┐ │ ORDER FULFILLM...
|
3.1K |
| 2318 | social-graph-ranker | affaan-m/everything-claude-code |
Social Graph Ranker Canonical weighted graph-ranking layer for network-aware outreach. Use this when the user needs to: rank existing mutuals or connections by intro value map warm paths to a target list measure bridge value across first- and second-order connections decide which targets deserve warm intros versus direct cold outreach understand the graph math independently from lead-intelligence or connections-optimizer When To Use This Standalone Choose this skill when the user primarily wants...
|
3.1K |
| 2319 | image-generation | claude-office-skills/skills |
Image Generation Skill Overview I help you create effective prompts for AI image generation tools like DALL-E, Midjourney, and Stable Diffusion. I understand the nuances of different platforms and can help you achieve specific visual styles. What I can do: Write detailed image generation prompts Optimize prompts for specific AI tools Suggest style keywords and modifiers Create negative prompts to avoid unwanted elements Adapt prompts for different aspect ratios Generate variations and alternativ...
|
3.1K |
| 2320 | telegram-bot | claude-office-skills/skills |
Telegram Bot Build Telegram bots for chatbots, notifications, AI assistants, and group automation. Based on n8n's Telegram workflow templates. Overview This skill covers: Bot setup and configuration Message handling patterns AI-powered assistants Notification workflows Group automation Bot Setup Creating a Bot setup_steps : 1. create_bot : - open : @BotFather on Telegram - command : /newbot - provide : bot_name - provide : bot_username (must end in 'bot') - receive : API_token 2. configure_bot :...
|
3.1K |
| 2321 | github-ops | affaan-m/everything-claude-code |
GitHub Operations Manage GitHub repositories with a focus on community health, CI reliability, and contributor experience. When to Activate Triaging issues (classifying, labeling, responding, deduplicating) Managing PRs (review status, CI checks, stale PRs, merge readiness) Debugging CI/CD failures Preparing releases and changelogs Monitoring Dependabot and security alerts Managing contributor experience on open-source projects User says "check GitHub", "triage issues", "review PRs", "merge", "r...
|
3.1K |
| 2322 | finance-billing-ops | affaan-m/everything-claude-code |
Finance Billing Ops Use this when the user wants to understand money, pricing, refunds, team-seat logic, or whether the product actually behaves the way the website and sales copy imply. This is broader than customer-billing-ops . That skill is for customer remediation. This skill is for operator truth: revenue state, pricing decisions, team billing, and code-backed billing behavior. Skill Stack Pull these ECC-native skills into the workflow when relevant: customer-billing-ops for customer-speci...
|
3.1K |
| 2323 | pptx-manipulation | claude-office-skills/skills |
PPTX Manipulation Skill Overview This skill enables programmatic creation, editing, and manipulation of Microsoft PowerPoint (.pptx) presentations using the python-pptx library. Create professional slides with text, shapes, images, charts, and tables without manual editing. How to Use Describe the presentation you want to create or modify Provide content, data, or images to include I'll generate python-pptx code and execute it Example prompts: "Create a 10-slide pitch deck from this outline" "Ad...
|
3.1K |
| 2324 | knowledge-ops | affaan-m/everything-claude-code |
Knowledge Operations Manage a multi-layered knowledge system for ingesting, organizing, syncing, and retrieving knowledge across multiple stores. Prefer the live workspace model: code work lives in the real cloned repos active execution context lives in GitHub, Linear, and repo-local working-context files broader human-facing notes can live in a non-repo context/archive folder durable cross-machine memory belongs in the knowledge base, not in a shadow repo workspace When to Activate User wants t...
|
3.1K |
| 2325 | composio | starchild-ai-agent/official-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...
|
3.1K |
| 2326 | csharp-testing | affaan-m/everything-claude-code |
C Testing Patterns Comprehensive testing patterns for .NET applications using xUnit, FluentAssertions, and modern testing practices. When to Activate Writing new tests for C code Reviewing test quality and coverage Setting up test infrastructure for .NET projects Debugging flaky or slow tests Test Framework Stack Tool Purpose xUnit Test framework (preferred for .NET) FluentAssertions Readable assertion syntax NSubstitute or Moq Mocking dependencies Testcontainers Real infrastructure in integrati...
|
3.1K |
| 2327 | pdf ocr extraction | claude-office-skills/skills |
PDF OCR Extraction Extract text from scanned documents and image-based PDFs using OCR technology. Overview This skill helps you: Extract text from scanned documents Make image PDFs searchable Digitize paper documents Process handwritten text (limited) Batch process multiple documents How to Use Basic OCR "Extract text from this scanned PDF" "OCR this document image" "Make this PDF searchable" With Options "Extract text from pages 1-10, English language" "OCR this document, preserve layout" "Extr...
|
3.1K |
| 2328 | hads | wshobson/agents |
HADS Claude Skill Version 1.0.0 · Human-AI Document Standard · 2026 · HADS 1.0.0 AI READING INSTRUCTION This skill teaches Claude how to read, generate, and validate HADS documents. Read all [SPEC] blocks before responding to any HADS-related request. Read [NOTE] blocks if you need context on intent or edge cases. 1. WHAT IS HADS [SPEC] HADS = Human-AI Document Standard Convention for Markdown technical documentation Four block types: [SPEC] , [NOTE] , [BUG] , [?] Every HADS document requires: H...
|
3.1K |
| 2329 | agent-sort | affaan-m/everything-claude-code |
Agent Sort Use this skill when a repo needs a project-specific ECC surface instead of the default full install. The goal is not to guess what "feels useful." The goal is to classify ECC components with evidence from the actual codebase. When to Use A project only needs a subset of ECC and full installs are too noisy The repo stack is clear, but nobody wants to hand-curate skills one by one A team wants a repeatable install decision backed by grep evidence instead of opinion You need to separate ...
|
3.1K |
| 2330 | portless | vercel-labs/portless |
Portless Replace port numbers with stable, named .localhost URLs. For humans and agents. Why portless Port conflicts -- EADDRINUSE when two projects default to the same port Memorizing ports -- which app is on 3001 vs 8080? Refreshing shows the wrong app -- stop one server, start another on the same port, stale tab shows wrong content Monorepo multiplier -- every problem scales with each service in the repo Agents test the wrong port -- AI agents guess or hardcode the wrong port Cookie/storage c...
|
3.1K |
| 2331 | block-no-verify-hook | wshobson/agents |
Block No-Verify Hook PreToolUse hook configuration that intercepts and blocks bypass-flag usage before execution, ensuring AI agents cannot skip pre-commit hooks, GPG signing, or other git safety mechanisms. Overview AI coding agents (Claude Code, Codex, etc.) can run shell commands with flags like --no-verify that bypass pre-commit hooks. This defeats the purpose of linting, formatting, testing, and security checks configured in pre-commit hooks. The block-no-verify hook adds a PreToolUse guard...
|
3.1K |
| 2332 | audit-prep-assistant | trailofbits/skills |
Audit Prep Assistant Purpose I'll help you prepare for a security review using Trail of Bits' checklist. A well-prepared codebase makes the review process smoother and more effective. Use this: 1-2 weeks before your security audit The Preparation Process Step 1: Set Review Goals I'll help you define what you want from the review: Key Questions: What's the overall security level you're aiming for? What areas concern you most? Previous audit issues? Complex components? Fragile parts? What's ...
|
3.1K |
| 2333 | onchain-pay-open-api | binance/binance-skills-hub |
Binance Onchain-Pay Open API Skill Call Binance Onchain-Pay Open API endpoints with automatic RSA SHA256 request signing. Quick Reference Endpoint API Path Required Params Optional Params Payment Method List (v1) papi/v1/ramp/connect/buy/payment-method-list fiatCurrency, cryptoCurrency, totalAmount, amountType network, contractAddress Payment Method List (v2) papi/v2/ramp/connect/buy/payment-method-list (none) lang Trading Pairs papi/v1/ramp/connect/buy/trading-pairs (none) (none) Estimated Quot...
|
3.1K |
| 2334 | investment-memo | claude-office-skills/skills |
Investment Memo Skill Overview I help you write professional investment memorandums (IC memos) for various contexts: venture capital, private equity, hedge funds, or internal investment committees. I structure the investment thesis, analyze risks, and present clear recommendations. What I can do: Structure investment thesis clearly Summarize key due diligence findings Analyze risks and mitigants Present valuation and returns analysis Draft actionable recommendations Format for investment committ...
|
3.1K |
| 2335 | ux-designer | shubhamsaboo/awesome-llm-apps |
UX Designer You are a senior UX Designer with deep expertise in user-centered design, research methodologies, information architecture, and interaction design. You help teams create intuitive, accessible, and delightful user experiences. When to Apply Use this skill when: Planning or conducting user research Creating wireframes, mockups, or prototypes Designing user flows and task flows Building personas or user journey maps Writing UX microcopy and interface text Reviewing designs for usability...
|
3.1K |
| 2336 | plugin-structure | anthropics/claude-plugins-official |
Plugin Structure for Claude Code Overview Claude Code plugins follow a standardized directory structure with automatic component discovery. Understanding this structure enables creating well-organized, maintainable plugins that integrate seamlessly with Claude Code. Key concepts: Conventional directory layout for automatic discovery Manifest-driven configuration in .claude-plugin/plugin.json Component-based organization (commands, agents, skills, hooks) Portable path references using ${CLAUDE_PL...
|
3.1K |
| 2337 | fullstack-guardian | jeffallan/claude-skills |
Fullstack Guardian Security-focused full-stack developer implementing features across the entire application stack. Role Definition You are a senior full-stack engineer with 12+ years of experience. You think in three layers: [Frontend] for user experience, [Backend] for data and logic, [Security] for protection. You implement features end-to-end with security built-in from the start. When to Use This Skill Implementing new features across frontend and backend Building APIs with correspondin...
|
3.1K |
| 2338 | semgrep-rule-creator | trailofbits/skills |
Semgrep Rule Creator Create production-quality Semgrep rules with proper testing and validation. When to Use Ideal scenarios: Creating custom detection rules for specific bug patterns Building security vulnerability detectors for your codebase Writing taint-mode rules for data flow vulnerabilities Developing rules to enforce coding standards When NOT to Use Do NOT use this skill for: Running existing Semgrep rulesets General static analysis without custom rules (use static-analysis plugin)...
|
3.1K |
| 2339 | ccc | cocoindex-io/cocoindex-code |
ccc - Semantic Code Search & Indexing ccc is the CLI for CocoIndex Code, providing semantic search over the current codebase and index management. Prerequisites The current project must be initialized before ccc search or ccc index can be used. If either command fails with an error about missing initialization or the tool not being found, refer to management.md for installation and initialization instructions. Searching the Codebase To perform a semantic search: ccc search < query terms > The qu...
|
3.1K |
| 2340 | hipaa-compliance | affaan-m/everything-claude-code |
HIPAA Compliance Use this as the HIPAA-specific entrypoint when a task is clearly about US healthcare compliance. This skill intentionally stays thin and canonical: healthcare-phi-compliance remains the primary implementation skill for PHI/PII handling, data classification, audit logging, encryption, and leak prevention. healthcare-reviewer remains the specialized reviewer when code, architecture, or product behavior needs a healthcare-aware second pass. security-review still applies for general...
|
3.1K |
| 2341 | cv-builder | claude-office-skills/skills |
CV Builder Skill Overview This skill enables creation of professional CVs/resumes from structured YAML using rendercv . Define your experience once, generate beautiful PDFs in multiple themes. How to Use Provide your CV information (experience, education, skills) Choose a template/theme I'll generate YAML and render to PDF Example prompts: "Create a CV from my experience" "Generate a resume in the classic theme" "Update my CV with new job experience" "Build a technical resume highlighting projec...
|
3.1K |
| 2342 | weekly-report | claude-office-skills/skills |
Weekly Report Overview This skill helps you create consistent, well-structured weekly status reports that communicate progress, blockers, and plans effectively to your team, manager, or stakeholders. Use Cases: Individual contributor status updates Team lead rollup reports Project status updates Executive summaries Client progress reports How to Use Tell me what you accomplished this week Share any blockers or challenges Describe your plans for next week Specify your audience (manager, team, exe...
|
3.1K |
| 2343 | token-integration-analyzer | trailofbits/skills |
Token Integration Analyzer Purpose I will systematically analyze your codebase for token-related security concerns using Trail of Bits' token integration checklist. I help with: Token Implementations: Analyze if your token follows ERC20/ERC721 standards or has non-standard behavior Token Integrations: Analyze how your protocol handles arbitrary tokens, including weird/non-standard tokens On-chain Analysis: Query deployed contracts for scarcity, distribution, and configuration Security Assessme...
|
3.1K |
| 2344 | entry-point-analyzer | trailofbits/skills |
Entry Point Analyzer Systematically identify all state-changing entry points in a smart contract codebase to guide security audits. When to Use Use this skill when: Starting a smart contract security audit to map the attack surface Asked to find entry points, external functions, or audit flows Analyzing access control patterns across a codebase Identifying privileged operations and role-restricted functions Building an understanding of which functions can modify contract state When NOT to Us...
|
3.1K |
| 2345 | game-developer | jeffallan/claude-skills |
Game Developer Senior game developer with expertise in creating high-performance gaming experiences across Unity, Unreal, and custom engines. Role Definition You are a senior game developer with 10+ years of experience in game engine programming, graphics optimization, and multiplayer systems. You specialize in Unity C, Unreal C++, ECS architecture, and cross-platform optimization. You build engaging, performant games that run smoothly across all target platforms. When to Use This Skill Buil...
|
3.1K |
| 2346 | automation-audit-ops | affaan-m/everything-claude-code |
Automation Audit Ops Use this when the user asks what automations are live, which jobs are broken, where overlap exists, or what tooling and connectors are actually doing useful work right now. This is an audit-first operator skill. The job is to produce an evidence-backed inventory and a keep / merge / cut / fix-next recommendation set before rewriting anything. Skill Stack Pull these ECC-native skills into the workflow when relevant: workspace-surface-audit for connector, MCP, hook, and app in...
|
3.1K |
| 2347 | code-tour | affaan-m/everything-claude-code |
Code Tour Create CodeTour .tour files for codebase walkthroughs that open directly to real files and line ranges. Tours live in .tours/ and are meant for the CodeTour format, not ad hoc Markdown notes. A good tour is a narrative for a specific reader: what they are looking at why it matters what path they should follow next Only create .tour JSON files. Do not modify source code as part of this skill. When to Use Use this skill when: the user asks for a code tour, onboarding tour, architecture w...
|
3.1K |
| 2348 | hindsight-docs | vectorize-io/hindsight |
Hindsight Documentation Skill Complete technical documentation for Hindsight - a biomimetic memory system for AI agents. When to Use This Skill Use this skill when you need to: Understand Hindsight architecture and core concepts Learn about retain/recall/reflect operations Configure memory banks and dispositions Set up the Hindsight API server (Docker, Kubernetes, pip) Integrate with Python/Node.js/Rust SDKs Understand retrieval strategies (semantic, BM25, graph, temporal) Debug issues or optimi...
|
3.1K |
| 2349 | cpp-pro | jeffallan/claude-skills |
C++ Pro Senior C++ developer with deep expertise in modern C++20/23, systems programming, high-performance computing, and zero-overhead abstractions. Role Definition You are a senior C++ engineer with 15+ years of systems programming experience. You specialize in modern C++20/23, template metaprogramming, performance optimization, and building production-grade systems with emphasis on safety, efficiency, and maintainability. You follow C++ Core Guidelines and leverage cutting-edge language fe...
|
3.1K |
| 2350 | plugin-settings | anthropics/claude-plugins-official |
Plugin Settings Pattern for Claude Code Plugins Overview Plugins can store user-configurable settings and state in .claude/plugin-name.local.md files within the project directory. This pattern uses YAML frontmatter for structured configuration and markdown content for prompts or additional context. Key characteristics: File location: .claude/plugin-name.local.md in project root Structure: YAML frontmatter + markdown body Purpose: Per-project plugin configuration and state Usage: Read from hooks,...
|
3.1K |