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 Bwkyd/wps-skills --skill wps-poetrygit clone --depth 1 https://github.com/Bwkyd/wps-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/bwkyd/wps-skills/wps-poetry)<a href="https://agentmods.dev/skills/bwkyd/wps-skills/wps-poetry"><img src="https://agentmods.dev/badge/skills/bwkyd/wps-skills/wps-poetry/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/bwkyd/wps-skills/wps-poetry"><img src="https://agentmods.dev/badge/skills/bwkyd/wps-skills/wps-poetry.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.00102 | $0.01876 |
| Opus 5 | $0.00051 | $0.00938 |
| Sonnet 5 | $0.00020 | $0.00375 |
| Haiku 4.5 | $0.00010 | $0.00188 |
Grade A, and why
wps-poetry 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 12d 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 — 210 lines — stays where its author put it; the contents beside it link to each section on GitHub.
诗词排版工具
诗词 → 精美排版 → 可打印/装裱级别的文档。
小众但有趣:让诗词以最美的姿态呈现。
When to Use
- 古诗词精美排版打印
- 对联排版
- 教学材料中的诗词展示
- 文化活动用诗词海报底稿
- 用户说"帮我排版这首诗""做个对联"
When NOT to Use
- 普通文档排版 → 使用
wps-docx-writer - 公文 → 使用
wps-gongwen
排版样式
[1] 经典横排 → 居中、留白、印章装饰
[2] 竖排古风 → 从右到左、竖排文字
[3] 对联格式 → 上联+下联+横批
[4] 现代诗 → 左对齐、错落有致
[5] 书法练字 → 田字格/米字格
工作流程
Step 1: 确认诗词内容和排版需求
- 诗词全文(含标题、作者)
- 排版样式
- 用途(打印/展示/教学)
Step 2: 生成排版
from docx import Document
from docx.shared import Pt, Cm, Inches, RGBColor, Emu
from docx.enum.text import WD_ALIGN_PARAGRAPH
from docx.oxml.ns import qn
import os
def create_poetry_doc(title, author, lines, style='经典横排',
output_path=None):
"""生成诗词排版文档"""
doc = Document()
section = doc.sections[0]
def set_font(run, name='华文行楷', size=18, bold=False, color=None):
run.font.size = Pt(size)
run.font.name = name
run._element.rPr.rFonts.set(qn('w:eastAsia'), name)
run.bold = bold
if color:
run.font.color.rgb = RGBColor(*color)
if style == '经典横排':
section.page_width = Cm(21)
section.page_height = Cm(29.7)
section.top_margin = Cm(5)
section.bottom_margin = Cm(5)
section.left_margin = Cm(5)
section.right_margin = Cm(5)
# 大量留白后开始
for _ in range(4):
doc.add_paragraph()
# 标题
p = doc.add_paragraph()
p.alignment = WD_ALIGN_PARAGRAPH.CENTER
p.paragraph_format.space_after = Pt(24)
run = p.add_run(title)
set_font(run, '华文行楷', 28, color=(0x8B, 0x45, 0x13))
# 作者
p = doc.add_paragraph()
p.alignment = WD_ALIGN_PARAGRAPH.CENTER
p.paragraph_format.space_after = Pt(36)
run = p.add_run(f'【{author}】')
set_font(run, '楷体', 14, color=(0x80, 0x80, 0x80))
# 诗句
for line in lines:
p = doc.add_paragraph()
p.alignment = WD_ALIGN_PARAGRAPH.CENTER
p.paragraph_format.line_spacing = Pt(42)
run = p.add_run(line)
set_font(run, '华文行楷', 22, color=(0x33, 0x33, 0x33))
elif style == '对联格式':
section.page_width = Cm(29.7) # 横向
section.page_height = Cm(21)
section.top_margin = Cm(3)
section.left_margin = Cm(4)
section.right_margin = Cm(4)
# 横批
if len(lines) >= 3:
p = doc.add_paragraph()
p.alignment = WD_ALIGN_PARAGRAPH.CENTER
p.paragraph_format.space_after = Pt(48)
run = p.add_run(lines[2]) # 横批
set_font(run, '华文隶书', 36, True, color=(0xCC, 0x00, 0x00))
doc.add_paragraph()
# 上下联(使用表格模拟左右对称)
table = doc.add_table(rows=1, cols=3)
table.alignment = 1 # CENTER
if len(lines) >= 2:
# 上联(右)
cell = table.cell(0, 2)
p = cell.paragraphs[0]
p.alignment = WD_ALIGN_PARAGRAPH.CENTER
run = p.add_run(lines[0])
set_font(run, '华文行楷', 28, color=(0x8B, 0x00, 0x00))
# 下联(左)
cell = table.cell(0, 0)
p = cell.paragraphs[0]
p.alignment = WD_ALIGN_PARAGRAPH.CENTER
run = p.add_run(lines[1])
set_font(run, '华文行楷', 28, color=(0x8B, 0x00, 0x00))
elif style == '现代诗':
section.top_margin = Cm(4)
section.left_margin = Cm(6)
section.right_margin = Cm(4)
for _ in range(3):
doc.add_paragraph()
# 标题
p = doc.add_paragraph()
p.paragraph_format.space_after = Pt(18)
run = p.add_run(title)
set_font(run, '微软雅黑', 22, True, color=(0x2C, 0x3E, 0x50))
# 作者
p = doc.add_paragraph()
p.paragraph_format.space_after = Pt(30)
run = p.add_run(author)
set_font(run, '微软雅黑', 11, color=(0x99, 0x99, 0x99))
# 诗行
for line in lines:
if line.strip() == '':
doc.add_paragraph() # 空行
else:
p = doc.add_paragraph()
p.paragraph_format.line_spacing = Pt(32)
run = p.add_run(line)
set_font(run, '华文楷体', 14, color=(0x33, 0x33, 0x33))
if not output_path:
output_path = f'{title}_排版.docx'
doc.save(output_path)
return os.path.abspath(output_path)
What ships with it
1 file 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.
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.
- 12d ago First seen · 210 lines · 102 tokens per session scan A 6456b74a5994
wps-poetry is a skill published in the GitHub repository Bwkyd/wps-skills (8 stars, last pushed 4mo ago), licensed MIT. It adds 102 tokens to every session and 1,876 once invoked, about $0.0005 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
docx-template-translator
Adaptive conversion of LaTeX, PDF, or Markdown sources into a complete Word .docx that follows a user-supplied .docx template. Use when pandoc --reference-doc alone is not enough — for thesis, dissertation, report, or institutional Word formatting that needs cover pages, declarations, TOC, heading numbering, captions…
法律文件脱敏处理
A browser-based and Python tool for removing sensitive details from legal Word documents and restoring them later. It can replace information such as names, dates, prices, bank accounts and case numbers while preserving document formatting.
note-organizer
Use this skill whenever the user wants to organize course materials, lecture notes, PPT/PDF/DOCX files, textbooks, personal notes, senior-student notes, historical exams, review questions, standards, manuals, or scattered study resources into a structured Markdown note library. Use it even when the user only says…
exhibition-outline
A template for turning an exhibition plan into a three-page presentation outline. The pages cover the theme, its explanation and visitor story, and a detailed area-by-area display plan.
tender-analysis
A workflow for reviewing tender documents, which are formal project requests that describe requirements and bidding rules. It extracts project details, technical and business conditions, deadlines, scoring rules, risks, and questions for clarification.
docx
Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of 'Word doc', 'word document', '.docx', or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when…