Borrowing it
Nothing to install: this file belongs to ptonlix/beeweave. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/ptonlix/beeweave/main/.skills/workbench/beeweave-article-publisher/SKILL.mdgit clone --depth 1 https://github.com/ptonlix/beeweaveWrote 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/ptonlix/beeweave/beeweave-article-publisher)<a href="https://agentmods.dev/skills/ptonlix/beeweave/beeweave-article-publisher"><img src="https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-article-publisher/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/ptonlix/beeweave/beeweave-article-publisher"><img src="https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-article-publisher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00167 | $0.01958 |
| Opus 5 | $0.00084 | $0.00979 |
| Sonnet 5 | $0.00033 | $0.00392 |
| Haiku 4.5 | $0.00017 | $0.00196 |
Grade A, and why
beeweave-article-publisher 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 10d 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 — 175 lines — stays where its author put it; the contents beside it link to each section on GitHub.
BeeWeave 文章发布
这个 skill 负责把一篇已经完成的创作草稿变成已发布作品,并把高信号版本内化到 wiki。
发布不是重写文章。除非用户明确要求修改正文,只做四件事:
- 定位唯一的草稿文件
- 移动到
articles/published/并更新 frontmatter 状态 - 更新对应写作 trace 的发布元数据
- 用已发布文件作为 source 触发
beeweave-ingestskill 流程
配置解析
如果用户请求里包含 @<name>,只从 ~/.beeweave/config.<name> 读取配置。否则只从 ~/.beeweave/config 读取配置。
必须读取:
BEEWEAVE_WORKBENCH_PATHBEEWEAVE_VAULT_PATH
如果配置文件不存在,或缺少任一必需变量,先向用户说明无法找到完整 BeeWeave profile,然后停止。不要猜测路径,不要从当前目录向上查找 workbench,也不要直接写入 vault。
@<name> 是路由指令,不是文章标题或搜索词。解析配置后,从用户实际发布请求中移除它。
草稿定位
只在以下目录内找草稿:
$BEEWEAVE_WORKBENCH_PATH/articles/drafts/
用户可以用三种方式指定文章:
- 精确路径,例如
workbench/articles/drafts/2026-07-08-article-agent-workflow.md - 文件名或 slug,例如
agent-workflow - frontmatter
title或一级标题
定位规则:
- 如果用户给了路径,展开并校验它必须位于 drafts 目录内。
- 如果用户给了文件名或 slug,只匹配 drafts 目录下的 Markdown 文件。
- 如果 slug 没有唯一命中,再读取候选文件的 frontmatter
title和一级标题匹配。 - 如果没有命中或有多个候选,列出候选并请用户明确选择。不要发布多个文件,除非用户明确要求批量发布。
发布动作
目标目录固定为:
$BEEWEAVE_WORKBENCH_PATH/articles/published/
发布时:
- 创建
articles/published/目录,如果它不存在。 - 保留原文件名移动到 published 目录。
- 如果目标文件已存在,不覆盖,在文件名末尾追加
-v2、-v3。 - 更新 Markdown frontmatter:
status: published published: YYYY-MM-DDTHH:MM:SS±HH:MM updated: YYYY-MM-DDTHH:MM:SS±HH:MM - 如果没有 frontmatter,添加最小 frontmatter:
--- title: "<从一级标题或文件名推导>" type: article status: published published: YYYY-MM-DDTHH:MM:SS±HH:MM updated: YYYY-MM-DDTHH:MM:SS±HH:MM tags: - writing ---
published 和 updated 必须使用当前本地时区的 ISO-8601 秒级时间戳,例如 2026-07-08T17:05:42+08:00。发布已有草稿时保留原 created;如果原 created 只有日期,不要在发布流程中猜测补秒,除非用户明确要求归一化旧稿。
保留正文、质检报告、已有 created、type、format、tags、sources 等字段。不要把 draft 目录中的其它文件一起移动,不要使用通配符或递归移动。
Trace 发布元数据
发布成功后,尝试更新对应写作 trace。trace 位于:
$BEEWEAVE_WORKBENCH_PATH/writing/traces/
匹配规则:
- 优先查找
trace.json中draft_path等于原草稿路径的 trace。 - 如果未命中,再查找
output_paths或revision_events[].draft_path中包含原草稿路径的 trace。 - 如果仍未命中,不创建新的基础 trace,不阻断发布和 wiki ingest,在最终回复中说明“未找到对应写作 trace”。
- 如果命中多个 trace,选择
updated_at或created_at最新的一个,并在最终回复中说明选择依据。
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.
- 10d ago First seen · 175 lines · 167 tokens per session scan A d507c0636cce
beeweave-article-publisher is a skill published in the GitHub repository ptonlix/beeweave (6 stars, last pushed 1mo ago), licensed MIT. It adds 167 tokens to every session and 1,958 once invoked, about $0.0008 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-08-31.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
insight-error-page
Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…
next-cache-components-optimizer
Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…
next-partial-prefetching-adoption
Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…