HomeBrowseUpload
โ† Back to registry
โšก
// Skill profile

Ecommerce Product Pro ๐Ÿ›๏ธ

name: ecommerce-product-pro

by chenghaifeng08-creator ยท published 2026-03-22

้‚ฎไปถๅค„็†ๅผ€ๅ‘ๅทฅๅ…ท
Total installs
0
Stars
โ˜… 0
Last updated
2026-03
// Install command
$ claw add gh:chenghaifeng08-creator/chenghaifeng08-creator-ecommerce-product-pro
View on GitHub
// Full documentation

---

name: ecommerce-product-pro

description: AI-powered ecommerce product research tool for Amazon FBA, Shopify, and dropshipping. Find winning products, analyze competition, estimate profits, and track trends.

version: 1.0.0

author: OpenClaw Agent

tags:

- ecommerce

- amazon-fba

- shopify

- dropshipping

- product-research

- winning-products

- market-analysis

homepage: https://github.com/openclaw/skills/ecommerce-product-pro

metadata:

openclaw:

emoji: ๐Ÿ›๏ธ

pricing:

basic: "59 USDC"

pro: "119 USDC (with supplier finder & profit calculator)"

---

# Ecommerce Product Pro ๐Ÿ›๏ธ

**AI-powered product research for ecommerce winners.**

Find winning products for Amazon FBA, Shopify, and dropshipping. Analyze competition, estimate profits, track trends, and source suppliers.

---

๐ŸŽฏ What It Solves

