Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add linkfox-ai/linkfox-skills --skill linkfox-shopee-store-pushgit clone --depth 1 https://github.com/linkfox-ai/linkfox-skillsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/linkfox-ai/linkfox-skills/linkfox-shopee-store-push)<a href="https://agentmods.dev/skills/linkfox-ai/linkfox-skills/linkfox-shopee-store-push"><img src="https://agentmods.dev/badge/skills/linkfox-ai/linkfox-skills/linkfox-shopee-store-push/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/linkfox-ai/linkfox-skills/linkfox-shopee-store-push"><img src="https://agentmods.dev/badge/skills/linkfox-ai/linkfox-skills/linkfox-shopee-store-push.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00146 | $0.01325 |
| Opus 5 | $0.00073 | $0.00662 |
| Sonnet 5 | $0.00029 | $0.00265 |
| Haiku 4.5 | $0.00015 | $0.00133 |
Grade A, and why
linkfox-shopee-store-push scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Shopee Push 推送机制
Shopee Open Platform Push 模块(4 个 API)。依赖 linkfox-shopee-store-auth 作为同系列前置;经 POST /shopee/developerProxy 转发(path 须 api/v2/push/...)。
调用方式
- API 端点:
POST /shopee/developerProxy(不同操作通过请求体区分;完整参数/响应/错误码见references/api.md) - Python 脚本:
python scripts/<脚本名>.py '<JSON 参数>' [--inline](可用脚本见上文脚本一览) - 成本约束:本工具会消耗积分;失败/空结果不得自动换关键词、翻页或连续试探;需要继续检索时先向用户说明会产生额外消耗。
输出策略(脚本默认行为):
- 始终将完整响应写入
<cwd>/linkfox/<YYYY-MM-DD>/<session>/data/<skill-name>-<timestamp>.json(<cwd>为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;<session>取自环境变量SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错) - 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
- 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如
total/costToken、最大列表字段的长度 + 前 3 条样本) - 加
--inline强制全量打印到 stdout(同样落盘)
读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq或ConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
解决认证和积分问题
发生以下异常情况时,采用 references/onboarding.md 引导解决问题:
异常情况
- 未配置API Key:环境变量未配置
LINKFOX_AGENT_API_KEY,也未配置LINKFOXAGENT_API_KEY。 - 响应401或402状态码
- 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。
官方参考
Push 模块索引:v2.push.set_app_push_config
Prerequisites
- 运行
python scripts/check_auth_dependency.py;exit code 42 → 先安装linkfox-shopee-store-auth。 - OAuth / Partner 公共接口 →
linkfox-shopee-store-public。
可用脚本(4 个 API)
| 脚本 | API | Method |
|---|---|---|
set_app_push_config.py |
set_app_push_config | POST |
get_app_push_config.py |
get_app_push_config | GET |
get_lost_push_message.py |
get_lost_push_message | GET |
confirm_consumed_lost_push_message.py |
confirm_consumed_lost_push_message | POST |
push_api.py |
通用入口 | — |
接口说明(按 API)
入参与响应细节放在 references/apis/,SKILL 只保留索引。
| API | 说明文档 |
|---|---|
confirm_consumed_lost_push_message |
references/apis/confirm-consumed-lost-push-message.md |
get_app_push_config |
references/apis/get-app-push-config.md |
get_lost_push_message |
references/apis/get-lost-push-message.md |
set_app_push_config |
references/apis/set-app-push-config.md |
What ships with it
16 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- references/api.md 2.8 KB
- references/apis/confirm-consumed-lost-push-message.md 1.5 KB
- references/apis/get-app-push-config.md 1.4 KB
- references/apis/get-lost-push-message.md 1.4 KB
- references/apis/set-app-push-config.md 1.4 KB
- references/onboarding.md 2.0 KB
- scripts/_push_api_runner.py 4.2 KB runs code
- scripts/_push_endpoints.py 1.7 KB runs code
- scripts/_shopee_push_common.py 12 KB runs code
- scripts/check_auth_dependency.py 3.9 KB runs code
- scripts/confirm_consumed_lost_push_message.py 780 B runs code
- scripts/get_app_push_config.py 690 B runs code
- scripts/get_lost_push_message.py 702 B runs code
- scripts/onboarding.py 24 KB runs code
- scripts/push_api.py 987 B runs code
- scripts/set_app_push_config.py 690 B runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 91 lines · 146 tokens per session scan A a8300dc8b0c0
linkfox-shopee-store-push is a skill published in the GitHub repository linkfox-ai/linkfox-skills (101 stars, last pushed 22d ago), licensed MIT. It adds 146 tokens to every session and 1,325 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
convex-billing
Add Stripe billing/payments to the Convex app via @convex-dev/stripe (checkout + webhook + gating).
cloudbase-wechat-integration
A guide for connecting CloudBase applications to WeChat services, including payments, official accounts, and user identity.
commerce-app-business-config
Manage custom business configuration in an Adobe Commerce app. Use when the user wants to add, modify, or remove merchant-configurable settings (config fields, admin config, store configuration) exposed through Commerce Admin. Creates typed config fields (text, password, email, url, tel, boolean, list) in…
baselinker-webhooks
Receive BaseLinker (Base.com) webhooks. Use when building a BaseLinker order or warehouse callback receiver, because BaseLinker is not a normal webhook source: deliveries arrive as HTTP HEAD requests with NO body, the entire payload is in the query string (observed params: orderid, state), there is NO signature…
b2c-custom-job-steps
Create custom job steps for B2C Commerce batch processing. Use this skill whenever the user needs to write a batch job, data export script, scheduled cleanup task, or any server-side processing that runs on a schedule. Also use when they ask about steptypes.json, chunk-oriented vs task-oriented job steps…
b2c-business-manager-extensions
Build Business Manager extension cartridges with custom admin tools, menu items, and dialog actions. Use this skill whenever the user needs to create bm cartridges, add menu actions or dialog buttons in BM, configure bmextensions.xml, or extend admin pages with form overlays. Also use when customizing the BM interface…