AI студия Владимира Ломтева
УСЛУГИПРОЕКТЫСТАТЬИБАЗА ЗНАНИЙМаркетплейсПолезные сервисы

Оставьте заявку,
чтобы обсудить проект

Напишите ваш вопрос, не забудьте указать телефон. Мы перезвоним и все расскажем.

Контакты

Москва

Работаем по всей России
и миру (онлайн)

+7 (999) 760-24-41

Ежедневно с 9:00 до 21:00

lamooof@gmail.com

По вопросам сотрудничества

TelegramWhatsApp

Есть предложение?

Напишите нам в мессенджеры

© 2025 AI студия Владимира Ломтева

Политика конфиденциальностиСогласие на обработку ПДн|ИНН 623412173261
    Ozon: динамика товара — Скилл для ИИ-агентов | AI Рассвет
    Маркетплейс/Скилл/Ozon: динамика товара
    Скилл

    Ozon: динамика товара

    MPSTATS Ozon Russia single SKU daily time series performance. Returns daily sales units, price, stock, rating, and optionally search position/visibility data for one Ozon product by date granularit...

    Скиллы для маркетинга#GitHub#Ozon#nexscope-ai/nexscope-ecommerce-skills
    Скачивания
    0
    В избранном
    0
    Комментарии
    0
    Просмотры
    2

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add nexscope-ai/nexscope-ecommerce-skills --skill ecommerce-ozon-product-trend
    Скачать ZIP
    Версия
    1.0.0+7fb4686e62c4
    Автор
    Владимир Ломтев
    Исходный код

    Как установить

    1. 1Скопируйте команду из блока установки.
    2. 2Запустите её в терминале из каталога проекта.

    Документация

    MPSTATS Ozon Product Trend (Daily Time-Series)

    This skill returns a daily time-series of a single Ozon (Russia) SKU — sales units, price, stock, rating, and optionally search-position / visibility metrics. It is the go-to for validating growth, seasonality, or anomalies for a specific product.

    Core Concepts

    Single-SKU scope: Each call analyzes exactly one productId. For batch per-SKU snapshots (period aggregates), use ecommerce-ozon-product-detail instead.

    Daily granularity: The response is an array of daily points (top-level field data) across the [startDate, endDate] window. Each point carries a hasData boolean — if hasData=false, the day has no observation (distinct from sales=0 with hasData=true).

    T-1 delay: MPSTATS trend data is delayed by one day; the latest selectable end date is yesterday. Today or future dates are rejected.

    Search-visibility add-on: Set includeSearchStats: true to append search-position / visibility signals. Some niches (especially small categories) may not have search-stats coverage — expect partial or empty fields in those cases.

    Parameters

    Parameter Type Required Description
    productId integer yes Ozon SKU (numeric)
    startDate string no Window start, YYYY-MM-DD; latest = yesterday
    endDate string no Window end, YYYY-MM-DD; latest = yesterday
    includeFbs boolean no Include FBS data alongside FBO
    includeSearchStats boolean no Attach search position / visibility signals

    Calling the Tool

    • API Endpoint: /mpstats/ozon/productTrend (full parameters/responses/error codes in references/api.md)
    • Python Script: python scripts/ozon_product_trend.py '<JSON params>' [--inline]
    • Cost constraint: This tool consumes credits. Within the same session and same parameter combination, it defaults to a single call with a 24-hour local cache. Do not automatically retry with different keywords, pagination, or parameters on failure/empty results. Inform the user of additional credit consumption before continuing retrieval.

    Output strategy (script default behavior):

    • Always write the full response to <cwd>/nexscope/<YYYY-MM-DD>/<session>/data/ecommerce-ozon-product-trend-<timestamp>.json (<cwd> is the working directory when the script executes, which in Claude Code is the current project directory; <session> is taken from the SESSION_ID environment variable, automatically grouped by user task; do not write to /tmp; error if the current directory is not writable)
    • Response body <= 8 KB: write to disk then print full JSON to stdout
    • Response body > 8 KB: write to disk then print only a summary to stdout (top-level fields, common counts like total/costToken, length of the largest list field + first 3 samples)
    • Add --inline to force full output to stdout (still writes to disk)

    Reading data: Check the summary first to determine if it is sufficient. When specific fields are needed, use jq or ConvertFrom-Json to extract from the saved JSON file as needed, avoiding loading the entire JSON into context.

    Authentication & Credits

    If you encounter authentication or credit issues:

    Error conditions

    • API Key not configured: The NEXSCOPE_API_KEY environment variable is not set.
    • HTTP 401 or 402 status code
    • Insufficient credits/balance: Response message indicates credit balance exhausted, quota exceeded, subscription expired, or recharge required.

    Resolution steps

    1. Set the NEXSCOPE_API_KEY environment variable with a valid API key.
    2. If credits are insufficient, visit https://www.nexscope.ai/pricing?co-from=skillNS to top up your balance.
    3. For onboarding and setup guidance, refer to https://www.nexscope.ai/help/skills-external-access?co-from=skillNS

    Usage Examples

    1. Monthly trend for a SKU

    {
      "productId": 1786874757,
      "startDate": "2025-03-01",
      "endDate": "2025-03-31"
    }
    

    2. Trend with search visibility

    {
      "productId": 1786874757,
      "startDate": "2025-02-01",
      "endDate": "2025-02-28",
      "includeSearchStats": true
    }
    

    3. Combined FBO+FBS trend

    {
      "productId": 151623766,
      "startDate": "2025-01-01",
      "endDate": "2025-01-31",
      "includeFbs": true
    }
    

    How to Chain with Other Ozon Skills

    1. Discovery → trend: Use ecommerce-ozon-product-search to find a SKU, then check growth / volatility here before committing.
    2. Aggregate vs time-series: ecommerce-ozon-product-detail gives a one-number-per-metric period view; this skill shows the day-by-day shape behind those numbers.
    3. Drill-down → trend: After brand-products / category-products / seller-products surfaces a hot SKU, use this skill to validate whether the hotness is recent, seasonal, or sustained.

    Display Rules

    1. Prefer a simple table or sparkline-friendly output — one row per date with date, price, sales, balance, rating, comments; do not overfit a 90-point series into a single paragraph.
    2. Use hasData to distinguish gaps from zero sales — hasData=false means the day has no observation; don't report it as a zero-sale day.
    3. Call out anomalies — large single-day spikes or stockouts (balance=0 runs where hasData=true) should be flagged factually, not as buying advice.
    4. Currency is RUB unless upstream layer is already converting (the currency field per point carries the symbol, e.g. ₽); state the currency when showing price movement.
    5. Revenue is not returned per day — if the user asks for daily revenue, estimate via sales * price and note it's an estimate.
    6. includeSearchStats gaps — when no search-visibility fields come back, note "search position data is not available for this niche" rather than silently omitting.
    7. No business advice — present the shape; leave "should we buy this listing?" to the user.

    Important Limitations

    • Single SKU per call — cannot pass a list of productIds; loop at the Agent layer if needed.
    • T-1 data — endDate cannot be today or a future date.
    • Search stats optional — includeSearchStats=true doesn't guarantee coverage for all niches.
    • Ozon-only — Wildberries and other Russian marketplaces are not covered.
    • Missing days — the series may have nulls / gaps where no data was captured; do not treat nulls as zero sales.

    User Expression & Scenario Quick Reference

    Applicable — Single-SKU temporal analysis:

    User Says Scenario
    "What's the sales trend of Ozon SKU 1786874757 last month" Monthly time-series
    "Is this Ozon listing seasonal or stable" Seasonality check
    "Did this Ozon product have stockouts recently" Stock anomaly detection
    "Price walk for this Ozon product over Q1" Price movement
    "Did this listing's search position improve" Search visibility (requires includeSearchStats)

    Not applicable — Needs beyond single-SKU time-series:

    • Batch snapshot of many SKUs → ecommerce-ozon-product-detail
    • Brand / category / seller drill-down → matching *-products skill
    • Pre-IDed discovery → ecommerce-ozon-product-search

    Boundary judgment: Use this skill when the question starts with "how did this ONE product change over time". For multi-SKU comparisons or dimension-level filtering, go elsewhere.

    Требования и возможности

    Источник пакета
    https://github.com/nexscope-ai/nexscope-ecommerce-skills/tree/7fb4686e62c427df9e805651a0fb5e1891950055/ecommerce-ozon-product-trend

    Файлы версии

    ПутьРазмерSHA256
    SKILL.md8191d216f4524869d75c...
    manifest.json281b20d2ada72c2a4e5...
    references/api.md4293854bb75843abe1cc...
    scripts/ozon_product_trend.py6701ee7f578b716c162d...

    Частые вопросы

    Как установить Ozon: динамика товара?
    Используйте команду npx skills add nexscope-ai/nexscope-ecommerce-skills --skill ecommerce-ozon-product-trend или скачайте ZIP-архив.
    Можно ли скачать Ozon: динамика товара бесплатно?
    Да, опубликованную версию можно скачать из маркетплейса бесплатно.

    Похожие инструменты

    Смотреть все
    RendercvCreate professional CVs and resumes with perfect typography using RenderCV (v2.8). Users write content in YAML, and RenderCV produces publication-quality PDFs via Typst typesetting. Full control over every visual detail: colors, fonts, margins, spacing, section title styles, entry layouts, and more. 6 built-in themes with unlimited customization. Any language supported (22 built-in, or define your own). Outputs PDF, PNG, HTML, and Markdown. Use when the user wants to create, edit, customize, or render a CV or resume.Nextjs SeoNext.js App Router SEO optimization and auditing. Use when implementing or fixing SEO in a Next.js app — metadata and generateMetadata, viewport/themeColor, Open Graph and og/twitter images (file conventions + ImageResponse), web app manifest, favicons/icons, sitemap.xml, robots.txt, canonical URLs, hreflang/i18n alternates, JSON-LD structured data and rich results, Core Web Vitals (LCP/INP/CLS), AI search/GEO and AI crawler rules (GPTBot, OAI-SearchBot), or diagnosing Google indexing problems (Search Console, "Discovered/Crawled - currently not indexed"). Also use to run an SEO audit checklisSvg AnimationsCreate beautiful, performant SVG animations and illustrations. Use this skill when the user asks to create SVG graphics, icons, illustrations, animated logos, path animations, morphing shapes, loading spinners, or any animated SVG content. Covers SMIL animations, CSS-driven SVG animation, path drawing effects, shape morphing, motion paths, gradients, masks, and filters.Critical Thinking Logical ReasoningCritically analyse the reasoning in written content (articles, blogs, transcripts, reports), not code. Use only when explicitly asked to critically analyse or critique an argument.
    Комментарии

    Войдите, чтобы оставить комментарий.

    Комментариев пока нет.

    Установить скилл

    Добавьте инструмент одной командой или скачайте проверенный архив версии.

    npx skills add nexscope-ai/nexscope-ecommerce-skills --skill ecommerce-ozon-product-trend
    Скачать ZIP
    Версия
    1.0.0+7fb4686e62c4
    Автор
    Владимир Ломтев
    Исходный код