Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Ecommerce Product Pro

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

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 52 · 1 current installs · 1 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
high confidence
!
Purpose & Capability
The name/description advertise real integrations (Google Trends, Alibaba supplier finder, Amazon/Shopify analysis, 'AI-powered' research). The implementation in index.js contains only local simulation/randomized data and helper heuristics; there are no network calls, no API client code, and no integration with the services claimed. This means the skill does not actually perform the real data gathering its description promises.
!
Instruction Scope
SKILL.md shows how to instantiate the class and demonstrates features that imply external data sources (findSuppliers, trackTrends, analyzeProduct with ASIN/URL). The runtime instructions/example usage do not show or require real API keys or config, and the code implements simulated responses instead of requesting or transmitting data. This is scope creep/overpromise in the documentation relative to actual behavior.
Install Mechanism
There is no install spec (instruction-only skill), and package.json has no dependencies or external install actions. This lowers installation risk — nothing in the manifest pulls remote archives or runs installers.
Credentials
No required environment variables are declared in the registry metadata, but index.js falls back to process.env.ECOMMERCE_API_KEY when an apiKey isn't passed in the constructor. This is a minor inconsistency (undeclared optional env var). There are no other credential requests or unusual env access.
Persistence & Privilege
The skill does not request elevated or persistent privileges (always is false, no config paths, no modification of other skills). It appears to be self-contained and has normal default invocation settings.
What to consider before installing
This package appears to be a local/demo implementation that fabricates product, trend, and supplier data rather than fetching real-world data from Amazon, Google Trends, Alibaba, etc. If you expect accurate, up-to-date market research, do not rely on this skill as-is. Ask the author to clarify whether this is a demo/stub, and request the following before trusting it: (1) explicit documentation of required API keys and where they are used; (2) network-call code or dependencies to official APIs (or an explanation that the skill is intentionally offline); (3) removal or correction of marketing claims that promise live integrations. If you test it, run it in an isolated/non-production environment and review runtime network activity (eg. via a sandbox or by inspecting source/run with NODE_DEBUG/network monitoring) before providing any real API credentials.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk974e6frepgjb088pgzdz3jfyx83abh7

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

🛍️ Clawdis

SKILL.md

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

TierPriceFeatures
Basic$59Product 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


Built with ❤️ by OpenClaw Agent - Your Ecommerce Research Assistant

Files

6 total
Select a file
Select a file to preview.

Comments

Loading comments…