dynamic-pricing

Adjusts product prices automatically based on demand signals, competitor prices, and inventory levels.

3|1|Updated Mar 21, 2026
One-click install
npx skills add https://github.com/tomtoto757/ecomm-ai-team --skill dynamic-pricing-tomtoto757
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: dynamic-pricing
Source: https://github.com/tomtoto757/ecomm-ai-team/tree/main/skills/pricing-promotions-loyalty/finsilabs/pricing-promotions/dynamic-pricing
Command: npx skills add https://github.com/tomtoto757/ecomm-ai-team --skill dynamic-pricing-tomtoto757

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Manual, set-and-forget pricing loses revenue when competitors adjust prices hourly and inventory or demand shifts go unanswered. This Skill guides the implementation of automated repricing that responds to live signals while enforcing margin floors and safety guardrails. ## Core Features & Use Cases - Platform-Specific Setup: Step-by-step configuration for Shopify (Prisync, Shopify Flow), WooCommerce (REST API, WP-Cron), BigCommerce (Price Lists API), and custom headless storefronts. - Pricing Rules & Guardrails: Defines floor/ceiling prices, a cost-based 15% margin floor, 20% single-run change caps, 2% hysteresis bands, and human review queues for changes over 10%. - Reference Implementation: Includes a TypeScript repricing cron job computing prices from inventory pressure, sales velocity, and competitor undercutting logic. - Use Case: A merchant with high-velocity SKUs uses this Skill to configure Prisync on Shopify so prices automatically match or beat competitor prices while never dropping below cost plus 15% margin. ## Quick Start Ask the AI to set up dynamic pricing for your Shopify store using Prisync with a floor price of cost times 1.15 and a maximum 20% price change per cycle.

Frequently Asked Questions about dynamic-pricing

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up dynamic pricing on Shopify?▼

Dynamic pricing on Shopify is typically done with a repricing app like Prisync or Wiser rather than custom code. Connect the app, add competitor URLs, set repricing rules and floor/ceiling prices, and it pushes updates via the Shopify Admin API on your schedule.

What is the best repricing tool for WooCommerce?▼

Prisync connects to WooCommerce through the REST API and updates prices via the product variations endpoint. For demand-based repricing without a third-party tool, you can write a WP-Cron scheduled PHP function that adjusts prices based on inventory and sales velocity.

How do I prevent dynamic pricing from dropping below cost?▼

Enforce an absolute floor price computed as cost times 1.15 that the algorithm cannot bypass under any rule. Apply it with Math.max alongside your business floor price so no competitor war or bad data can push prices below your minimum margin.

Why does my repricing engine keep oscillating prices up and down?▼

Price oscillation happens when small changes trigger repeated opposite adjustments. Add a minimum 2-hour cooldown between changes and a 2% hysteresis band so changes below that threshold are suppressed as no-ops.

Can dynamic pricing run during a flash sale?▼

No, algorithmic repricing should be locked out during active promotions. Set an is_price_locked flag on products in active sales and check for active promotions before applying any algorithmic price change.

How do I reprice products on a headless or custom storefront?▼

Build a scheduled repricing job in TypeScript that computes new prices from inventory, sales velocity, and competitor data, then calls your platform's pricing API. Run it on a cron schedule and log every change to a price history table for rollback and audits.