TopRank Skills

Home / Claw Skills / Document / shipstation-orders
Official OpenClaw rules 54%

shipstation-orders

Monitor ShipStation orders, detect issues, and send alerts. For e-commerce businesses using ShipStation for order fulfillment across multiple platforms (Amazon, Etsy, Shopify, TikTok, etc.).

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 shipstation-orders 技能。 若已安装,则直接安装 shipstation-orders 技能。

Overview

Skill Key
cprice70/shipstation-orders
Author
cprice70
Source Repo
openclaw/skills
Version
-
Source Path
skills/cprice70/shipstation-orders
Latest Commit SHA
803933551d269d686bfdfac41b858eacfa7267b1

Extracted Content

SKILL.md excerpt

# ShipStation Order Monitor

Monitor ShipStation for new orders and issues. Perfect for e-commerce businesses using ShipStation to aggregate orders from multiple marketplaces.

## Features

- ✅ New order notifications
- ⚠️ Alert for orders stuck in processing (>48h)
- 🛑 Flag orders on hold
- 🚚 Immediate alert for expedited/2-day/priority orders
- 📊 Daily summary reports
- 🔄 Automatic state tracking (avoids duplicate alerts)

## Requirements

- ShipStation account with API access
- Node.js (included with OpenClaw)

## Setup

### 1. Get ShipStation API Credentials

1. Log into ShipStation
2. Go to **Settings** → **Account** → **API Settings**
3. Use **Legacy API** (V1) - generate API Key + API Secret

### 2. Configure Credentials

Create `.env` file in your workspace:

```bash
SHIPSTATION_API_KEY=your_api_key_here
SHIPSTATION_API_SECRET=your_api_secret_here
```

### 3. Test the Monitor

```bash
node check-orders.js
```

Output shows:
- Total orders in last 24h
- New orders detected
- Any alerts

Exit codes:
- `0` - Success, no alerts
- `1` - Success, alerts found
- `2` - Error (API failure, bad credentials)

### 4. Set Up Heartbeat Monitoring (Optional)

Add to your agent's `HEARTBEAT.md`:

```markdown
## Check Orders

Every 15 minutes:

1. Run: `node check-orders.js`
2. Parse results
3. If new orders or alerts → notify via sessions_send
4. If nothing → HEARTBEAT_OK
```

Or use a cron job for scheduled checks.

## Usage

### Manual Check

```bash
node check-orders.js
```

### In Agent Heartbeat

```javascript
const { exec } = require('child_process');

exec('node check-orders.js', (error, stdout, stderr) => {
  const results = JSON.parse(stdout);
  
  if (results.newOrdersList.length > 0) {
    // Notify about new orders
  }
  
  if (results.alerts.length > 0) {
    // Notify about issues
  }
});
```

## Alert Conditions

**New Orders:**
- Any order in `awaiting_shipment` or `awaiting_payment` status

**Issues Flagged:**
- Orders awaiting shipment > 48 hours
- Or...

README excerpt

# ShipStation Order Monitor

OpenClaw skill for monitoring ShipStation orders and detecting issues.

## Quick Start

```bash
# 1. Copy .env.example to .env and add your credentials
cp .env.example .env

# 2. Edit .env with your ShipStation API key + secret

# 3. Test it
node check-orders.js
```

See [SKILL.md](SKILL.md) for full documentation.

## What It Does

- Monitors orders from all your connected marketplaces (Amazon, Etsy, Shopify, TikTok, etc.)
- Alerts you about new orders
- Flags orders stuck in processing (>48h)
- Detects orders on hold
- Alerts on expedited / second-day / priority orders
- Tracks state to avoid duplicate notifications

## Scripts

- `check-orders.js` → order intake + issue detection
- `check-shipping.js` → expedited shipping alert detection

## Install via ClawHub

```bash
clawhub install shipstation-orders
```

## License

MIT

Related Claw Skills

0xnyk

xint

★ 49

X Intelligence CLI — search, monitor, analyze, and engage on X/Twitter. TypeScript + Bun. AI agent skill.

heyixuan2

bambu-studio-ai

★ 41

Bambu Lab 3D printer control and automation. Activate when user mentions: printer status, 3D printing, slice, analyze model, generate 3D, AMS filament, print monitor, Bambu Lab, or any 3D printing task. Full pipeline: search → generate → analyze → colorize → preview → open BS → user slice → print → monitor. Supports all 9 Bambu Lab printers (A1 Mini, A1, P1S, P2S, X1C, X1E, H2C, H2S, H2D).

jackculpan

flightclaw

★ 32

Track flight prices from Google Flights with this OpenClaw skill. Search routes, monitor prices, and get alerts when prices drop.

openclaw-trade

openclaw-trading-assistant

★ 24

openclaw trading assistant| openclaw trading skill | nof1.ai & openclaw [moltbot] collaboration | We get the best practices from alpha arena trading seasons and bring it to clawdbot All top AI agents, realtime monitoring and news research, gather info from private insiders and many other! Using Hyperliquid API.

xquik-dev

x-twitter-scraper

★ 16

X (Twitter) automation skill for AI coding agents. Tweet search, user lookup, follower/following extraction, media download, reply/retweet/quote extraction, 40+ tools, account monitoring & trending topics. REST API, MCP server, HMAC webhooks. Works with Claude Code, Cursor, Codex, Copilot, Windsurf & 40+ agents.

mohsinkhadim59

Openclaw-Setup

★ 8

Step-by-step guides for installing and running OpenClaw, an open-source AI agent, on Mac, Linux VPS, and AWS covering setup, security, messaging channels, Google integration, skills, and monitoring.