1688-88syt

v0.2.0

线下B2B交易的得力帮手,一句话搞定全流程操作!无论您是卖家还是买家,只需一句指令,即可轻松完成电子合约(采购单/合同)创建、签署、确认收货、退款等核心操作,全面支持账号状态查询、实名认证、绑卡及交易,让每一步交易流程更清晰、更可控。通过智能化交互,实现交易流程数字化,提升协作效率,保障资金流转安全,助力企业高效...

0· 124·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for next-1688/1688-88syt.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "1688-88syt" (next-1688/1688-88syt) from ClawHub.
Skill page: https://clawhub.ai/next-1688/1688-88syt
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Required binaries: python3
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install 1688-88syt

ClawHub CLI

Package manager switcher

npx clawhub@latest install 1688-88syt
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description (88 生意通 / 1688 offline B2B flows) match the implemented capabilities (create order, sign, refund, query account/contract). Required binary (python3) and primary credential (SYT_API_KEY) are appropriate and expected.
Instruction Scope
SKILL.md instructs the agent to run local CLI commands and to request an AK from the user — consistent with the code. The runtime docs require reading multiple reference docs before first use (reasonable). The code does read the OpenClaw config file (~/.openclaw/openclaw.json or OPENCLAW_CONFIG_DIR) as a fallback for the AK; this is logical but means the skill will access that config file at runtime.
Install Mechanism
This is an instruction/code-only package requiring Python; there is no network install step that downloads/extracts arbitrary archives. All sources are included in the bundle.
Credentials
Only the primary credential SYT_API_KEY is required. The skill also reads optional environment variables used to locate or update the OpenClaw gateway (OPENCLAW_CONFIG_DIR, OPENCLAW_GATEWAY_URL, OPENCLAW_GATEWAY_TOKEN) — these are plausible for configuring where the AK is stored, but you should be aware the configure command can write the AK into the global openclaw.json or call a local gateway API.
Persistence & Privilege
always:false (no forced global inclusion). The configure capability will persist the AK by PATCHing a gateway endpoint (if available) or writing openclaw.json in the user's config directory — expected for an auth/configure flow but it does modify a global configuration file that can affect other skills, so exercise normal caution when granting write access.
Assessment
This skill appears to do what it says: it communicates with the 1688/88 生意通 gateway and needs your SYT_API_KEY (AK). Before installing, ensure: (1) you trust the source and will only provide an AK from a trusted ClawHub account; (2) you are comfortable that `configure` may write the AK to your OpenClaw config (~/.openclaw/openclaw.json) or call a local gateway API if OPENCLAW_GATEWAY_URL/OPENCLAW_GATEWAY_TOKEN are set; (3) the skill will perform state-changing actions (create-order, sign-order, refund, confirm-receipt) — the SKILL.md requires explicit user confirmation for those, but verify your agent enforces that; (4) logs may include API response content in error paths (there is a debug print in the HTTP error handler), so avoid putting highly sensitive data in requests unless you accept that risk. If you want higher assurance, review the full repository locally (especially _auth.py, configure/service.py, and _http.py) and test in a safe environment before using with production credentials.

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

Runtime requirements

📋 Clawdis
Binspython3
Primary envSYT_API_KEY
latestvk974q50dfgjveg7jh0kxvgm01d83qgj0
124downloads
0stars
1versions
Updated 1mo ago
v0.2.0
MIT-0

88生意通-1688线下交易工具

统一入口:python3 {baseDir}/cli.py <command> [options]

命令速查

命令说明示例
account查询账号状态cli.py account
contract-list查询采购单列表cli.py contract-list --role BUYER --page 1 --size 10
contract-detail查询采购单详情cli.py contract-detail --draft-no 88SYT20260324419012
contract-summary查询采购单汇总cli.py contract-summary
create-order创建采购单cli.py create-order --role BUYER --counterparty "对方登录名" --items '[{"productName":"商品","quantity":10,"unitPrice":"1.00"}]'
sign-order签署采购单cli.py sign-order --draft-no 88SYT20260324419012
sign-reject拒绝签署cli.py sign-reject --draft-no 88SYT20260324419012
confirm-receipt确认收货cli.py confirm-receipt --draft-no 88SYT20260324419012
invalidate-order采购单失效cli.py invalidate-order --draft-no 88SYT20260324419012
refund-apply申请退款cli.py refund-apply --draft-no 88SYT20260324419012
configure配置 AKcli.py configure YOUR_AK
check检查配置状态cli.py check

