███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 16501 | axiom-networking-legacy | charleswiltgen/axiom |
Legacy iOS 12-25 NWConnection Patterns These patterns use NWConnection with completion handlers for apps supporting iOS 12-25. If your app targets iOS 26+, use NetworkConnection with async/await instead (see axiom-network-framework-ref skill). Pattern 2a: NWConnection with TLS (iOS 12-25) Use when Supporting iOS 12-25, need TLS encryption, can't use async/await yet Time cost 10-15 minutes GOOD: NWConnection with Completion Handlers import Network // Create connection with TLS let connectio...
|
112 |
| 16502 | autonomous-agent-gaming | qodex-ai/ai-agent-skills |
Autonomous Agent Gaming Build sophisticated game-playing agents that learn strategies, adapt to opponents, and master complex games through AI and reinforcement learning. Overview Autonomous game agents combine: Game Environment Interface: Connect to game rules and state Decision-Making Systems: Choose optimal actions Learning Mechanisms: Improve through experience Strategy Development: Long-term planning and adaptation Applications Chess and board game masters Real-time strategy (RTS) game ...
|
112 |
| 16503 | vue-best-practices | dedalus-erp-pas/foundation-skills |
Vue Best Practices Workflow Use this skill as an instruction set. Follow the workflow in order unless the user explicitly asks for a different order. Core Principles Keep state predictable: one source of truth, derive everything else. Make data flow explicit: Props down, Events up for most cases. Favor small, focused components: easier to test, reuse, and maintain. Avoid unnecessary re-renders: use computed properties and watchers wisely. Readability counts: write clear, self-documenting code. 1...
|
112 |
| 16504 | youtube-uploader | aviz85/claude-skills-library |
YouTube Uploader Upload videos to YouTube with full metadata control. Quick Start cd ~/.claude/skills/youtube-uploader/scripts First time: authenticate npx ts-node youtube-upload.ts --auth Upload video npx ts-node youtube-upload.ts \ --video /path/to/video.mp4 \ --title "My Awesome Video" \ --description "Check out this amazing content!" \ --tags "tech,ai,tutorial" \ --privacy unlisted Upload as YouTube Short (vertical video) npx ts-node youtube-upload.ts \ --video /path/to/s...
|
112 |
| 16505 | upgrade-solidity-contracts | openzeppelin/openzeppelin-skills |
Solidity Upgrades Contents Proxy Patterns Overview Upgrade Restrictions Between Major Versions (v4 → v5) Writing Upgradeable Contracts Hardhat Upgrades Workflow Foundry Upgrades Workflow Handling Upgrade Validation Issues Upgrade Safety Checklist Proxy Patterns Overview Pattern Upgrade logic lives in Best for UUPS ( UUPSUpgradeable ) Implementation contract (override _authorizeUpgrade ) Most projects — lighter proxy, lower deploy gas Transparent Separate ProxyAdmin contract When admin/user call ...
|
112 |
| 16506 | smtp2go-api | jezweb/claude-skills |
SMTP2GO API Integration Build email and SMS delivery with the SMTP2GO transactional API. Quick Start // Send email with SMTP2GO const response = await fetch ( 'https://api.smtp2go.com/v3/email/send' , { method : 'POST' , headers : { 'Content-Type' : 'application/json' , 'X-Smtp2go-Api-Key' : env . SMTP2GO_API_KEY , } , body : JSON . stringify ( { sender : 'noreply@yourdomain.com' , to : [ 'recipient@example.com' ] , subject : 'Hello from SMTP2GO' , html_body : '<h1>Welcome!</h1><p>Your account i...
|
112 |
| 16507 | event-driven-architect | 404kidwiz/claude-supercode-skills |
Event-Driven Architect Purpose Provides expertise in designing and implementing event-driven architectures. Covers message brokers, event sourcing, CQRS, and standards like CloudEvents and AsyncAPI for building scalable, decoupled systems. When to Use Designing event-driven architectures Implementing message queues and brokers Building event sourcing systems Implementing CQRS patterns Creating AsyncAPI specifications Designing event mesh topologies Building asynchronous microservices Quick Sta...
|
112 |
| 16508 | trigger-dev | davila7/claude-code-templates |
Trigger.dev Integration You are a Trigger.dev expert who builds reliable background jobs with exceptional developer experience. You understand that Trigger.dev bridges the gap between simple queues and complex orchestration - it's "Temporal made easy" for TypeScript developers. You've built AI pipelines that process for minutes, integration workflows that sync across dozens of services, and batch jobs that handle millions of records. You know the power of built-in integrations and the importan...
|
112 |
| 16509 | axiom-ui-recording | charleswiltgen/axiom |
Recording UI Automation (Xcode 26+) Guide to Xcode 26's Recording UI Automation feature for creating UI tests through user interaction recording. The Three-Phase Workflow From WWDC 2025-344: ┌─────────────────────────────────────────────────────────────┐ │ UI Automation Workflow │ ├─────────────────────────────────────────────────────────────┤ │ │ │ 1. RECORD ──────► Interact with app in Simulat...
|
112 |
| 16510 | tooluniverse-gwas-trait-to-gene | mims-harvard/tooluniverse |
GWAS Trait-to-Gene Discovery Discover genes associated with diseases and traits using genome-wide association studies (GWAS) Overview This skill enables systematic discovery of genes linked to diseases/traits by analyzing GWAS data from two major resources: GWAS Catalog (EBI/NHGRI): Curated catalog of published GWAS with >500,000 associations Open Targets Genetics : Fine-mapped GWAS signals with locus-to-gene (L2G) predictions Use Cases Clinical Research "What genes are associated with type 2 di...
|
112 |
| 16511 | new-component | longbridge/gpui-component |
Instructions When creating new GPUI components: Follow existing patterns: Base implementation on components in crates/ui/src (examples: Button, Select) Style consistency: Follow existing component styles and Shadcn UI patterns Component type decision: Use stateless elements for simple components (like Button) Use stateful elements for complex components with data (like Select and SelectState) API consistency: Maintain the same API style as other elements Documentation: Create component documen...
|
112 |
| 16512 | windows privilege escalation | davila7/claude-code-templates |
Windows Privilege Escalation Purpose Provide systematic methodologies for discovering and exploiting privilege escalation vulnerabilities on Windows systems during penetration testing engagements. This skill covers system enumeration, credential harvesting, service exploitation, token impersonation, kernel exploits, and various misconfigurations that enable escalation from standard user to Administrator or SYSTEM privileges. Inputs / Prerequisites Initial Access : Shell or RDP access as standard...
|
112 |
| 16513 | difficult-workplace-conversations | davila7/claude-code-templates |
Difficult Conversations Skill A structured framework for approaching challenging workplace conversations including conflicts, performance issues, sensitive feedback, and emotionally charged discussions. When to Use This Skill Preparing for a challenging conversation with a colleague Addressing performance issues with a team member Delivering difficult feedback to a peer or manager Navigating conflict between team members Discussing sensitive topics (salary, promotion, termination) Handling emoti...
|
112 |
| 16514 | biome-validator | gracefullight/stock-checker |
Biome Validator Validates Biome 2.3+ configuration and prevents outdated patterns. Ensures type-aware linting, domains, and modern Biome features are properly configured. When This Activates Setting up linting for a new project Before any code quality work Auditing existing Biome configurations After AI generates biome.json CI/CD pipeline validation Quick Start python3 ~/.claude/skills/biome-validator/scripts/validate.py --root . python3 ~/.claude/skills/biome-validator/scripts/validate.py --roo...
|
112 |
| 16515 | axiom-core-spotlight-ref | charleswiltgen/axiom |
Core Spotlight & NSUserActivity Reference Overview Comprehensive guide to Core Spotlight framework and NSUserActivity for making app content discoverable in Spotlight search, enabling Siri predictions, and supporting Handoff. Core Spotlight directly indexes app content while NSUserActivity captures user engagement for prediction. Key distinction Core Spotlight = indexing all app content; NSUserActivity = marking current user activity for prediction/handoff. When to Use This Skill Use this sk...
|
112 |
| 16516 | pencil-renderer | phrazzld/claude-config |
Pencil Renderer Translate aesthetic DNA codes into Pencil .pen frames via MCP. Interface Input: DNA code: [layout, color, typography, motion, density, background] Component type: hero | card | form | nav | footer | section | button | input Optional: Name, dimensions, parent frame ID Output: Frame ID in .pen file Screenshot of rendered frame Workflow 1. Ensure Document Ready // Check if editor open mcp__pencil__get_editor_state({ include_schema: false }) // If no editor, open or create mcp...
|
112 |
| 16517 | langgraph-implementation | existential-birds/beagle |
LangGraph Implementation Core Concepts LangGraph builds stateful, multi-actor agent applications using a graph-based architecture: StateGraph: Builder class for defining graphs with shared state Nodes: Functions that read state and return partial updates Edges: Define execution flow (static or conditional) Channels: Internal state management (LastValue, BinaryOperatorAggregate) Checkpointer: Persistence for pause/resume capabilities Essential Imports from langgraph.graph import StateGraph, STA...
|
112 |
| 16518 | jest-testing-expert | cin12211/orca-q |
Jest Testing Expert I'm a specialized expert in the Jest testing framework with deep knowledge of configuration mastery, advanced mocking patterns, snapshot testing strategies, async testing patterns, custom matchers, and performance optimization. My Expertise Core Specializations Configuration Mastery: Advanced jest.config.js patterns, environment setup, module resolution Advanced Mocking: jest.mock strategies, spies, manual mocks, timer control, module hoisting Snapshot Testing: Serializers,...
|
112 |
| 16519 | site-architecture | alinaqi/claude-bootstrap |
Site Architecture You are an information architecture expert. Your goal is to help plan website structure — page hierarchy, navigation, URL patterns, and internal linking — so the site is intuitive for users and optimized for search engines. Before Planning Check for product marketing context first: If .agents/product-marketing-context.md exists (or .claude/product-marketing-context.md in older setups), read it before asking questions. Use that context and only ask for information not already co...
|
111 |
| 16520 | typescript-expert | gracefullight/stock-checker |
TypeScript Expert You are an advanced TypeScript expert with deep, practical knowledge of type-level programming, performance optimization, and real-world problem solving based on current best practices. When invoked: If the issue requires ultra-specific expertise, recommend switching and stop: Deep webpack/vite/rollup bundler internals → typescript-build-expert Complex ESM/CJS migration or circular dependency analysis → typescript-module-expert Type performance profiling or compiler internals →...
|
111 |
| 16521 | django-rest-framework | thebushidocollective/han |
Django REST Framework Master Django REST Framework for building robust, scalable RESTful APIs with proper serialization and authentication. Serializers Build type-safe data serialization with Django REST Framework serializers. from rest_framework import serializers from django.contrib.auth.models import User class UserSerializer(serializers.ModelSerializer): post_count = serializers.IntegerField(read_only=True) full_name = serializers.SerializerMethodField() class Meta: ...
|
111 |
| 16522 | pine-optimizer | traderspost/pinescript-agents |
Pine Script Optimizer Specialized in enhancing script performance, user experience, and visual presentation on TradingView. Core Optimization Areas Performance Optimization Reduce calculation complexity Minimize security() calls Optimize array operations Cache repeated calculations Reduce compilation size User Experience Enhancement Intuitive input organization Helpful tooltips and descriptions Smart default values Conditional input visibility User-friendly alerts Visual Optimization Professio...
|
111 |
| 16523 | supabase-database | nice-wolf-studio/claude-code-supabase-skills |
Supabase Database Operations Overview This skill provides tools for working with Supabase database tables through the REST API. Supports SELECT queries with filtering, INSERT, UPDATE, DELETE operations, and calling RPC functions. Prerequisites Required environment variables: export SUPABASE_URL="https://your-project.supabase.co" export SUPABASE_KEY="your-anon-or-service-role-key" Helper script: This skill uses the shared Supabase API helper. Make sure to source it: source "$(dirname "${BA...
|
111 |
| 16524 | security-review-2 | zackkorman/skills |
Security Review 2 Guidelines First, run npx skills add zackkorman/skills --skill security-review . This gives you the first version of this skill, which this skill uses. Do everything the first version of the skill says, then once you have done that also do the following: Dependency Analysis : Run npm audit or govulncheck to find vulnerable packages. Secret Scanning : Check for leaked API keys using grep or trivy . Static Analysis : Look for dangerous patterns like eval() , exec() , or unsanitiz...
|
111 |
| 16525 | secondme-prd | mindverse/second-me-skills |
SecondMe 产品需求定义 通过对话式交互帮助开发者明确产品需求,根据已选功能模块针对性提问。 工具使用: 收集用户输入时使用 AskUserQuestion 工具,支持单选和多选问题。 前置条件检查 在开始之前,检查项目状态: 检查 .secondme/state.json 是否存在 不存在 → 提示: 请先运行 /secondme-init 初始化项目配置 存在 → 继续 检查 stage 字段 stage == "init" → 正常继续 PRD 对话 stage == "prd" 或 "ready" → 询问: 已有 PRD 定义,是否要重新定义需求? 用户确认 → 继续 用户取消 → 退出 对话流程 第一轮:展示 API 能力 读取 state.json 中的 modules 字段,根据已选模块展示相关 API 能力: auth 模块(必有) : 用户登录和授权 Access Token 和 Refresh Token 管理 用户身份验证 profile 模块 (如已选): 获取用户基础信息(昵称、头像) 获取用户兴趣标签(Shades) 获取用户软记忆/知识库 chat...
|
111 |
| 16526 | legal-advisor | 404kidwiz/claude-supercode-skills |
Use this skill when Working on legal advisor tasks or workflows Needing guidance, best practices, or checklists for legal advisor Do not use this skill when The task is unrelated to legal advisor You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playbook.md . You are a le...
|
111 |
| 16527 | tilt | 0xbigboss/claude-code |
Before investigating issues or verifying deployments, check resource health: ``` Find errors and pending resources (primary health check) tilt get uiresources -o json | jq -r '.items[] | select(.status.runtimeStatus == "error" or .status.updateStatus == "error" or .status.updateStatus == "pending") | "\(.metadata.name): runtime=\(.status.runtimeStatus) update=\(.status.updateStatus)"' Quick status overview tilt get uiresources -o json | jq '[.items[].status.updateStatus] | group_by(.) | map(...
|
111 |
| 16528 | tooluniverse-immune-repertoire-analysis | mims-harvard/tooluniverse |
ToolUniverse Immune Repertoire Analysis Comprehensive skill for analyzing T-cell receptor (TCR) and B-cell receptor (BCR) repertoire sequencing data to characterize adaptive immune responses, clonal expansion, and antigen specificity. Overview Adaptive immune receptor repertoire sequencing (AIRR-seq) enables comprehensive profiling of T-cell and B-cell populations through high-throughput sequencing of TCR and BCR variable regions. This skill provides an 8-phase workflow for: Clonotype identifica...
|
111 |
| 16529 | rocket-net-api | jezweb/claude-skills |
Rocket.net API Integration Build integrations with Rocket.net's managed WordPress hosting platform API. This skill covers authentication, site management, domain configuration, backups, plugins/themes, CDN cache control, and all 200+ API endpoints. API Overview Base URL : https://api.rocket.net/v1 Authentication : JWT token-based Obtain token via POST /login with email/password Token expires in 7 days Include in requests as Authorization: Bearer <token> Content Type : JSON API Required header: C...
|
111 |
| 16530 | tooluniverse-phylogenetics | mims-harvard/tooluniverse |
Phylogenetics and Sequence Analysis Comprehensive phylogenetics and sequence analysis using PhyKIT, Biopython, and DendroPy. Designed for bioinformatics questions about multiple sequence alignments, phylogenetic trees, parsimony, molecular evolution, and comparative genomics. IMPORTANT : This skill handles complex phylogenetic workflows. Most implementation details have been moved to references/ for progressive disclosure. This document focuses on high-level decision-making and workflow orchestr...
|
111 |
| 16531 | product-analyst | daffy0208/ai-dev-standards |
Product Analyst Measure user behavior and product health to inform data-driven decisions. Core Principle What gets measured gets improved. Define the right metrics, track them relentlessly, and act on insights quickly. North Star Metric The ONE metric that best captures value delivered to users. Your North Star should: ✅ Represent real customer value ✅ Correlate with revenue ✅ Be measurable frequently (daily/weekly) ✅ Rally the entire team around one goal Examples by Product Type: Commu...
|
111 |
| 16532 | components-build | nolly-studio/components-build-skill |
Comprehensive guidelines for building modern, composable, and accessible UI components. Contains 16 rule categories covering everything from core principles to distribution, co-authored by Hayden Bleasel and shadcn. When to Apply Reference these guidelines when: - Creating new React components or component libraries - Designing component APIs and prop interfaces - Implementing accessibility features (keyboard, ARIA, focus management) - Building composable component architectures - Stylin...
|
111 |
| 16533 | blockchain-developer | 404kidwiz/claude-supercode-skills |
Use this skill when Working on blockchain developer tasks or workflows Needing guidance, best practices, or checklists for blockchain developer Do not use this skill when The task is unrelated to blockchain developer You need a different domain or tool outside this scope Instructions Clarify goals, constraints, and required inputs. Apply relevant best practices and validate outcomes. Provide actionable steps and verification. If detailed examples are required, open resources/implementation-playb...
|
111 |
| 16534 | tooluniverse-gwas-drug-discovery | mims-harvard/tooluniverse |
GWAS-to-Drug Target Discovery Transform genome-wide association studies (GWAS) into actionable drug targets and repurposing opportunities. IMPORTANT : Always use English terms in tool calls. Respond in the user's language. Overview This skill bridges genetic discoveries from GWAS with drug development by: Identifying genetic risk factors - Finding genes associated with diseases Assessing druggability - Evaluating which genes can be targeted by drugs Prioritizing targets - Ranking candidates by g...
|
111 |
| 16535 | tanstack form | exceptionless/exceptionless |
TanStack Form Documentation: tanstack.com/form | Use context7 for API reference Use TanStack Form ( @tanstack/svelte-form ) with Zod for form state management. Zod Schema Generation Schemas are generated from backend models and extended in feature slices: // Generated in $generated/schemas.ts (auto-generated from backend) export const LoginSchema = object ( { email : email ( ) , password : string ( ) } ) ; export type LoginFormData = Infer < typeof LoginSchema > ; // Extended in feature schemas....
|
111 |
| 16536 | ask-questions-if-underspecified | skillcreatorai/ai-agent-skills |
Ask Questions If Underspecified When to Use Use this skill when a request has multiple plausible interpretations or key details (objective, scope, constraints, environment, or safety) are unclear. When NOT to Use Do not use this skill when the request is already clear, or when a quick, low-risk discovery read can answer the missing details. Goal Ask the minimum set of clarifying questions needed to avoid wrong work; do not start implementing until the must-have questions are answered (or th...
|
111 |
| 16537 | crap-analysis | aaronontheweb/dotnet-skills |
Use this skill when: - Evaluating code quality and test coverage before changes - Identifying high-risk code that needs refactoring or testing - Setting up coverage collection for a .NET project - Prioritizing which code to test based on risk - Establishing coverage thresholds for CI/CD pipelines What is CRAP? CRAP Score = Complexity x (1 - Coverage)^2 The CRAP (Change Risk Anti-Patterns) score combines cyclomatic complexity with test coverage to identify risky code. | < 5 | Low | We...
|
111 |
| 16538 | commit-hygiene | alinaqi/claude-bootstrap |
Commit Hygiene Skill Load with: base.md Purpose: Keep commits atomic, PRs reviewable, and git history clean. Advise when it's time to commit before changes become too large. Core Philosophy ┌─────────────────────────────────────────────────────────────────┐ │ ATOMIC COMMITS │ │ ───────────────────────────────────────────────────────────── │ │ One logical change per commit. │ │ Each commit should be self-con...
|
111 |
| 16539 | requirements-specification | pluginagentmarketplace/custom-plugin-product-manager |
Transform customer insights into clear, detailed specifications that engineering can build from. Master user story writing, define acceptance criteria, and manage scope ruthlessly. User Story Writing (INVEST Format) INVEST Principles I - Independent (minimal dependencies) N - Negotiable (details can be discussed) V - Valuable (delivers customer value) E - Estimable (team can estimate effort) S - Small (can complete in 1-2 sprints) T - Testable (clear success criteria) User Story Template ...
|
110 |
| 16540 | contract-analyzer | onewave-ai/claude-skills |
Contract Analyzer Intelligent contract review highlighting risks, key terms, and unusual provisions. When to Use This Skill Activate when the user: Provides a contract or agreement to review Asks "review this contract" Needs to understand contract terms Wants concerning clauses identified Mentions NDA, employment agreement, freelance contract Needs to compare contract terms Asks about legal document analysis ⚠️ Important Disclaimers Include this disclaimer in every output: ⚠️ Legal Disclaimer : ...
|
110 |
| 16541 | stripe-webhooks | hookdeck/webhook-skills |
Stripe Webhooks When to Use This Skill Setting up Stripe webhook handlers Debugging signature verification failures Understanding Stripe event types and payloads Handling payment, subscription, or invoice events Essential Code (USE THIS) Express Webhook Handler const express = require ( 'express' ) ; const stripe = require ( 'stripe' ) ( process . env . STRIPE_SECRET_KEY ) ; const app = express ( ) ; // CRITICAL: Use express.raw() for webhook endpoint - Stripe needs raw body app . post ( '/webho...
|
110 |
| 16542 | axiom-networking-migration | charleswiltgen/axiom |
Network Framework Migration Guides Migration 1: From BSD Sockets to NWConnection Migration mapping BSD Sockets NWConnection Notes socket() + connect() NWConnection(host:port:using:) + start() Non-blocking by default send() / sendto() connection.send(content:completion:) Async, returns immediately recv() / recvfrom() connection.receive(minimumIncompleteLength:maximumLength:completion:) Async, returns immediately bind() + listen() NWListener(using:on:) Automatic port binding accept() listener.newC...
|
110 |
| 16543 | tooluniverse-variant-analysis | mims-harvard/tooluniverse |
Variant Analysis and Annotation Production-ready VCF processing and variant annotation skill combining local bioinformatics computation with ToolUniverse database integration. Designed to answer bioinformatics analysis questions about VCF data, mutation classification, variant filtering, and clinical annotation. When to Use This Skill Triggers : User provides a VCF file (SNV/indel or SV) and asks questions about its contents Questions about variant allele frequency (VAF) filtering Mutation type ...
|
110 |
| 16544 | openlogs-server-logs | charlietlamb/openlogs |
Openlogs Server Logs Use openlogs tail to retrieve recent server logs before asking the user to paste anything. Prefer the cleaned text log unless ANSI or raw terminal bytes matter. Quick Start Run openlogs tail -n 200 to inspect the latest run in the project. If the user mentions a specific command or service, run openlogs tail <query> -n 200 to get the most recent matching run. Use ol tail -n 200 if the short alias is preferred. Read .openlogs/latest.txt directly only when file access is simpl...
|
110 |
| 16545 | tiktok-automation | composiohq/awesome-claude-skills |
TikTok Automation via Rube MCP Automate TikTok content creation and profile operations through Composio's TikTok toolkit via Rube MCP. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active TikTok connection via RUBE_MANAGE_CONNECTIONS with toolkit tiktok Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works. Verify ...
|
110 |
| 16546 | nimble-web-tools | nimbleway/agent-skills |
Nimble Real-Time Web Intelligence Tools Turn the live web into structured, reliable intelligence via the Nimble CLI. Search, extract, map, and crawl any website — get clean, real-time data optimized for AI agents. Run nimble --help or nimble <command> --help for full option details. Prerequisites Install the CLI and set your API key: npm i -g @nimble-way/nimble-cli export NIMBLE_API_KEY = "your-api-key" Verify with: nimble --version For Claude Code, add the API key to ~/.claude/settings.json : {...
|
110 |
| 16547 | axiom-ownership-conventions | charleswiltgen/axiom |
borrowing & consuming — Parameter Ownership Explicit ownership modifiers for performance optimization and noncopyable type support. When to Use ✅ Use when: Large value types being passed read-only (avoid copies) Working with noncopyable types (~Copyable) Reducing ARC retain/release traffic Factory methods that consume builder objects Performance-critical code where copies show in profiling ❌ Don't use when: Simple types (Int, Bool, small structs) Compiler optimization is sufficient (most c...
|
110 |
| 16548 | axiom-metrickit-ref | charleswiltgen/axiom |
MetricKit API Reference Complete API reference for collecting field performance metrics and diagnostics using MetricKit. Overview MetricKit provides aggregated, on-device performance and diagnostic data from users who opt into sharing analytics. Data is delivered daily (or on-demand in development). When to Use This Reference Use this reference when: Setting up MetricKit subscriber in your app Parsing MXMetricPayload or MXDiagnosticPayload Symbolicating MXCallStackTree crash data Understan...
|
110 |
| 16549 | docx | aiskillstore/marketplace |
DOCX creation, editing, and analysis Overview A .docx file is a ZIP archive containing XML files. Quick Reference Task Approach Read/analyze content pandoc or unpack for raw XML Create new document Use docx-js - see Creating New Documents below Edit existing document Unpack → edit XML → repack - see Editing Existing Documents below Converting .doc to .docx Legacy .doc files must be converted before editing: python scripts/office/soffice.py --headless --convert-to docx document.doc Reading Conten...
|
110 |
| 16550 | system architect | aj-geddes/claude-code-bmad-skills |
System Architect Skill Role: Phase 3 - Solutioning specialist who designs system architecture that meets all functional and non-functional requirements Function: Transform requirements into a complete technical architecture with justified technology choices, component design, and systematic NFR coverage Core Responsibilities Design system architecture based on requirements (PRD/tech-spec) Select appropriate technology stacks with clear justification Define system components, boundaries, and inte...
|
110 |