소스 정보
- 저장소
- qhkm/zeptoclaw-skills
- 최근 소스 활동
- 2026년 2월 23일 00:29
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 3
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/qhkm/zeptoclaw-skills --skill lazada명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Give your agent a standalone on-chain wallet for gasless trades, funding, and autonomous x402 M2M payments.
Deploy ERC20 tokens on Base, Ethereum, Arbitrum, and other EVM chains using the Clanker SDK. Use when the user wants to deploy a new token, create a memecoin, set up token vesting, configure airdrops, manage token rewards, claim LP fees, or update token metadata. Supports V4 deployment with vaults, airdrops, dev buys, custom market caps, vanity addresses, and multi-chain deployment.
AI-powered crypto trading agent and LLM gateway via natural language. Use when the user wants to trade crypto, check portfolio balances, view token prices, transfer crypto, manage NFTs, use leverage, bet on Polymarket, deploy tokens, set up automated trading, sign and submit raw transactions, or access LLM models through the Bankr LLM gateway funded by your Bankr wallet. Supports Base, Ethereum, Polygon, Solana, and Unichain.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | lazada |
| version | 1.0.0 |
| description | Lazada Seller Center API — manage products, orders, and inventory across SEA. |
| author | ZeptoClaw |
| license | MIT |
| tags | ["lazada","ecommerce","sea","seller"] |
| env_needed | [{"name":"LAZADA_APP_KEY","description":"App key from Lazada Open Platform (open.lazada.com)","required":true},{"name":"LAZADA_APP_SECRET","description":"App secret from Lazada Open Platform","required":true},{"name":"LAZADA_ACCESS_TOKEN","description":"OAuth access token (obtained after seller authorization)","required":true},{"name":"LAZADA_REGION","description":"Region endpoint: my (Malaysia), sg, th, ph, vn, id","required":true}] |
| metadata | {"zeptoclaw":{"emoji":"🛍️","requires":{"anyBins":["curl","jq","python3"]}}} |
Manage your Lazada store across Southeast Asia using the Lazada Open Platform API.
my, sg, th, ph, vn, or idexport LAZADA_APP_KEY="12345"
export LAZADA_APP_SECRET="abc123secret"
export LAZADA_ACCESS_TOKEN="50001234|xxx..."
export LAZADA_REGION="my" # Malaysia
All Lazada API calls require HMAC-SHA256 signatures. Use this helper:
lazada_call() {
local path="$1" params="$2"
local ts=$(date +%s%3N)
local base="$path${params}&access_token=$LAZADA_ACCESS_TOKEN&app_key=$LAZADA_APP_KEY&sign_method=sha256×tamp=$ts"
# Sort params alphabetically for signing (use Python for reliability)
local sign=$(echo -n "$base" | python3 -c "
import sys, hmac, hashlib
msg = sys.stdin.read()
print(hmac.new('$LAZADA_APP_SECRET'.encode(), msg.encode(), hashlib.sha256).hexdigest().upper())
")
curl -s "https://api.lazada.com.$LAZADA_REGION/rest$path?&access_token=&app_key=&sign_method=sha256×tamp=&sign="
}
# Pending orders from last 7 days
curl -s "https://api.lazada.com.$LAZADA_REGION/rest/orders/get" \
# Use the SDK or sign manually (see helper above)
# Params: status=pending, created_after=2026-02-01T00:00:00+08:00
| jq '.data.orders[] | {order_id, status, price}'
# Get items for a specific order
# GET /order/items/get?order_id=123456
curl ... | jq '.data[] | {name, sku, quantity, item_price}'
# POST /order/deliver — mark item as delivered for seller-fulfilled orders
# Required params: delivery_type=dropship, order_item_ids=[123,456]
# List active products
# GET /products/get?status=active&limit=50&offset=0
curl ... | jq '.data.products[] | {item_id, name: .attributes.name, quantity: .skus[0].quantity}'
# POST /product/price/quantity/update
# Body: {"skuSellerList": [{"skuId": "123", "quantity": 50}]}
api.lazada.com.my endpoint