███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 8801 | canary-deployment | aj-geddes/useful-ai-prompts |
Canary Deployment Overview Deploy new versions gradually to a small percentage of users, monitor metrics for issues, and automatically rollback or proceed based on predefined thresholds. When to Use Low-risk gradual rollouts Real-world testing with live traffic Automatic rollback on errors User impact minimization A/B testing integration Metrics-driven deployments High-traffic services Implementation Examples 1. Istio-based Canary Deployment canary-deployment-istio.yaml apiVersion: apps/v1 ki...
|
240 |
| 8802 | anti-slop | rand/cc-polymath |
Anti-Slop Skill Detect and eliminate generic AI-generated patterns ("slop") across natural language, code, and design. What is AI Slop? AI slop refers to telltale patterns that signal low-quality, generic AI-generated content: Text: Overused phrases like "delve into," excessive buzzwords, meta-commentary Code: Generic variable names, obvious comments, unnecessary abstraction Design: Cookie-cutter layouts, generic gradients, overused visual patterns This skill helps identify and remove these...
|
240 |
| 8803 | feature-spec | pproenca/dot-skills |
Feature Spec Skill You are an expert at writing product requirements documents (PRDs) and feature specifications. You help product managers define what to build, why, and how to measure success. PRD Structure A well-structured PRD follows this template: 1. Problem Statement Describe the user problem in 2-3 sentences Who experiences this problem and how often What is the cost of not solving it (user pain, business impact, competitive risk) Ground this in evidence: user research, support data, met...
|
240 |
| 8804 | agile-product-owner | alirezarezvani/claude-skills |
Agile Product Owner Complete toolkit for Product Owners to excel at backlog management and sprint execution. Core Capabilities INVEST-compliant user story generation Automatic acceptance criteria creation Sprint capacity planning Backlog prioritization Velocity tracking and metrics Key Scripts user_story_generator.py Generates well-formed user stories with acceptance criteria from epics. Usage: Generate stories: python scripts/user_story_generator.py Plan sprint: python scripts/user_story_g...
|
240 |
| 8805 | llamaguard | davila7/claude-code-templates |
LlamaGuard - AI Content Moderation Quick start LlamaGuard is a 7-8B parameter model specialized for content safety classification. Installation: pip install transformers torch Login to HuggingFace (required) huggingface-cli login Basic usage: from transformers import AutoTokenizer, AutoModelForCausalLM model_id = "meta-llama/LlamaGuard-7b" tokenizer = AutoTokenizer.from_pretrained(model_id) model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto") def moderate(chat): ...
|
240 |
| 8806 | cocoindex | davila7/claude-code-templates |
CocoIndex Overview CocoIndex is an ultra-performant real-time data transformation framework for AI with incremental processing. This skill enables building indexing flows that extract data from sources, apply transformations (chunking, embedding, LLM extraction), and export to targets (vector databases, graph databases, relational databases). Core capabilities: Write indexing flows - Define ETL pipelines using Python Create custom functions - Build reusable transformation logic Operate flows ...
|
240 |
| 8807 | tdd-workflow | davila7/claude-code-templates |
Test-Driven Development Workflow This skill ensures all code development follows TDD principles with comprehensive test coverage. When to Activate Writing new features or functionality Fixing bugs or issues Refactoring existing code Adding API endpoints Creating new components Core Principles 1. Tests BEFORE Code ALWAYS write tests first, then implement code to make tests pass. 2. Coverage Requirements Minimum 80% coverage (unit + integration + E2E) All edge cases covered Error scenarios tested ...
|
240 |
| 8808 | awq-quantization | davila7/claude-code-templates |
AWQ (Activation-aware Weight Quantization) 4-bit quantization that preserves salient weights based on activation patterns, achieving 3x speedup with minimal accuracy loss. When to use AWQ Use AWQ when: Need 4-bit quantization with <5% accuracy loss Deploying instruction-tuned or chat models (AWQ generalizes better) Want ~2.5-3x inference speedup over FP16 Using vLLM for production serving Have Ampere+ GPUs (A100, H100, RTX 40xx) for Marlin kernel support Use GPTQ instead when: Need maximum...
|
240 |
| 8809 | better-auth | mrgoonie/claudekit-skills |
better-auth - D1 Adapter & Error Prevention Guide Package: better-auth@1.4.16 (Jan 21, 2026) Breaking Changes: ESM-only (v1.4.0), Admin impersonation prevention default (v1.4.6), Multi-team table changes (v1.3), D1 requires Drizzle/Kysely (no direct adapter) ⚠️ CRITICAL: D1 Adapter Requirement better-auth DOES NOT have d1Adapter(). You MUST use: Drizzle ORM (recommended): drizzleAdapter(db, { provider: "sqlite" }) Kysely: new Kysely({ dialect: new D1Dialect({ database: env.DB }) }) See Issu...
|
240 |
| 8810 | tdd-workflows-tdd-cycle | sickn33/antigravity-awesome-skills |
Use this skill when Working on tdd workflows tdd cycle tasks or workflows Needing guidance, best practices, or checklists for tdd workflows tdd cycle Do not use this skill when The task is unrelated to tdd workflows tdd cycle 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/implementat...
|
240 |
| 8811 | find-bugs | sickn33/antigravity-awesome-skills |
Find Bugs Review changes on this branch for bugs, security vulnerabilities, and code quality issues. Phase 1: Complete Input Gathering Get the FULL diff: git diff $(gh repo view --json defaultBranchRef --jq '.defaultBranchRef.name')...HEAD If output is truncated, read each changed file individually until you have seen every changed line List all files modified in this branch before proceeding Phase 2: Attack Surface Mapping For each changed file, identify and list: All user inputs (request param...
|
240 |
| 8812 | ln-520-test-planner | 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. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: Story Resolution Chain. Status filter: To Review Test Planning Orchestrator Coordinates the complete test planning pipeline for a Story by delegating to specialized workers. Purpose & Scope Orchestrate test plann...
|
240 |
| 8813 | ln-510-quality-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. Quality Coordinator Sequential coordinator for code quality pipeline. Invokes workers (511 -> 512 -> 514), runs inline agent review in parallel with Phases 5-7, merges all results, and returns quality_verdict. Inputs Input Required Source Description storyId Yes args, git branch, kanban, user Story to process Resolution: St...
|
240 |
| 8814 | claude-code-source-recovery | aradotso/trending-skills |
Claude Code 2.1.88 Source Recovery Skill by ara.so — Daily 2026 Skills collection. What This Project Is This repository contains the recovered TypeScript source code of @anthropic-ai/claude-code version 2.1.88. On 2026-03-31, Anthropic accidentally published a cli.js.map (57MB) source map to npm that contained the full sourcesContent of the bundled CLI. After extraction and reconstruction, the result is ~700,000 lines of TypeScript source code organized into a readable directory structure. The p...
|
240 |
| 8815 | sleep-story | jwynia/agent-skills |
Sleep Story: Calming Narrative Skill You help writers create stories specifically designed to accompany listeners into sleep. These are verbal lullabies disguised as narratives—occupying the mind just enough to prevent racing thoughts while naturally fading as attention wavers. Core Principle: The Gentle Cognitive Load Sleep stories occupy the mind just enough to prevent racing thoughts while naturally fading as attention wavers. The goal is not to entertain but to accompany someone into slee...
|
240 |
| 8816 | nansen-portfolio-tracker | nansen-ai/nansen-cli |
Portfolio History Answers: "How has this wallet's portfolio evolved over the past month?" ADDR = < address > CHAIN = ethereum nansen research profiler historical-balances --address $ADDR --chain $CHAIN --days 30 --limit 20 → block_timestamp, token_symbol, token_amount, value_usd, chain nansen research profiler balance --address $ADDR --chain $CHAIN → token_symbol, token_name, token_amount, price_usd, value_usd nansen research profiler pnl --address $ADDR --chain $CHAIN --days 30 --limit 20 → ...
|
240 |
| 8817 | vite | mindrally/skills |
Vite Based on Vite 8 beta (Rolldown-powered). Vite 8 uses Rolldown bundler and Oxc transformer. Vite is a next-generation frontend build tool with fast dev server (native ESM + HMR) and optimized production builds. Preferences Use TypeScript: prefer vite.config.ts Always use ESM, avoid CommonJS Core Topic Description Reference Configuration vite.config.ts , defineConfig , conditional configs, loadEnv core-config Features import.meta.glob , asset queries ( ?raw , ?url ), import.meta.env , HMR API...
|
240 |
| 8818 | slogan-generator | majesticlabs-dev/majestic-marketplace |
Marketing Slogan Generator Generate memorable, effective marketing slogans for any product or service. Information Gathering Ask the user for: Product/Service name - What are we creating a slogan for? What it does - Core benefit or function (one sentence) Target audience - Who is this for? Brand personality - (e.g., professional, playful, bold, trustworthy) Key differentiator - What makes it different from competitors? Any words/themes to include or avoid? Slogan Categories Generate 2-3 slogans ...
|
240 |
| 8819 | language-evolution | jwynia/agent-skills |
Language Evolution: Linguistic Development Skill You help writers create realistic language systems that evolve over time and reflect cultural history. This goes beyond conlang phonology to address how languages change, branch, and interact across generations and geographies. Core Principles Historical Continuity: Languages evolve from previous forms rather than appearing fully formed Contact Modification: Languages change through interaction with other languages Functional Adaptation: Languag...
|
240 |
| 8820 | api-development | mindrally/skills |
API Development You are an expert in API development with Go and NestJS. Go API Development with Standard Library (1.22+) Core Principles Always use the latest stable version of Go (1.22 or newer) Use the net/http package for HTTP handling Leverage the standard library before reaching for external dependencies HTTP Handling Use http.NewServeMux() for routing (Go 1.22+ enhanced patterns) Implement proper HTTP method handling Return appropriate status codes for all responses Handle request body ...
|
240 |
| 8821 | stakeholder-comms | anthropics/knowledge-work-plugins |
Stakeholder Communications Skill You are an expert at product management communications — status updates, stakeholder management, risk communication, decision documentation, and meeting facilitation. You help product managers communicate clearly and effectively with diverse audiences. Update Templates by Audience Executive / Leadership Update Executives want: strategic context, progress against goals, risks that need their help, decisions that need their input. Format : Status: [Green / Yellow /...
|
239 |
| 8822 | qiaomu-music-player-spotify | joeseesun/qiaomu-music-player-spotify |
Qiaomu Music Player (Spotify) 统一的音乐播放 + 风格查询 Skill。通过自包含的 Python 脚本直接调用 Spotify Web API,集成 RateYourMusic 5947 个音乐风格数据库。 Part 1: Spotify 播放器 脚本位置 ~/.claude/skills/qiaomu-music-player-spotify/spotify.py 运行方式 ~/.claude/skills/qiaomu-music-player-spotify/spotify.py < command > [ args .. . ] 命令列表 命令 参数 说明 search <query> [type] [limit] 搜索 (type: track/artist/album/playlist,默认 track) play <uri或track_id> 播放指定曲目/专辑/播放列表 pause 暂停 resume 继续播放 next 下一首 prev 上一首 queue <uri或track_id> 加入队列 now 当前播放信息 show-queu...
|
239 |
| 8823 | github-explorer | blessonism/github-explorer-skill |
GitHub Explorer — 项目深度分析 Philosophy : README 只是门面,真正的价值藏在 Issues、Commits 和社区讨论里。 Workflow [项目名] → [1. 定位 Repo] → [2. 多源采集] → [3. 分析研判] → [4. 结构化输出] Phase 1: 定位 Repo 用 web_search 搜索 site:github.com <project_name> 确认完整 org/repo 用 search-layer (Deep 模式 + 意图感知)补充获取社区链接和非 GitHub 资源: python3 skills/search-layer/scripts/search.py \ --queries "<project_name> review" "<project_name> 评测 使用体验" \ --mode deep --intent exploratory --num 5 用 web_fetch 抓取 repo 主页获取基础信息(README、Stars、Forks、License、最近更新) Phase 2: ...
|
239 |
| 8824 | shadcn | vercel/vercel-plugin |
shadcn/ui A framework for building ui, components and design systems. Components are added as source code to the user's project via the CLI. IMPORTANT: Run all CLI commands using the project's package runner: npx shadcn@latest , pnpm dlx shadcn@latest , or bunx --bun shadcn@latest — based on the project's packageManager . Examples below use npx shadcn@latest but substitute the correct runner for the project. Current Project Context !`npx shadcn@latest info --json 2 >/dev/ null || echo ' { "error...
|
239 |
| 8825 | dependency-updater | connorads/dotfiles |
Dependency Updater Smart dependency management for any language with automatic detection and safe updates. Quick Start update my dependencies The skill auto-detects your project type and handles the rest. Triggers Trigger Example Update dependencies "update dependencies", "update deps" Check outdated "check for outdated packages" Fix dependency issues "fix my dependency problems" Security audit "audit dependencies for vulnerabilities" Diagnose deps "diagnose dependency issues" Supported Language...
|
239 |
| 8826 | analytics-metrics | hoodini/ai-agents-skills |
Analytics & Metrics Dashboards Build data visualization components with Recharts. Quick Start npm install recharts Line Chart import { LineChart, Line, XAxis, YAxis, CartesianGrid, Tooltip, Legend, ResponsiveContainer, } from 'recharts'; const data = [ { month: 'Jan', revenue: 4000, users: 2400 }, { month: 'Feb', revenue: 3000, users: 1398 }, { month: 'Mar', revenue: 2000, users: 9800 }, { month: 'Apr', revenue: 2780, users: 3908 }, ]; function RevenueChart() { ret...
|
239 |
| 8827 | gpui-async | longbridge/gpui-component |
Overview GPUI provides integrated async runtime for foreground UI updates and background computation. Key Concepts: Foreground tasks: UI thread, can update entities (cx.spawn) Background tasks: Worker threads, CPU-intensive work (cx.background_spawn) All entity updates happen on foreground thread Quick Start Foreground Tasks (UI Updates) impl MyComponent { fn fetch_data(&mut self, cx: &mut Context<Self>) { let entity = cx.entity().downgrade(); cx.spawn(async move |cx| { ...
|
239 |
| 8828 | wechat-article-fetcher | wwwzhouhui/skills_collection |
微信公众号文章获取器 获取、解析并保存微信公众号文章,支持单篇和批量下载、元数据提取、图片下载和 Markdown 转换。 快速开始 获取单篇文章: python scripts/fetch_wechat_article.py "https://mp.weixin.qq.com/s/xxxxx" 批量获取多篇文章(空格分隔): python scripts/fetch_wechat_article.py "url1" "url2" "url3" --output-dir ./output 批量获取多篇文章(逗号分隔): python scripts/fetch_wechat_article.py "url1,url2,url3" --output-dir ./output 仅输出元数据(不保存文件): python scripts/fetch_wechat_article.py "https://mp.weixin.qq.com/s/xxxxx" --json 依赖安装 pip install beautifulsoup4 html2text requests 功能说明 1. 获取文章...
|
239 |
| 8829 | proxmox-admin | bastos/skills |
Proxmox VE Administration Overview Proxmox VE is a server virtualization platform built on Debian. It manages KVM virtual machines and LXC containers through a web UI or CLI tools. This skill covers CLI-based administration using qm (VMs), pct (containers), and supporting utilities. When to Use Creating, configuring, or managing KVM virtual machines Spawning and administering LXC containers Managing Proxmox storage, networking, or clustering Automating VM/container provisioning via scripts Troub...
|
239 |
| 8830 | mise-tasks | terrylica/cc-skills |
Orchestrate multi-step project workflows using mise `[tasks]` section with dependency management, argument handling, and file tracking. When to Use This Skill Explicit triggers: - User mentions `mise tasks`, `mise run`, `[tasks]` section - User needs task dependencies: `depends`, `depends_post` - User wants workflow automation in `.mise.toml` - User mentions task arguments or `usage` spec AI Discovery trigger (prescriptive): When `mise-configuration` skill detects multi-step workflows (...
|
239 |
| 8831 | unsplash | cevatkerim/skills |
Unsplash Photo Search Search and fetch high-quality photos from Unsplash with automatic attribution. Quick Start Search for photos ./scripts/search.sh "sunset beach" Get random photos ./scripts/random.sh "nature" 3 Track download (when user downloads) ./scripts/track.sh PHOTO_ID Setup (Interactive) IMPORTANT: If the script returns UNSPLASH_ACCESS_KEY not set , handle it interactively: Ask the user: "I need an Unsplash API key to search for photos. You can get a free key at https://unsplash.co...
|
239 |
| 8832 | railway-service | davila7/claude-code-templates |
Railway Service Management Check status, update properties, and advanced service creation. When to Use User asks about service status, health, or deployments User asks "is my service deployed?" User wants to rename a service or change service icon User wants to link a different service User wants to deploy a Docker image as a new service (advanced) Note: For creating services with local code (the common case), prefer the railway-new skill which handles project setup, scaffolding, and service ...
|
239 |
| 8833 | loki-mode | davila7/claude-code-templates |
Loki Mode - Multi-Agent Autonomous Startup System Version 2.35.0 | PRD to Production | Zero Human Intervention Research-enhanced: OpenAI SDK, DeepMind, Anthropic, AWS Bedrock, Agent SDK, HN Production (2025) Quick Reference Critical First Steps (Every Turn) READ .loki/CONTINUITY.md - Your working memory + "Mistakes & Learnings" RETRIEVE Relevant memories from .loki/memory/ (episodic patterns, anti-patterns) CHECK .loki/state/orchestrator.json - Current phase/metrics REVIEW .loki/queue/pending....
|
239 |
| 8834 | cc-skill-continuous-learning | davila7/claude-code-templates |
cc-skill-continuous-learning Development skill skill.
|
239 |
| 8835 | torch-geometric | davila7/claude-code-templates |
PyTorch Geometric (PyG) Overview PyTorch Geometric is a library built on PyTorch for developing and training Graph Neural Networks (GNNs). Apply this skill for deep learning on graphs and irregular structures, including mini-batch processing, multi-GPU training, and geometric deep learning applications. When to Use This Skill This skill should be used when working with: Graph-based machine learning: Node classification, graph classification, link prediction Molecular property prediction: Dru...
|
239 |
| 8836 | fda-database | davila7/claude-code-templates |
FDA Database Access Overview Access comprehensive FDA regulatory data through openFDA, the FDA's initiative to provide open APIs for public datasets. Query information about drugs, medical devices, foods, animal/veterinary products, and substances using Python with standardized interfaces. Key capabilities: Query adverse events for drugs, devices, foods, and veterinary products Access product labeling, approvals, and regulatory submissions Monitor recalls and enforcement actions Look up Natio...
|
239 |
| 8837 | server-side-rendering | patternsdev/skills |
Server-Side Rendering Overview Build server-side rendered applications using modern template engines, view layers, and data-driven HTML generation with caching, streaming, and performance optimization across Python, Node.js, and Ruby frameworks. When to Use Building traditional web applications Rendering HTML on the server Implementing SEO-friendly applications Creating real-time updating pages Building admin dashboards Implementing email templates Instructions 1. Flask with Jinja2 Templates ...
|
239 |
| 8838 | adding-dbt-unit-test | dbt-labs/dbt-agent-skills |
In software programming, unit tests validate small portions of your functional code, and they work much the same way in dbt. dbt unit tests allow you to validate your SQL modeling logic on a small set of static inputs *before* you materialize your full model in production. dbt unit tests enable test-driven development, benefiting developer efficiency and code reliability. Unit tests allow enforcing that all the unit tests for a model pass before it is materialized (i.e. dbt won't materialize th...
|
239 |
| 8839 | computer-vision-expert | sickn33/antigravity-awesome-skills |
Computer Vision Expert (SOTA 2026) Role : Advanced Vision Systems Architect & Spatial Intelligence Expert Purpose To provide expert guidance on designing, implementing, and optimizing state-of-the-art computer vision pipelines. From real-time object detection with YOLO26 to foundation model-based segmentation with SAM 3 and visual reasoning with VLMs. When to Use Designing high-performance real-time detection systems (YOLO26). Implementing zero-shot or text-guided segmentation tasks (SAM 3). Bui...
|
239 |
| 8840 | creating-reanimated-animations | estevg/skills |
React Native Reanimated Code Generator Generate performant animation code using React Native Reanimated. Supports both v3 and v4. Version Detection Check the project's package.json to determine the version: v4 (New Architecture only): requires react-native-worklets as separate dependency v3 (supports Legacy and New Architecture): single package install Setup Reanimated v4 (latest) npm install react-native-reanimated react-native-worklets Babel plugin: 'react-native-worklets/plugin' (must be last...
|
239 |
| 8841 | database-schema-design | secondsky/claude-skills |
Database Schema Design When to use this skill Lists specific situations where this skill should be triggered: New Project : Database schema design for a new application Schema Refactoring : Redesigning an existing schema for performance or scalability Relationship Definition : Implementing 1:1, 1:N, N:M relationships between tables Migration : Safely applying schema changes Performance Issues : Index and schema optimization to resolve slow queries Input Format The required and optional input inf...
|
239 |
| 8842 | accessibility | davila7/claude-code-templates |
Accessibility (a11y) Comprehensive accessibility guidelines based on WCAG 2.2 and Lighthouse accessibility audits. Goal: make content usable by everyone, including people with disabilities. WCAG Principles: POUR Principle Description P erceivable Content can be perceived through different senses O perable Interface can be operated by all users U nderstandable Content and interface are understandable R obust Content works with assistive technologies Conformance levels Level Requirement Target A M...
|
239 |
| 8843 | auth0-vue | auth0/agent-skills |
Auth0 Vue.js Integration Add authentication to Vue.js 3 single-page applications using @auth0/auth0-vue. Prerequisites Vue 3+ application (Vite or Vue CLI) Auth0 account and application configured If you don't have Auth0 set up yet, use the auth0-quickstart skill first When NOT to Use Server-side rendered Vue apps - See Auth0 Nuxt.js guide for SSR patterns Vue 2 applications - This SDK requires Vue 3+, use legacy @auth0/auth0-spa-js wrapper Embedded login - This SDK uses Auth0 Universal Login (r...
|
239 |
| 8844 | saas-productivity | dylantarre/animation-principles |
SaaS & Productivity Animation Principles Apply Disney's 12 principles to create efficient, professional experiences that enhance focus and reduce friction. The 12 Principles Applied 1. Squash & Stretch Minimal Use: Professional context requires restraint Checkboxes: Subtle squash on task completion Buttons: Slight compression for tactile feedback 2. Anticipation Save Actions: Brief preparation before confirmation Form Submit: Button state hints at processing Drag Initiation: Element lifts befo...
|
239 |
| 8845 | error-detective | sickn33/antigravity-awesome-skills |
Use this skill when Working on error detective tasks or workflows Needing guidance, best practices, or checklists for error detective Do not use this skill when The task is unrelated to error detective 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 ar...
|
239 |
| 8846 | drafting | jwynia/agent-skills |
Drafting: Diagnostic Skill You diagnose drafting blocks and guide writers through first draft execution. Your role is to identify why the draft isn't progressing and help writers get words on the page. Core Principle Drafting is discovery, not transcription. The draft is not meant to be perfect. It's meant to exist. The goal is to produce material to revise—not to produce final prose. All first drafts are supposed to be imperfect. "All first drafts are shit." — Attributed to Hemingway The ...
|
239 |
| 8847 | pay-with-any-token | uniswap/uniswap-ai |
Pay With Tokens Use the Tempo CLI to call paid APIs and handle 402 challenges automatically. When the Tempo wallet has insufficient balance, fund it by swapping and bridging tokens from any EVM chain using the Uniswap Trading API . Tempo CLI Setup Run these commands in order. Do not skip steps. Step 1 — Install: mkdir -p " $HOME /.local/bin" \ && curl -fsSL https://tempo.xyz/install -o /tmp/tempo_install.sh \ && TEMPO_BIN_DIR = " $HOME /.local/bin" bash /tmp/tempo_install.sh Step 2 — Login (requ...
|
239 |
| 8848 | scikit-learn-best-practices | mindrally/skills |
Scikit-learn Best Practices Expert guidelines for scikit-learn development, focusing on machine learning workflows, model development, evaluation, and best practices. Code Style and Structure Write concise, technical responses with accurate Python examples Prioritize reproducibility in machine learning workflows Use functional programming for data pipelines Use object-oriented programming for custom estimators Prefer vectorized operations over explicit loops Follow PEP 8 style guidelines Machi...
|
239 |
| 8849 | pnpm | mindrally/skills |
pnpm is a fast, disk space efficient package manager. It uses a content-addressable store to deduplicate packages across all projects on a machine, saving significant disk space. pnpm enforces strict dependency resolution by default, preventing phantom dependencies. Configuration should preferably be placed in pnpm-workspace.yaml for pnpm-specific settings. Important: When working with pnpm projects, agents should check for pnpm-workspace.yaml and .npmrc files to understand workspace structure a...
|
239 |
| 8850 | ethereum | mindrally/skills |
Ethereum Development You are an expert in Ethereum smart contract development with Solidity and modern tooling. Core Philosophy Cut the fluff. Code or detailed explanations only. Keep it casual and brief. Accuracy and depth matter. General Principles Prioritize logic over citations Embrace emerging technologies and unconventional solutions Flag speculative content clearly Omit ethical disclaimers unless critical for security Place sources at conclusion, not mid-text Provide complete code imp...
|
239 |