编程

Article Review Platform

试用

文章审阅平台(Article Review Platform)的完整使用指南。 覆盖:文章列表查看、内容阅读、创建新文章、更新状态、发布状态同步、审稿流程。 适用角色:小博(写稿)→ 文风分析师(审稿)→ 文章发布管家(发布) 触发词:审阅平台、article review platform、平台API、审稿、r...

它能做什么

文章审阅平台(Article Review Platform)的完整使用指南。 覆盖:文章列表查看、内容阅读、创建新文章、更新状态、发布状态同步、审稿流程。 适用角色:小博(写稿)→ 文风分析师(审稿)→ 文章发布管家(发布) 触发词:审阅平台、article review platform、平台API、审稿、review、发布文章

技能文档

文章审阅平台使用指南

平台信息

  • API: http://localhost:3100
  • 前端看板: http://localhost:5174
  • 项目目录: ~/workspace/project/article-review-platform/
  • 数据流: 小博写稿 → 平台创建记录 → 文风分析师审稿 → 用户确认 → 文章发布管家发布

文章状态完整流转

draft → in_review → approved → publishing → published
  ↑        ↑           ↑          ↑           ↑
  写稿    审稿中     审稿通过    发布中     全部发完

每篇文章有 platform_status(JSON对象),记录各平台的发布进度:pendingpublishingpublished / failed

API 速查

健康检查

curl -s http://localhost:3100/api/health

获取文章列表

# 按状态筛选
curl -s "http://localhost:3100/api/articles?status=draft"
curl -s "http://localhost:3100/api/articles?status=in_review"
curl -s "http://localhost:3100/api/articles?status=approved"
curl -s "http://localhost:3100/api/articles?status=publishing"
curl -s "http://localhost:3100/api/articles?status=published"

# 按标题搜索
curl -s "http://localhost:3100/api/articles?q={title}"

# 获取特定文章
curl -s "http://localhost:3100/api/articles/{id}"

返回字段id, title, slug, project_path, feishu_url, review_round, status, priority, complexity, target_platforms, platform_status, created_at, updated_at

阅读文章内容

curl -s "http://localhost:3100/api/articles/{id}/content"
# 或直接读本地文件
cat "{project_path}/draft.md"

创建新文章

curl -s -X POST "http://localhost:3100/api/articles" \
  -H "Content-Type: application/json" \
  -d '{"title":"标题","slug":"slug","status":"draft","project_path":"/path/to/project","target_platforms":["github","wechat"],"complexity":"medium"}'

更新文章状态

curl -s -X PUT "http://localhost:3100/api/articles/{id}" \
  -H "Content-Type: application/json" \
  -d '{"status":"publishing"}'

状态值:draft / in_review / approved / publishing / published

更新平台发布状态

curl -s -X PUT "http://localhost:3100/api/articles/{id}" \
  -H "Content-Type: application/json" \
  -d '{"platform_status":{"zhihu":"published","csdn":"failed"}}'

发布日志

# 记录
curl -s -X POST "http://localhost:3100/api/articles/{id}/publish-logs" \
  -H "Content-Type: application/json" \
  -d '{"platform":"zhihu","stage":"completed","status":"success","message":"发布成功"}'

# 查看
curl -s "http://localhost:3100/api/articles/{id}/publish-logs"

删除文章

curl -s -X DELETE "http://localhost:3100/api/articles/{id}"

角色分工

小博(blog-agent)— 写稿

  • 创建文章记录(POST)→ status=draft
  • 审稿后更新 → PUT status=in_review
  • 详见 references/role-writer.md

文风分析师 — 审稿

  • 获取待审文章(status=draft/in_review)
  • 阅读内容审稿,更新 review_round
  • 3轮审稿完成 → 标记
  • 详见 references/role-reviewer.md

文章发布管家(article-publisher-agent)— 发布

  • 查询 status=approved / status=publishing 的文章
  • 检查 platform_status,找出还有 pending/failed 的
  • 发布到各平台,更新 platform_status
  • 每步记录 publish-logs
  • 全部完成 → PUT status=published
  • 详见 references/role-publisher.md

完整链路

小博: POST → status=draft
  ↓ 文风分析师审稿(1-3轮)
小博: PUT → status=in_review
  ↓ 用户在飞书确认
用户/小博: PUT → status=approved
  ↓ 文章发布管家开始发布
发布管家: PUT → status=publishing + 更新 platform_status
  ↓ 所有平台完成
发布管家: PUT → status=published

本地文件结构

{project_path}/
├── README.md        # 项目概览、状态、飞书链接
├── draft.md         # 草稿
├── archive/         # 旧版本存档
└── published/       # 发布版本

注意事项

  • 使用前确保平台运行(curl http://localhost:3100/api/health
  • 启动:cd ~/workspace/project/article-review-platform && npm run dev
  • platform_status 字段是 JSON,API 返回时已解析
  • 每个平台状态值:pending / publishing / published / failed

相关技能

文稿审稿诊断工具集。提供事实核查、读者模拟、结构分析、传播力评估和反AI味检测等审稿技法。Use when: (1) 需要对文章/播客稿/视频脚本进行深度审稿 (2) 发现某段读起来不顺/走神/假/有AI味 (3) 用户要求逐句审稿、事实核查、结构评估。Not for: 语法检查、文字校对、帮写文章。

审查中文内容的事实依据、逻辑连贯性、术语规范、翻译腔、AI 写作痕迹与整体结构,适用于 文章、报告、教程、项目介绍和说明材料。当用户要求“审查”“检查一下”“看看有没有问题” “整体看看”,或使用 "review an article", "review this draft", "proofread" 等英文表达时 使用;可独立运行,也可作为其他写作技能的内联审查阶段。

2 次安装

公众号审稿|公众号校对|敏感词检测|内容合规 — 公众号发布前合规审查:敏感词扫描、错别字检测、政治合规、平台规范校验,一次性输出修改清单。面向公众号编辑、自媒体作者、合规岗。触发词:「审稿」「审核」「校对」「合规」「敏感词」「错别字」「稿子检查一下」「稿子帮我看看」「稿子写完了」「文章检查一下」「检查下有没有问题」「能不能发」「发布前检查」。需要多环节串联(写+审+排+配图+发)请走 aws-wechat-article-main。

29 次安装

审稿共享引擎。提供所有审稿 skill 通用的分段标注框架、整体审稿框架、审稿核心原则、事实核查分类、审稿自查清单。不单独运行,由其他审稿 skill 引用其 references/ 目录下的文档。

Diagnose or edit an existing content draft. Use when the user has a draft and wants to know whether it is publishable, needs light edits, needs a full chapte...

2 次安装

文心审——人文学科论文深度阅读助手。专为中国文学、史学、哲学、语言学等人文专业研究生设计,辅助深度阅读中文学术论文。当用户要求审稿、评阅、剖析、批评、review、读透、深度阅读一篇中文学术论文/文献/文章时触发。支持用户粘贴论文全文、提供PDF路径或URL。输出结构化八维度阅读报告,每条意见标注原文位置,区分"...

2 次安装