beeweave: Skill for Claude Code

.skills/workbench/beeweave-writing-style-initializer/SKILL.md

beeweave-writing-style-initializer is a skill for Claude Code, Codex from ptonlix/beeweave. It costs 82 tokens per session (992 once invoked), scanned A, original, MIT.

A setup skill that creates the folders and eight template files used to store BeeWeave writing-style information. It prepares the workspace but does not study articles or write style rules.

In plain words
What is it for?
For initializing a BeeWeave writing-style library before using tools that learn, apply, or evolve writing rules.
Why use it?
It removes the manual work of creating the required writing-style file structure and prevents setup from being confused with style analysis.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is ptonlix/beeweave's own configuration. It tells Claude Code and Codex how to work on beeweave itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything beeweave configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/ptonlix/beeweave/main/.skills/workbench/beeweave-writing-style-initializer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/ptonlix/beeweave

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for beeweave-writing-style-initializer

README.md
[![agentmods](https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-writing-style-initializer/github.svg)](https://agentmods.dev/skills/ptonlix/beeweave/beeweave-writing-style-initializer)
Your own site
<a href="https://agentmods.dev/skills/ptonlix/beeweave/beeweave-writing-style-initializer"><img src="https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-writing-style-initializer/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.

agentmods 80×15 button for beeweave-writing-style-initializer

Your own site · 80×15
<a href="https://agentmods.dev/skills/ptonlix/beeweave/beeweave-writing-style-initializer"><img src="https://agentmods.dev/badge/skills/ptonlix/beeweave/beeweave-writing-style-initializer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 992 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.00992
Opus 5 $0.00041 $0.00496
Sonnet 5 $0.00016 $0.00198
Haiku 4.5 $0.00008 $0.00099

Measured 9d ago against content hash ee9ed820b1f5, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

beeweave-writing-style-initializer 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.

.skills/workbench/beeweave-writing-style-initializer/SKILL.md · 119 lines

How it starts

The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.

BeeWeave 写作风格初始化器

这个 skill 只做写作风格资产初始化。它是文件系统建模任务,不是内容学习任务。

职责边界

本 skill 负责:

  • 定位 BeeWeave Workbench。
  • 创建 writing/style/writing/traces/writing/eval/ 目录。
  • 创建缺失的 8 个固定风格资产文件。
  • 从本 skill 的 references/ 逐个复制模板内容。
  • 检查初始化是否完整。

本 skill 不负责:

  • 阅读历史文章并总结风格。
  • 从 trace、diff、反馈中提炼规则。
  • 写入 pending_rules.md 的学习候选。
  • 激活或拒绝规则。
  • 修改 writer SKILL.md
  • 发布文章或触发 wiki ingest。

这些任务分别交给 beeweave-writing-style-learnerbeeweave-writing-skill-evolverbeeweave-article-publisher

工作区定位

如果用户请求里包含 @<name>,只从 ~/.beeweave/config.<name> 读取 BEEWEAVE_WORKBENCH_PATH。否则只从 ~/.beeweave/config 读取 BEEWEAVE_WORKBENCH_PATH

如果配置文件不存在、没有配置 BEEWEAVE_WORKBENCH_PATH,或 Workbench 无法访问,先向用户说明无法找到 BeeWeave workbench,不要猜测其它路径。

初始化目标

必须确保这些目录存在:

$BEEWEAVE_WORKBENCH_PATH/writing/
├── style/
├── traces/
└── eval/

必须确保 style/ 下存在 8 个固定文件:

$BEEWEAVE_WORKBENCH_PATH/writing/style/
├── author_profile.md
├── active_style_rules.md
├── anti_patterns.md
├── article_examples.md
├── social_examples.md
├── pending_rules.md
├── rejected_rules.md
└── evolution_log.md

这 8 个文件是唯一的初始化完成标准。不要创建 author-writing-style.mdwriting-style.mdstyle-summary.md 或其它汇总文件来替代它们。

模板来源

逐个读取本 skill 的模板文件:

  • references/author_profile.md
  • references/active_style_rules.md
  • references/anti_patterns.md
  • references/article_examples.md
  • references/social_examples.md
  • references/pending_rules.md
  • references/rejected_rules.md
  • references/evolution_log.md

只创建 Workbench 中缺失的文件。已有文件不能覆盖,也不要合并重写。

执行流程

  1. 定位 Workbench。
  2. 创建 writing/style/writing/traces/writing/eval/,如果它们不存在。
  3. 检查 8 个固定文件。
  4. 对每个缺失文件,读取同名 reference 模板并写入 Workbench。
  5. 如果存在非固定 legacy 文件,例如 author-writing-style.md,不要删除;只在最终回复里说明它不是 canonical 文件,可后续交给 learner 作为参考材料迁移。
  6. 再次检查 8 个固定文件是否全部存在。
  7. 输出初始化清单。

完成输出

最终回复必须列出 8 个固定文件的状态:

初始化完成:

- author_profile.md: created | exists | failed
- active_style_rules.md: created | exists | failed
- anti_patterns.md: created | exists | failed
- article_examples.md: created | exists | failed
- social_examples.md: created | exists | failed
- pending_rules.md: created | exists | failed
- rejected_rules.md: created | exists | failed
- evolution_log.md: created | exists | failed

Read the full file on GitHub · 119 lines

Changes

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.

  1. 9d ago First seen · 119 lines · 82 tokens per session scan A ee9ed820b1f5

Subscribe to this mod's changes

beeweave-writing-style-initializer is a skill published in the GitHub repository ptonlix/beeweave (6 stars, last pushed 1mo ago), licensed MIT. It adds 82 tokens to every session and 992 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

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…

microsoft/ai-agents-for-beginners · 200 tokens

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…

vercel/next.js · 95 tokens

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…

vercel/next.js · 83 tokens

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…

vercel/next.js · 170 tokens

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…

vercel/next.js · 103 tokens