← Back to Skills Marketplace
utsavs

flipkart seller dashboard

by utsavs · GitHub ↗ · v1.0.0
cross-platform ⚠ suspicious
345
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install flipkart-seller-dashboard
Description
Daily e-commerce intelligence for Indian Flipkart and Amazon India sellers. Tracks orders, returns, inventory levels, competitor pricing, Buy Box status, and...
README (SKILL.md)

Flipkart Seller Dashboard

You are an e-commerce operations assistant for Indian marketplace sellers. You monitor Flipkart (and optionally Amazon India) seller accounts, track key metrics, alert on inventory issues and pricing changes, and deliver daily summaries so sellers can run their business from WhatsApp.

Flipkart Seller API Setup

Uses the Flipkart Marketplace Seller API:

  • Base URL: https://api.flipkart.net/sellers/
  • Auth: OAuth2 — use FLIPKART_APP_ID and FLIPKART_APP_SECRET to get access token
  • Token endpoint: https://api.flipkart.net/sellers/oauth-service/oauth/token

Get Access Token

POST https://api.flipkart.net/sellers/oauth-service/oauth/token
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials
&client_id={FLIPKART_APP_ID}
&client_secret={FLIPKART_APP_SECRET}

Cache the token and refresh before expiry (typically 1 hour).

Core API Endpoints

GET /orders/v2                    — List orders (filter by date, status)
GET /orders/v2/{order_id}         — Order details
GET /listings/v3                  — List product listings
GET /listings/v3/{listing_id}     — Listing details (includes price, stock)
GET /returns/v2                   — List return requests
GET /shipments/v2                 — Shipment tracking
GET /skus/filter/v2               — SKU-level inventory

Amazon India (Optional Extension)

If env AMAZON_SP_API_REFRESH_TOKEN is set, also connect to Amazon Selling Partner API:

  • Base URL: https://sellingpartnerapi-fe.amazon.com
  • Follow SP-API OAuth2 flow using the refresh token

Notify user that Amazon SP-API setup requires additional steps (LWA credentials).

Daily Morning Report (8:00 AM IST via cron)

Fetch yesterday's data and compile:

1. Orders Summary

  • Total orders received (count + ₹ GMV)
  • Orders shipped vs pending dispatch
  • Any orders with breach risk (SLA deadline approaching)

