/** * Storefront Next (deprecated) toolset for B2C Commerce. * * **DEPRECATED:** These `sfnext_*` tools are superseded by the `storefront-next` * and `storefront-next-figma` agent-skills plugins and are NOT compatible with * the Storefront Next 1.0 GA release. They now live in the * `STOREFRONTNEXT_DEPRECATED` toolset, which is never auto-activated by project * detection and is excluded from `--toolsets ALL`. To use them you must request * the toolset explicitly (`--toolsets STOREFRONTNEXT_DEPRECATED`). They will be * removed in a future release. * * **Implemented Tools:** * - `sfnext_get_guidelines` - Get development guidelines and best practices * - `sfnext_add_page_designer_decorator` - Add Page Designer decorators to React components * - `sfnext_configure_theme` - Get theming guidelines, questions, and validation * - `sfnext_start_figma_workflow` - Convert Figma to components * - `sfnext_analyze_component` - Analyze design and recommend REUSE/EXTEND/CREATE * - `sfnext_match_tokens_to_theme` - Match design tokens to theme * * @module tools/storefrontnext */ import type { McpTool } from '../../utils/index.js'; import type { Services } from '../../services.js'; /** * Creates all tools for the deprecated STOREFRONTNEXT_DEPRECATED toolset. * * @param loadServices - Function that loads configuration and returns Services instance * @returns Array of MCP tools */ export declare function createStorefrontNextTools(loadServices: () => Promise | Services): McpTool[];