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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
23,097
总 Skills
59.4M
总安装量
2,536
贡献者
# Skill 仓库 描述 安装量
4751 cloud-functions tencentcloudbase/skills
Cloud Functions Development Use this skill when developing, deploying, and managing CloudBase cloud functions. CloudBase supports two types of cloud functions: Event Functions (普通云函数) : Traditional serverless functions triggered by events (SDK calls, timers) HTTP Functions (HTTP 云函数) : Web service functions triggered by HTTP requests, supporting multiple languages When to use this skill Use this skill for cloud function operations when you need to: Create and deploy Event Functions (Node.js) Cre...
836
4752 systematic-debugging sickn33/antigravity-awesome-skills
Systematic Debugging Overview Random fixes waste time and create new bugs. Quick patches mask underlying issues. Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure. Violating the letter of this process is violating the spirit of debugging. The Iron Law NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST If you haven't completed Phase 1, you cannot propose fixes. When to Use Use for ANY technical issue: Test failures Bugs in production Unexpected behavior Perfor...
835
4753 remotion davila7/claude-code-templates
Stitch to Remotion Walkthrough Videos You are a video production specialist focused on creating engaging walkthrough videos from app designs. You combine Stitch's screen retrieval capabilities with Remotion's programmatic video generation to produce smooth, professional presentations. Overview This skill enables you to create walkthrough videos that showcase app screens with professional transitions, zoom effects, and contextual text overlays. The workflow retrieves screens from Stitch projects ...
835
4754 amazon-bedrock aws/agent-toolkit-for-aws
No SKILL.md available for this skill. View on GitHub
834
4755 arize-ai-provider-integration github/awesome-copilot
Arize AI Integration Skill Concepts AI Integration = stored LLM provider credentials registered in Arize; used by evaluators to call a judge model and by other Arize features that need to invoke an LLM on your behalf Provider = the LLM service backing the integration (e.g., openAI , anthropic , awsBedrock ) Integration ID = a base64-encoded global identifier for an integration (e.g., TGxtSW50ZWdyYXRpb246MTI6YUJjRA== ); required for evaluator creation and other downstream operations Scoping = vis...
834
4756 agent-memory-mcp sickn33/antigravity-awesome-skills
Agent Memory Skill This skill provides a persistent, searchable memory bank that automatically syncs with project documentation. It runs as an MCP server to allow reading/writing/searching of long-term memories. Prerequisites Node.js (v18+) Setup Clone the Repository : Clone the agentMemory project into your agent's workspace or a parallel directory: git clone https://github.com/webzler/agentMemory.git .agent/skills/agent-memory Install Dependencies : cd .agent/skills/agent-memory npm install np...
834
4757 documentation mcollina/skills
Technical Documentation Write clear, maintainable technical documentation for different audiences and purposes. Document Types README What this is and why it exists Quick start (< 5 minutes to first success) Configuration and usage Contributing guide API Documentation Endpoint reference with request/response examples Authentication and error codes Rate limits and pagination SDK examples Runbook When to use this runbook Prerequisites and access needed Step-by-step procedure Rollback steps Escalat...
834
4758 market-sizing phuryn/pm-skills
Estimate Market Size (TAM, SAM, SOM) Purpose Estimate the Total Addressable Market (TAM), Serviceable Addressable Market (SAM), and Serviceable Obtainable Market (SOM) for a product. Includes both top-down and bottom-up estimation approaches, growth projections, and key assumptions to validate. Instructions You are a strategic market analyst specializing in market sizing, opportunity assessment, and growth forecasting. Input Your task is to estimate the market size for $ARGUMENTS within the spec...
834
4759 north-star-metric phuryn/pm-skills
North Star Metric Identify a North Star Metric and 3-5 Input Metrics that form a metrics constellation. Classifies the business game being played and validates against criteria for an effective North Star. Use when defining key metrics, setting up a metrics framework, or choosing what to measure. Domain Context NSM is NOT : multiple metrics, a revenue/LTV metric (must be customer-centric), an OKR (that's a goal-setting technique), or a strategy (but choosing the right NSM is a strategic choice)....
833
4760 golang-swagger samber/cc-skills-golang
Persona: You are a Go API documentation engineer. You treat docs as a contract — accurate, complete annotations prevent integration bugs and make the Swagger UI the source of truth for API consumers. Modes: Build — adding Swagger to a new or existing Go project: set up the toolchain, annotate handlers, generate docs, wire the UI endpoint. Audit — reviewing existing swagger annotations for completeness, correctness, and security coverage. Setup Three steps to get Swagger UI running: swag init ge...
832
4761 korean-slang-writing nomadamas/k-skill
Korean Slang Writing What this skill does 사용자가 "유행어 섞어서", "요즘 말투로", "밈스럽게", "재치있게" 같은 요청을 했을 때, 검증된 한국 유행어 후보 를 먼저 뽑고 필요하면 나무위키 원문 요약을 확인해 한국어 문장·홍보문·SNS 게시글·댓글을 유행어 느낌으로 작성한다. 스킬은 데이터와 조회 도구 만 제공한다: 큐레이션된 시드 인덱스 검색 + 나무위키 best-effort 요약. 실제 문장 작성은 에이전트(LLM) 가 스킬이 돌려준 후보 중에서 사용자 의도에 맞는 표현을 골라 한다. 시드 인덱스 출처는 나무위키 분류:유행어 를 기준으로 수작업 큐레이션한다. risky 수준의 혐오·차별·집단 조롱 가능성이 있는 표현은 시드에 넣지 않는다. When to use "SNS 홍보 글 유행어 섞어서 써줘" "댓글을 요즘 말투로 바꿔줘" "밈스럽게 / MZ스럽게 / 재치있게 써줘" "이 유행어가 무슨 뜻이야?" (시드 인덱스 + 나무위키 lookup...
832
4762 analytics-tracking kostja94/marketing-skills
Analytics Tracking You are an expert in analytics implementation and measurement. Your goal is to help set up tracking that provides actionable insights for marketing and product decisions. Initial Assessment 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. Before implementi...
832
4763 pixijs-ticker pixijs/pixijs-skills
app.ticker runs registered callbacks every frame and drives app.render() at UPDATE_PRIORITY.LOW . Each callback receives the Ticker instance; read deltaTime as a frame-rate-independent multiplier (≈1.0 at 60fps) or deltaMS for real-time calculations. Quick Start app . ticker . add ( ( ticker ) => { sprite . rotation += 0.01 * ticker . deltaTime ; sprite . x += ( 200 / 1000 ) * ticker . deltaMS ; } ) ; app . ticker . add ( ( ticker ) => { updatePhysics ( ticker . deltaMS ) ; } , undefined , UPDAT...
832
4764 user-segmentation phuryn/pm-skills
User Segmentation Purpose Analyze diverse user feedback to identify at least 3 distinct behavioral and needs-based user segments. This skill surfaces hidden customer groups based on jobs-to-be-done, behaviors, and motivations rather than demographics alone, enabling targeted product strategy. Instructions You are an expert behavioral researcher and data analyst specializing in user segmentation and behavioral clustering. Input Your task is to segment users for $ARGUMENTS based on behavior, jobs-...
832
4765 job-stories phuryn/pm-skills
Job Stories Create job stories using the 'When [situation], I want to [motivation], so I can [outcome]' format. Generates stories with detailed acceptance criteria focused on user situations and outcomes. Use when: Writing job stories, expressing user situations and motivations, creating JTBD-style backlog items, or focusing on user context rather than roles. Arguments: $PRODUCT : The product or system name $FEATURE : The new feature to break into job stories $DESIGN : Link to design files (Figm...
832
4766 ux-researcher-designer davila7/claude-code-templates
UX Researcher & Designer Comprehensive toolkit for user-centered research and experience design. Core Capabilities Data-driven persona generation Customer journey mapping Usability testing frameworks Research synthesis and insights Design validation methods Key Scripts persona_generator.py Creates research-backed personas from user data and interviews. Usage: python scripts/persona_generator.py [json] Features: Analyzes user behavior patterns Identifies persona archetypes Extracts psychogr...
832
4767 convex-component-authoring waynesutton/convexskills
Convex Component Authoring Create self-contained, reusable Convex components with proper isolation, exports, and dependency management for sharing across projects. Documentation Sources Before implementing, do not assume; fetch the latest documentation: Primary: https://docs.convex.dev/components Component Authoring: https://docs.convex.dev/components/authoring For broader context: https://docs.convex.dev/llms.txt Instructions What Are Convex Components? Convex components are self-contained...
831
4768 gtm-motions phuryn/pm-skills
GTM Motions Overview Identify and evaluate the best go-to-market motions for your product. This skill analyzes seven proven GTM approaches with specific tools and tactics to help you build a balanced acquisition strategy. When to Use Selecting marketing channels for your product Choosing between inbound vs outbound strategy Building your GTM toolkit and tech stack Evaluating PLG vs traditional sales motion Planning cross-channel marketing campaigns The 7 GTM Motions 1. Inbound Marketing Attract ...
831
4769 generate-image davila7/claude-code-templates
Generate Image Generate and edit high-quality images using OpenRouter's image generation models including FLUX.2 Pro and Gemini 3 Pro. When to Use This Skill Use generate-image for: Photos and photorealistic images Artistic illustrations and artwork Concept art and visual concepts Visual assets for presentations or documents Image editing and modifications Any general-purpose image generation needs Use scientific-schematics instead for: Flowcharts and process diagrams Circuit diagrams and ...
830
4770 flow facebook/react
Flow Type Checking Arguments: $ARGUMENTS: Renderer to check (default: dom-node) Renderers Renderer When to Use dom-node Default, recommended for most changes dom-browser Browser-specific DOM code native React Native fabric React Native Fabric Instructions Run yarn flow $ARGUMENTS (use dom-node if no argument) Report type errors with file locations For comprehensive checking (slow), use yarn flow-ci Common Mistakes Running without a renderer - Always specify or use default dom-node Ignoring sup...
830
4771 subscription-tracking-manager serpdownloaders/skills
SERP Subscription Tracker SERP Subscription tracker has everything you need to take control of your recurring payments and manage those subscriptions 🧾 Best Subscription Tracking Apps for 2025 Top Subscription Manager Tools to Track Recurring Payments, SaaS Costs, and Renewal Alerts Managing multiple SaaS tools, subscriptions, and recurring charges can be overwhelming. Whether you’re a freelancer, startup, or digital creator, having a subscription tracking app helps you stay organized, avoid sur...
829
4772 website-structure kostja94/marketing-skills
Strategy: Website Structure Guides website structure planning: which pages to build, page priority, and how structure supports UX, SEO, and growth. Structure is the organization and connection of pages; it affects user navigation, Google's understanding of content importance, crawlability, and sitelinks in SERPs. See serp-features for sitelinks and SERP optimization. When invoking : On first use , if helpful, open with 1–2 sentences on what this skill covers and why it matters, then provide the ...
829
4773 ralph-wiggum fstandhartinger/ralph-wiggum
Autonomous AI coding with spec-driven development What is Ralph Wiggum? Ralph Wiggum combines Geoffrey Huntley's iterative bash loop with spec-driven development for fully autonomous AI-assisted software development. The key insight: Fresh context each iteration. Each loop starts a new agent process with a clean context window, preventing context overflow and degradation. When to Use This Skill Use Ralph Wiggum when: - You have multiple specifications/features to implement - You want th...
829
4774 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...
829
4775 react-best-practices mastra-ai/mastra
Vercel React Best Practices Comprehensive performance optimization guide for React and Next.js applications, maintained by Vercel. Contains 45 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation. When to Apply Reference these guidelines when: Writing new React components or Next.js pages Implementing data fetching (client or server-side) Reviewing code for performance issues Refactoring existing React/Next.js code Optimizing bundle size or load tim...
829
4776 integrate-context-matic github/awesome-copilot
API Integration When the user asks to integrate a third-party API or implement anything involving an external API or SDK, follow this workflow. Do not rely on your own knowledge for available APIs or their capabilities — always use the context-matic MCP server. When to Apply Apply this skill when the user: Asks to integrate a third-party API Wants to add a client or SDK for an external service Requests implementation that depends on an external API Mentions a specific API (e.g. PayPal, Twilio) a...
828
4777 carousel kostja94/marketing-skills
Components: Carousel Layout Guides carousel (slider) layout design for sequential content display. Carousels show one or few items at a time; users swipe or click to advance. Best when space is limited and multiple items need rotation—testimonials, quotes, logos, gallery highlights. 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 ...
828
4778 sqlalchemy-alembic-expert-best-practices-code-review wispbit-ai/skills
SQLAlchemy & Alembic Expert Best Practices Simple, pragmatic, opinionated. Only what matters for writing production-grade SQLAlchemy and Alembic code. When to Apply Reference these guidelines when: Writing Alembic migrations for schema changes Creating or modifying SQLAlchemy models Adding indexes, constraints, or foreign keys via Alembic Reviewing database migration code for safety Refactoring existing database schemas Optimizing query patterns or database performance Rule Categories by Priorit...
828
4779 react-testing-library itechmeat/llm-code
React Testing Library Skill Quick Navigation Topic Link Queries references/queries.md User Events references/user-events.md API references/api.md Async references/async.md Debugging references/debugging.md Config references/config.md Installation Core (v16+: @testing-library/dom is peer dependency) npm install --save-dev @testing-library/react @testing-library/dom TypeScript support npm install --save-dev @types/react @types/react-dom Recommended: user-event for interactions npm install --s...
828
4780 aiconfig-targeting launchdarkly/agent-skills
AI Config Targeting Configure targeting rules for AI Configs to control which variations serve to different contexts. Works the same for both completion and agent mode. Prerequisites LaunchDarkly account with AI Configs enabled API access token with write permissions Project key and environment key Existing AI Config with variations (use aiconfig-create skill) API Key Detection Check environment variables - LAUNCHDARKLY_API_KEY , LAUNCHDARKLY_API_TOKEN , LD_API_KEY Check MCP config - Claude: ~/....
827
4781 jenkins-pipeline aj-geddes/useful-ai-prompts
Jenkins Pipeline Overview Create enterprise-grade Jenkins pipelines using declarative and scripted approaches to automate building, testing, and deploying with advanced control flow. When to Use Enterprise CI/CD infrastructure Complex multi-stage builds On-premise deployment automation Parameterized builds Implementation Examples 1. Declarative Pipeline (Jenkinsfile) pipeline { agent { label 'linux-docker' } environment { REGISTRY = 'docker.io' IMAGE_NAME = 'myapp' ...
827
4782 odoo-18 unclecatvn/agent-skills
Odoo 18 Skill - Master Index Master index for all Odoo 18 development guides. Read the appropriate guide from references/ based on your task. Quick Reference Topic File When to Use Actions references/odoo-18-actions-guide.md Creating actions, menus, scheduled jobs, server actions API Decorators references/odoo-18-decorator-guide.md Using @api decorators, compute fields, validation Controllers references/odoo-18-controller-guide.md Writing HTTP endpoints, routes, web controllers Data Files refere...
827
4783 arize-instrumentation github/awesome-copilot
Arize Instrumentation Skill Use this skill when the user wants to add Arize AX tracing to their application. Follow the two-phase, agent-assisted flow from the Agent-Assisted Tracing Setup and the Arize AX Tracing — Agent Setup Prompt . Quick start (for the user) If the user asks you to "set up tracing" or "instrument my app with Arize", you can start with: Follow the instructions from https://arize.com/docs/PROMPT.md and ask me questions as needed. Then execute the two phases below. Core princi...
827
4784 arize-dataset github/awesome-copilot
Arize Dataset Skill Concepts Dataset = a versioned collection of examples used for evaluation and experimentation Dataset Version = a snapshot of a dataset at a point in time; updates can be in-place or create a new version Example = a single record in a dataset with arbitrary user-defined fields (e.g., question , answer , context ) Space = an organizational container; datasets belong to a space System-managed fields on examples ( id , created_at , updated_at ) are auto-generated by the server -...
827
4785 arize-annotation github/awesome-copilot
Arize Annotation Skill This skill focuses on annotation configs — the schema for human feedback — and on programmatically annotating project spans via the Python SDK. Human review in the Arize UI (including annotation queues, datasets, and experiments) still depends on these configs; there is no ax CLI for queues yet. Direction: Human labeling in Arize attaches values defined by configs to spans , dataset examples , experiment-related records , and queue items in the product UI. What is document...
827
4786 test-tui openai/codex
You can start and use Codex TUI to verify changes. Important notes: Start interactively. Always set RUST_LOG="trace" when starting the process. Pass -c log_dir=<some_temp_dir> argument to have logs written to a specific directory to help with debugging. When sending a test message programmatically, send text first, then send Enter in a separate write (do not send text + Enter in one burst). Use just codex target to run - just codex -c ...
827
4787 porters-five-forces phuryn/pm-skills
Porter's Five Forces Metadata Name : porters-five-forces Description : Perform a Porter's Five Forces analysis evaluating competitive rivalry, supplier power, buyer power, threat of substitutes, and threat of new entrants. Triggers : Porter's five forces, competitive forces, industry analysis, market forces, competitive dynamics Instructions You are a competitive strategist conducting a Porter's Five Forces analysis for $ARGUMENTS. Your task is to evaluate the structural attractiveness of an ind...
827
4788 grammar-checker daleseo/korean-skills
grammar-checker: 한국어 문법 검사기 소개 당신은 표준 한국어 규칙에 기반한 문법 검사 전문가입니다. 맞춤법, 띄어쓰기, 문법 구조, 구두점 오류를 감지하고 교정하며, 각 오류에 대한 명확한 설명을 제공합니다. 핵심 원칙: 규칙 기반 접근: 국립국어원의 표준 한국어 규정과 맞춤법 규칙 준수 확신도 표시: 확실한 오류와 권장 사항을 명확히 구분 학습 지향: 단순 교정이 아닌 이유와 근거를 설명 문맥 고려: 문체(격식체/비격식체)와 분야(기술 문서 등)를 고려한 유연한 적용 검사 범위: 맞춤법/철자: 되/돼, -ㄴ지/-는지, -ㄹ게/-를게, 던/든, -로써/-로서 등 띄어쓰기: 의존명사, 보조용언, 단위명사, 합성어 문법 구조: 조사 사용 (-을/를, -이/가, -은/는, -와/과), 시제, 어미 구두점: 쉼표, 마침표, 느낌표, 따옴표 사용 작업 흐름 1단계: 텍스트 입력 받기 다음 방법으로 텍스트를 받을 수 있습니다: 사용자가 직접 제공한 텍스트 파일 경로 ...
827
4789 aiconfig-online-evals launchdarkly/agent-skills
AI Config Online Evaluations Attach judges to AI Config variations for automatic quality scoring using LLM-as-a-judge methodology. Judges evaluate responses and return scores between 0.0 and 1.0. Prerequisites LaunchDarkly account with AI Configs enabled API access token with write permissions Existing AI Config with variations (use aiconfig-create skill) For automatic metric recording and the consolidated judge-result API: Python AI SDK v0.18.0+ or Node.js AI SDK v0.17.0+ API Key Detection Chec...
826
4790 mobile-app-ui-design ceorkm/mobile-app-ui-design
Mobile App UI/UX Design Skill This skill guides the creation of professional, polished mobile app interfaces that follow proven design principles used by top-tier apps like Airbnb, Duolingo, Spotify, Revolut, and Phantom. Core Philosophy Great mobile UI isn't about flashiness — it's about intentionality. Every pixel, every spacing value, every color choice should serve the user. The goal is to create interfaces that feel smooth, personal, and alive — not just functional. Before designing anythin...
826
4791 backtest-expert tradermonty/claude-trading-skills
Backtest Expert Systematic approach to backtesting trading strategies based on professional methodology that prioritizes robustness over optimistic results. Core Philosophy Goal : Find strategies that "break the least", not strategies that "profit the most" on paper. Principle : Add friction, stress test assumptions, and see what survives. If a strategy holds up under pessimistic conditions, it's more likely to work in live trading. When to Use This Skill Use this skill when: Developing or valid...
826
4792 arize-experiment github/awesome-copilot
Arize Experiment Skill Concepts Experiment = a named evaluation run against a specific dataset version, containing one run per example Experiment Run = the result of processing one dataset example -- includes the model output, optional evaluations, and optional metadata Dataset = a versioned collection of examples; every experiment is tied to a dataset and a specific dataset version Evaluation = a named metric attached to a run (e.g., correctness , relevance ), with optional label, score, and ex...
826
4793 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...
826
4794 market-segments phuryn/pm-skills
Market Segments Purpose Identify and analyze 3-5 distinct customer segments for your product, understanding their unique jobs-to-be-done, desired outcomes, pain points, and product fit. Use this skill to evaluate market opportunities, prioritize target audiences, or expand into new market segments. Instructions You are a strategic market research expert skilled in market segmentation, customer profiling, and total addressable market (TAM) analysis. Input Your task is to identify and analyze pote...
826
4795 competitive-battlecard phuryn/pm-skills
Competitive Battlecard Create a concise, sales-ready battlecard for use against a specific competitor. Context You are creating a competitive battlecard for $ARGUMENTS . Use web search to research the competitor's current product, pricing, positioning, and recent changes. If the user provides files (feature lists, win/loss data, sales call notes), read them first. Instructions Research the competitor (use web search): Current product offerings and features Pricing tiers and model Target market a...
826
4796 tiktok-video-downloader serpdownloaders/skills
TikTok Video Downloader (Browser Extension) Download supported TikTok videos as MP4 files, including workflows that avoid the default watermark save path. TikTok Video Downloader is a browser extension built for users who want a cleaner way to save TikTok videos for offline viewing. It focuses on the browser playback workflow, detects supported video sources from active pages, and exports MP4 files without forcing you into manual workarounds or low-quality screen recordings. Save supported TikTo...
825
4797 pexels-video-downloader serpdownloaders/skills
Pexels Video Downloader — Coming Soon (Browser Extension) Download Pexels videos in their original quality as MP4 files directly from your browser. This extension is currently in development and has not been released yet. Pexels Video Downloader is an upcoming browser extension that will provide a seamless way to save videos from the Pexels platform without leaving the browser or relying on third-party desktop applications. It is being engineered around the Pexels browsing experience so you can ...
825
4798 pixel-art-sprites omer-metin/skills-for-antigravity
Pixel Art Sprites Identity Role: You are a pixel artist who grew up drawing sprites on graph paper and editing NES ROMs to make custom characters. You understand that pixel art isn't about low resolution—it's about deliberate, meaningful placement of every single pixel. Each pixel is a design decision. You've created art that works at 16x16 and scales beautifully, designed animations that feel alive with just 4 frames, and built tilesets that seamlessly connect in any combination. Personality:...
825
4799 setup marketcalls/vectorbt-backtesting-skills
Parallel Plugin Setup Install CLI See https://docs.parallel.ai/integrations/cli for the supported install methods (pipx, Homebrew, npm, native binary). Walk the user through whichever they pick. Authenticate parallel-cli login Verify parallel-cli auth If parallel-cli not found, add ~/.local/bin to PATH. Show more
825
4800 frontend-react-best-practices sergiodxa/agent-skills
Performance optimization and composition patterns for React components. Contains 33 rules across 6 categories focused on reducing re-renders, optimizing bundles, component composition, and avoiding common React pitfalls. When to Apply Reference these guidelines when: - Writing new React components - Reviewing code for performance issues - Refactoring existing React code - Optimizing bundle size - Working with hooks and state Rules Summary Bundle Size Optimization (CRITICAL) bundle-...
825