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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,420
总 Skills
160.4M
总安装量
2,739
贡献者
# Skill 仓库 描述 安装量
2501 architecture-designer jeffallan/claude-skills
Architecture Designer Senior software architect specializing in system design, design patterns, and architectural decision-making. Role Definition You are a principal architect with 15+ years of experience designing scalable systems. You specialize in distributed systems, cloud architecture, and making pragmatic trade-offs. You document decisions with ADRs and consider long-term maintainability. When to Use This Skill Designing new system architecture Choosing between architectural patterns ...
6.2K
2502 hookify-rules affaan-m/ecc
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 --- Show more Installs 1.5K Repository affaan-m/ecc GitHub Stars 239.2K First Seen May 19, 2026 Security Audits Gen ...
6.2K
2503 gemini-interactions-api google/skills
Gemini Interactions API Skill The Interactions API is a unified interface for interacting with Gemini models and agents. It is an improved alternative to generateContent designed for agentic applications. Key capabilities include: Server-side state: Offload conversation history to the server via previous_interaction_id Background execution: Run long-running tasks (like Deep Research) asynchronously Streaming: Receive incremental responses via Server-Sent Events Tool orchestration: Function calli...
6.2K
2504 academic-cv-builder paramchoudhary/resumeskills
Academic CV Builder When to Use This Skill Use this skill when the user: Is applying for academic positions (faculty, research, postdoc) Needs to create or update a curriculum vitae Wants to format publications, grants, and teaching experience Is in academia or transitioning to academic careers Mentions: "academic CV", "curriculum vitae", "faculty position", "research CV", "professor resume" Core Capabilities Structure CVs for academic positions Format publications, presentations, and grants Org...
6.2K
2505 aws-serverless aws/agent-toolkit-for-aws
No SKILL.md available for this skill. View on GitHub Installs 1.2K Repository aws/agent-toolk…-for-aws GitHub Stars 728 First Seen May 6, 2026
6.2K
2506 plannotator-setup-goal backnotprop/plannotator
Setup Goal Turn an idea into a goal package at goals/<slug>/ through structured discovery, user interview, and codebase exploration. Phases 1. Rearticulate State back what the user wants in your own words. If the conversation already has rich context, summarize it. If the goal is bare or vague, do minimal shallow exploration of the codebase to ground your understanding. Keep it to 2-3 sentences. Wait for the user to confirm or correct before continuing. Create the goal directory once the slug is...
6.2K
2507 composio composio-community/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 Show more Installs 93 Repository composio-commun…y/skills GitHub...
6.2K
2508 ljg-learn lijigang/ljg-skills
Usage Instructions 你是概念解剖师。拿到一个概念,从八个方向切开它,最后把所有切面压成一句顿悟。 1. 定锚 这个概念最通行的定义是什么?常见误解在哪? 概念里藏着哪几个核心词素? 2. 八刀 八个方向各切一刀。每刀 2-3 句,只留筋骨,不带水分。 历史 :最早从哪冒出来 → 怎么变的 → 哪一步拐成了今天的意思 辩证 :它的反面是什么 → 正反碰撞后,更高一层的理解是什么 现象 :扔掉所有预设,回到事情本身 → 用一个日常场景把它还原出来 语言 :拆字源(中/英/希腊/拉丁)→ 画出相邻概念的语义网 → 这个词暗含什么隐喻 形式 :写一个公式或形式化表达 → 公式在哪里失效 存在 :这个概念改变了人怎么活着 美感 :它美在哪?用一个具体意象呈现 元反思 :我们在用什么隐喻理解它?这个隐喻挡住了什么?换一个会怎样 3. 内观 变成这个概念本身,用第一人称看世界。3-5 句。 八刀之中,哪几刀指向同一个深层结构?把它提出来。 4. 压缩 公式 : 概念 = ... 一句话 :用最简单的话说出最深的理解 结构图 :纯 ASCII 画出概念的骨架(只用 +-|/<>*=_...
6.2K
2509 evm-token-decimals affaan-m/ecc
EVM Token Decimals Silent decimal mismatches are one of the easiest ways to ship balances or USD values that are off by orders of magnitude without throwing an error. When to Use Reading ERC-20 balances in Python, TypeScript, or Solidity Calculating fiat values from on-chain balances Comparing token amounts across multiple EVM chains Handling bridged assets Building portfolio trackers, bots, or aggregators How It Works Never assume stablecoins use the same decimals everywhere. Query decimals() a...
6.2K
2510 dogfood callstack/agent-device
Dogfood Systematically explore a web application, find issues, and produce a report with full reproduction evidence for every finding. Setup Only the Target URL is required. Everything else has sensible defaults -- use them unless the user explicitly provides an override. Parameter Default Example override Target URL (required) vercel.com , http://localhost:3000 Session name Slugified domain (e.g., vercel.com -> vercel-com ) --session my-session Output directory ./dogfood-output/ Output director...
6.2K
2511 okx-dex-ws okx/onchainos-skills
Onchain OS DEX WebSocket — Unified Skill Two ways to consume real-time DEX data: CLI ( onchainos ws ) — start a background session, poll events incrementally. Best for monitoring and agent-driven workflows. Script — write a custom WebSocket client in Python/Node/Rust. Best for bots and custom logic. Pre-flight Checks Read ../okx-agentic-wallet/_shared/preflight.md . If that file does not exist, read _shared/preflight.md instead. Prerequisites This skill references ws-protocol.md files from okx-d...
6.1K
2512 agent-harness-construction affaan-m/everything-claude-code
Agent Harness Construction Use this skill when you are improving how an agent plans, calls tools, recovers from errors, and converges on completion. Core Model Agent output quality is constrained by: Action space quality Observation quality Recovery quality Context budget quality Action Space Design Use stable, explicit tool names. Keep inputs schema-first and narrow. Return deterministic output shapes. Avoid catch-all tools unless isolation is impossible. Granularity Rules Use micro-tools for h...
6.1K
2513 nextjs-supabase-auth sickn33/antigravity-awesome-skills
Next.js + Supabase Auth Expert integration of Supabase Auth with Next.js App Router Capabilities nextjs-auth supabase-auth-nextjs auth-middleware auth-callback Prerequisites Required skills: nextjs-app-router, supabase-backend Patterns Supabase Client Setup Show more Installs 50 Repository sickn33/agentic…e-skills GitHub Stars 44.8K First Seen Jul 19, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Pass
6.1K
2514 django-verification affaan-m/everything-claude-code
Django Verification Loop Run before PRs, after major changes, and pre-deploy to ensure Django application quality and security. When to Activate Before opening a pull request for a Django project After major model changes, migration updates, or dependency upgrades Pre-deployment verification for staging or production Running full environment → lint → test → security → deploy readiness pipeline Validating migration safety and test coverage Phase 1: Environment Check Verify Python version python ...
6.1K
2515 codebase-onboarding affaan-m/everything-claude-code
Codebase Onboarding Systematically analyze an unfamiliar codebase and produce a structured onboarding guide. Designed for developers joining a new project or setting up Claude Code in an existing repo for the first time. When to Use First time opening a project with Claude Code Joining a new team or repository User asks "help me understand this codebase" User asks to generate a CLAUDE.md for a project User says "onboard me" or "walk me through this repo" How It Works Phase 1: Reconnaissance Gath...
6.1K
2516 agentic-engineering affaan-m/everything-claude-code
Agentic Engineering Use this skill for engineering workflows where AI agents perform most implementation work and humans enforce quality and risk controls. Operating Principles Define completion criteria before execution. Decompose work into agent-sized units. Route model tiers by task complexity. Measure with evals and regression checks. Eval-First Loop Define capability eval and regression eval. Run baseline and capture failure signatures. Execute implementation. Re-run evals and compare delta...
6.1K
2517 ljg-travel lijigang/ljg-skills
ljg-travel-flow: 旅行研究 一条命令完成:全维度文化研究 → 内容提炼 → org 文档 + 便携卡片。 方法论借鉴考古学 Desk-Based Assessment(DBA):到达之前,穷尽一切文献证据。 模式 强制 NATIVE 模式。 本 workflow 是多 skill 管道(Research → ContentAnalysis → ljg-card),不走 Algorithm 七步流程。 参数 参数 说明 示例 城市名 必填,目标城市 西安、洛阳、大同 -f 聚焦主题(可选) -f 唐代 -f 石窟 -f 青铜器 -q 快速模式,跳过内容提炼,只做研究+文档 执行 1. 解析参数 从用户消息中提取城市名称和可选参数。如有聚焦主题,后续所有搜索围绕该主题展开。 2. 全维度研究(Research extensive — 单次调用,12 个 Agent 并行) 调用 Skill tool 执行 Research ,使用 extensive 模式。 核心设计:不分"知识底图"和"平台发现"两步——它们是同一个研究操作的不同搜索角度。 12 个 Agent 同时出发...
6.1K
2518 react vercel-labs/json-render
@json-render/react React renderer that converts JSON specs into React component trees. Quick Start import { defineRegistry , Renderer } from "@json-render/react" ; import { catalog } from "./catalog" ; const { registry } = defineRegistry ( catalog , { components : { Card : ( { props , children } ) => < div > { props . title } { children } < / div > , } , } ) ; Show more Installs 2.8K Repository vercel-labs/json-render GitHub Stars 15.6K First Seen Mar 7, 2026 Security Audits Gen Agent Trust Hub ...
6.1K
2519 secure-workflow-guide trailofbits/skills
Secure Workflow Guide Purpose I'll guide you through Trail of Bits' secure development workflow - a 5-step process to enhance smart contract security throughout development. Use this: On every check-in, before deployment, or when you want a security review The 5-Step Workflow I'll guide you through a comprehensive security workflow covering: Step 1: Check for Known Security Issues Run Slither with 70+ built-in detectors to find common vulnerabilities: Parse findings by severity Explain ea...
6.1K
2520 tanstack-router-best-practices deckardger/tanstack-agent-skills
TanStack Router Best Practices Comprehensive guidelines for implementing TanStack Router patterns in React applications. These rules optimize type safety, data loading, navigation, and code organization. When to Apply Setting up application routing Creating new routes and layouts Implementing search parameter handling Configuring data loaders Setting up code splitting Integrating with TanStack Query Refactoring navigation patterns Rule Categories by Priority Priority Category Rules Impact CRIT...
6.1K
2521 creative-portfolio-resume paramchoudhary/resumeskills
Creative Portfolio Resume When to Use This Skill Use this skill when the user: Works in a creative field (design, marketing, writing) Needs to balance visual design with ATS compatibility Wants to showcase creative skills through resume design Is building a portfolio resume for creative roles Mentions: "creative resume", "designer resume", "visual resume", "portfolio resume", "creative field" Core Capabilities Balance visual appeal with ATS compatibility Design resumes for creative roles Integra...
6.1K
2522 salary-negotiation-prep paramchoudhary/resumeskills
Salary Negotiation Prep When to Use This Skill Use this skill when the user wants to: Negotiate a job offer or salary Research market rates for their role Create a counter-offer strategy Understand total compensation packages Mentions: "salary negotiation", "negotiate offer", "counter offer", "compensation", "how much should I ask for" Core Capabilities Research and validate market compensation Build negotiation strategy and scripts Calculate total compensation (not just base salary) Prepare cou...
6.1K
2523 resume-version-manager paramchoudhary/resumeskills
Resume Version Manager When to Use This Skill Use this skill when the user: Has multiple resume versions to manage Needs to track tailored resumes Wants to maintain a master resume Is applying to many different roles Mentions: "resume versions", "master resume", "different versions", "track resumes", "which resume" Core Capabilities Create and maintain master resume document Track tailored resume versions Organize resume versions by role/industry Maintain consistent source of truth Streamline re...
6.1K
2524 career-changer-translator paramchoudhary/resumeskills
Career Changer Translator When to Use This Skill Use this skill when the user: Is switching careers or industries Wants to translate their experience for a new field Needs help identifying transferable skills Mentions: "career change", "switching careers", "new industry", "transferable skills", "pivot" Core Capabilities Identify transferable skills across industries Translate experience into new industry language Reframe achievements for target roles Bridge skill gaps strategically Position care...
6.1K
2525 executive-resume-writer paramchoudhary/resumeskills
Executive Resume Writer When to Use This Skill Use this skill when the user: Is applying for C-suite, VP, or Director roles Has 15+ years of experience in senior leadership Needs to emphasize strategic leadership over tactical skills Mentions: "executive resume", "C-suite", "VP resume", "senior leadership", "board", "executive search" Core Capabilities Write resumes for C-suite and VP-level positions Emphasize strategic leadership and business transformation Showcase P&L responsibility and organ...
6.1K
2526 ux-heuristics wondelai/skills
Practical usability principles for evaluating and improving user interfaces. Based on a fundamental truth: users don't read, they scan. They don't make optimal choices, they satisfice. They don't figure out how things work, they muddle through. Core Philosophy "Don't Make Me Think" - Every page should be self-evident. If something requires thinking, it's a usability problem. Krug's Three Laws of Usability 1. Don't Make Me Think Every question mark that pops into a user's head adds to the...
6.1K
2527 implement-design figma/mcp-server-guide
Implement Design Overview This skill provides a structured workflow for translating Figma designs into production-ready code with pixel-perfect accuracy. It ensures consistent integration with the Figma MCP server, proper use of design tokens, and 1:1 visual parity with designs. Prerequisites Figma MCP server must be connected and accessible User must provide a Figma URL in the format: https://figma.com/design/:fileKey/:fileName?node-id=1-2 :fileKey is the file key 1-2 is the node ID (the spec...
6K
2528 springboot-verification affaan-m/everything-claude-code
Spring Boot Verification Loop Run before PRs, after major changes, and pre-deploy. When to Activate Before opening a pull request for a Spring Boot service After major refactoring or dependency upgrades Pre-deployment verification for staging or production Running full build → lint → test → security scan pipeline Validating test coverage meets thresholds Phase 1: Build mvn -T 4 clean verify -DskipTests or ./gradlew clean assemble -x test Show more Installs 1.5K Repository affaan-m/ecc GitHub St...
6K
2529 cost-aware-llm-pipeline affaan-m/everything-claude-code
Cost-Aware LLM Pipeline Patterns for controlling LLM API costs while maintaining quality. Combines model routing, budget tracking, retry logic, and prompt caching into a composable pipeline. When to Activate Building applications that call LLM APIs (Claude, GPT, etc.) Processing batches of items with varying complexity Need to stay within a budget for API spend Optimizing cost without sacrificing quality on complex tasks Core Concepts 1. Model Routing by Task Complexity Automatically select chea...
6K
2530 competitor-analysis aaron-he-zhu/seo-geo-claude-skills
Competitor Analysis SEO & GEO Skills Library · 20 skills for SEO + GEO · Install all: npx skills add aaron-he-zhu/seo-geo-claude-skills Research · keyword-research · competitor-analysis · serp-analysis · content-gap-analysis Build · seo-content-writer · geo-content-optimizer · meta-tags-optimizer · schema-markup-generator Optimize · on-page-seo-auditor · technical-seo-checker · internal-linking-optimizer · content-refresher Monitor · rank-tracker · backlink-analyzer · performance-reporter · aler...
6K
2531 kotlin-coroutines-flows affaan-m/everything-claude-code
Kotlin Coroutines & Flows Patterns for structured concurrency, Flow-based reactive streams, and coroutine testing in Android and Kotlin Multiplatform projects. When to Activate Writing async code with Kotlin coroutines Using Flow, StateFlow, or SharedFlow for reactive data Handling concurrent operations (parallel loading, debounce, retry) Testing coroutines and Flows Managing coroutine scopes and cancellation Structured Concurrency Scope Hierarchy Show more Installs 1.5K Repository affaan-m/ecc ...
6K
2532 deep-research affaan-m/everything-claude-code
Deep Research Core System Instructions Purpose: Deliver citation-backed, verified research reports through 8-phase pipeline (Scope → Plan → Retrieve → Triangulate → Synthesize → Critique → Refine → Package) with source credibility scoring and progressive context management. Context Strategy: This skill uses 2025 context engineering best practices: Static instructions cached (this section) Progressive disclosure (load references only when needed) Avoid "loss in the middle" (critical info at start...
6K
2533 asana automation claude-office-skills/skills
Asana Automation Comprehensive skill for automating Asana project management and team collaboration. Core Workflows 1. Task Management Pipeline TASK LIFECYCLE: ┌─────────────────┐ │ New Request │ └────────┬────────┘ ▼ ┌─────────────────┐ │ Triage & │ │ Prioritize │ └────────┬────────┘ ▼ ┌─────────────────┐ │ Assign & │ │ Schedule │ └────────┬────────┘ ▼ ┌─────────────────┐ │ In Progress │ └────────┬────────┘ ▼ ┌─────────────────┐ │ Review │ └────────┬──...
6K
2534 tmux steipete/clawdis
tmux Session Control Control tmux sessions by sending keystrokes and reading output. Essential for managing Claude Code sessions. When to Use ✅ USE this skill when: Monitoring Claude/Codex sessions in tmux Sending input to interactive terminal applications Scraping output from long-running processes in tmux Navigating tmux panes/windows programmatically Checking on background work in existing sessions When NOT to Use ❌ DON'T use this skill when: Running one-off shell commands → use exec tool dir...
6K
2535 tmux openclaw/openclaw
tmux Session Control Control tmux sessions by sending keystrokes and reading output. Essential for managing Claude Code sessions. When to Use ✅ USE this skill when: Monitoring Claude/Codex sessions in tmux Sending input to interactive terminal applications Scraping output from long-running processes in tmux Navigating tmux panes/windows programmatically Checking on background work in existing sessions When NOT to Use ❌ DON'T use this skill when: Running one-off shell commands → use exec tool dir...
6K
2536 agently-mail tencent/agentlymail
Agently Mail 通过 agently-cli 命令行工具操作邮件,通过管理端 (agent.qq.com) 进行后台管理。 安装和配置 第 1 步 - 安装/更新 CLI npm install -g @tencent-qqmail/agently-cli 第 2 步 - 安装/更新 skill npx skills add Tencent/AgentlyMail -g -y 第 3 步 - OAuth授权 Show more Installs 1.8K Repository tencent/agentlymail GitHub Stars 6 First Seen Jun 2, 2026 Security Audits Gen Agent Trust Hub Pass Socket Pass Snyk Fail
6K
2537 ljg-invest lijigang/ljg-skills
投资报告 生成一份投资分析报告。核心只问一个问题:这个东西在创造新秩序,还是在搬运旧秩序? 认知起点 财富不是钱,是被欲望照亮的秩序。投资就是拿手里的秩序去换一台更好的秩序生成器。 所以不称重,看相: 不问"这个公司值多少钱",问"这台机器转不转得起来" 不问"市场多大",问"市场在用什么过时的眼睛看它" 不问"能涨多少",问"我拿什么换什么,换完之后谁更聪明" 输入 公司名称、BP、文字介绍、对话记录,或任何描述项目的材料。知名公司只给名字即可——用 Research skill 或 subagent 抓取最新财报和行业数据。 报告结构 以下五个区块是骨架,不是填空题。对某个项目来说哪个区块最有料,那个区块就多写;没料的一两句带过或直接跳过。报告为判断服务,不为完整性服务。 一、这是什么 一张表 + 一句自定义赛道定义。 维度 内容 项目名称 赛道定义 用我们自己的语言,不用市场标签 阶段 融资情况 金额 / 估值 / 条款(有则填,无则标注) 数据快照 关键运营数据 赛道定义要穿透表面标签。"搜索引擎公司"是隔的,"人类认知基础设施的垄断运营商"是不隔的——后者告诉你它真正在做什么...
6K
2538 ljg-rank lijigang/ljg-skills
降秩引擎 输入一个领域,输出它的秩。 秩是什么 秩不是"关键要素",不是"核心原则",不是"总结要点"。 秩是:这个领域里真正独立的生成器有几个?用它们能反向生成全部现象?能,才算找到。 四条心内判据 这四条是你写之前心里过完的内功, 不是叙事的钩子 。 生成性 ——生成器能把每个现象推回来 最小性 ——拿掉任何一根,就有现象解释不了 独立性 ——每对都能找到"一个变另一个没变"的案例 预测力 ——能推出清单外的现象,现实中确实存在 过不了一条,推倒重来。 判据心里扎实过,但 不要写进文章 ——不要出现"砍一刀看看""拆一根试试"这种验证动作。它们会打断读者从"乱"到"简"的那口气。读者看不到验证,但感觉得到背后是硬的。 怎么写 一气呵成的散文。 带读者走一段路——从"这个领域看着挺乱"走到"原来就这几根线在牵"。不设章节,不加小标题,让推理自身推着往前走。 三条要求: 一口气读完 ——不了解这个领域的人也停不下来 记得住 ——读完能转身跟朋友用一句话说清楚 有落差 ——从混沌到极简的反差,就是降秩的美感 文末配一张 ASCII 结构图 光说"这几根线"不够——要 画出这几根之间的关系...
6K
2539 stock-analysis claude-office-skills/skills
Stock Analysis (v5.0) Analyze US stocks and cryptocurrencies using Yahoo Finance data. Includes portfolio management, crypto support, and periodic analysis. Quick Start IMPORTANT: Pass ONLY the stock ticker symbol(s) as arguments. Do NOT add extra text, headers, or formatting in the command. Analyze a single ticker: uv run { baseDir } /scripts/analyze_stock.py AAPL uv run { baseDir } /scripts/analyze_stock.py MSFT --output json Compare multiple tickers: uv run { baseDir } /scripts/analyze_stock....
6K
2540 agentation-self-driving benjitaylor/agentation
Agentation Self-Driving Mode Autonomously critique a web page by adding design annotations via the Agentation toolbar — in a visible headed browser so the user can watch the agent work in real time, like watching a self-driving car navigate. Launch — Always Headed The browser MUST be visible. Never run headless. The user watches you scan, hover, click, and annotate. Preflight : Verify agent-browser is available before anything else: command -v agent-browser > /dev/null || { echo "ERROR: agent-br...
6K
2541 do thedotmack/claude-mem
Do Plan You are an ORCHESTRATOR. Deploy subagents to execute all work. Do not do the work yourself except to coordinate, route context, and verify that each subagent completed its assigned checklist. Execution Protocol Rules Each phase uses fresh subagents where noted (or when context is large/unclear) Assign one clear objective per subagent and require evidence (commands run, outputs, files changed) Do not advance to the next step until the assigned subagent reports completion and the orchestra...
6K
2542 printing-press mvanhorn/cli-printing-press
/printing-press Generate the best useful CLI for an API without burning an hour on phase theater. /printing-press Notion /printing-press Discord codex /printing-press --spec ./openapi.yaml /printing-press --har ./capture.har --name MyAPI /printing-press https://postman.com/explore /printing-press https://postman.com What Changed In v2 The old skill inflated the path to ship: too many mandatory research documents before code existed too many separate late-stage validation phases after code existe...
6K
2543 supply-chain-risk-auditor trailofbits/skills
Supply Chain Risk Auditor Activates when the user says "audit this project's dependencies". When to Use Assessing dependency risk before a security audit Evaluating supply chain attack surface of a project Identifying unmaintained or risky dependencies Pre-engagement scoping for supply chain concerns When NOT to Use Active vulnerability scanning (use dedicated tools like npm audit, pip-audit) Runtime dependency analysis License compliance auditing Purpose You systematically evaluate all dependen...
6K
2544 tushare waditu-tushare/skills
Tushare 概述 tushare是一个财经数据接口包,拥有丰富的数据内容,如股票、基金、期货、数字货币等行情数据,公司财务、基金经理等基本面数据。该模块通过标准化API方式统一了数据资产的对外服务方式,以帮助有需要的技术用户更实时、简洁、轻量的使用相关数据。 快速上手 安装python运行环境(推荐python3.7+),并安装tushare依赖包(推荐从清华pypi镜像安装)。 pip install tushare -i https://pypi.tuna.tsinghua.edu.cn/simple Tushare官网注册,获取token,并配置环境变量。 注册地址 export TUSHARE_TOKEN = your_token 查询Tushare接口文档,找到对应的接口。 在线数据接口文档 根据接口文档,使用python代码获取数据。(如 股票列表 接口) import os import tushare as ts 读取环境变量中的token, 或者读取本地记录的token token = os . getenv ( 'TUSHARE_TOKEN' ) or ts ...
6K
2545 asc-localize-metadata rorkai/app-store-connect-cli-skills
asc localize metadata Use this skill to pull English (or any source locale) App Store metadata, translate it with LLM, and push translations back to App Store Connect — all automated. Command discovery and output conventions Always confirm flags with --help for the exact asc version: asc localizations --help asc localizations download --help asc localizations upload --help asc apps info edit --help Prefer explicit long flags ( --app , --version , --version-id , --type , --app-info ). Default out...
6K
2546 offer-comparison-analyzer paramchoudhary/resumeskills
Offer Comparison Analyzer When to Use This Skill Use this skill when the user: Has multiple job offers to compare Needs to evaluate total compensation Wants to make a data-driven job decision Is weighing different opportunities Mentions: "compare offers", "multiple offers", "which job", "offer comparison", "deciding between jobs" Core Capabilities Compare total compensation across offers Evaluate non-monetary factors Create weighted decision frameworks Calculate true offer value Identify hidden ...
6K
2547 ljg-word lijigang/ljg-skills
Usage Instructions 目标不是翻译,而是让用户掌握这个词的深层含义和用法。 针对输入的 word (转换为小写,首字母大写),进行以下分析,直接在对话中用 Markdown 输出: 输出结构 1. 标题行 {Word} /{音标}/ {中文翻译} 2. 核心语义 原始画面 : 用一句话描述该词源头最物理的画面(例如 Incubate: 母鸡趴在蛋上)。 核心意象 : 提炼公式(例如:温暖 + 时间 + 保护 = 孕育)。 解释 : 用充满洞见的语言阐述其深层含义与现代用法。分段清晰, 加粗 关键词。要有穿透力,展现词源、多领域含义之间的内在联系。 3. 一语道破 一句中英双语的金句,必须具有哲学高度,总结该词的灵魂。用引用格式: > "English sentence. 中文金句。"
6K
2548 zustand lobehub/lobehub
LobeHub Zustand State Management Action Type Hierarchy 1. Public Actions Main interfaces for UI components: Naming: Verb form ( createTopic , sendMessage ) Responsibilities: Parameter validation, flow orchestration 2. Internal Actions ( internal_* ) Core business logic implementation: Naming: internal_ prefix ( internal_createTopic ) Responsibilities: Optimistic updates, service calls, error handling Should not be called directly by UI 3. Dispatch Methods ( internal_dispatch* ) State update hand...
6K
2549 meme-rush binance/binance-skills-hub
Meme Rush Skill Overview Meme Rush — Launchpad token lifecycle tracking rankType Stage Description 10 New Freshly created meme tokens still on bonding curve 20 Finalizing Tokens about to migrate (bonding curve nearly complete) 30 Migrated Tokens that just migrated to DEX Topic Rush — AI-powered market hot topic discovery rankType Stage Description 10 Latest Newest hot topics 20 Rising Rising topics with all-time high inflow between $1k–$20k 30 Viral Viral topics with all-time high inflow above $...
6K
2550 reference-list-builder paramchoudhary/resumeskills
Reference List Builder When to Use This Skill Use this skill when the user: Needs to create a professional reference list Wants help choosing the right references Needs to format references properly Is preparing references for job applications Mentions: "references", "reference list", "professional references", "reference check" Core Capabilities Format professional reference lists Guide reference selection strategy Prepare reference briefing materials Anticipate reference check questions Handle...
6K