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

/ 聚焦搜索框
正在使用 AI 进行语义搜索...
20,000
总 Skills
16.0M
总安装量
2,338
贡献者
# Skill 仓库 描述 安装量
13801 project-manager borghei/claude-skills
Project Manager Purpose Provides project management expertise specializing in planning, execution, monitoring, and closure of projects. Masters traditional and agile methodologies to deliver projects on time, within budget, and to quality standards. When to Use Planning and executing new projects or initiatives Managing project timelines, budgets, and resources Coordinating cross-functional teams Tracking project progress and milestones Managing risks and resolving project issues Facilitating pr...
54
13802 terragrunt ionfury/homelab
Terragrunt Infrastructure Skill Manage bare-metal Kubernetes infrastructure from PXE boot to running clusters. For architecture overview (units vs modules, config centralization), see infrastructure/CLAUDE.md . For detailed unit patterns, see infrastructure/units/CLAUDE.md . Task Commands (Always Use These) Validation (run in order) task tg:fmt Format HCL files task tg:test- < module > Test specific module (e.g., task tg:test-config) task tg:validate- < stack > Validate stack (e.g., task tg:...
54
13803 sync-plugin-skills s-hiraoku/synapse-a2a
Synchronize plugin skills with the current implementation and documentation. Purpose Ensure that skills in `plugins/synapse-a2a/skills/` accurately reflect: - Current implementation in `synapse/` directory - README.md documentation - Guides in `guides/` folder When to Use - After implementing new features or parameters - After updating README.md or guides - Before releasing a new version - When `/sync-plugin-skills` is invoked Workflow Step 1: Gather Current State Read the follo...
54
13804 feishu-doc-writer alextangson/feishu_skills
飞书文档写入 通过 Docx API 写入内容到飞书云文档。飞书文档使用 Block 树模型 ,不接受原始 Markdown。 Base URL : https://open.feishu.cn/open-apis/docx/v1 推荐方式:转换 API 飞书提供官方 Markdown → Blocks 转换端点: POST /documents/{document_id}/convert { "content" : " 标题\n\n正文\n\n- 列表项" , "content_type" : "markdown" } ✅ 无需手动构建 Block JSON,支持标准 Markdown ⚠️ 不支持飞书特有块(Callout 等)— 需手动创建 Block 类型 block_type 名称 JSON Key 说明 1 页面 page 文档根节点 2 文本 text 段落 3-11 标题1-9 heading1 - heading9 - 12 无序列表 bullet 每项单独一个 block 13 有序列表 ordered - 14 代码块 code 需指定 style.languag...
54
13805 tlc-spec-driven tech-leads-club/agent-skills
Tech Lead's Club - Spec-Driven Development Plan and implement projects with precision. Granular tasks. Clear dependencies. Right tools. Zero ceremony. ┌──────────┐ ┌──────────┐ ┌─────────┐ ┌─────────┐ │ SPECIFY │ → │ DESIGN │ → │ TASKS │ → │ EXECUTE │ └──────────┘ └──────────┘ └─────────┘ └─────────┘ required optional* optional* required * Agent auto-skips when scope doesn't need it Auto-Sizing: The Core Principle The complexity determines the depth, not a fixed pi...
54
13806 x-user-timeline b-open-io/prompts
X User Timeline Get recent tweets from a specific user. Setup export X_BEARER_TOKEN = "your-token" https://developer.x.com/en/portal/dashboard Usage ${CLAUDE_PLUGIN_ROOT} /scripts/timeline.sh < username > [ max_results ] Examples Get 10 recent tweets (default) ${CLAUDE_PLUGIN_ROOT} /scripts/timeline.sh kurtwuckertjr Get 25 tweets ${CLAUDE_PLUGIN_ROOT} /scripts/timeline.sh kurtwuckertjr 25 Response Fields text - Tweet content created_at - Post timestamp public_metrics - Likes, retweets, replie...
54
13807 distributed-llm-pretraining-torchtitan orchestra-research/ai-research-skills
No SKILL.md available for this skill. [View on GitHub ](https://github.com/davila7/claude-code-templates)
54
13808 bencium-code-conventions bencium/bencium-claude-code-design-skill
Code Conventions Core Technologies Frontend: ReactJS, Next.js (App Router structure), TypeScript Styling: TailwindCSS v3.x (never v4), Shadcn UI Build Tools: Vite (when applicable) Backend: Postgres compatible convex.dev or Supabase (always ask, never local postgres) Deployment: Netlify or Vercel or Fly - suggest Environment: Mac M2, Python3 with virtual environments, no CUDA, no Docker Alternative Languages: Avoid python if you can, try using RUST Code Style & Structure Use ES modules (import/e...
54
13809 notification-events groeimetai/snow-flow
Events trigger notifications, scripts, and workflows in ServiceNow. Event Architecture ``` gs.eventQueue() → Event Queue (sysevent) ↓ Event Registry (sysevent_register) ↓ Script Actions (sysevent_script_action) Notifications (sysevent_email_action) ``` Key Tables | `sysevent` | Event queue | `sysevent_register` | Event registry | `sysevent_script_action` | Script actions | `sysevent_email_action` | Email notifications Creating Events (ES5) Register Event ``` // Reg...
54
13810 b2c-custom-job-steps salesforcecommercecloud/b2c-developer-tooling
Custom Job Steps Skill This skill guides you through creating new custom job steps for Salesforce B2C Commerce batch processing. Running an existing job? If you need to execute jobs or import site archives via CLI, use the b2c-cli:b2c-job skill instead. When to Use Creating a new scheduled job for batch processing Building a data import job (customers, products, orders) Building a data export job (reports, feeds, sync) Implementing data sync between systems Creating cleanup or maintenance tasks ...
54
13811 llama-factory orchestra-research/ai-research-skills
Llama-Factory Skill Comprehensive assistance with llama-factory development, generated from official documentation. When to Use This Skill This skill should be triggered when: Working with llama-factory Asking about llama-factory features or APIs Implementing llama-factory solutions Debugging llama-factory code Learning llama-factory best practices Quick Reference Common Patterns Quick reference patterns will be added as you use the skill. Reference Files This skill includes comprehensive...
54
13812 manager metyatech/skill-manager
Manager Skill Source: metyatech/skill-manager . To update this skill, edit the repository and push — do not edit the installed copy. Role Definition CRITICAL: This role persists for the ENTIRE session. Every message must be handled as a manager. You are a task orchestrator. You receive work, analyze it, and delegate to agents. You do NOT do substantive work yourself. Before responding to ANY message, ask: "Should I delegate this?" The only work you do directly: Single-lookup answers Yes/no quest...
54
13813 dbmate kalbasit/ncps
dbmate Skill This skill provides comprehensive instructions for managing database migrations in this project using dbmate. Creating Migrations When creating new migrations, always follow the /migrate-new workflow. The primary tool for creating a migration is: dbmate --migrations-dir db/migrations/<engine> new "migration_name" Replace <engine> with sqlite, postgres, or mysql. Writing Migrations Migrations are stored in db/migrations/<engine>/ as .sql files. They follow a specific format: ...
54
13814 audio-analysis bbeierle12/skill-mcp-claude
Audio Analysis FFT, frequency extraction, and audio data analysis. Quick Start import * as Tone from 'tone'; // Create analyzer const analyser = new Tone.Analyser('fft', 256); const player = new Tone.Player('/audio/music.mp3'); player.connect(analyser); player.toDestination(); // Get frequency data const frequencyData = analyser.getValue(); // Float32Array Analyzer Types FFT Analyzer // FFT (Fast Fourier Transform) - frequency spectrum const fftAnalyser = new Tone.Analyser({ type: 'fft',...
54
13815 paper-search-usage fcakyon/claude-codex-settings
Paper Search MCP Search academic papers across multiple platforms. Supported Platforms arXiv (preprints) PubMed (biomedical) IEEE Xplore (engineering) Scopus (multidisciplinary) ACM Digital Library (computer science) Semantic Scholar (AI-powered) Usage Use mcp__paper-search__* tools to search papers by keywords, authors, or topics. Best Practices Start with broad searches, then narrow down Use platform-specific searches for domain-specific papers Combine multiple sources for comprehensive li...
54
13816 dust-llm dust-tt/dust
Adding Support for a New LLM Model This skill guides you through adding support for a newly released LLM. Quick Reference Files to Modify File Purpose front/types/assistant/models/{provider}.ts Model ID + configuration front/lib/api/assistant/token_pricing.ts Pricing per million tokens front/types/assistant/models/models.ts Central registry front/lib/api/llm/clients/{provider}/types.ts Router whitelist sdks/js/src/types.ts SDK types front/components/providers/types.ts UI availability (optional) ...
54
13817 prowler-ci prowler-cloud/prowler
What this skill covers Use this skill whenever you are: Reading or changing GitHub Actions workflows under .github/workflows/ Explaining why a PR fails checks (title, changelog, conflict markers, secret scanning) Figuring out which workflows run for UI/API/SDK changes and why Diagnosing path-filtering behavior (why a workflow did/didn't run) Quick map (where to look) PR template: .github/pull_request_template.md PR title validation: .github/workflows/conventional-commit.yml Changelog gate: .gi...
54
13818 worktree civitai/civitai
Worktree Setup Skill Creates git worktrees with all necessary setup for running the dev server. Handles the tedious setup steps so you can start working immediately. Quick Start Create a worktree for a new branch node .claude/skills/worktree/cli.mjs create feature/my-feature Create a worktree for an existing branch node .claude/skills/worktree/cli.mjs create existing-branch List all worktrees node .claude/skills/worktree/cli.mjs list Remove a worktree node .claude/skills/worktree/cli.mjs rem...
54
13819 onboarding-cro kimny1143/claude-code-template
Onboarding CRO You are an expert in user onboarding and activation. Your goal is to help users reach their "aha moment" as quickly as possible and establish habits that lead to long-term retention. 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 pr...
54
13820 draw-io i9wa4/dotfiles
draw.io Diagram Skill 1. Basic Rules Edit only .drawio files Do not directly edit .drawio.png files Use auto-generated .drawio.png by pre-commit hook in slides 2. Font Settings For diagrams used in Quarto slides, specify defaultFontFamily in mxGraphModel tag: <mxGraphModel defaultFontFamily="Noto Sans JP" ...> Also explicitly specify fontFamily in each text element's style attribute: style="text;html=1;fontSize=27;fontFamily=Noto Sans JP;" 3. Conversion Commands See conversion script at s...
54
13821 addressing-pr-review-comments streamlit/streamlit
Address PR Comments Address actionable review comments on the PR for the current branch using gh CLI. Workflow checklist Copy and track progress: - [ ] 1. Verify auth: gh auth status - [ ] 2. Fetch PR data and comments - [ ] 3. Analyze and categorize comments - [ ] 4. Present options to user - [ ] 5. Apply selected fixes - [ ] 6. Show summary, next steps, and offer to post replies 1. Verify authentication gh auth status If auth fails, prompt user to run gh auth login . 2. Fetch PR data PR detai...
54
13822 programming-architecture pluginagentmarketplace/custom-plugin-game-developer
Game Programming Architecture Design Patterns for Games 1. State Machine Best for: Character states, AI, game flow // ✅ Production-Ready State Machine public abstract class State<T> where T : class { protected T Context { get; private set; } public void SetContext(T context) => Context = context; public virtual void Enter() { } public virtual void Update() { } public virtual void Exit() { } } public class StateMachine<T> where T : class { private State<T> _current; ...
54
13823 ai-sdk vercel-labs/vercel-skills
Prerequisites Before searching docs, check if node_modules/ai/docs/ exists. If not, install only the ai package using the project's package manager (e.g., pnpm add ai ). Do not install other packages at this stage. Provider packages (e.g., @ai-sdk/openai ) and client packages (e.g., @ai-sdk/react ) should be installed later when needed based on user requirements. Critical: Do Not Trust Internal Knowledge Everything you know about the AI SDK is outdated or wrong. Your training data contains obsol...
54
13824 axolotl orchestra-research/ai-research-skills
Axolotl Skill Comprehensive assistance with axolotl development, generated from official documentation. When to Use This Skill This skill should be triggered when: Working with axolotl Asking about axolotl features or APIs Implementing axolotl solutions Debugging axolotl code Learning axolotl best practices Quick Reference Common Patterns Pattern 1: To validate that acceptable data transfer speeds exist for your training job, running NCCL Tests can help pinpoint bottlenecks, for example: ....
54
13825 kimi-xlsx thvroyal/kimi-skills
You must eventually deliver an Excel file, one or more depending on the task, but what must be delivered must include a .xlsx file Ensure the overall deliverable is concise , and do not provide any files other than what the user requested, especially readme documentation , as this will take up too much context. Excel File Creation: Python + openpyxl/pandas ✅ REQUIRED Technology Stack for Excel Creation: Runtime : Python 3 Primary Library : openpyxl (for Excel file creation, styling, formulas) Da...
54
13826 github-release-management ruvnet/claude-flow
GitHub Release Management Skill Intelligent release automation and orchestration using AI swarms for comprehensive software releases - from changelog generation to multi-platform deployment with rollback capabilities. Quick Start Simple Release Flow Plan and create a release gh release create v2.0.0 \ --draft \ --generate-notes \ --title "Release v2.0.0" Orchestrate with swarm npx claude-flow github release-create \ --version "2.0.0" \ --build-artifacts \ --deploy-targets "npm,docker,github" F...
54
13827 github-issues epicenterhq/epicenter
GitHub Issues Manage GitHub issues using the @modelcontextprotocol/server-github MCP server. Available Tools MCP Tools (read operations) Tool Purpose mcp__github__issue_read Read issue details, sub-issues, comments, labels (methods: get, get_comments, get_sub_issues, get_labels) mcp__github__list_issues List and filter repository issues by state, labels, date mcp__github__search_issues Search issues across repos using GitHub search syntax mcp__github__projects_list List projects, project fields,...
54
13828 github-automation vm0-ai/vm0-skills
GitHub Automation via Rube MCP Automate GitHub repository management, issue tracking, pull request workflows, branch operations, and CI/CD through Composio's GitHub toolkit. Prerequisites Rube MCP must be connected (RUBE_SEARCH_TOOLS available) Active GitHub connection via RUBE_MANAGE_CONNECTIONS with toolkit github Always call RUBE_SEARCH_TOOLS first to get current tool schemas Setup Get Rube MCP : Add https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just...
54
13829 cuda technillogue/ptx-isa-markdown
Measure before guessing. GPU performance is deeply counterintuitive. Profile first, hypothesize second, change third, verify fourth. Small, isolated changes. CUDA bugs compound. Make one change, test it, commit it. Resist the urge to "fix everything at once." printf is your strongest tool. When debuggers fail, when tools produce inscrutable output, printf in device code reveals truth. Don't be embarrassed to use it extensively. Sometimes, stare at the diff. Inscrutable segfaults are common. T...
54
13830 binary-analysis-patterns oimiragieo/agent-studio
Binary Analysis Patterns Comprehensive patterns and techniques for analyzing compiled binaries, understanding assembly code, and reconstructing program logic. Disassembly Fundamentals x86-64 Instruction Patterns Function Prologue/Epilogue ; Standard prologue push rbp ; Save base pointer mov rbp, rsp ; Set up stack frame sub rsp, 0x20 ; Allocate local variables ; Leaf function (no calls) ; May skip frame pointer setup sub rsp, 0x18 ; Just allocate locals ; Standard e...
54
13831 ios-expert oimiragieo/agent-studio
Ios Expert swiftui general rules When reviewing or writing code, apply these guidelines: You are an expert in coding with Swift and SwiftUI. Always write maintainable and clean code. Focus on the latest August, September 2024 version of the documentation and features. Descriptions should be short and concise. Don't remove any comments. swiftui project structure rules When reviewing or writing code, apply these guidelines: Enforce the following SwiftUI project structure: The main folder conta...
54
13832 approval-workflows groeimetai/snow-flow
Approval Workflows for ServiceNow Approval workflows route records through configurable approval chains. Approval Architecture Record (change_request, sc_req_item, etc.) ↓ Approval Rules (sysapproval_rule) ↓ Approval Records (sysapproval_approver) ↓ Approve/Reject Record State Updated Key Tables Table Purpose sysapproval_approver Individual approval records sysapproval_group Group approval configuration sysapproval_rule Approval rules sys_approval_workflow Approval workflow stages...
54
13833 sentry-ruby-sdk getsentry/sentry-agent-skills
All Skills > SDK Setup > Ruby SDK Sentry Ruby SDK Opinionated wizard that scans the project and guides through complete Sentry setup. Invoke This Skill When User asks to "add Sentry to Ruby" or "set up Sentry" in a Ruby app User wants error monitoring, tracing, logging, metrics, profiling, or crons in Ruby User mentions sentry-ruby , sentry-rails , or the Ruby Sentry SDK User is migrating from AppSignal, Honeybadger, Bugsnag, Rollbar, or Airbrake to Sentry User wants to monitor exceptions, HTTP ...
54
13834 ask-questions-if-underspecified gohypergiant/agent-skills
Ask Questions If Underspecified When to Use Use this skill when a request has multiple plausible interpretations or key details (objective, scope, constraints, environment, or safety) are unclear. When NOT to Use Do not use this skill when the request is already clear, or when a quick, low-risk discovery read can answer the missing details. Goal Ask the minimum set of clarifying questions needed to avoid wrong work; do not start implementing until the must-have questions are answered (or th...
54
13835 wiki-qa sickn33/antigravity-awesome-skills
Wiki Q&A Answer repository questions grounded entirely in source code evidence. When to Activate User asks a question about the codebase User wants to understand a specific file, function, or component User asks "how does X work" or "where is Y defined" Procedure Detect the language of the question; respond in the same language Search the codebase for relevant files Read those files to gather evidence Synthesize an answer with inline citations Response Format Use headings, code blocks with lang...
54
13836 linear-dev-accelerator manutej/luxor-claude-marketplace
Linear Development Accelerator A comprehensive skill for accelerating software development using Linear project management with MCP server integration. This skill enables rapid project setup, intelligent issue management, and streamlined development workflows for web and mobile applications. When to Use This Skill Use this skill when: Starting a new software development project and need to set up Linear project management Managing issues, tasks, and features for frontend, backend, or full-st...
54
13837 ruby-on-rails-best-practices sergiodxa/agent-skills
Ruby on Rails Best Practices Architecture patterns and coding conventions extracted from Basecamp's production Rails applications (Fizzy and Campfire). Contains 16 rules across 6 categories focused on code organization, maintainability, and following "The Rails Way" with Basecamp's refinements. When to Apply Reference these guidelines when: Organizing models, concerns, and controllers Writing background jobs Implementing real-time features with Turbo Streams Deciding where code should live Writi...
54
13838 unsafe-checker actionbook/rust-skills
Display the following ASCII art exactly as shown. Do not modify spaces or line breaks: ⚠️ Unsafe Rust Checker Loaded * ^ * /◉\_~^~_/◉\ ⚡/ o \⚡ '_ _' / '-----' \ Unsafe Rust Checker When Unsafe is Valid Use Case Example FFI Calling C functions Low-level abstractions Implementing Vec, Arc Performance Measured bottleneck with safe alternative too slow NOT valid: Escaping borrow checker without understanding why. Required Documentation // SAFETY: <why this is sa...
54
13839 prettier-compare biomejs/biome
Purpose Use packages/prettier-compare/ to inspect any differences between Biome and Prettier formatting (including IR output) before shipping formatter changes. Prerequisites Run every command from the repository root so relative paths resolve correctly. Use bun (the CLI is a Bun script) and ensure dependencies have been installed. Always pass --rebuild so the Biome WASM bundle matches your current Rust changes. Common workflows Snippets passed as CLI args: bun packages/prettier-compare/bin/pret...
54
13840 angular-best-practices-rule-creator alfredoperez/angular-best-practices
Rule Creator Agent Creates new Angular best practice rules and optional library skills following the exact project conventions. Capabilities 1. Create a New Rule When asked to create a rule: Determine the prefix from the rule filename (e.g., material-imports.md → prefix material ) Look up the section number in packages/angular-best-practices-build/src/config.ts → sectionMap Place the file in the correct rules/ subdirectory based on the prefix: test-* → rules/testing/ a11y-* , ui-* , loading-* , ...
54
13841 sales-call-prep-assistant onewave-ai/claude-skills
Sales Call Prep Assistant Generate pre-call research briefs with company news, stakeholder backgrounds, and custom discovery question sets. Instructions You are an expert at sales preparation and discovery. Research prospects thoroughly, create comprehensive call prep briefs, and suggest strategic conversation approaches. Output Format Sales Call Prep Assistant Output Generated: {timestamp} --- Results [Your formatted output here] --- Recommendations [Actionable next steps] Best ...
54
13842 mapbox-cartography mapbox/mcp-devkit-server
Mapbox Cartography Skill This skill provides expert cartographic knowledge to help you design effective, beautiful, and functional maps using Mapbox. Core Cartographic Principles Visual Hierarchy Maps must guide the viewer's attention to what matters most: Most important : POIs, user location, route highlights Secondary : Major roads, city labels, landmarks Tertiary : Minor streets, administrative boundaries Background : Water, land use, terrain Implementation: Use size, color intensity, and con...
54
13843 telos danielmiessler/personal_ai_infrastructure
TELOS (Telic Evolution and Life Operating System) is a comprehensive context-gathering system with two applications: - Personal TELOS - {principal.name}'s life context system (beliefs, goals, lessons, wisdom) at `~/.claude/skills/CORE/USER/TELOS/` - Project TELOS - Analysis framework for organizations/projects (relationships, dependencies, goals, progress) Voice Notification When executing a workflow, do BOTH: - Send voice notification: ``` curl -s -X POST http://localhost:8888/notify \ ...
54
13844 signup-flow-cro kimny1143/claude-code-template
Signup Flow CRO You are an expert in optimizing signup and registration flows. Your goal is to reduce friction, increase completion rates, and set users up for successful activation. 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 providing recomme...
54
13845 godot-multiplayer-networking thedivergentai/gd-agentic-skills
Multiplayer Networking Authoritative servers, client prediction, and state synchronization define robust multiplayer. Available Scripts server_authoritative_controller.gd Advanced player controller with client prediction, server reconciliation, and interpolation. client_prediction_synchronizer.gd Expert client-side prediction with server reconciliation pattern. NEVER Do in Multiplayer Networking NEVER trust client input without server validation — Client sends "deal 9999 damage" RPC? Cheating. S...
54
13846 transformer-lens-interpretability orchestra-research/ai-research-skills
TransformerLens: Mechanistic Interpretability for Transformers TransformerLens is the de facto standard library for mechanistic interpretability research on GPT-style language models. Created by Neel Nanda and maintained by Bryce Meyer, it provides clean interfaces to inspect and manipulate model internals via HookPoints on every activation. GitHub: TransformerLensOrg/TransformerLens (2,900+ stars) When to Use TransformerLens Use TransformerLens when you need to: Reverse-engineer algorithms...
54
13847 funnel-analysis liangdabiao/claude-data-analysis-ultra-main
Funnel Analysis Skill Analyze user behavior through multi-step conversion funnels to identify bottlenecks and optimization opportunities in marketing campaigns, user journeys, and business processes. Quick Start This skill helps you: Build conversion funnels from multi-step user data Calculate conversion rates between each step Perform segmentation analysis by different user attributes Create interactive visualizations with Plotly Generate business insights and optimization recommendations When ...
54
13848 tinybird-deploy pollinations/pollinations
Tinybird Deployment Skill Deploy observability pipes and datasources to Tinybird Cloud. Requirements tb CLI : Install with curl -sSL https://tinybird.co | bash or pip install tinybird-cli Must run from enter.pollinations.ai/observability directory Authenticated to Tinybird (run tb login if needed) Workspace Info Property Value Workspace pollinations_enter Region gcp-europe-west2 UI https://cloud.tinybird.co/gcp/europe-west2/pollinations_enter Directory Structure enter.pollinations.ai/observabili...
54
13849 model-debugging pollinations/pollinations
Model Debugging Skill Use this skill when: Investigating model failures, high error rates, or service issues Finding users affected by errors (402 billing, 403 permissions, 500 backend) Analyzing Tinybird/Cloudflare logs for patterns Diagnosing specific request failures Related skill : Use tier-management to upgrade users or check balances after identifying issues here. Understanding Model Monitor Error Rates Why does the Model Monitor show high error rates when models work fine manually? The Mo...
54
13850 b2c-forms salesforcecommercecloud/b2c-developer-tooling
Forms Skill This skill guides you through creating forms with validation in Salesforce B2C Commerce using the SFRA patterns. Overview B2C Commerce forms consist of three parts: Form Definition - XML file defining fields, validation, and actions Controller Logic - Server-side form handling and processing Template - ISML template rendering the HTML form File Location Forms are defined in the cartridge's forms directory: /my-cartridge /cartridge /forms /default Default locale profile....
54