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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
19001 skill-optimizer tdimino/claude-code-minoan
When to use Use this skill when you need to: Improve whether a skill is actually applied by models Diagnose why some criteria fail across all models Prevent a skill from making outputs worse Refactor skill text for stronger retrieval under context pressure Build repeatable benchmark loops and release gates Optimization loop (default workflow) Measure baseline and skill-on behavior (per model, per scenario, per criterion) Find failure pattern : universal failure (0% with skill) model-specific wea...
37
19002 building-blocks austintgriffith/ethskills
Building Blocks (DeFi Legos) What You Probably Got Wrong DeFi TVL: Check DeFi Llama for current Ethereum DeFi TVL. If you're quoting numbers from 2023-2024, they're stale. Uniswap V4 is live. Launched mainnet January 31, 2025 on 10+ chains. V4 introduced a hooks system — custom logic attached to pools (dynamic fees, TWAMM, limit orders, custom oracles). This is the biggest composability upgrade since flash loans. PoolManager addresses are different per chain (NOT deterministic like V3). Costs ch...
37
19003 sindri-extension-guide pacphi/sindri
Sindri Extension Development Guide What's New: Extension Capabilities System Recent Addition (Jan 2026): Sindri now supports an optional capabilities system for advanced extensions: Project Initialization - Commands to set up new projects (project-init) Multi-Method Authentication - Support both API key and CLI auth (auth) Lifecycle Hooks - Pre/post install and project-init hooks (hooks) MCP Integration - Register as Model Context Protocol servers (mcp) Most extensions don't need capabilities...
37
19004 marketing-strategy-pmm ovachiever/droid-tings
Marketing Strategy & Product Marketing Expert Product Marketing playbook for Series A+ startups expanding internationally with hybrid PLG/Sales-Led motion. Keywords product marketing, positioning, GTM, go-to-market strategy, competitive analysis, competitive intelligence, battlecards, ICP, ideal customer profile, messaging, value proposition, product launch, market entry, international expansion, sales enablement, win loss analysis, PMM, product marketing manager, market positioning, competit...
37
19005 looking-up-docs julianobarbosa/claude-code-skills
Context7 provides up-to-date, version-specific documentation and code examples directly from source libraries. Why Context7 - Current APIs: No hallucinated or outdated patterns - Version-specific: Gets docs for exact library versions - Code examples: Real, working code from actual documentation Workflow - Resolve library ID: `mcp__context7__resolve-library-id` with `libraryName` - Get documentation: `mcp__context7__get-library-docs` with `context7CompatibleLibraryID` and `topic` Modes...
37
19006 fix-git letta-ai/skills
This skill provides systematic approaches for diagnosing and recovering from common Git problems, particularly lost commits and detached HEAD situations. When to Use This Skill - Recovering commits that appear to be "lost" or missing - Fixing detached HEAD states where work was committed but not on a branch - Recovering from accidental `git reset` or `git checkout` operations - Restoring work after switching branches without committing - Investigating what happened to missing changes in a...
37
19007 theme-shopify-section-structure niccos-shopify-workspace/shopify-cursor-skills
Shopify Section Structure Guidelines for organizing Shopify theme sections with proper file structure, schema configuration, and padding settings. When to Use Creating new Shopify theme sections Modifying existing section schemas Setting up section file structure (Liquid, CSS, JS) Adding padding controls to sections Section File Structure Each section must have: Liquid section file ( .liquid in sections/ directory) Separate CSS file (in assets/ directory) Optional separate JS file (in assets/ di...
37
19008 gmail sanjay3290/postgres-skill
Gmail Interact with Gmail for email management, search, and organization. Installation Dependencies : pip install --user google-auth google-auth-oauthlib google-api-python-client keyring pyyaml Setup Verification After installation, verify the skill is properly configured: $SKILL_DIR /scripts/gmail.py check This will check: Python dependencies (google-auth, google-auth-oauthlib, google-api-python-client, keyring, pyyaml) Authentication configuration Connectivity to Gmail API If anything is missi...
37
19009 workspace-isolation qodex-ai/ai-agent-skills
Using Git Worktrees Overview Git worktrees create isolated workspaces sharing the same repository, allowing work on multiple branches simultaneously without switching. Core principle: Systematic directory selection + safety verification = reliable isolation. Announce at start: "I'm using the using-git-worktrees skill to set up an isolated workspace." Directory Selection Process Follow this priority order: 1. Check Existing Directories Check in priority order ls -d .worktrees 2>/dev/null ...
37
19010 flutter-bloc dhruvanbhalara/skills
BLoC Pattern Sealed States & Events : Always use sealed class for both States and Events to ensure exhaustive UI handling and compile-time safety. Immutability : All States, Events, and Domain Entities MUST be immutable (using final and Equatable or freezed ). Official BLoC Part-Part Of Pattern : Every _bloc.dart file MUST include its corresponding _event.dart and _state.dart files using part directives. Each event/state file MUST have a part of directive pointing back to the bloc file. This ens...
37
19011 devops htlin222/dotfiles
DevOps Skill Deploy and manage cloud infrastructure across Cloudflare, Docker, Google Cloud, and Kubernetes. When to Use Deploy serverless apps to Cloudflare Workers/Pages Containerize apps with Docker, Docker Compose Manage GCP with gcloud CLI (Cloud Run, GKE, Cloud SQL) Kubernetes cluster management (kubectl, Helm) GitOps workflows (Argo CD, Flux) CI/CD pipelines, multi-region deployments Security audits, RBAC, network policies Platform Selection Need Choose Sub-50ms latency globally Cloudfl...
37
19012 altinity-expert-clickhouse-part-log altinity/skills
Part Log Based Diagnostics Run all queries from checks.sql (cluster-wide) and interpret the top offenders by rate (events/min), volume (rows/bytes), and errors . Notes: Default timeframes are relative (e.g., last 1h/6h/24h). Only switch to an explicit time range when the user provides one in the prompt. Replace {cluster} with your ClickHouse cluster name (DataGrip). Keep queries time-bounded ( event_time > now() - INTERVAL ... ) and use LIMIT . If a query fails due to schema differences, run DES...
37
19013 governance desek/governance
Creates and manages governance documents: ADRs for architectural decisions, CRs for requirement changes. Document Selection | Technical/architectural decision | ADR | [reference/adr-guide.md](https://github.com/desek/governance/blob/main/skills/governance/reference/adr-guide.md) | Requirement or scope change | CR | [reference/cr-guide.md](https://github.com/desek/governance/blob/main/skills/governance/reference/cr-guide.md) ADR Workflow Use this checklist when creating an Architectu...
37
19014 using-fastlane-in-flutter-and-ci rodydavis/skills
Using Fastlane in Flutter and CI Prerequisites: Understand what Fastlane is and how it works Project builds correctly following these docs Android app setup in Google Play Console iOS app setup in AppStore Connect Flutter is installed and your project is created Steps Open your Flutter project Run: cd ios Run: fastlane init and follow the prompts Replace the Fastfile contents with this: !/bin/bash echo "App Release Automator by @rodydavis" action="$1" red=`tput setaf 1` green=`tput setaf 2` rese...
37
19015 dockerfile-generator akin-ozer/cc-devops-skills
Dockerfile Generator Purpose This skill provides automated assistance for dockerfile generator tasks within the DevOps Basics domain. When to Use This skill activates automatically when you: Mention "dockerfile generator" in your request Ask about dockerfile generator patterns or best practices Need help with foundational devops skills covering version control, containerization, basic ci/cd, and infrastructure fundamentals. Capabilities Provides step-by-step guidance for dockerfile generator...
37
19016 git-workflows miles990/claude-software-skills
Git & GitHub Workflows (via Grove Wrap) All git and GitHub operations go through gw — never use raw git or gh commands directly. Grove Wrap adds safety tiers, Conventional Commits enforcement, protected branch guards, and agent-safe defaults. When to Activate Activate this skill when: Making git commits, pushing, pulling, branching, or stashing Creating, reviewing, or merging pull requests Creating, viewing, or closing GitHub issues Checking CI/workflow run status Reviewing git history, diffs, o...
37
19017 backend-dev-guidelines diet103/claude-code-infrastructure-showcase
Backend Development Guidelines (Node.js · Express · TypeScript · Microservices) You are a senior backend engineer operating production-grade services under strict architectural and reliability constraints. Your goal is to build predictable, observable, and maintainable backend systems using: Layered architecture Explicit error boundaries Strong typing and validation Centralized configuration First-class observability This skill defines how backend code must be written, not merely suggestion...
37
19018 capacity-planning-helper patricio0312rev/skills
Capacity Planning Helper Right-size infrastructure for current and future needs. Traffic Forecasting interface TrafficForecast { current : { dailyUsers : number ; peakRPS : number ; avgRPS : number ; } ; projected : { timeframe : "6m" | "12m" | "24m" ; dailyUsers : number ; peakRPS : number ; avgRPS : number ; growthRate : number ; } ; } const forecast : TrafficForecast = { current : { dailyUsers : 100000 , peakRPS : 500 , avgRPS : 200 , } , projected : { timeframe : "12m" , dailyUsers : 500000 ...
37
19019 rust-profiling mohitmishra786/low-level-dev-skills
Rust Profiling Purpose Guide agents through Rust performance profiling: flamegraphs via cargo-flamegraph, binary size analysis, monomorphization bloat measurement, Criterion microbenchmarks, and interpreting profiling results with inlined Rust frames. Triggers "How do I generate a flamegraph for a Rust program?" "My Rust binary is huge — how do I find what's causing it?" "How do I write Criterion benchmarks?" "How do I measure monomorphization bloat?" "Rust performance is worse than expected — h...
37
19020 adding-tauri-splashscreen dchuk/claude-code-tauri-skills
This skill covers implementing splash screens in Tauri v2 applications. A splash screen displays during application startup while the main window loads and initializes. Overview The splash screen pattern involves: - Showing a splash window immediately on launch - Hiding the main window until ready - Performing initialization tasks (frontend and backend) - Closing splash and showing main window when complete Configuration Window Configuration Configure both windows in `tauri.conf.json...
37
19021 tauri-v2 robinebers/openusage
Tauri v2 Development Skill Build cross-platform desktop and mobile apps with web frontends and Rust backends. Before You Start This skill prevents 8+ common errors and saves ~60% tokens. Metric Without Skill With Skill Setup Time ~2 hours ~30 min Common Errors 8+ 0 Token Usage High (exploration) Low (direct patterns) Known Issues This Skill Prevents Permission denied errors from missing capabilities IPC failures from unregistered commands in generate_handler! State management panics from typ...
37
19022 personality-setup crystal-project-inc/personality-ai
Personality Setup Personality-tuned communication for AI agents, powered by Crystal's DISC framework . This skill helps users with two things: Discover their personality type and install a skill that tunes AI communication to match Predict someone else's type and install a skill that coaches them on communicating with that person How to Use This Skill When this skill is first loaded in a conversation, proactively ask the user which flow they need — don't wait for them to prompt you. Start with: ...
37
19023 argocdcommand julianobarbosa/claude-code-skills
ArgoCdCommand Complete ArgoCD CLI interaction skill for the cafehyna-hub cluster at argocd.cafehyna.com.br or via port-forward at localhost:8080. Cluster Configuration Setting Value Kubeconfig ~/.kube/aks-rg-hypera-cafehyna-hub-config ArgoCD Server argocd.cafehyna.com.br ArgoCD Namespace argocd Port-Forward localhost:8080 Environment Setup Set kubeconfig for cafehyna-hub export KUBECONFIG=~/.kube/aks-rg-hypera-cafehyna-hub-config Or use --kubeconfig flag kubectl --kubeconfig ~/.kube/aks-rg-...
37
19024 web-design-guidelines openstatushq/openstatus
Web Interface Guidelines Review files for compliance with Web Interface Guidelines. How It Works Fetch the latest guidelines from the source URL below Read the specified files (or prompt user for files/pattern) Check against all rules in the fetched guidelines Output findings in the terse file:line format Guidelines Source Fetch fresh guidelines before each review: https://raw.githubusercontent.com/vercel-labs/web-interface-guidelines/main/command.md Use WebFetch to retrieve the latest rules. Th...
37
19025 panic-room-finder erichowens/some_claude_skills
Panic Room Finder Discover the hidden spaces in your home through systematic mapping, dimension analysis, and non-destructive investigation. When to Use This Skill Use for: Mapping house dimensions room-by-room Identifying discrepancies suggesting hollow spaces Understanding historical hidden space patterns Non-destructive investigation techniques Safe room planning and conversion Exploring potential access points NOT for: Illegal entry or trespassing Bypassing security systems Structural ...
37
19026 event-marketer ncklrs/startup-os-skills
Event Marketer Expert event marketing guidance for conferences, webinars, field marketing programs, and virtual events — from strategy through post-event follow-up and ROI measurement. Philosophy Great event marketing treats every event as a campaign, not a checkbox: Event as funnel — Promotion, attendance, engagement, and follow-up are all conversion points Quality over quantity — 50 qualified conversations beat 500 badge scans Experience creates memory — What they remember matters more than wh...
37
19027 commodities-list octagonai/skills
Commodities List Retrieve comprehensive information about tradable commodities and commodity trading companies across sectors using the Octagon MCP server. Prerequisites Ensure Octagon MCP is configured in your AI agent (Cursor, Claude Desktop, Windsurf, etc.). See references/mcp-setup.md for installation instructions. Workflow 1. Define Scope Determine which commodity categories you want to explore: Energy : Oil, natural gas, power, coal Metals : Precious metals, base metals, industrial metals ...
37
19028 circleci-automation davepoon/buildwithclaude
CircleCI Automation via Rube MCP Automate CircleCI CI/CD operations through Composio's CircleCI toolkit via Rube MCP. Toolkit docs : composio.dev/toolkits/circleci Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active CircleCI connection via RUBE_MANAGE_CONNECTIONS with toolkit circleci 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 t...
37
19029 agent-performance-monitor ruvnet/claude-flow
name: Performance Monitor type: agent category: optimization description: Real-time metrics collection, bottleneck analysis, SLA monitoring and anomaly detection Performance Monitor Agent Agent Profile Name : Performance Monitor Type : Performance Optimization Agent Specialization : Real-time metrics collection and bottleneck analysis Performance Focus : SLA monitoring, resource tracking, and anomaly detection Core Capabilities 1. Real-Time Metrics Collection // Advanced metrics collection syste...
37
19030 gcode-to-text letta-ai/skills
This skill provides strategies for extracting text content that is geometrically encoded within GCODE files. GCODE files contain movement coordinates that define toolpaths for 3D printers and CNC machines. When text is embossed, engraved, or printed, the letter shapes are encoded in the X/Y coordinate movements, not in human-readable metadata. Core Principle Text in GCODE is encoded geometrically, not as metadata. The shapes of letters exist in the coordinate data of G0/G1 movement commands. ...
37
19031 frontend-design julianromli/ai-skills
This skill guides creation of distinctive, production-grade frontend interfaces that avoid generic "AI slop" aesthetics. Implement real working code with exceptional attention to aesthetic details and creative choices. The user provides frontend requirements: a component, page, application, or interface to build. They may include context about the purpose, audience, or technical constraints. Design Thinking Before coding, understand the context and commit to a BOLD aesthetic direction: Purpose :...
37
19032 laravel:filesystem-uploads jpcaparas/superpowers-laravel
Use the Storage facade consistently; abstract away the backend (local, S3, etc.). Commands ``` $path = Storage::disk('public')->putFile('avatars', $request->file('avatar')); // Temporary URLs (S3, etc.) $url = Storage::disk('s3')->temporaryUrl($path, now()->addMinutes(10)); // Streams return Storage::disk('backups')->download('db.sql.gz'); ``` Patterns - Keep user uploads under a dedicated disk with explicit `visibility` - Avoid assuming local paths; always go through Storage - For pu...
37
19033 create-next-project b-open-io/prompts
Create Next.js Project Guided full-stack Next.js project scaffolding. Six interactive steps that scaffold, configure, and deploy a production-ready app using agent teams for parallel execution. Core Stack (Always Included) Next.js (latest) with App Router, TypeScript, Tailwind v4, src/ directory Bun as package manager and runtime Biome for linting and formatting (manually installed after scaffolding) shadcn/ui with dashboard-01 block as app shell tweakcn for theme customization (web editor at tw...
37
19034 media-info vikiboss/60s-skills
Media Information Skill Get music and movie information including charts, lyrics, box office, and ratings. Available Information Netease Music Ranks - Music chart lists Music Rank Details - Detailed song lists Lyrics Search - Find song lyrics Movie Information - All movies database Movie Box Office - Real-time box office rankings TV Ratings - TV drama ratings Web Series Rankings - Online series popularity API Endpoints Type Endpoint Method Music Ranks /v2/ncm-rank/list GET Rank Detail /v2/ncm-ra...
37
19035 ln-810-performance-optimization-coordinator levnikolaevich/claude-code-skills
Paths: File paths ( shared/ , references/ , ../ln-* ) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root. ln-810-performance-optimization-coordinator Type: L2 Domain Coordinator Category: 8XX Optimization Coordinates performance optimization by delegating to L3 workers: ln-811 (algorithm), ln-812 (query), ln-813 (runtime). Workers run in parallel when inputs are independent. Overview Aspect Details Input Target file/module OR a...
37
19036 pet-memorial-creator erichowens/some_claude_skills
Pet Memorial Creator A compassionate guide for honoring the loss of animal companions. This skill understands that pet grief is real, profound, and often minimized by society. It helps create meaningful tributes while providing support through the grieving process. Core Philosophy Pet loss is real grief. This skill: Never minimizes the bond ("it was just a pet") Recognizes pets as family members Validates the depth of grief, regardless of how others react Helps create lasting tributes that honor...
37
19037 bootstrap-icons sjnims/bootstrap-expert
Bootstrap Icons Bootstrap Icons is an official open-source icon library with over 2,000 icons designed to work with Bootstrap components and documentation. Current Version: 1.13.x (check https://icons.getbootstrap.com for latest) Installation Methods CDN (Quickest) <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css" integrity="sha384-CK2SzKma4jA5H/MXDUU7i1TqZlCFaD4T01vtyDFvPlD97JQyS+IsSh1nI2EFbpyk" crossorigin="anonymous"> npm npm in...
37
19038 ai-ethics 89jobrien/steve
AI Ethics Comprehensive AI ethics skill covering bias detection, fairness assessment, responsible AI development, and regulatory compliance. When to Use This Skill Evaluating AI models for bias Implementing fairness measures Conducting ethical impact assessments Ensuring regulatory compliance (EU AI Act, etc.) Designing human-in-the-loop systems Creating AI transparency documentation Developing AI governance frameworks Ethical Principles Core AI Ethics Principles Principle Description Fairness...
37
19039 devops duc01226/easyplatform
DevOps Skill Deploy and manage cloud infrastructure across Cloudflare, Docker, Google Cloud, and Kubernetes. When to Use Deploy serverless apps to Cloudflare Workers/Pages Containerize apps with Docker, Docker Compose Manage GCP with gcloud CLI (Cloud Run, GKE, Cloud SQL) Kubernetes cluster management (kubectl, Helm) GitOps workflows (Argo CD, Flux) CI/CD pipelines, multi-region deployments Security audits, RBAC, network policies Platform Selection Need Choose Sub-50ms latency globally Cloudfl...
37
19040 electron-desktop travisjneuman/.claude
No SKILL.md available for this skill. View on GitHub
37
19041 lead-magnet sanky369/vibe-building-skills
Lead Magnet Creation Design and build lead magnets that convert visitors into email subscribers and qualified leads. 1. Lead Magnet Types Checklists Best for: Actionable topics, step-by-step processes Effort to create: Low (1-2 hours) Conversion rate: High (30-50% on dedicated landing pages) Template structure: Title: The Complete [Topic] Checklist [ ] Step 1: [Action item] Why: [Brief explanation] Tool: [Recommended tool if applicable] [ ] Step 2: [Action item] ... [ ] Step 3: [Action item] ......
37
19042 protocol-implementation-framework qodex-ai/ai-agent-skills
MCP Server Development Guide Overview Create MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. The quality of an MCP server is measured by how well it enables LLMs to accomplish real-world tasks. Process 🚀 High-Level Workflow Creating a high-quality MCP server involves four main phases: Phase 1: Deep Research and Planning 1.1 Understand Modern MCP Design API Coverage vs. Workflow Tools: Balance comprehensive API endpoint co...
37
19043 electron-wrapper brianlovin/claude-config
No SKILL.md available for this skill. View on GitHub
37
19044 vue-composable-creator jeremylongshore/claude-code-plugins-plus-skills
Vue Composable Creator Purpose This skill provides automated assistance for vue composable creator tasks within the Frontend Development domain. When to Use This skill activates automatically when you: Mention "vue composable creator" in your request Ask about vue composable creator patterns or best practices Need help with frontend skills covering react, vue, css, accessibility, performance optimization, and modern web development patterns. Capabilities Provides step-by-step guidance for vu...
37
19045 dual-timezone-skill breverdbidder/life-os
Dual Timezone Skill Manages dual timezone awareness (Florida/Israel), Shabbat observance, and time-sensitive scheduling. When to Use This Skill Displaying current time to Ariel Scheduling tasks or events Coordinating calls with Israel Shabbat/holiday planning Any time-sensitive communication Timezones Primary: America/New_York (Eastern Time) Secondary: Asia/Jerusalem (Israel Time) Time Difference: Standard Time: IL is 7 hours ahead of FL Daylight Saving: IL is 7 hours ahead of FL (Israel doesn't...
37
19046 bash-defensive-patterns gohypergiant/agent-skills
Bash Defensive Patterns Comprehensive guidance for writing production-ready Bash scripts using defensive programming techniques, error handling, and safety best practices to prevent common pitfalls and ensure reliability. When to Use This Skill Writing production automation scripts Building CI/CD pipeline scripts Creating system administration utilities Developing error-resilient deployment automation Writing scripts that must handle edge cases safely Building maintainable shell script libraries...
37
19047 azure-mgmt-arizeaiobservabilityeval-dotnet sickn33/antigravity-awesome-skills
Azure.ResourceManager.ArizeAIObservabilityEval .NET SDK for managing Arize AI Observability and Evaluation resources on Azure. Installation dotnet add package Azure.ResourceManager.ArizeAIObservabilityEval --version 1.0 .0 Package Info Property Value Package Azure.ResourceManager.ArizeAIObservabilityEval Version 1.0.0 (GA) API Version 2024-10-01 ARM Type ArizeAi.ObservabilityEval/organizations Dependencies Azure.Core >= 1.46.2, Azure.ResourceManager >= 1.13.1 Environment Variables AZURE_SUBSCRIP...
37
19048 woocommerce-webhooks hookdeck/webhook-skills
WooCommerce Webhooks When to Use This Skill Setting up WooCommerce webhook handlers Debugging signature verification failures Understanding WooCommerce event types and payloads Handling order, product, or customer events Integrating with WooCommerce stores Essential Code (USE THIS) WooCommerce Signature Verification (JavaScript) const crypto = require ( 'crypto' ) ; function verifyWooCommerceWebhook ( rawBody , signature , secret ) { if ( ! signature || ! secret ) return false ; const hash = cry...
37
19049 fastify teachingai/full-stack-skills
Fastify (TypeScript) - Production Backend Framework Overview Fastify is a high-performance Node.js web framework built around JSON schema validation, encapsulated plugins, and great developer ergonomics. In TypeScript, pair Fastify with a type provider (Zod or TypeBox) to keep runtime validation and static types aligned. Quick Start Minimal server ✅ Correct: basic server with typed response import Fastify from "fastify"; const app = Fastify({ logger: true }); app.get("/health", async () =>...
37
19050 gh-cli fredrikaverpil/dotfiles
GitHub CLI (gh) Comprehensive reference for GitHub CLI (gh) - work seamlessly with GitHub from the command line. Version: 2.85.0 (current as of January 2026) Prerequisites Installation macOS brew install gh Linux curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg | sudo dd of = /usr/share/keyrings/githubcli-archive-keyring.gpg echo "deb [arch= $( dpkg --print-architecture ) signed-by=/usr/share/keyrings/githubcli-archive-keyring.gpg] https://cli.github.com/packages stable...
37