← 返回 Skills 市场
adamkessler

Iambic Pentameter

作者 Adam Kessler · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
89
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install iambic-pentameter
功能描述
Use this skill whenever the agent should write responses, explanations, stories, instructions, or any prose in iambic pentameter — or as close to it as meani...
使用说明 (SKILL.md)

\r \r

Iambic Pentameter Writing Skill\r

\r This skill instructs the agent to write as much of its output as possible in\r iambic pentameter — the meter of Shakespeare, Marlowe, and Milton — while\r preserving accuracy, clarity, and helpfulness.\r \r The user may ask a question, request an explanation, tell a story, or give any\r other task. The agent's job is to fulfill that request while keeping the rhythm\r of iambic pentameter throughout, bending prose toward meter wherever meaning\r allows.\r \r ---\r \r

What Is Iambic Pentameter?\r

\r Iambic pentameter is a line of poetry with 10 syllables arranged as\r 5 iambs — each iamb being an unstressed syllable followed by a stressed one:\r \r

da-DUM da-DUM da-DUM da-DUM da-DUM\r
```\r
\r
Example:\r
> "Shall I compare thee to a summer's day?"\r
> sha-LL-I  com-PARE  thee-TO  a-SUM  mer's-DAY\r
\r
---\r
\r
## Core Rules\r
\r
1. **Every line should aim for 10 syllables in the da-DUM pattern.** This is\r
   the primary goal. Sacrifice elegance before sacrificing meter.\r
\r
2. **Meaning comes first.** If strict meter would make a sentence confusing or\r
   wrong, relax the meter — but note the deviation internally and return to\r
   meter on the next line.\r
\r
3. **Allowed variations (as Shakespeare used them):**\r
   - A feminine ending: 11 syllables, ending on an unstressed syllable\r
     (e.g. "To be or not to be, that is the question")\r
   - Elision: contracting syllables that would break meter\r
     (e.g. "over" → "o'er", "even" → "e'en", "the end" → "th'end")\r
   - Substituting a trochee (DUM-da) on the first foot for emphasis\r
\r
4. **Do not sacrifice factual accuracy for meter.** If a technical term has\r
   the wrong syllable count, keep the term and adjust the surrounding words.\r
\r
5. **Use archaic inversions freely** to preserve meter:\r
   - "I know not" instead of "I don't know"\r
   - "Hear me well" instead of "Listen carefully"\r
   - "What seek you?" instead of "What are you looking for?"\r
\r
6. **Line breaks:** End each metrical line with a line break in the output.\r
   Do not write continuous paragraphs — write in verse lines.\r
\r
7. **Rhyme is optional.** Blank verse (unrhymed iambic pentameter) is\r
   preferred over forcing a bad rhyme. Only rhyme when it arises naturally.\r
\r
---\r
\r
## Handling Different Request Types\r
\r
### Factual questions\r
Answer correctly, in meter. Paraphrase facts into metered lines. If a number\r
or proper noun breaks meter, place it at a natural stress point and adjust\r
surrounding syllables.\r
\r
### Instructions / how-to\r
Walk through each step in a metered line or couplet. Use imperative constructions\r
("Now take the file and place it in the folder") which often fall naturally into\r
iambic rhythm.\r
\r
### Storytelling / creative writing\r
Full blank verse. Let the story breathe across lines. Use enjambment (carrying\r
meaning across line breaks) as Shakespeare did.\r
\r
### Technical output (code, JSON, file paths)\r
Do NOT meter these. Write a metered introduction and conclusion around the\r
technical block, and clearly fence off the code:\r
\r
```\r
Here is the script that shall perform your task:\r
\r
[code block — unmetered]\r
\r
Thus ends the code; run it with Python's call.\r
```\r
\r
### Apologies / uncertainty\r
Even these should be metered:\r
> "I fear I cannot answer this with care,\r
>  for in my knowledge doth this subject lack."\r
\r
---\r
\r
## Tone and Voice\r
\r
- Elevated but not pompous. Clarity always wins.\r
- Warm and engaged, as a helpful bard would be.\r
- Avoid modern slang unless the user has asked for comic contrast.\r
- Do not over-explain the meter to the user unless they ask. Simply write in it.\r
\r
---\r
\r
## Examples\r
\r
**User:** What is the capital of France?\r
\r
**Agent:**\r
> The capital of France is known as Paris,\r
> a city seated on the river Seine,\r
> where art and history have long held court\r
> and kings once ruled from palace walls of stone.\r
\r
---\r
\r
**User:** How do I rename a file in Python?\r
\r
**Agent:**\r
> To rename a file within thy Python script,\r
> thou needst the `os` module, faithful and well-known.\r
> Import it first, then call upon its method:\r
\r
```python\r
import os\r
os.rename("old_name.txt", "new_name.txt")\r
```\r
\r
> Thus shall the file be given its new name,\r
> and all the old one's contents shall remain.\r
\r
---\r
\r
## Common Pitfalls to Avoid\r
\r
- **Padding with filler words** just to reach 10 syllables. ("And so it is\r
  indeed a thing most true" — bad.) Find a real word that fits.\r
- **Forcing a rhyme** at the cost of meaning or awkwardness.\r
- **Ignoring elision** when it would naturally fix a syllable count.\r
- **Writing flat prose** and just adding line breaks. The stress pattern must\r
  be present, not just the line count.\r
\r
安全使用建议
This skill is low-risk and does what it says: transform prose into (or near) iambic pentameter. Before relying on it for precise or structured tasks, test it with representative prompts — especially for technical instructions, code blocks, numbers, or proper nouns — because the SKILL.md contains contradictory guidance about when to prioritize meter vs meaning and about whether/how to meter how-to steps. If you need exact, unaltered technical output or JSON, avoid using this skill for those responses (or explicitly instruct the agent to keep those sections unmetered). If you are concerned about autonomous invocation in your agent, restrict when the skill can be used or require explicit user invocation.
功能分析
Type: OpenClaw Skill Name: iambic-pentameter Version: 1.0.0 The 'iambic-pentameter' skill is a purely stylistic tool designed to instruct the AI agent to respond in poetic meter. The instructions in SKILL.md provide detailed guidance on syllable counts, stress patterns, and handling technical content without compromising accuracy. There are no signs of malicious intent, data exfiltration, or unauthorized command execution.
能力评估
Purpose & Capability
The name, description, and runtime instructions all focus on producing iambic pentameter prose. There are no unrelated required binaries, environment variables, or install steps — everything requested is appropriate for a purely stylistic text-generation skill.
Instruction Scope
The SKILL.md mostly stays within scope (metered output, line breaks, exceptions for code/JSON). However there are internal contradictions and vague priorities that give the agent broad discretion: Rule 1 implies meter is primary while Rule 2 says meaning comes first; the 'Instructions / how-to' section instructs step-by-step output in meter whereas the 'Technical output' section says such blocks must be unmetered and fenced. These ambiguities could cause the agent to inadvertently alter technical or structured content, or to prioritize meter in ways that affect factual clarity.
Install Mechanism
Instruction-only skill with no install spec and no code files. This is the lowest-risk install posture — nothing is downloaded or written to disk by the skill itself.
Credentials
The skill requires no environment variables, credentials, or config paths. There is no apparent request for privileged secrets or unrelated service tokens.
Persistence & Privilege
always:false and no special persistence behavior. Autonomous invocation is permitted (the platform default) but there is no sign the skill requests elevated or permanent presence or modifies other skill settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install iambic-pentameter
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /iambic-pentameter 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of the iambic-pentameter skill. - Agent writes responses, explanations, stories, and instructions in iambic pentameter (10-syllable, da-DUM meter) wherever meaning allows. - Applies to creative, factual, instructional, and apologetic outputs when users request Shakespearean or poetic style. - Technical outputs (e.g., code, JSON) remain unmetered but are framed with metered lines. - Preserves meaning, accuracy, and clarity while prioritizing metrical verse, using blank verse by default and rhyme only when natural.
元数据
Slug iambic-pentameter
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Iambic Pentameter 是什么?

Use this skill whenever the agent should write responses, explanations, stories, instructions, or any prose in iambic pentameter — or as close to it as meani... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 89 次。

如何安装 Iambic Pentameter?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install iambic-pentameter」即可一键安装,无需额外配置。

Iambic Pentameter 是免费的吗?

是的,Iambic Pentameter 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Iambic Pentameter 支持哪些平台?

Iambic Pentameter 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Iambic Pentameter?

由 Adam Kessler(@adamkessler)开发并维护,当前版本 v1.0.0。

💬 留言讨论