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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
27,621
总 Skills
166.7M
总安装量
2,750
贡献者
# Skill 仓库 描述 安装量
9101 call-list anthropics/knowledge-work-plugins
Run the lead prioritization. Scan the pipeline, rank by urgency and opportunity, pull relevant email context, and get the owner ready to make calls. Parse arguments: --n (default: 5 ) — number of leads to surface (1–10) --date (default: today) — date to build the call list for ( YYYY-MM-DD ) Step 1 — Pipeline scan Using the lead-triage skill workflow: Pull open HubSpot deals and contacts with activity in the last 30 days. Pull email threads from Mail for each lead (last 3 emails per contact). Sc...
1.2K
9102 rag-retrieval yonatangross/orchestkit
Combine vector search with LLM generation for accurate, grounded responses. Basic RAG Pattern ``` async def rag_query(question: str, top_k: int = 5) -> str: """Basic RAG: retrieve then generate.""" 1. Retrieve relevant documents docs = await vector_db.search(question, limit=top_k) 2. Construct context context = "\n\n".join([ f"[{i+1}] {doc.text}" for i, doc in enumerate(docs) ]) 3. Generate with context response = await llm.chat([ {...
1.2K
9103 pytorch-lightning k-dense-ai/scientific-agent-skills
PyTorch Lightning Overview PyTorch Lightning is a deep learning framework that organizes PyTorch code to eliminate boilerplate while maintaining full flexibility. Automate training workflows, multi-device orchestration, and implement best practices for neural network training and scaling across multiple GPUs/TPUs. Current upstream: lightning 2.6.4 (PyPI, May 2026). Docs: lightning.ai/docs/pytorch/stable . Use import lightning as L (the pytorch-lightning package name still installs the same libra...
1.2K
9104 pyzotero k-dense-ai/scientific-agent-skills
Pyzotero Pyzotero is a Python wrapper for the Zotero API v3 . Use it to programmatically manage Zotero libraries: read items and collections, create and update references, upload attachments, manage tags, and export citations. Authentication Setup Required credentials — get from https://www.zotero.org/settings/keys : User ID : shown as "Your userID for use in API calls" API Key : create at https://www.zotero.org/settings/keys/new Library ID : for group libraries, the integer after /groups/ in th...
1.2K
9105 r3f-postprocessing enzed/r3f-skills
React Three Fiber Post-Processing Quick Start import { Canvas } from '@react-three/fiber' import { EffectComposer, Bloom, Vignette } from '@react-three/postprocessing' function Scene() { return ( <Canvas> <ambientLight /> <mesh> <boxGeometry /> <meshStandardMaterial color="hotpink" emissive="hotpink" emissiveIntensity={2} /> </mesh> <EffectComposer> <Bloom luminanceThreshold={0.5} luminanceSmoothing={0.9} intensity={1.5} /> <Vignett...
1.2K
9106 context-mode-ops mksglu/context-mode
OWNER OPERATING DIRECTIVE — ABSOLUTE, NON-NEGOTIABLE PREAMBLE <owner_operating_directive importance="ABSOLUTE" override-policy="this-supersedes-all-other-sections"> STOP. Read this in full before doing anything else in this skill. This is the project owner's standing operating directive for ALL context-mode-ops work — issue triage, bug fixes, PR reviews, releases, marketing, every wave. It is the single source of truth for HOW you operate inside this skill. It precedes and overrides every other ...
1.2K
9107 price-check anthropics/knowledge-work-plugins
Run the pricing analysis. Pull cost and revenue data, build the margin table, and model three pricing scenarios — so the owner can see the numbers clearly before deciding what to charge. Parse arguments: PRODUCT_NAME (optional) — specific product or service to analyze; if omitted, analyze all active products Step 1 — Current margin baseline Using the margin-analyzer skill workflow: Pull QuickBooks revenue by product/service for the last 90 days. Pull COGS or direct costs per product from QuickBo...
1.2K
9108 monday-brief anthropics/knowledge-work-plugins
Run the Monday Morning Briefing. Pull from every connector that's live, gracefully degrade when one isn't, and deliver a one-page brief the owner can read in under two minutes. Parse arguments: --post (default none ) — post the brief summary to slack , teams , or none --save-to (default files ) — files (Google Drive / OneDrive), desktop (local), or both Step 1 — Run business-pulse Trigger the business-pulse skill workflow. It pulls in this order, scoping to whatever is connected: Cash — QuickBoo...
1.2K
9109 aeon k-dense-ai/scientific-agent-skills
Aeon Time Series Machine Learning Overview Aeon is a scikit-learn compatible Python toolkit for time series machine learning. It provides state-of-the-art algorithms for classification, regression, clustering, forecasting, anomaly detection, segmentation, and similarity search. When to Use This Skill Apply this skill when: Classifying or predicting from time series data Detecting anomalies or change points in temporal sequences Clustering similar time series patterns Forecasting future values Fi...
1.2K
9110 networkx k-dense-ai/scientific-agent-skills
NetworkX Overview NetworkX is a Python package for creating, manipulating, and analyzing complex networks and graphs. Use this skill when working with network or graph data structures, including social networks, biological networks, transportation systems, citation networks, knowledge graphs, or any system involving relationships between entities. When to Use This Skill Invoke this skill when tasks involve: Creating graphs : Building network structures from data, adding nodes and edges with attr...
1.2K
9111 polymarket machina-sports/sports-skills
Polymarket — Sports Prediction Markets Before writing queries, consult references/api-reference.md for sport codes, command parameters, and price format. Quick Start Prefer the CLI — it avoids Python import path issues: sports-skills polymarket search_markets --sport = nba --sports_market_types = moneyline sports-skills polymarket get_todays_events --sport = epl sports-skills polymarket search_markets --sport = epl --query = "Leeds" --sports_market_types = moneyline sports-skills polymarket get_...
1.2K
9112 ticket-deflector anthropics/knowledge-work-plugins
Ticket Deflector Quick start Forward or paste a customer email — Claude pulls order status from PayPal, looks up the customer in HubSpot, and drafts a reply in the owner's voice. If a refund is needed, it stages the details and waits for explicit approval before issuing anything. User: "answer this customer" [forwards email] → Extract customer email + issue from thread → Pull PayPal transaction status → Pull HubSpot contact history → Draft reply in owner's voice → Owner approves draft → send or ...
1.2K
9113 r3f-animation enzed/r3f-skills
React Three Fiber Animation Quick Start import { Canvas, useFrame } from '@react-three/fiber' import { useRef } from 'react' function RotatingBox() { const meshRef = useRef() useFrame((state, delta) => { meshRef.current.rotation.x += delta meshRef.current.rotation.y += delta * 0.5 }) return ( <mesh ref={meshRef}> <boxGeometry /> <meshStandardMaterial color="hotpink" /> </mesh> ) } export default function App() { return ( <Canvas> <ambientLigh...
1.2K
9114 smb-onboard anthropics/knowledge-work-plugins
SMB Onboard Quick start Four moves: connect two tools → run one recipe → capture business context → set a weekly rhythm. The whole arc takes 15–20 minutes and ends with Claude knowing enough about the business to be immediately useful. User: "get me started" → Assess what's already connected; pick the best 2 tools to connect first → Guide connection of each tool (one at a time) → Run one recipe against live data to prove value → Ask 5 business questions one at a time; store answers to persistent...
1.2K
9115 transformers k-dense-ai/scientific-agent-skills
No SKILL.md available for this skill. View on GitHub Installs 434 Repository k-dense-ai/scie…t-skills GitHub Stars 26.3K First Seen Apr 9, 2026
1.2K
9116 appwrite-cli appwrite/skills
Appwrite CLI appwrite <command> --help already lists flags. Read it instead of guessing. Config vs client A real project (repo, schema, functions, deploys, CI) lives in appwrite.config.json . Init once. Pull and push after that. Do not appwrite client --project-id on every command — the config already names the project. A one-off (inspect a user, patch one row, poke a remote you will not return to) uses appwrite client . Do not scaffold a project for a single API call. Good — project appwrite l...
1.2K
9117 adversarial-review poteto/noodle
Adversarial Review Spawn reviewers on the opposite model to challenge work. Reviewers attack from distinct lenses grounded in brain principles. The deliverable is a synthesized verdict — do NOT make changes. Hard constraint: Reviewers MUST run via the opposite model's CLI ( codex exec or claude -p ). Do NOT use subagents, the Agent tool, or any internal delegation mechanism as reviewers — those run on your own model, which defeats the purpose. Step 1 — Load Principles Read brain/principles.md . ...
1.2K
9118 agent-payments ruvnet/ruflo
name: flow-nexus-payments description: Credit management and billing specialist. Handles payment processing, credit systems, tier management, and financial operations within Flow Nexus. color: pink You are a Flow Nexus Payments Agent, an expert in financial operations and credit management within the Flow Nexus ecosystem. Your expertise lies in seamless payment processing, intelligent credit management, and subscription optimization. Your core responsibilities: Manage rUv credit systems and bala...
1.2K
9119 handover adobe/skills
Project Handover Documentation Generate comprehensive handover documentation for Edge Delivery Services projects. This skill orchestrates the creation of guides for different audiences. When to Use This Skill "Generate project handover docs" "Create handover documentation" "Generate project guides" "Handover package" "Project documentation" Available Documentation Types Show more
1.2K
9120 customer-pulse anthropics/knowledge-work-plugins
Customer Pulse Quick start Ask: "How are customers feeling this month?" Claude pulls disputes, tickets, email threads, and Intercom conversations for the last 30 days, groups them into 3–5 themes with verbatim evidence, and delivers a "do these 3 things this week" action list. To include Google/Yelp reviews, paste them after triggering — or say "I have some reviews to add." Workflow Set the date window. Default: last 30 days. If the user specifies a range, use it. Pull PayPal disputes. Fetch dis...
1.2K
9121 github-multi-repo ruvnet/ruflo
GitHub Multi-Repository Coordination Skill Overview Advanced multi-repository coordination system that combines swarm intelligence, package synchronization, and repository architecture optimization. This skill enables organization-wide automation, cross-project collaboration, and scalable repository management. Core Capabilities 🔄 Multi-Repository Swarm Coordination Cross-repository AI swarm orchestration for distributed development workflows. 📦 Package Synchronization Intelligent dependency res...
1.2K
9122 get-available-resources k-dense-ai/scientific-agent-skills
Get Available Resources Overview Detect available computational resources and generate strategic recommendations for scientific computing tasks. This skill automatically identifies CPU capabilities, GPU availability (NVIDIA CUDA, AMD ROCm, Apple Silicon Metal), memory constraints, and disk space to help make informed decisions about computational approaches. When to Use This Skill Use this skill proactively before any computationally intensive task: Before data analysis : Determine if datasets c...
1.2K
9123 infographics k-dense-ai/scientific-agent-skills
Infographics Overview Infographics are visual representations of information, data, or knowledge designed to present complex content quickly and clearly. This skill uses Nano Banana Pro AI for infographic generation with Gemini 3 Pro quality review and Perplexity Sonar for research. How it works: (Optional) Research phase : Gather accurate facts and statistics using Perplexity Sonar Describe your infographic in natural language Nano Banana Pro generates publication-quality infographics automatic...
1.2K
9124 market-research-reports k-dense-ai/scientific-agent-skills
Market Research Reports Overview Market research reports are comprehensive strategic documents that analyze industries, markets, and competitive landscapes to inform business decisions, investment strategies, and strategic planning. This skill generates professional-grade reports of 50+ pages with extensive visual content, modeled after deliverables from top consulting firms like McKinsey, BCG, Bain, Gartner, and Forrester. Key Features: Comprehensive length: Reports are designed to be 50+ pa...
1.2K
9125 dropshipping-product-research nexscope-ai/ecommerce-skills
Dropshipping Product Research 📦 Product research for dropshipping businesses. Identify profitable products with reliable suppliers, healthy margins, and manageable competition. Evaluates shipping times, return risk, and marketing viability. Supported platforms: Amazon, Shopify, WooCommerce, Walmart, TikTok Shop, Etsy, eBay, BigCommerce. Built by Nexscope — your AI assistant for smarter e-commerce decisions. Install npx skills add nexscope-ai/eCommerce-Skills --skill dropshipping-product-research...
1.2K
9126 r3f-shaders enzed/r3f-skills
React Three Fiber Shaders Quick Start import { Canvas, useFrame, extend } from '@react-three/fiber' import { shaderMaterial } from '@react-three/drei' import { useRef } from 'react' import * as THREE from 'three' // Create custom shader material const ColorShiftMaterial = shaderMaterial( // Uniforms { time: 0, color: new THREE.Color(0.2, 0.0, 0.1) }, // Vertex shader ` varying vec2 vUv; void main() { vUv = uv; gl_Position = projectionMatrix * modelViewMatrix * vec4(p...
1.2K
9127 privacy-page-generator kostja94/marketing-skills
Pages: Privacy Policy Guides Privacy Policy page content, structure, and compliance. 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. Initial Assessment Identify: Jurisdiction : GDPR, CCPA, other regional requirements Business model : SaaS, e-commerce, content, ads Data collected : Cookies, forms, analytics, third parties I...
1.2K
9128 month-heads-up anthropics/knowledge-work-plugins
Run the month-end heads-up. Pull forward-looking cash data and give the owner a clear "here's what the next 30 days look like" picture with specific things to watch. Parse arguments: --horizon (default: 30 ) — forecast window in days ( 30 or 60 ) Step 1 — Current cash position Using the cash-flow-snapshot skill workflow: Pull QuickBooks current cash and receivables balance. Pull PayPal settled balance and pending payouts. Combine for total available + incoming cash. Step 2 — Upcoming obligations...
1.2K
9129 sympy k-dense-ai/scientific-agent-skills
SymPy - Symbolic Mathematics in Python Overview SymPy is a Python library for symbolic mathematics that enables exact computation using mathematical symbols rather than numerical approximations. This skill provides comprehensive guidance for performing symbolic algebra, calculus, linear algebra, equation solving, physics calculations, and code generation using SymPy. When to Use This Skill Use this skill when: Solving equations symbolically (algebraic, differential, systems of equations) Perform...
1.2K
9130 radix-ui-design-system sickn33/agentic-awesome-skills
Radix UI Design System Build production-ready, accessible design systems using Radix UI primitives with full customization control and zero style opinions. Overview Radix UI provides unstyled, accessible components (primitives) that you can customize to match any design system. This skill guides you through building scalable component libraries with Radix UI, focusing on accessibility-first design, theming architecture, and composable patterns. Key Strengths: Headless by design : Full styling co...
1.2K
9131 caveman pandoscope/skills
Respond terse like smart caveman. All technical substance stay. Only fluff die. Persistence ACTIVE EVERY RESPONSE. No revert after many turns. No filler drift. Still active if unsure. Off only: "stop caveman" / "normal mode". Default: full . Switch: /caveman lite|full|ultra . Rules Drop: articles (a/an/the), filler (just/really/basically/actually/simply), pleasantries (sure/certainly/of course/happy to), hedging. Fragments OK. Short synonyms (big not extensive, fix not "implement a solution for"...
1.2K
9132 openspec-proposal-creation-cn forztf/open-skilled-sdd
遵循规范驱动开发方法,生成完整的变更提案。 快速开始 创建规范提案包含三类输出: - proposal.md - 为什么、做什么、影响摘要 - tasks.json - 编号的实施清单 - spec-delta.md - 正式的需求变更(ADDED/MODIFIED/REMOVED) 基本流程:生成变更 ID → 脚手架目录 → 起草提案 → 编写规范差异 → 验证结构 工作流 复制此清单并跟踪进度: ``` 规划进度: - [ ] 第 1 步:审阅现有规范 - [ ] 第 2 步:生成唯一的变更 ID - [ ] 第 3 步:生成目录结构 - [ ] 第 4 步:起草 proposal.md(为什么、做什么、影响摘要) - [ ] 第 5 步:创建 tasks.json 实施清单 - [ ] 第 6 步:编写 spec-delta.md 规范差异(ADDED/MODIFIED/REMOVED) - [ ] 第 7 步:验证提案结构 - [ ] 第 8 步:向用户展示并请求审批 ``` 第 1 步:审阅现有规范 在创建提案前,了解当前状态: ``` 列...
1.2K
9133 smb-router anthropics/knowledge-work-plugins
SMB Router You are the concierge for this plugin. Your job is to understand what the owner needs right now and get them to the right place — fast. You are not a skill that does work yourself. You route to the skills and commands that do. Quick start Owner: "I'm stressed about making payroll next week" → Read business context from memory → Match: cash concern + upcoming payroll = /plan-payroll → "Sounds like you need a cash forecast and invoice chase before payroll. I'll run /plan-payroll — it'll...
1.2K
9134 shap k-dense-ai/scientific-agent-skills
SHAP (SHapley Additive exPlanations) Overview SHAP is a unified approach to explain machine learning model outputs using Shapley values from cooperative game theory. This skill provides comprehensive guidance for: Computing SHAP values for any model type Creating visualizations to understand feature importance Debugging and validating model behavior Analyzing fairness and bias Implementing explainable AI in production SHAP works with all model types: tree-based models (XGBoost, LightGBM, CatBoos...
1.2K
9135 dask k-dense-ai/scientific-agent-skills
Dask Overview Dask is a Python library for parallel and distributed computing that enables three critical capabilities: Larger-than-memory execution on single machines for data exceeding available RAM Parallel processing for improved computational speed across multiple cores Distributed computation supporting terabyte-scale datasets across multiple machines Dask scales from laptops (processing ~100 GiB) to clusters (processing ~100 TiB) while maintaining familiar Python APIs. When to Use This Sk...
1.2K
9136 matlab k-dense-ai/scientific-agent-skills
MATLAB/Octave Scientific Computing MATLAB is a numerical computing environment optimized for matrix operations and scientific computing. GNU Octave is a free, open-source alternative with high MATLAB compatibility. Quick Start Running MATLAB scripts: MATLAB (commercial) matlab -nodisplay -nosplash -r "run('script.m'); exit;" GNU Octave (free, open-source) octave script.m Install GNU Octave: macOS brew install octave Show more
1.2K
9137 verify react/react
Verification Run all verification steps. Arguments: $ARGUMENTS: Test pattern for the test step Instructions Run these first in sequence: Run yarn prettier - format code (stop if fails) Run yarn linc - lint changed files (stop if fails) Then run these with subagents in parallel: Use /flow to type check (stop if fails) Use /test to test changes in source (stop if fails) Use /test www to test changes in www (stop if fails) If all pass, show success summary. On failure, stop immediately and report t...
1.2K
9138 documenting-decisions pandoscope/skills
Documenting Decisions Checkpoint tags Tag When to mark ARCH New abstractions, deps, data models, component boundaries — anything that shapes long-term structure. SCOPE You resolved an ambiguity in the task by choosing an interpretation. IFACE Changed a public API, config schema, CLI flag, env var, or wire format. SEC Touched auth, crypto, permissions, network exposure, or input validation. IRREV Created a migration, data deletion, deployment trigger, or external side effect. NOVEL No existing re...
1.2K
9139 react-patterns jezweb/claude-skills
React Patterns Idiomatic React 18/19 patterns for building robust, accessible, performant component trees. When to Activate Writing or modifying React function components, custom hooks, or component trees Reviewing JSX/TSX files Designing state shape or component composition Migrating class components or older forwardRef / useEffect -heavy code Choosing between local state, lifted state, context, and external stores Working with Server Components / Client Components (Next.js App Router, RSC) Imp...
1.2K
9140 playwright-visual-testing manutej/luxor-claude-marketplace
Playwright Visual Testing & Browser Automation A comprehensive skill for browser automation and visual testing using Playwright MCP server integration. This skill enables rapid UI testing, visual regression detection, automated browser interactions, and cross-browser validation for modern web applications. When to Use This Skill Use this skill when: Testing web applications across multiple browsers (Chromium, Firefox, WebKit) Implementing visual regression testing for UI changes Automating u...
1.2K
9141 langgraph sickn33/agentic-awesome-skills
LangGraph Expert in LangGraph - the production-grade framework for building stateful, multi-actor AI applications. Covers graph construction, state management, cycles and branches, persistence with checkpointers, human-in-the-loop patterns, and the ReAct agent pattern. Used in production at LinkedIn, Uber, and 400+ companies. This is LangChain's recommended approach for building agents. Role : LangGraph Agent Architect You are an expert in building production-grade AI agents with LangGraph. You ...
1.2K
9142 tdd pandoscope/skills
Test-Driven Development Philosophy Core principle : Tests should verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't. Good tests are integration-style: they exercise real code paths through public APIs. They describe what the system does, not how it does it. A good test reads like a specification - "user can checkout with valid cart" tells you exactly what capability exists. These tests survive refactors because they don't care about i...
1.2K
9143 python-executor whytryharder/superpowers
Install the belt CLI skill: npx skills add belt-sh/cli Python Code Executor Execute Python code in a safe, sandboxed environment with 100+ pre-installed libraries. Quick Start Requires inference.sh CLI ( belt ). Install instructions belt login Show more Installs 35.4K Repository skills-101/superpowers GitHub Stars 7 First Seen 14 days ago Security Audits Gen Agent Trust Hub Pass Socket Warn Snyk Warn
1.2K
9144 customer-pulse-check anthropics/knowledge-work-plugins
Run the customer voice synthesis. Pull feedback signals from all connected sources, identify the themes that are actually fixable, and produce drafted responses the owner can review and send. Parse arguments: --since (default: last 30 days) — start date YYYY-MM-DD for the lookback window Step 1 — Gather feedback signals Using the customer-pulse skill workflow: Pull PayPal disputes and chargebacks for the period: reason codes, amounts, resolution status. Pull HubSpot support tickets and conversat...
1.2K
9145 academic-research-suite imbad0202/academic-research-skills-codex
ARS-Codex This is a Codex adapter for the ARS suite. The vendored ARS content lives under ars/ ; keep it as source material and route through this file first. Versioning This Codex package is version 0.1.22 . The repo-root VERSION , this SKILL.md metadata version, and manifest.json adapter_version must match. Vendored ARS suite versions are tracked separately by source repository commit in manifest.json . First Rule Do not load the whole suite by default. Select one workflow, read that workflow'...
1.2K
9146 acomo progress-all/acomo-skills
acomo CLI / API 標準ガイド acomo はワークフロー管理プラットフォームです。このスキルは acomo CLI と公開 API の標準的な使い方 (モデル一覧・モデル定義取得・プロセス開始・保存・提出・承認・却下・差し戻しなど)を案内します。 前提・実行環境 acomo CLI が実行できる環境 (PATH に acomo が存在すること)を前提とします。 エージェントが CLI を実行する場合、リモートサンドボックス等ではローカルの ~/.acomo/config.json や環境変数が自動継承されないことがあります。CI・エージェント実行時は環境変数( ACOMO_ACCESS_TOKEN , ACOMO_TENANT_ID , ACOMO_BASE_URL )の設定を推奨します。 認証未設定時も API コマンドは存在し、実行時に終了コード 2 と stderr の AUTH_REQUIRED で失敗します。その場合はユーザーに再ログイン(または環境変数設定)を促してください。 認証エラー時の扱い 認証エラー(認証未設定・401/403、終了コード 2)が出た場...
1.2K
9147 ue-component-model adobe/skills
Universal Editor Component Model Configuration This skill helps you create or edit the three JSON configuration files that control how AEM Edge Delivery Services (EDS) blocks appear and behave in the Universal Editor (UE): component-definition.json — Registers blocks in the UE component palette component-models.json — Defines property panel fields for each block component-filters.json — Controls where blocks can be placed When to Use Creating a new block that needs UE authoring support Adding/mo...
1.2K
9148 typegpu software-mansion-labs/skills
TypeGPU / WebGPU for HyperFrames HyperFrames supports TypeGPU and raw WebGPU through its typegpu runtime adapter. The adapter does not own your pipeline. It publishes HyperFrames time and dispatches a seek event so your composition can render the exact GPU frame. Contract Initialize WebGPU asynchronously ( await navigator.gpu.requestAdapter() ), but register all GSAP tweens synchronously — before any await . The HyperFrames player reads the timeline immediately at page load. Render from HyperFra...
1.2K
9149 adopt-spec zernie/vigiles
Start a typed CLAUDE.md.spec.ts from an existing hand-written CLAUDE.md (or AGENTS.md). This is the non-destructive adoption path — you keep your existing instruction file as the starting point and get type safety going forward. Adoption rules Adoption is the safe, faithful on-ramp — never an upgrade in disguise. These are non-negotiable: Faithful. Preserve every rule, command, key file, and prose section as-is. Invent nothing — the spec must compile back to ~the user's existing file. Non-destru...
1.2K
9150 create-site adobe/skills
Create a New AEM Edge Delivery Site This skill walks through the full onboarding flow for a new AEM Edge Delivery site. It handles everything that can be automated and clearly signals the steps that require human action. When to Use This Skill Use this skill when: A user wants to create a brand-new AEM Edge Delivery site from scratch A user asks to "set up a new site", "create a new EDS project", or "onboard a new site" No GitHub repository or DA content exists yet for the project Do NOT use thi...
1.2K