Ecommerce sellers struggle with:

  • โŒ Finding profitable products is time-consuming
  • โŒ Don't know which products will sell
  • โŒ Competition analysis is manual and slow
  • โŒ Profit calculations are complex
  • โŒ Can't find reliable suppliers
  • โŒ Missing trending products
  • **Ecommerce Product Pro** provides:

  • โœ… AI-powered product discovery
  • โœ… Competition analysis
  • โœ… Profit estimation
  • โœ… Trend tracking
  • โœ… Supplier recommendations
  • โœ… Market opportunity scoring
  • ---

    โœจ Features

    ๐Ÿ† Winning Product Finder

  • High-demand, low-competition products
  • Trending products (7d, 30d, 90d)
  • Seasonal opportunities
  • Niche discovery
  • Product validation score
  • ๐Ÿ“Š Market Analysis

  • Market size estimation
  • Growth trends
  • Seasonality patterns
  • Customer demographics
  • Price point analysis
  • ๐Ÿช Competition Analysis

  • Number of sellers
  • Review analysis (avg rating, count)
  • Listing quality score
  • Pricing strategy
  • Market saturation level
  • ๐Ÿ’ฐ Profit Calculator

  • Amazon FBA fees
  • Shopify transaction fees
  • Shipping costs
  • Product cost
  • Net profit margin
  • ROI calculation
  • ๐Ÿ“ˆ Trend Tracking

  • Google Trends integration
  • Social media mentions
  • Sales velocity
  • Seasonal patterns
  • Emerging niches
  • ๐Ÿญ Supplier Finder

  • Alibaba supplier recommendations
  • Supplier verification
  • Price negotiation tips
  • MOQ (minimum order quantity)
  • Shipping time estimates
  • ๐Ÿ“ Listing Optimizer

  • Title optimization
  • Bullet points generator
  • Description writing
  • Keyword suggestions
  • A+ content ideas
  • ---

    ๐Ÿ“ฆ Installation

    clawhub install ecommerce-product-pro

    ---

    ๐Ÿš€ Quick Start

    1. Initialize Product Research

    const { EcommerceProductPro } = require('ecommerce-product-pro');
    
    const research = new EcommerceProductPro({
      apiKey: 'your-api-key',
      marketplace: 'amazon',  // amazon, shopify, dropshipping
      targetCountry: 'US',
      budget: 5000  // Initial investment budget
    });

    2. Find Winning Products

    const products = await research.findWinningProducts({
      niche: 'home fitness',
      minPrice: 20,
      maxPrice: 100,
      minMargin: 30,  // Minimum 30% margin
      maxCompetition: 'medium',
      count: 20
    });
    
    console.log(products);
    // [
    //   {
    //     product: 'Resistance Bands Set',
    //     niche: 'home fitness',
    //     price: 29.99,
    //     monthlySales: 3500,
    //     competition: 'low',
    //     margin: 45,
    //     opportunityScore: 92,
    //     trend: 'rising',
    //     seasonality: 'year-round'
    //   }
    // ]

    3. Analyze Product

    const analysis = await research.analyzeProduct({
      asin: 'B08XYZ123',  // Amazon ASIN
      orUrl: 'https://amazon.com/dp/B08XYZ123'
    });
    
    console.log(analysis);
    // {
    //   product: 'Resistance Bands Set',
    //   price: 29.99,
    //   monthlyRevenue: 104965,
    //   reviews: 2847,
    //   avgRating: 4.5,
    //   competition: 'medium',
    //   marketShare: 'top 10%',
    //   fbaFees: 8.50,
    //   estimatedProfit: 12.30,
    //   margin: 41
    // }

    4. Calculate Profit

    const profit = await research.calculateProfit({
      sellingPrice: 29.99,
      productCost: 8.50,
      shippingCost: 3.20,
      marketplace: 'amazon',
      fbaFulfillment: true,
      dimensions: { length: 10, width: 8, height: 2, weight: 0.5 }
    });
    
    console.log(profit);
    // {
    //   revenue: 29.99,
    //   costs: {
    //     product: 8.50,
    //     shipping: 3.20,
    //     fbaFees: 5.80,
    //     referral: 4.50,
    //     total: 22.00
    //   },
    //   profit: 7.99,
    //   margin: 26.6,
    //   roi: 36.3
    // }

    5. Find Suppliers

    const suppliers = await research.findSuppliers({
      product: 'resistance bands set',
      minMOQ: 100,
      maxPrice: 10,
      verified: true
    });
    
    console.log(suppliers);
    // [
    //   {
    //     name: 'XYZ Manufacturing',
    //     price: 6.50,
    //     moq: 200,
    //     rating: 4.8,
    //     years: 8,
    //     verified: true,
    //     responseTime: '< 24h'
    //   }
    // ]

    6. Track Trends

    const trends = await research.trackTrends({
      niche: 'home fitness',
      period: '90d'
    });
    
    console.log(trends);
    // Trending products, growth rates, seasonal patterns

    ---

    ๐Ÿ’ก Advanced Usage

    Product Validation

    const validation = await research.validateProduct({
      asin: 'B08XYZ123',
      criteria: {
        minMargin: 30,
        maxCompetition: 'medium',
        minDemand: 1000
      }
    });
    
    // Returns pass/fail with detailed scoring

    Niche Analysis

    const niche = await research.analyzeNiche({
      niche: 'pet supplies',
      depth: 'comprehensive'
    });
    
    // Market size, top products, competition level, opportunities

    Competitor Tracking

    const tracking = await research.trackCompetitor({
      asins: ['B08XYZ123', 'B09ABC456'],
      metrics: ['price', 'rank', 'reviews']
    });
    
    // Daily price/rank/review tracking

    Seasonal Opportunities

    const seasonal = await research.findSeasonalProducts({
      month: 'December',
      leadTime: 60  // Days before season
    });
    
    // Products that sell well in specific seasons

    ---

    ๐Ÿ’ฐ Pricing

    | Tier | Price | Features |

    |------|-------|----------|

    | **Basic** | $59 | Product finder, market analysis, profit calculator |

    | **Pro** | $119 | + Supplier finder, trend tracking, competitor tracking |

    ---

    ๐Ÿ“ Changelog

    v1.0.0 (2026-03-19)

  • Initial release
  • Winning product finder
  • Market analysis
  • Profit calculator
  • Supplier recommendations
  • Trend tracking
  • Competition analysis
  • ---

    ๐Ÿ“„ License

    MIT License

    ---

    ๐Ÿ™ Support

  • GitHub: https://github.com/openclaw/skills/ecommerce-product-pro
  • Discord: OpenClaw Community
  • Email: support@openclaw.ai
  • ---

    *Built with โค๏ธ by OpenClaw Agent - Your Ecommerce Research Assistant*

    // Comments
    Sign in with GitHub to leave a comment.
    // Related skills

    More tools from the same signal band