███████╗██╗ ██╗██╗██╗ ██╗ ██████╗ █████╗ ███╗ ██╗██╗ ██╗
██╔════╝██║ ██╔╝██║██║ ██║ ██╔══██╗██╔══██╗████╗ ██║██║ ██╔╝
███████╗█████╔╝ ██║██║ ██║ ██████╔╝███████║██╔██╗ ██║█████╔╝
╚════██║██╔═██╗ ██║██║ ██║ ██╔══██╗██╔══██║██║╚██╗██║██╔═██╗
███████║██║ ██╗██║███████╗███████╗ ██║ ██║██║ ██║██║ ╚████║██║ ██╗
╚══════╝╚═╝ ╚═╝╚═╝╚══════╝╚══════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝
Agent Skills 排行榜 · 关键词 + 语义搜索
| # | Skill | 仓库 | 描述 | 安装量 |
|---|---|---|---|---|
| 4651 | salesforce-apex-quality | github/awesome-copilot |
Salesforce Apex Quality Guardrails Apply these checks to every Apex class, trigger, and test file you write or review. Step 1 — Governor Limit Safety Check Scan for these patterns before declaring any Apex file acceptable: SOQL and DML in Loops — Automatic Fail // ❌ NEVER — causes LimitException at scale for ( Account a : accounts ) { List < Contact > contacts = [ SELECT Id FROM Contact WHERE AccountId = :a . Id ] ; // SOQL in loop update a ; // DML in loop } // ✅ ALWAYS — collect, then query/up...
|
491 |
| 4652 | pricing-strategy | phuryn/pm-skills |
Pricing Strategy You are an expert in SaaS pricing and monetization strategy. Your goal is to help design pricing that captures value, drives growth, and aligns with customer willingness to pay. Before Starting 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 covered or specific to this task. Gather this con...
|
491 |
| 4653 | searxng-search | ypares/agent-skills |
SearXNG is a privacy-respecting metasearch engine that you can run locally. It aggregates results from multiple search engines and package repositories, returning clean JSON output. Quick Start Start SearXNG: ``` start-searxng --detach ``` This will: - Auto-detect podman or docker - Create a minimal config with JSON output enabled - Start SearXNG on `http://localhost:8888` - Wait until ready Stop SearXNG: ``` podman stop searxng or: docker stop searxng ``` Custom port: ``` start...
|
491 |
| 4654 | grammar-check | phuryn/pm-skills |
Grammar and Flow Checking You are an expert copyeditor and writing specialist. Your role is to identify grammar, logical, and flow errors in text, then provide clear, actionable fix suggestions without rewriting the entire document. Purpose Analyze text for grammar, logical, and flow errors. Provide specific, focused suggestions on how to fix each issue. Focus on clarity, correctness, and readability. Input Arguments $OBJECTIVE : What is the intended purpose or goal of the text? (e.g., "persuade...
|
491 |
| 4655 | testing | tursodatabase/turso |
LobeHub Testing Guide Quick Reference Commands: Run specific test file bunx vitest run --silent = 'passed-only' '[file-path]' Database package (client) cd packages/database && bunx vitest run --silent = 'passed-only' '[file]' Database package (server) cd packages/database && TEST_SERVER_DB = 1 bunx vitest run --silent = 'passed-only' '[file]' Never run bun run test - it runs all 3000+ tests (~10 minutes). Test Categories Category Location Config Webapp src//*.test.ts(x) vitest.config.ts Packa...
|
491 |
| 4656 | rag | giuseppe-trisciuoglio/developer-kit |
RAG Implementation Build Retrieval-Augmented Generation systems that extend AI capabilities with external knowledge sources. Overview RAG (Retrieval-Augmented Generation) enhances AI applications by retrieving relevant information from knowledge bases and incorporating it into AI responses, reducing hallucinations and providing accurate, grounded answers. When to Use Use this skill when: Building Q&A systems over proprietary documents Creating chatbots with current, factual information Implement...
|
491 |
| 4657 | ui-typography | bencium/bencium-marketplace |
UI Typography Skill Attribution These rules are distilled from Matthew Butterick's Practical Typography ( https://practicaltypography.com ). Butterick is a typographer, writer, and type designer whose work bridges professional typography and everyday digital writing. Thank you, Matthew, for making this knowledge accessible and encyclopedic. If you find this skill valuable, consider supporting his work directly. Mode of Operation These are permanent rules — not trends, not opinions. They come fro...
|
491 |
| 4658 | paper-writing | vishalsachdev/claude-code-skills |
Academic Paper Writing Skill This skill provides comprehensive guidance for writing excellent academic and research papers across all disciplines. It covers structure, style, argumentation, and best practices from initial planning through final revision. When to Use This Skill Use this skill when working on: Research papers and journal articles Conference papers and proceedings Technical reports and white papers Thesis chapters and dissertations Literature reviews and survey papers Position pape...
|
491 |
| 4659 | distill-memory | nowledge-co/community |
Distill Memory Capture breakthrough moments and valuable insights as searchable memories in your knowledge base. When to Suggest Breakthrough moments: Extended debugging finally resolves User relief signals ("Finally!", "Aha!", "That was it!") Root cause discovered after investigation Important decisions: Compared multiple options Chose with clear rationale Trade-off resolved with reasoning Research conclusions: Investigated multiple approaches Reached definitive conclusion Optimal path determin...
|
490 |
| 4660 | react18-legacy-context | github/awesome-copilot |
React 18 Legacy Context Migration Legacy context ( contextTypes , childContextTypes , getChildContext ) was deprecated in React 16.3 and warns in React 18.3.1. It is removed in React 19 . This Is Always a Cross-File Migration Unlike most other migrations that touch one file at a time, context migration requires coordinating: Create the context object (usually a new file) Update the provider component Update every consumer component Missing any consumer leaves the app broken - it will read from t...
|
490 |
| 4661 | react-audit-grep-patterns | github/awesome-copilot |
React Audit Grep Patterns Complete scan command library for React 18.3.1 and React 19 migration audits. Usage Read the relevant section for your target: references/react18-scans.md - all scans for React 16/17 → 18.3.1 audit references/react19-scans.md - all scans for React 18 → 19 audit references/test-scans.md - test file specific scans (used by both auditors) references/dep-scans.md - dependency and peer conflict scans Base Patterns Used Across All Scans Standard flags used throughout: -r = ...
|
490 |
| 4662 | react18-batching-patterns | github/awesome-copilot |
React 18 Automatic Batching Patterns Reference for diagnosing and fixing the most dangerous silent breaking change in React 18 for class-component codebases. The Core Change Location of setState React 17 React 18 React event handler Batched Batched (same) setTimeout Immediate re-render Batched Promise .then() / .catch() Immediate re-render Batched async/await Immediate re-render Batched Native addEventListener callback Immediate re-render Batched Batched means: all setState calls within that exe...
|
490 |
| 4663 | domain-cloud-native | zhanghandong/rust-skills |
Cloud-Native Domain Layer 3: Domain Constraints Domain Constraints → Design Implications Domain Rule Design Constraint Rust Implication 12-Factor Config from env Environment-based config Observability Metrics + traces tracing + opentelemetry Health checks Liveness/readiness Dedicated endpoints Graceful shutdown Clean termination Signal handling Horizontal scale Stateless design No local state Container-friendly Small binaries Release optimization Critical Constraints Stateless Design RULE: No ...
|
490 |
| 4664 | pr-workflow | tursodatabase/turso |
PR Workflow Guide Commit Practices Atomic commits. Small, focused, single purpose Don't mix: logic + formatting, logic + refactoring Good message = easy to write short description of intent Learn git rebase -i for clean history. PR Guidelines Keep PRs focused and small Run relevant tests before submitting Each commit tells part of the story CI Environment Notes If running as GitHub Action: Max-turns limit in .github/workflows/claude.yml OK to commit WIP state and push OK to open WIP PR and conti...
|
490 |
| 4665 | gog | naoterumaker/openclaw-gog-skills |
gog Use gog for Gmail/Calendar/Drive/Contacts/Sheets/Docs. Requires OAuth setup. Setup (once) gog auth credentials /path/to/client_secret.json gog auth add you@gmail.com --services gmail,calendar,drive,contacts,docs,sheets gog auth list Common commands Gmail search: gog gmail search 'newer_than:7d' --max 10 Gmail messages search (per email, ignores threading): gog gmail messages search "in:inbox from:ryanair.com" --max 20 --account you@example.com Gmail send (plain): gog gmail send --to a@b.com ...
|
490 |
| 4666 | lsp-setup | github/awesome-copilot |
LSP Setup for GitHub Copilot CLI UTILITY SKILL — installs and configures Language Server Protocol servers for Copilot CLI. USE FOR: "setup LSP", "install language server", "configure LSP for Java", "add TypeScript LSP", "enable code intelligence", "I need go-to-definition", "find references not working", "need better code understanding" DO NOT USE FOR: general coding tasks, IDE/editor LSP configuration, non-Copilot-CLI setups Workflow Ask the language — use ask_user to ask which programming lang...
|
490 |
| 4667 | cold-start-strategy | kostja94/marketing-skills |
Strategies: Cold Start Guides cold start strategy for AI/SaaS products: getting first users and traction when you have zero. The cold start problem is overcoming the chicken-and-egg barrier; most startups fail due to poor distribution, not product quality. For indie hacker context (first 100 users, Build in Public, Pieter Levels tactics), see indie-hacker-strategy . When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the m...
|
490 |
| 4668 | redux-toolkit | mindrally/skills |
Redux Toolkit You are an expert in Redux Toolkit for state management in React and Next.js applications. Development Philosophy Write clean, maintainable, and scalable code Adhere to SOLID principles Favor functional and declarative programming patterns Emphasize type safety and component-driven approaches Redux State Management Core Principles Implement Redux Toolkit for global state management Use createSlice to define state, reducers, and actions together Normalize state structure to preven...
|
490 |
| 4669 | sdd:add-task | neolabhq/context-engineering-kit |
Create Draft Task File Role Your role is to create a draft task file that exactly matches the user's request. Goal Create a task file in .specs/tasks/draft/ with: Clear, action-oriented title (verb + specific description) Appropriate type classification (feature/bug/refactor/test/docs/chore/ci) Correct dependencies if any Useful description preserving user intent Correct file name Input User Input : The task description/title provided by the user (passed as argument) Target Directory : Default i...
|
490 |
| 4670 | presentation-creator | getsentry/skills |
Sentry Presentation Builder Create interactive, data-driven presentation slides using React + Vite + Recharts, styled with the Sentry design system and built as a single distributable HTML file. Step 1: Gather Requirements Ask the user: What is the presentation topic? How many slides (typically 5-8)? What data/charts are needed? (time series, comparisons, diagrams, zone charts) What is the narrative arc? (problem → solution, before → after, technical deep-dive) Data Assessment (CRITICAL) Before ...
|
490 |
| 4671 | technical-writer | onewave-ai/claude-skills |
Technical Writer You are an expert technical writer who creates clear, user-friendly documentation for technical products. When to Apply Use this skill when: Writing API documentation Creating README files and setup guides Developing user manuals and tutorials Documenting architecture and design Writing changelog and release notes Creating onboarding guides Explaining complex technical concepts Writing Principles 1. User-Centered Lead with the user's goal, not the feature Answer "why should I ca...
|
490 |
| 4672 | sf-datacloud-segment | jaganpro/sf-skills |
sf-datacloud-segment: Data Cloud Segment Phase Use this skill when the user needs audience and insight work : segments, calculated insights, publish workflows, member counts, or troubleshooting Data Cloud segment SQL. When This Skill Owns the Task Use sf-datacloud-segment when the work involves: sf data360 segment * sf data360 calculated-insight * segment publish workflows member counts and segment troubleshooting calculated insight execution and verification Delegate elsewhere when the user is:...
|
490 |
| 4673 | sf-datacloud-prepare | jaganpro/sf-skills |
sf-datacloud-prepare: Data Cloud Prepare Phase Use this skill when the user needs ingestion and lake preparation work : data streams, Data Lake Objects (DLOs), transforms, Document AI, unstructured ingestion, or the handoff from connector setup into a live stream. When This Skill Owns the Task Use sf-datacloud-prepare when the work involves: sf data360 data-stream * sf data360 dlo * sf data360 transform * sf data360 docai * choosing how data should enter Data Cloud rerunning or rescanning ingest...
|
490 |
| 4674 | react18-dep-compatibility | github/awesome-copilot |
React Dependency Compatibility Matrix Minimum versions required for React 18.3.1 and React 19 compatibility. Use this skill whenever checking whether a dependency supports a target React version, resolving peer dependency conflicts, deciding whether to upgrade or use legacy-peer-deps , or assessing the risk of a react-router v5 to v6 migration. Review this matrix before running npm install during a React upgrade and before accepting an npm dependency conflict resolution, especially where concurr...
|
489 |
| 4675 | react18-string-refs | github/awesome-copilot |
React 18 String Refs Migration String refs ( ref="myInput" + this.refs.myInput ) were deprecated in React 16.3, warn in React 18.3.1, and are removed in React 19 . Quick Pattern Map Pattern Reference Single ref on a DOM element → patterns.mdsingle-ref Multiple refs in one component → patterns.mdmultiple-refs Refs in a list / dynamic refs → patterns.mdlist-refs Callback refs (alternative approach) → patterns.mdcallback-refs Ref passed to a child component → patterns.mdforwarded-refs Scan Command ...
|
489 |
| 4676 | react18-lifecycle-patterns | github/awesome-copilot |
React 18 Lifecycle Patterns Reference for migrating the three unsafe class component lifecycle methods to React 18.3.1 compliant patterns. Quick Decision Guide Before migrating any lifecycle method, identify the semantic category of what the method does. Wrong category = wrong migration. The table below routes you to the correct reference file. componentWillMount - what does it do? What it does Correct migration Reference Sets initial state ( this.setState(...) ) Move to constructor → componentW...
|
489 |
| 4677 | swap-planner | uniswap/uniswap-ai |
Swap Planning Plan and generate deep links for token swaps on Uniswap across all supported chains. Runtime Compatibility: This skill uses AskUserQuestion for interactive prompts. If AskUserQuestion is not available in your runtime, collect the same parameters through natural language conversation instead. Overview Plan token swaps by: Gathering swap intent (tokens, amounts, chain) Verifying token contracts on-chain Researching tokens via web search when needed Generating a deep link that opens i...
|
489 |
| 4678 | docx-generator | jwynia/agent-skills |
DOCX Generator When to Use This Skill Use this skill when: Creating Word documents programmatically from data or specifications Populating branded templates with dynamic content while preserving corporate styling Extracting text, tables, and structure from existing DOCX files for analysis Finding and replacing placeholder text like {{TITLE}} or ${author} Automating document generation workflows (reports, contracts, letters) Do NOT use this skill when: User wants to open/view documents (use n...
|
489 |
| 4679 | title-tag | kostja94/marketing-skills |
SEO On-Page: Title Tag Guides optimization of the HTML title tag for search engines and SERP display. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the main output. On subsequent use or when the user asks to skip, go directly to the main output. Scope (On-Page SEO) Title tag : Primary search snippet; primary keyword near start; unique per page Length by Language Google truncates by pixel width (~580–600px desktop), n...
|
489 |
| 4680 | responsive-web-design | aj-geddes/useful-ai-prompts |
Responsive Web Design Overview Build mobile-first responsive interfaces using modern CSS techniques including Flexbox, Grid, and media queries to create adaptable user experiences. When to Use Multi-device applications Mobile-first development Accessible layouts Flexible UI systems Cross-browser compatibility Implementation Examples 1. Mobile-First Media Query Strategy /* Mobile styles (default) */ .container { display: flex; flex-direction: column; padding: 16px; gap: 16px; } .card {...
|
489 |
| 4681 | tdd:test-driven-development | neolabhq/context-engineering-kit |
Test-Driven Development (TDD) Overview Write the test first. Watch it fail. Write minimal code to pass. Core principle: If you didn't watch the test fail, you don't know if it tests the right thing. Violating the letter of the rules is violating the spirit of the rules. When to Use Always: New features Bug fixes Refactoring Behavior changes Exceptions (ask your human partner): Throwaway prototypes Generated code Configuration files Thinking "skip TDD just this once"? Stop. That's rationalization...
|
489 |
| 4682 | sdd:create-ideas | neolabhq/context-engineering-kit |
Generate Ideas You are a helpful assistant. For each query, please generate a set of 6 possible responses, each as separate list item. Responses should each include a text and a numeric probability. Please sample responses at random from the [full distribution / tails of the distribution], in such way that: For first 3 responses aim for high probability, over 0.80 For last 3 responses aim for diversity - explore different regions of the solution space, such that the probability of each response ...
|
489 |
| 4683 | ppt-template-creator | anthropics/financial-services-plugins |
PPT Template Creator This skill creates SKILLS, not presentations. Use this when a user wants to turn their PowerPoint template into a reusable skill that can generate presentations later. If the user just wants to create a presentation, use the pptx skill instead. The generated skill includes: assets/template.pptx - the template file SKILL.md - complete instructions (no reference to this meta skill needed) For general skill-building best practices , refer to the skill-creator skill. This skill ...
|
489 |
| 4684 | inngest-setup | inngest/inngest-skills |
Inngest Setup This skill sets up Inngest in a TypeScript project from scratch, covering installation, client configuration, connection modes, and local development. These skills are focused on TypeScript. For Python or Go, refer to the Inngest documentation for language-specific guidance. Core concepts apply across all languages. Prerequisites Node.js 18+ (Node.js 22.4+ r ecommended for WebSocket support) TypeScript project Package manager (npm, yarn, pnpm, or bun) Step 1: Install the Inngest SD...
|
489 |
| 4685 | cloudkit | dpearson2699/swift-ios-skills |
CloudKit Sync data across devices using CloudKit, iCloud key-value storage, and iCloud Drive. Covers container setup, record CRUD, queries, subscriptions, CKSyncEngine, SwiftData integration, conflict resolution, and error handling. Targets iOS 26+ with Swift 6.3; older availability noted where relevant. Contents Container and Database Setup CKRecord CRUD CKQuery CKSubscription CKSyncEngine (iOS 17+) SwiftData + CloudKit NSUbiquitousKeyValueStore iCloud Drive File Sync Account Status and Error H...
|
489 |
| 4686 | information-architecture | julianoczkowski/designer-skills |
This skill defines the structural skeleton of a product or site. It sits between the design brief and the build. Run this after the brief is written and before tasks are created. Example prompts "Plan the IA for this app before I start building" "Map out the navigation and page structure" "I need to organize the content for a documentation site" "Define user flows for the onboarding experience" Process Look for an existing design brief at .design/*/DESIGN_BRIEF.md . If multiple subfolders exist,...
|
489 |
| 4687 | sf-datacloud-act | jaganpro/sf-skills |
sf-datacloud-act: Data Cloud Act Phase Use this skill when the user needs downstream delivery work : activations, activation targets, data actions, or pushing Data Cloud outputs into other systems. When This Skill Owns the Task Use sf-datacloud-act when the work involves: sf data360 activation * sf data360 activation-target * sf data360 data-action * sf data360 data-action-target * verifying downstream delivery setup Delegate elsewhere when the user is: still building the audience or insight → s...
|
489 |
| 4688 | sf-datacloud-harmonize | jaganpro/sf-skills |
sf-datacloud-harmonize: Data Cloud Harmonize Phase Use this skill when the user needs schema harmonization and unification work : DMOs, field mappings, relationships, identity resolution, unified profiles, data graphs, or universal ID lookup. When This Skill Owns the Task Use sf-datacloud-harmonize when the work involves: sf data360 dmo * sf data360 identity-resolution * sf data360 data-graph * sf data360 profile * sf data360 universal-id lookup Delegate elsewhere when the user is: still ingesti...
|
489 |
| 4689 | react18-enzyme-to-rtl | github/awesome-copilot |
React 18 Enzyme → RTL Migration Enzyme has no React 18 adapter and no React 18 support path. All Enzyme tests must be rewritten using React Testing Library. The Philosophy Shift (Read This First) Enzyme tests implementation. RTL tests behavior. // Enzyme: tests that the component has the right internal state expect ( wrapper . state ( 'count' ) ) . toBe ( 3 ) ; expect ( wrapper . instance ( ) . handleClick ) . toBeDefined ( ) ; expect ( wrapper . find ( 'Button' ) . prop ( 'disabled' ) ) . toBe ...
|
488 |
| 4690 | copywriting | davila7/claude-code-templates |
Copywriting You are an expert conversion copywriter. Your goal is to write marketing copy that is clear, compelling, and drives action. Before Writing 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 covered or specific to this task. Gather this context (ask if not provided): 1. Page Purpose What type of pag...
|
488 |
| 4691 | customer-journey-map | phuryn/pm-skills |
Purpose Create a comprehensive customer journey map that visualizes how customers interact with your brand across all stages—from awareness to loyalty—documenting their actions, touchpoints, emotions, KPIs, business goals, and teams involved at each stage. Use this to identify pain points, align cross-functional teams, and systematically improve the customer experience to achieve business objectives. This is not a user flow diagram—it's a strategic artifact that combines customer empathy with bu...
|
488 |
| 4692 | stakeholder-map | phuryn/pm-skills |
Stakeholder Mapping & Communication Plan Map stakeholders on a Power × Interest grid and create a tailored communication plan for each group. Context You are helping build a stakeholder map for $ARGUMENTS . If the user provides files (org charts, project briefs, team rosters), read them first. If they describe the product or initiative, use that context to infer likely stakeholders. Instructions Identify stakeholders : List all relevant individuals and groups — executives, engineering leads, des...
|
488 |
| 4693 | awwwards-landing-page | eng0ai/eng0-template-skills |
Awwwards Landing Page A stunning portfolio landing page with smooth scroll animations using Locomotive Scroll, GSAP, and Framer Motion. Tech Stack Framework: Next.js Animation: Locomotive Scroll, GSAP, Framer Motion Package Manager: pnpm or npm Dev Port: 3000 Setup 1. Clone the Template git clone --depth 1 https://github.com/Eng0AI/awwwards-landing-page-template.git . If the directory is not empty: git clone --depth 1 https://github.com/Eng0AI/awwwards-landing-page-template.git _temp_templa...
|
488 |
| 4694 | express-rest-api | pluginagentmarketplace/custom-plugin-nodejs |
Express REST API Skill Master building robust, scalable REST APIs with Express.js, the de-facto standard for Node.js web frameworks. Quick Start Build a basic Express API in 5 steps: Setup Express - npm install express Create Routes - Define GET, POST, PUT, DELETE endpoints Add Middleware - JSON parsing, CORS, security headers Handle Errors - Centralized error handling Test & Deploy - Use Postman/Insomnia, deploy to cloud Core Concepts 1. Express Application Structure const express = require...
|
487 |
| 4695 | nestjs-testing-expert | shipshitdev/library |
NestJS Testing Expert You build reliable Jest test suites for NestJS modules, services, and controllers. When to Use Writing unit or integration tests for NestJS Setting up TestModule, mocking providers, or database fakes Debugging flaky tests Testing Pyramid Unit tests for pure logic and services Integration tests for modules with real providers E2E tests for HTTP APIs Common Patterns Use Test.createTestingModule with explicit providers. Mock external services with jest.fn or test doubles. Fo...
|
487 |
| 4696 | planning-with-files | sickn33/antigravity-awesome-skills |
Planning with Files Work like Manus: Use persistent markdown files as your "working memory on disk." FIRST: Check for Previous Session (v2.2.0) Before starting work , check for unsynced context from a previous session: Linux/macOS $( command -v python3 || command -v python ) ${CLAUDE_PLUGIN_ROOT} /scripts/session-catchup.py " $( pwd ) " Windows PowerShell & ( Get-Command python - ErrorAction SilentlyContinue ) . Source " $env :USERPROFILE\.claude\skills\planning-with-files\scripts\session-catc...
|
487 |
| 4697 | a-stock-daily-report | zsxink/skills-hub |
A股日报自动生成系统 自动抓取 A 股市场数据,生成日报。 功能 📊 大盘概览 :上证、深证、创业板、科创板指数 🔥 热门板块 :涨幅 TOP 5 板块 📈 明日关注 :技术面突破、政策利好板块 ⚠️ 风险提示 :高估值、资金流出板块 💰 资金动向 :北向资金、主力净流入 快速开始 生成日报 node scripts/a-stock-report.js 直接运行即可生成 A股日报报告(格式化输出)。 获取 JSON 数据 node scripts/a-stock-report.js json 获取 JSON 格式的数据,便于程序处理。 JSON 数据字段说明 { "sh_index" : "3250.45" , // 上证指数收盘点位 "sh_index_change" : "+1.25%" , // 上证指数涨跌幅 "sz_index" : "10890.32" , // 深证成指收盘点位 "sz_index_change" : "-0.35%" , // 深证成指涨跌幅 "cy_index" : "2150.18" , // 创业板指收盘点位 "cy_index_change" :...
|
487 |
| 4698 | content-marketing | kostja94/marketing-skills |
Content Marketing Help the user build effective content marketing using frameworks from 23 product leaders who have built content engines at companies like Notion, First Round, and The Pragmatic Engineer. How to Help When the user asks for help with content marketing: Identify the goal - Determine if content is for SEO, brand building, lead generation, or thought leadership Find content-market fit - Help them identify the specific anxieties or needs their content will solve Choose the right form...
|
487 |
| 4699 | django-celery-expert | vintasoftware/django-ai-plugins |
Django Celery Expert Overview This skill provides expert guidance for Django applications using Celery for asynchronous task processing. It covers task design patterns, worker configuration, error handling, monitoring, and production deployment strategies. Key Capabilities: Task design and implementation patterns Worker configuration and scaling Error handling and retry strategies Periodic/scheduled task management Monitoring and observability Production deployment best practices When to Use ...
|
486 |
| 4700 | cicd-expert | martinholovsky/claude-skills-generator |
CI/CD Pipeline Expert 1. Overview You are an elite CI/CD pipeline engineer with deep expertise in: GitHub Actions: Workflows, reusable actions, matrix builds, caching strategies, self-hosted runners GitLab CI: Pipeline configuration, DAG pipelines, parent-child pipelines, dynamic child pipelines Jenkins: Declarative/scripted pipelines, shared libraries, distributed builds Security: SAST/DAST integration, secrets management, supply chain security, artifact signing Deployment Strategies: Blue/gr...
|
486 |