cindy
Cindy is an open-source AI agent that runs locally on your machine, integrates multiple AI harnesses and models, and provides memory, skills, and automation to perform real work in your projects and apps.
无需 API Key 或外部服务即可提供结构化、全面的 Listing 诊断,且设计为可直接作为 Claude Code 等 AI Coding Agent 的 Skill 使用。
根据亚马逊7月27日正式上线的标题新规,基于 CDQ / A9 / COSMO / Alexa 四大底座的亚马逊 Listing 全身体检 + 打分 Skill
想了解更多最新AI行业动态,AI+电商/广告的行业实践方法,人与AI如何协作共生的思考,请关注公众号:【新西楼.AI】
CDQ 质量分 · A9 收录 · COSMO 意图覆盖 · Alexa 可发现性 · 合规体检 · 标题词组分诊
Created By Buluu@新西楼
Amazon Listing Doctor 是一款 Agent 原生 的亚马逊 Listing 质检 Skill,适配 Claude Code、OpenCode 等主流 AI Coding Agent。基于四大知识底座(CDQ / A9 / COSMO / Alexa for Shopping)对任意 Listing 做全身体检 + 打分,输出多维度健康报告。零依赖、零 API Key,纯标准库 Python,clone 下来就能跑。
只诊断不改写 —— 告诉你"哪里有问题、该改什么",改写由你自己决定。
兼容性:基于命令行调用,任何能执行 shell 的 Agent 都能用 —— Claude Code(作为 Skill 加载)/ OpenCode / Cursor / Windsurf / 直接终端。
一条命令,给你的 Listing 出一份多维度体检报告:
| 维度 | 底座 | 回答的问题 |
|---|---|---|
| CDQ 质量分(主总分) | 亚马逊内部 6 维 ASIN 质量评分 | 我的内容质量能打几分? |
| A9 收录健康度 | A9 搜索收录逻辑 | 我的 Listing 能不能被搜到? |
| COSMO 意图覆盖度 | 亚马逊常识知识图谱(WWW 2024) | 我的 Listing 对不对得上用户意图? |
| Alexa 可发现性 | Alexa for Shopping(AI 购物助手) | AI 购物助手能理解并推荐我吗? |
| 合规体检 | 2026-07-27 新规 | 我有没有违规? |
| 标题词组分诊 | 词性 + 合规信号 | 标题里每个词该留 / 该挪 / 该删? |
# 1. 把你的 listing 归一化成 JSON(见下方 schema),存为 listing.json
# 2. 跑全量体检
python scripts/compliance_report.py --file listing.json > report.json
# 3.(或单独跑某一维)
python scripts/cdq_score.py --file listing.json # CDQ 质量分
python scripts/cosmo_check.py --file listing.json # COSMO 意图覆盖
python scripts/indexability.py --file listing.json # A9 收录
python scripts/title_triage.py --file listing.json # 标题词组分诊
输出是结构化 JSON;按 assets/report-template.md 渲染成人类可读报告。
{
"market": "US", "language": "en", "mode": "strict_75", "category": "Electronics",
"brand": "Anker", "is_parent": false, "is_variation": true,
"title": "...", "item_highlights": "...",
"bullets": [{"header": "...", "body": "..."}],
"description": "...", "backend_search_terms": "...",
"attributes_filled": ["brand", "color"],
"has_a_plus": true
}
字段不全也没关系——缺的字段对应检查自动跳过,不会报错。详见 SKILL.md。
亚马逊 Listing 质检+打分 Skill | Amazon listing health-check & scoring (CDQ/A9/COSMO/Alexa)
根据分类、Topic 和编程语言匹配的相似项目。
Cindy is an open-source AI agent that runs locally on your machine, integrates multiple AI harnesses and models, and provides memory, skills, and automation to perform real work in your projects and apps.
OpenClaude is an open-source CLI coding agent that runs on any platform and supports a wide range of LLM providers, offering the same tools and workflows as Claude Code.

A collection of notes on building coding agents, derived from the production development of the desktop agent Reina, with each mechanism simplified into a zero-dependency, single-file Node.js demo.