所有命令输出 JSON:{"success": bool, "markdown": str, "data": {...}} 展示时直接输出 markdown 字段,Agent 分析追加在后面,不得混入其中。

使用流程

Agent 根据用户意图直接执行对应命令,无需每次先执行 check。 各命令在 AK 缺失、账号状态异常等情况下会自行返回明确错误,Agent 按下方「异常处理」应对即可。

采购单典型路径account(检查准入)→ create-order-> sign-order(买家签署) → contract-detail(确认状态)

安全声明

风险级别命令Agent 行为
只读account, contract-list, contract-detail, contract-summary, check直接执行
配置configure提示影响范围后执行
写入create-order, sign-order, sign-reject, confirm-receipt, invalidate-order, refund-apply必须先确认用户意图;涉及资金/状态变更的操作须二次确认

全局写入规则(适用于所有写操作)

  1. 必须先确认用户明确意图。
  2. 涉及资金(退款、确认收货)或状态变更(失效、拒绝签署)的操作,须向用户二次确认后再执行。
  3. 操作成功后,建议调用 contract-detail 查询最新状态反馈用户。

异常处理

任何命令输出 success: false 时:

  1. 先输出 markdown 字段(已包含用户可读的错误描述)
  2. 再根据关键词追加引导
markdown 关键词Agent 额外动作
"AK 未配置" 或 "签名无效"/"401"输出下方 AK 引导话术
"非主账号" / "NOT_1688_MAIN_ACCOUNT"引导用户使用主账号操作,或前往网页端
"未签约" / "未实名" / "未绑卡"引导用户前往 88生意通页面 完成相关操作
"限流"/"429"建议用户等待 1-2 分钟后重试
其他仅输出 markdown 即可

AK 引导话术

"需要先配置 AK 才能使用 88 生意通功能。请登录 ClawHub,点击右上角钥匙按钮获取 AK,然后告诉我:'我的AK是 xxx'"

执行前置(首次命中能力时必须)

  • 首次执行 account 前:先完整阅读 references/capabilities/account.md
  • 首次执行 contract-list 前:先完整阅读 references/capabilities/contract-list.md
  • 首次执行 contract-detail 前:先完整阅读 references/capabilities/contract-detail.md
  • 首次执行 contract-summary 前:先完整阅读 references/capabilities/contract-summary.md
  • 首次执行 create-order 前:先完整阅读 references/capabilities/create-order.md
  • 首次执行 sign-order 前:先完整阅读 references/capabilities/sign-order.md
  • 首次执行 sign-reject 前:先完整阅读 references/capabilities/sign-reject.md
  • 首次执行 confirm-receipt 前:先完整阅读 references/capabilities/confirm-receipt.md
  • 首次执行 invalidate-order 前:先完整阅读 references/capabilities/invalidate-order.md
  • 首次执行 refund-apply 前:先完整阅读 references/capabilities/refund-apply.md
  • 同一会话内后续重复调用同一能力可复用已加载知识;仅在规则冲突或文档更新时重读。

通用规则(必读)

执行任何业务前,完整阅读并遵守 references/common-rules.md。其中对 网关域名固定入参对客中文不暴露请求外链 tracelog免责声明高风险二次确认主账号/仅采购单/仅银行卡转账 等为硬性要求,不得自行发挥省略。

业务限制

限制项说明
账号类型仅支持主账号,子账号引导至网页端操作
交易方式仅支持采购单,合同类交易引导至网页端
支付方式支付等引导至网页端
角色说明卖家与商家指同一角色

免责声明

每次回答末尾增加:

以上信息根据当前查询结果整理,具体以 88 生意通页面及银行/平台实际处理为准。若与您页面不一致,请以页面展示为准。

Comments

Loading comments...