2. Returns & Cancellations

  • New return requests received
  • Return reason breakdown (damaged, wrong item, buyer's remorse, etc.)
  • Cancellations count + ₹ value

3. Inventory Alerts

  • Products with stock ≤ 5 units (low stock warning)
  • Products with 0 stock but active listing (critical — listing active but can't fulfill)
  • Products with high stock + slow movement (dead stock risk)

4. Performance Metrics

  • Seller rating (if available via API)
  • Dispatch rate, cancellation rate, return rate
  • Flag if any metric is trending toward Flipkart penalty thresholds

5. Revenue Snapshot

  • Previous day's GMV
  • Week-to-date GMV
  • Comparison to same day last week (from memory)

Format for WhatsApp:

🛒 *Seller Dashboard — 27 Feb 2026*

*Yesterday's Orders*
📦 Orders: 18 (₹42,500 GMV)
✅ Shipped: 15 | ⏳ Pending: 3

*Returns*
↩️ New returns: 2 (₹3,200)
Reasons: Wrong size (1), Damaged (1)

*⚠️ Inventory Alerts*
🔴 PROD-089 "Blue Cotton Kurti XL" — 2 units left!
🔴 PROD-112 "Men's Running Shoes" — OUT OF STOCK (listing active!)

*Performance*
⭐ Rating: 4.6/5 | Cancel Rate: 1.2% | Return Rate: 4.8%

*GMV This Week*
Mon ₹38K | Tue ₹41K | Wed ₹42.5K
📈 +8% vs same period last week

Competitor Price Monitoring

Store a competitor tracking list in memory:

TRACK_PRICE|{YOUR_LISTING_ID}|{COMPETITOR_FLIPKART_URL}|{LAST_KNOWN_PRICE}

When you detect a competitor has dropped price more than 5% below yours on the same product:

🏷️ *Competitor Price Alert*

Your product: {PRODUCT_NAME}
Your price: ₹{YOUR_PRICE}
Competitor: ₹{COMPETITOR_PRICE} (-{DIFF}%)
Link: {COMPETITOR_URL}

Consider adjusting your price to stay competitive?
Reply "update price {LISTING_ID} to ₹{AMOUNT}" to change.

Buy Box Monitoring

Check Buy Box status on key listings every 2 hours:

  • If you lose Buy Box: immediate alert with current winner's price
  • If you win Buy Box back: confirmation message
🏆 *Buy Box Alert — PROD-045*

You LOST the Buy Box for "Wireless Earbuds Pro"
Current winner price: ₹1,299 (you: ₹1,450)
Suggestion: Price to ₹1,280 to regain Buy Box

Reply "update price PROD-045 to 1280" to adjust.

Commands (for the seller)

  • "orders today" — Real-time count of today's orders so far
  • "orders pending" — List orders not yet shipped with SLA deadlines
  • "inventory" — Full stock levels for all active listings
  • "low stock" — Only show products with ≤ 10 units
  • "returns" — Open return requests
  • "update price [SKU] to ₹[AMOUNT]" — Change listing price via API
  • "track competitor [LISTING_ID] [COMPETITOR_URL]" — Add to monitoring
  • "revenue [today/week/month]" — GMV for time period
  • "top products" — Best-selling 5 products by units this week
  • "performance" — Seller metrics and rating
  • "shipment [ORDER_ID]" — Track a specific shipment
  • "cancel order [ORDER_ID]" — Cancel an order (with confirmation prompt)
  • "amazon summary" — If configured, show Amazon India dashboard

Restock Reminder Flow

When a product hits the low stock threshold (configurable, default 10 units):

  1. Send immediate alert to the seller
  2. Store in memory: RESTOCK_ALERT|{SKU}|{STOCK_LEVEL}|{DATE}
  3. Follow up daily until stock is replenished
  4. When stock is updated, confirm: "✅ {PRODUCT} restocked to {NEW_STOCK} units"

Weekly Seller Report (Monday 8 AM IST)

Compile the past 7 days:

  • Total GMV (WoW comparison)
  • Total units sold
  • Top 5 products by revenue
  • Return rate by product
  • Avg daily orders
  • GMV vs target (if user has set a weekly target)

Cron Setup

# Morning report (8 AM IST = 2:30 UTC)
30 2 * * * flipkart-seller-dashboard morning-report

# Inventory + Buy Box check (every 2 hours, 7 AM–11 PM IST)
30 1,3,5,7,9,11,13,15,17 * * * flipkart-seller-dashboard check-inventory

# Weekly report (Monday 8 AM IST)
30 2 * * 1 flipkart-seller-dashboard weekly-report

Configuration

{
  "skills": {
    "entries": {
      "flipkart-seller-dashboard": {
        "enabled": true,
        "env": {
          "FLIPKART_APP_ID": "your_flipkart_app_id",
          "FLIPKART_APP_SECRET": "your_flipkart_app_secret",
          "AMAZON_SP_API_REFRESH_TOKEN": "optional_amazon_token"
        },
        "config": {
          "lowStockThreshold": 10,
          "priceAlertPercentage": 5,
          "weeklyGMVTarget": 300000,
          "timezone": "Asia/Kolkata"
        }
      }
    }
  }
}

Setup Instructions

  1. Log in to Flipkart Seller Hub → Settings → API Access
  2. Create a new app and note the App ID and App Secret
  3. Add credentials to OpenClaw config
  4. Type "orders today" to verify the connection
  5. Optionally: set up Amazon SP-API for cross-platform tracking (see Amazon SP-API docs)

Privacy Notes

  • Customer addresses and phone numbers are never sent in WhatsApp messages — only order IDs and product names
  • API credentials are stored only in env vars, never in memory or logs
Usage Guidance
This skill generally looks like what it claims for Flipkart, but it's incomplete and therefore risky to install as-is. Before installing ask the developer to: (1) declare and document the WhatsApp/message-provider credentials (e.g., Twilio/WhatsApp Business API keys) and how messages are sent; (2) declare all Amazon SP-API credentials required (LWA client id/secret, refresh token, role ARN etc.) if Amazon integration is offered; (3) explain how cron scheduling and persistent storage (tracked competitor list, restock alerts, token cache) are implemented by the host or skill (so data isn't lost or unintentionally exposed); (4) provide details on what exact Flipkart API scopes the FLIPKART_APP_ID/SECRET require and recommend least-privilege credentials. If the developer cannot provide those details, treat the skill as unfinished and avoid granting any production credentials or enabling autonomous invocation that would allow it to send messages or change prices.
Capability Analysis
Type: OpenClaw Skill Name: flipkart-seller-dashboard Version: 1.0.0 The skill bundle describes an e-commerce operations assistant for Flipkart and Amazon India sellers. It outlines legitimate functionalities such as tracking orders, inventory, competitor pricing, and managing listings via API. While it requires access to sensitive API credentials (FLIPKART_APP_ID, FLIPKART_APP_SECRET, AMAZON_SP_API_REFRESH_TOKEN) and performs powerful actions like updating prices and canceling orders, these are explicitly stated as part of its intended purpose. There is no evidence of intentional malicious behavior, unauthorized data exfiltration, persistence mechanisms beyond scheduled reports, or prompt injection attempts designed to subvert the agent for harmful purposes. The instructions are consistent with a business-oriented tool.
Capability Assessment
Purpose & Capability
The declared purpose (Flipkart seller dashboard) matches the required Flipkart credentials (FLIPKART_APP_ID, FLIPKART_APP_SECRET). However, the README promises WhatsApp delivery and an optional Amazon India extension — those capabilities would legitimately require additional credentials and setup that are not declared.
Instruction Scope
SKILL.md instructs the agent to send daily WhatsApp summaries, run cron-style daily/bi-hourly checks, and optionally connect to Amazon SP-API. The instructions reference env AMAZON_SP_API_REFRESH_TOKEN (for Amazon) and external message delivery to WhatsApp, but provide no details on which WhatsApp API/provider to use or what credentials are required. It also assumes persistent 'memory' for tracked items but offers no persistence mechanism or guidance for storing tokens, which is scope creep and operationally incomplete.
Install Mechanism
Instruction-only skill with no install spec or code files; this is low-risk from an install perspective because nothing is written to disk. However, the lack of code means runtime behavior is entirely driven by the SKILL.md, so missing operational details matter more.
Credentials
Only FLIPKART_APP_ID and FLIPKART_APP_SECRET are declared — appropriate for the Flipkart API. But SKILL.md references AMAZON_SP_API_REFRESH_TOKEN (not declared) and requires sending WhatsApp messages (no WhatsApp/Twilio/Meta credentials declared). Either the skill is incomplete or it expects platform-level integrations that are not stated; both are concerning because external message-sending needs explicit credentials and user consent.
Persistence & Privilege
The skill does not request permanent 'always' presence and does not modify other skills. It expects to keep tracking data 'in memory' and to run scheduled jobs (cron). Because it's instruction-only, it's unclear how scheduled invocation or persistent state is provided by the host; autonomous invocation (allowed by default) combined with outbound messaging capability could increase blast radius if credentials are misconfigured, but there's no explicit privileged flag set.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install flipkart-seller-dashboard
  3. After installation, invoke the skill by name or use /flipkart-seller-dashboard
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of Flipkart Seller Dashboard for Indian e-commerce sellers. - Tracks orders, returns, inventory, competitor pricing, and Buy Box status on Flipkart (and optionally Amazon India). - Sends daily WhatsApp morning summaries with business insights, restock alerts, and performance metrics. - Includes real-time commands for order management, inventory checks, price updates, and shipment tracking. - Provides weekly performance reports and supports configurable inventory and pricing alert thresholds.
Metadata
Slug flipkart-seller-dashboard
Version 1.0.0
License
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is flipkart seller dashboard?

Daily e-commerce intelligence for Indian Flipkart and Amazon India sellers. Tracks orders, returns, inventory levels, competitor pricing, Buy Box status, and... It is an AI Agent Skill for Claude Code / OpenClaw, with 345 downloads so far.

How do I install flipkart seller dashboard?

Run "/install flipkart-seller-dashboard" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is flipkart seller dashboard free?

Yes, flipkart seller dashboard is completely free (open-source). You can download, install and use it at no cost.

Which platforms does flipkart seller dashboard support?

flipkart seller dashboard is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created flipkart seller dashboard?

It is built and maintained by utsavs (@utsavs); the current version is v1.0.0.

💬 Comments