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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
21,431
总 Skills
35.0M
总安装量
2,440
贡献者
# Skill 仓库 描述 安装量
13551 accelint-ts-documentation gohypergiant/agent-skills
Code Documentation Skill Comprehensive skill for improving JavaScript/TypeScript documentation, including JSDoc comments, comment markers, and general comment quality. When to Activate This Skill Use this skill when the task involves: JSDoc Documentation Adding JSDoc comments to exported functions, types, interfaces, or classes Validating JSDoc completeness (missing @param, @returns, @template tags) Ensuring JSDoc @example tags use proper code fences Documenting object parameters with destructur...
64
13552 dynamic-resources dicklesworthstone/pi_agent_rust
Dynamic Resources Skill This skill is provided by the dynamic-resources extension.
64
13553 javascript-testing autumnsgrove/groveengine
JavaScript/TypeScript Testing Skill When to Activate Activate this skill when: Writing JavaScript or TypeScript tests Testing Svelte, React, or Vue components Setting up Vitest or Jest configuration Working with mocks, spies, or test utilities Running tests or checking coverage Framework Selection Use Case Framework SvelteKit, Vite projects Vitest (recommended) Non-Vite projects, React Native Jest Quick Commands Vitest npx vitest Watch mode npx vitest run Single run (CI) npx vitest run --cover...
64
13554 typescript-clean-code bmad-labs/skills
Clean Code Principles, practices, and workflows for TypeScript developers. Quick Start For a task: Check guidelines.md → find the right workflow For reference: Load only the files relevant to your work Follow the workflow: Step-by-step process for consistent results Workflows Step-by-step processes for common tasks: Workflow When to Use workflows/code-review.md Reviewing code for quality workflows/pr-review.md Reviewing pull requests workflows/tdd.md Test-driven development cycle workflows/r...
64
13555 b2c-job salesforcecommercecloud/b2c-developer-tooling
B2C Job Skill Use the b2c CLI plugin to run existing jobs and import/export site archives on Salesforce B2C Commerce instances. Tip: If b2c is not installed globally, use npx @salesforce/b2c-cli instead (e.g., npx @salesforce/b2c-cli job run ). Creating a new job? If you need to write custom job step code (batch processing, scheduled tasks, data sync), use the b2c:b2c-custom-job-steps skill instead. Examples Run a Job run a job and return immediately b2c job run my-custom-job run a job and wai...
64
13556 chatwoot vm0-ai/vm0-skills
Chatwoot Use Chatwoot via direct curl calls to manage customer support across multiple channels (website, email, WhatsApp, etc.). Official docs: https://developers.chatwoot.com/api-reference/introduction When to Use Use this skill when you need to: Manage contacts - create, search, and update customer profiles Handle conversations - create, assign, and track support conversations Send messages - reply to customers or add internal notes List agents - get support team information Automate wor...
64
13557 sqlmap-database-pentesting sickn33/antigravity-awesome-skills
SQLMap Database Penetration Testing Purpose Provide systematic methodologies for automated SQL injection detection and exploitation using SQLMap. This skill covers database enumeration, table and column discovery, data extraction, multiple target specification methods, and advanced exploitation techniques for MySQL, PostgreSQL, MSSQL, Oracle, and other database management systems. Inputs / Prerequisites Target URL : Web application URL with injectable parameter (e.g., ?id=1 ) SQLMap Installation...
64
13558 error-recovery mgd34msu/goodvibes-plugin
Resources scripts/ validate-error-recovery.sh references/ common-errors.md Error Recovery Protocol When tasks fail, agents must follow a systematic recovery process that balances efficiency with thoroughness. This skill defines how to categorize errors, leverage institutional memory, apply multi-source recovery strategies, and know when to escalate. Immediate Response When an error occurs during task execution: DO NOT retry blindly . Read the full error message, stack trace, and any diagnostic o...
64
13559 copy-validator shipshitdev/library
Copy Validator - Hook-Story-Offer Scorecard Overview Ruthlessly assess sales copy against Russell Brunson's Hook-Story-Offer framework combined with classic direct response principles. Score objectively, expose weak points, provide rewrites. Brunson's Core Principle: "The hook grabs them, the story connects them, the offer converts them." When This Activates "validate my copy" "rate my copy" / "rate my headline" "is my copy good" "why isn't my copy converting" Checking copy before publishing ...
64
13560 cross-domain-thinking-toolbox hexbee/hello-skills
Cross-Domain Thinking Toolbox Borrow thinking tools from 25 different professions to approach problems from fresh angles. Quick Reference: The 25 Thinking Tools Profession Core Question Best For 1 Artist What makes this unique and interesting? Creative blockers, innovation needs 2 Economist How do people respond to incentives? Behavior prediction, system design 3 Engineer Can I model and calculate this? Prediction, data-driven decisions 4 Entrepreneur What works if I try many things? Uncertai...
64
13561 1k-i18n onekeyhq/app-monorepo
OneKey Internationalization (i18n) Guidelines Translation Management - CRITICAL RESTRICTIONS ABSOLUTELY FORBIDDEN (These files are AUTO-GENERATED): ❌ NEVER modify @onekeyhq/shared/src/locale/enum/translations.ts - Will be overwritten and break i18n system ❌ NEVER modify locale JSON files in @onekeyhq/shared/src/locale/json/* - Managed by external translation system ❌ NEVER hardcode text strings in components - ALWAYS use translation keys ❌ NEVER add translation keys directly to enum files - Us...
64
13562 rest-api-design secondsky/claude-skills
REST API Design Overview Design REST APIs that are intuitive, consistent, and follow industry best practices for resource-oriented architecture. When to Use Designing new RESTful APIs Creating endpoint structures Defining request/response formats Implementing API versioning Documenting API specifications Refactoring existing APIs Instructions 1. Resource Naming ✅ Good Resource Names (Nouns, Plural) GET /api/users GET /api/users/123 GET /api/users/123/orders POST /api/products DELETE...
64
13563 quark-download psylch/media-master
Quark Search — 网盘资源搜索与下载 Language Match user's language : Respond in the same language the user uses. Automate the full workflow: search resources → validate links → save to Quark cloud drive → download locally, by combining the PanSou aggregation API with the local Quark desktop APP. All operations use the CLI script at ${SKILL_PATH}/scripts/quark_search.py . It outputs JSON to stdout ( {"status": "ok", "results": {...}, "hint": "..."} ) and errors to stderr ( {"error": "code", "message": "..."...
64
13564 releasing-macos-apps jamesrochabrun/skills
Releasing macOS Apps Complete workflow for creating notarized macOS app releases with Sparkle auto-updates, DMG installers, and GitHub releases. Release Checklist Copy this checklist and track progress: Release Progress: - [ ] Step 1: Check prerequisites (certificates, credentials) - [ ] Step 2: Update version in .xcconfig file - [ ] Step 3: Build and archive the app - [ ] Step 4: Export with proper code signing - [ ] Step 5: Create zip and generate Sparkle signature - [ ] Step 6: Create DMG...
64
13565 1k-coding-patterns onekeyhq/app-monorepo
OneKey Coding Patterns and Best Practices General Development Develop functions with a test-driven development mindset, ensuring each low-level function or method intended for reuse performs a single, atomic task, but avoid adding unnecessary abstraction layers Promise Handling - MANDATORY COMPLIANCE ALWAYS await Promises; use void prefix ONLY if intentionally not awaiting ZERO TOLERANCE for floating promises - they cause unhandled rejections FOLLOW the @typescript-eslint/no-floating-promises ru...
64
13566 bun test basics secondsky/claude-skills
Bun ships with a fast, built-in, Jest-compatible test runner. Tests run with the Bun runtime and support TypeScript/JSX natively. Quick Start ``` Run all tests bun test Run specific file bun test ./test/math.test.ts Run tests matching pattern bun test --test-name-pattern "addition" ``` Writing Tests ``` import { test, expect, describe } from "bun:test"; test("2 + 2", () => { expect(2 + 2).toBe(4); }); describe("math", () => { test("addition", () => { expect(1 + 1).toBe(2); ...
64
13567 container-orchestration 0xdarkmatter/claude-mods
Container Orchestration Docker and Kubernetes patterns for containerized applications. Dockerfile Best Practices Use specific version, not :latest FROM python:3.11-slim AS builder Set working directory WORKDIR /app Copy dependency files first (better caching) COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt Copy application code COPY src/ ./src/ Production stage (multi-stage build) FROM python:3.11-slim WORKDIR /app Create non-root user RUN useradd --creat...
64
13568 lit-review-assistant meleantonio/awesome-econ-ai-stuff
Literature Review Assistant Purpose This skill helps economists conduct literature reviews by structuring searches, summarizing papers, and synthesizing findings. It provides templates for organizing literature and identifying research gaps. When to Use Starting a literature review for a new project Finding related work for a paper's introduction Synthesizing existing evidence on a topic Identifying gaps in the literature Instructions Step 1: Define the Research Domain Ask the user: What is your...
64
13569 wisdom-accountability-coach erichowens/some_claude_skills
Wisdom & Accountability Coach You are a deeply attentive personal coach and wisdom teacher who maintains longitudinal memory of your user's life, work, writings, conversations, pledges, and growth journey. You hold them accountable with compassion while teaching philosophy, psychology, and timeless wisdom. Integrations Works with: project-management-guru-adhd, hrv-alexithymia-expert, tech-entrepreneur-coach-adhd When to Use This Skill Use for: Accountability check-ins and commitment tracki...
64
13570 groove-work-review andreadellacorte/groove
groove-work-review Outcome The artifact is reviewed for correctness, quality, and fit to plan. Lessons are identified for the compound stage. A clear accept/rework decision is made with rationale. Review notes are captured in the task body. Acceptance Criteria Artifact is evaluated against the plan and acceptance criteria Specific gaps or issues are identified (not vague "needs improvement") Accept or rework decision is stated with rationale Lessons are noted for /groove-work-compound Review not...
63
13571 a-share-analysis nicepkg/ai-workflow
No SKILL.md available for this skill. View on GitHub
63
13572 pdf-toolkit dkyazzentwatwa/chatgpt-skills
Comprehensive PDF manipulation toolkit for merging, splitting, rotating, and more. Features - Merge: Combine multiple PDFs into one - Split: Extract pages or split into chunks - Rotate: Rotate pages by 90/180/270 degrees - Extract: Extract specific pages or page ranges - Watermark: Add text/image watermarks - Compress: Reduce file size - Encrypt: Add password protection - Metadata: Edit PDF metadata - Page Numbers: Add page numbers - Bookmarks: Add/remove bookmarks Quick Start ```...
63
13573 ci-integration jwilger/agent-skills
CI Integration Value: Feedback -- CI pipelines produce signals. Deterministic interaction patterns ensure those signals are received, classified, and acted on correctly. Undisciplined CI interaction (pushing over failing runs, ignoring flaky tests) degrades the signal until the pipeline is noise. Purpose Teaches disciplined CI/CD interaction: one pending run at a time, structured failure triage, automated self-healing for mechanical failures, and structured evidence output for pipeline consumpti...
63
13574 shadcn-ui-setup andrelandgraf/fullstackrecipes
Shadcn UI & Theming To set up Shadcn UI & Theming, refer to the fullstackrecipes MCP server resource: Resource URI: recipe://fullstackrecipes.com/shadcn-ui-setup If the MCP server is not configured, fetch the recipe directly: curl -H "Accept: text/plain" https://fullstackrecipes.com/api/recipes/shadcn-ui-setup
63
13575 golden-dataset yonatangross/orchestkit
Golden Dataset Comprehensive patterns for building, managing, and validating golden datasets for AI/ML evaluation. Each category has individual rule files in rules/ loaded on-demand. Quick Reference Category Rules Impact When to Use Curation 3 HIGH Content collection, annotation pipelines, diversity analysis Management 3 HIGH Versioning, backup/restore, CI/CD automation Validation 3 CRITICAL Quality scoring, drift detection, regression testing Add Workflow 1 HIGH 9-phase curation, quality scorin...
63
13576 terramate-best-practices terramate-io/agent-skills
Terramate Best Practices Comprehensive guide for Terramate CLI, Cloud, and Catalyst, maintained by Terramate. Contains best practices and usage patterns for stack management, orchestration, code generation, Cloud integration, and Catalyst components/bundles. When to Apply Reference these guidelines when: Creating and organizing Terramate stacks Orchestrating commands across multiple stacks Using code generation to keep configurations DRY Integrating with Terramate Cloud for observability Creatin...
63
13577 moai-lang-swift modu-ai/moai-adk
Swift 6+ Development Specialist Swift 6.0+ development expert for iOS/macOS with SwiftUI, Combine, and Swift Concurrency. Auto-Triggers: Swift files (.swift), iOS/macOS projects, Xcode workspaces Quick Reference Core Capabilities Swift 6.0: Typed throws, complete concurrency, data-race safety by default SwiftUI 6: @Observable macro, NavigationStack, modern declarative UI Combine: Reactive programming with publishers and subscribers Swift Concurrency: async/await, actors, TaskGroup, isolation ...
63
13578 openserv-launch openserv-labs/skills
OpenServ Launch API Launch tokens instantly on Base blockchain with one-sided concentrated liquidity pools on Aerodrome Slipstream. Reference files: reference.md - Full API reference for all endpoints troubleshooting.md - Common issues and solutions examples/ - Complete code examples Base URL: https://instant-launch.openserv.ai What This API Does Deploys ERC-20 tokens - 1 billion supply, standard token contract Creates Aerodrome CL pools - One-sided liquidity with 2,000,000x price range Locks LP...
63
13579 image-enhancer davepoon/buildwithclaude
Image Enhancer This skill takes your images and screenshots and makes them look better—sharper, clearer, and more professional. When to Use This Skill Improving screenshot quality for blog posts or documentation Enhancing images before sharing on social media Preparing images for presentations or reports Upscaling low-resolution images Sharpening blurry photos Cleaning up compressed images What This Skill Does Analyzes Image Quality : Checks resolution, sharpness, and compression artifacts Enhan...
63
13580 vue-frontend-expert caomeiyouren/momei
Vue Frontend Expert Skill (Vue 前端专家技能) 能力 (Capabilities) Composition API : 编写模式一致的 <script setup lang="ts"> 。 SCSS BEM : 遵循 BEM (Block Element Modifier) 命名规范编写高度解耦合的样式。 I18n 驱动 : 强制使用 $t() 或 useI18n() 。 PrimeVue 应用 : 熟练使用项目的 UI 组件库。 暗色模式适配 : 编写自适应暗色模式的样式。 指令 (Instructions) 样式规范 : 严禁使用内联样式和 !important 。必须引用全局变量和 Mixins。 响应式设计 : 确保组件在移动端和桌面端表现正常。 SEO 优化 : 页面级组件必须包含 useHead 或 definePageMeta 。 UI 文本 : 禁止硬编码中文/英文。 使用示例 (Usage Example) 输入: "创建一个文章卡片组件。" 动作: 编写 article-card.vue ,使用 BEM 编写 SCSS,并为标题和按钮设...
63
13581 auto-update systems expert martinholovsky/claude-skills-generator
Auto-Update Systems Expert 0. Mandatory Reading Protocol CRITICAL : Before implementing, read these reference files: Reference When to Read references/security-examples.md Signing keys, signature verification, secure endpoints references/advanced-patterns.md Staged rollouts, rollback, update channels, differential updates references/threat-model.md Security posture, MITM defense, key rotation 1. Overview Risk Level: HIGH Justification : Auto-update systems can deliver code to all users simultane...
63
13582 groove-work-exec andreadellacorte/groove
groove-work-exec Outcome Code, tests, and artifacts are written per the plan. The work task is created/updated in the backend with progress notes. Output is ready for review. Acceptance Criteria Implementation matches the plan from /groove-work-plan Work task body tracks progress with dated notes Output (code, tests, docs) is complete enough to hand off to /groove-work-review Stage task created/updated in backend: YYYY-MM-DD, Work Constraints Read tasks: from .groove/index.md to determine backen...
63
13583 dart-package-maintenance kevmoo/dash_skills
Dart Package Maintenance Guidelines for maintaining Dart packages in alignment with Dart team best practices. Versioning Semantic Versioning Major : Breaking changes. Minor : New features (non-breaking API changes). Patch : Bug fixes, documentation, or non-impacting changes. Unstable packages : Use 0.major.minor+patch . Recommendation : Aim for 1.0.0 as soon as the package is stable. Pre-Edit Verification Check Published Versions : Before modifying CHANGELOG.md or pubspec.yaml , ALWAYS check the...
63
13584 godot-debugging-profiling thedivergentai/gd-agentic-skills
Debugging & Profiling Expert guidance for finding and fixing bugs efficiently with Godot's debugging tools. NEVER Do NEVER use print() without descriptive context — print(value) is useless. Use print("Player health:", health) with labels. NEVER leave debug prints in release builds — Wrap in if OS.is_debug_build() or use custom DEBUG const. Prints slow down release. NEVER ignore push_warning() messages — Warnings indicate potential bugs (null refs, deprecated APIs). Fix them before they become er...
63
13585 anime-avatar-generation eachlabs/skills
Anime Avatar Generation Generate stunning anime-style avatars and characters using each::sense. This skill transforms photos into anime art, creates original anime characters, and produces various anime styles from Ghibli to cyberpunk. Features Photo to Anime : Transform real photos into anime-style artwork Ghibli Style : Studio Ghibli-inspired soft, whimsical characters Manga Style : Black and white or toned manga character art Cyberpunk Anime : Neon-lit futuristic anime aesthetics Chibi Avatar...
63
13586 coolify-deploy v1truv1us/ai-eng-system
This deployment process is critical. Proper deployment prevents production outages, security vulnerabilities, and user-facing errors. A poorly executed deployment can result in lost revenue, damaged reputation, and emergency firefighting. Every deployment must follow best practices to ensure reliability. Systematic Approach approach this deployment systematically. Deployments require careful planning, thorough verification, and methodical execution. Rushing or skipping checks leads to avoida...
63
13587 accelint-readme-writer gohypergiant/agent-skills
README Writer This skill guides the creation and maintenance of comprehensive, human-friendly README documentation by analyzing the codebase and ensuring documentation stays in sync with actual functionality. When to Activate This Skill Use this skill when: Creating a new README.md for a project or package Updating an existing README.md after code changes Auditing documentation for completeness and accuracy Converting sparse documentation into thorough guides User asks to "document this package"...
63
13588 code-refactor-master yennanliu/cs_basics
Code Refactor Master When to use this Skill Use this Skill when: Refactoring existing code for better quality Eliminating code smells Improving code readability and maintainability Optimizing performance without changing behavior Applying design patterns Reducing complexity Cleaning up technical debt Refactoring Principles 1. Core Rules Golden Rule: Make code changes that improve internal structure without altering external behavior Key Principles: One refactoring at a time Run tests after ...
63
13589 fixing-streamlit-ci streamlit/streamlit
Fix CI Failures Diagnose and fix failed GitHub Actions CI jobs for the current branch/PR using gh CLI and git commands. When to Use CI checks have failed on a PR You need to understand why a workflow failed You want to apply fixes and verify locally Workflow Copy this checklist to track progress: - [ ] Verify authentication - [ ] Gather context & find failed jobs - [ ] Download & analyze logs - [ ] Present diagnosis to user - [ ] Apply fix & verify locally - [ ] Push & recheck CI 1. Verify Authe...
63
13590 slidev-syntax-guide yoanbernabeu/slidev-skills
This skill covers Slidev's extended Markdown syntax, including slide separators, frontmatter, notes, MDC syntax, and all the special formatting features available. When to Use This Skill - Learning Slidev's Markdown extensions - Writing complex slide content - Using advanced formatting features - Troubleshooting syntax issues - Converting standard Markdown to Slidev format Slide Separators Basic Separator Use three dashes with blank lines: ``` Slide 1 Content here --- Slide 2 ...
63
13591 1k-state-management onekeyhq/app-monorepo
OneKey State Management Jotai Atom Organization - MANDATORY STRUCTURE Global State Atoms (for app-wide, persistent state) Location: packages/kit-bg/src/states/jotai/atoms/ Usage: Global settings, account state, hardware state, currency, etc. Pattern: Use globalAtom and EAtomNames for standardization Examples: settings.ts, account.ts, hardware.ts, currency.ts Feature-Specific State Atoms (for localized functionality) Location: packages/kit/src/states/jotai/contexts/[feature_name]/atoms.ts Usage: ...
63
13592 tavily-api-expert tavily-ai/tavily-plugins
Tavily is a specialized search API designed specifically for LLMs, enabling developers to build AI applications that can access real-time, accurate web data. Let's use the Python SDK to build with tavily. Prerequisites Tavily API Key Required - Get your key at [https://tavily.com](https://tavily.com) Add to `~/.claude/settings.json`: ``` { "env": { "TAVILY_API_KEY": "tvly-your-api-key-here" } } ``` Restart Claude Code after adding your API key. Tavily Python SDK Installation ...
63
13593 tauri-native-api-integration oimiragieo/agent-studio
Tauri Native Api Integration Skill Utilize Tauri's APIs for native desktop integration (file system access, system tray, etc.). Follow Tauri's security best practices, especially when dealing with IPC and native API access. Be cautious when using Tauri's allowlist feature, only exposing necessary APIs. Iron Laws NEVER expose all Tauri commands without an allowlist — use explicit permission-based access ALWAYS validate all IPC inputs on the Rust side — never trust the frontend NEVER perform synch...
63
13594 update-ui-inventory autumnsgrove/groveengine
Update UI Inventory Skill When to Activate Activate this skill when: Adding new UI components to the engine Removing or deprecating components The component-inventory CI check fails You want to verify docs match the actual component count After merging PRs that add/remove components Files Involved File Purpose .github/component-inventory.json Source of truth for component counts docs/design-system/COMPONENT-REFERENCE.md User-facing component documentation libs/engine/src/lib/ui/components/ Actua...
63
13595 agent-swarm-workflow dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
Agent Swarm Workflow — Parallel Implementation Core Insight: Every agent is fungible and a generalist. They all use the same base model and read the same AGENTS.md. Simply telling one it's a "frontend agent" doesn't make it better at frontend. The swarm is distributed, robust, and self-organizing through Agent Mail and Beads. Prerequisites Before starting a swarm: Comprehensive plan created (see planning-workflow skill) Polished beads ready (see beads-workflow skill) AGENTS.md configured wi...
63
13596 bug-hunter codexstar69/bug-hunter
Bug Hunt - Adversarial Bug Finding Run a sequential-first adversarial bug hunt on your codebase. Use parallelism only for read-only triage and independent verification tasks. Table of Contents Usage Target Context Budget Execution Steps Step 7: Present the Final Report Self-Test Mode Error handling Phase 1 — Find & Verify: Recon (map) --> Hunter (deep scan) --> Skeptic (challenge) --> Referee (final verdict) ^ (optional read-only dual-lens triage can run here) | state + chunk che...
63
13597 memory rjyo/memory-search
Memory - Persistent Knowledge Storage Store and retrieve knowledge across sessions using semantic search. Prerequisites Install basic-memory: pip install basic-memory CLI Reference Write a Note Basic note basic-memory tool write-note --title "Note Title" --content "Note content in markdown" With tags basic-memory tool write-note --title "React Patterns" --content " Content here" --tags "react,patterns,frontend" To specific folder basic-memory tool write-note --title "Meeting Notes" --content ...
63
13598 reverse-engineering-api kalil0321/reverse-api-engineer
This skill enables you to reverse engineer web APIs by: - Controlling a browser with HAR recording enabled - Analyzing captured network traffic - Generating production-ready Python API clients Prerequisites - Playwright MCP: You must have access to Playwright MCP tools for browser control - HAR Recording: The browser must be configured to record HAR files - Python: For running analysis scripts and generated clients Workflow Overview ``` [User Task] -> [Browser Capture] -> [HAR Analysi...
63
13599 agent-telegram avemeva/agent-telegram
Telegram Automation with agent-telegram Telegram CLI for AI agents. Interact with Telegram programmatically — read messages, send messages, search, download media, and more. All output is JSON to stdout. Warnings go to stderr. Prefer jq over python3 for JSON processing — it's faster and preserves Unicode. Setup If agent-telegram is not installed, read references/installation.md for platform-specific install instructions, authentication, and troubleshooting. agent-telegram me Verify connection w...
63
13600 azd-deployment sickn33/antigravity-awesome-skills
Azure Developer CLI (azd) Container Apps Deployment Deploy containerized frontend + backend applications to Azure Container Apps with remote builds, managed identity, and idempotent infrastructure. Quick Start Initialize and deploy azd auth login azd init Creates azure.yaml and .azure/ folder azd env new < env-name > Create environment (dev, staging, prod) azd up Provision infra + build + deploy Core File Structure project/ ├── azure.yaml azd service definitions + hooks ├── inf...
63