NorthwoodsRhetoric

NorthwoodsRhetoric is a skill for Claude Code from NorthwoodsSentinel/northwoods-pack. It costs 107 tokens per session (687 once invoked), scanned A, original, Apache-2.0.

An output filter that changes AI responses before they are shown. It removes emoji-led headings, breaks up some long sentences, removes code blocks for chat, and reduces extra blank lines.

In plain words
What is it for?
Use it when responses need this specific Northwoods Pack formatting and the local transformation service is available.
Why use it?
It applies a consistent presentation style to responses without changing the intended vocabulary. It can make chat output easier to scan in the configured environment.

Skill for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: reads .claude/ paths.

Good fit Use it when responses need this specific Northwoods Pack formatting and the local transformation service is available.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/northwoodssentinel/northwoods-pack/northwoods-rhetoric
Install

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.

Any agent
npx skills add NorthwoodsSentinel/northwoods-pack --skill northwoods-rhetoric
Clone the repo
git clone --depth 1 https://github.com/NorthwoodsSentinel/northwoods-pack

Made for: Claude Code.

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 NorthwoodsRhetoric

README.md
[![agentmods](https://agentmods.dev/badge/skills/northwoodssentinel/northwoods-pack/northwoods-rhetoric/github.svg)](https://agentmods.dev/skills/northwoodssentinel/northwoods-pack/northwoods-rhetoric)
Your own site
<a href="https://agentmods.dev/skills/northwoodssentinel/northwoods-pack/northwoods-rhetoric"><img src="https://agentmods.dev/badge/skills/northwoodssentinel/northwoods-pack/northwoods-rhetoric/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 NorthwoodsRhetoric

Your own site · 80×15
<a href="https://agentmods.dev/skills/northwoodssentinel/northwoods-pack/northwoods-rhetoric"><img src="https://agentmods.dev/badge/skills/northwoodssentinel/northwoods-pack/northwoods-rhetoric.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 107 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 687 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00107 $0.00687
Opus 5 $0.00053 $0.00344
Sonnet 5 $0.00021 $0.00137
Haiku 4.5 $0.00011 $0.00069

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

Security

Grade A, and why

NorthwoodsRhetoric scanned grade A with 1 finding 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s -X POST http://localhost:31337/notify \
pai-skills/northwoods-rhetoric/SKILL.md · 74 lines

How it starts

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

Customization

Before executing, check for user customizations at: ~/.claude/PAI/USER/SKILLCUSTOMIZATIONS/NorthwoodsRhetoric/

If this directory exists, load and apply any PREFERENCES.md, configurations, or resources found there. These override default behavior. If the directory does not exist, proceed with skill defaults.

Voice Notification

curl -s -X POST http://localhost:31337/notify \
  -H "Content-Type: application/json" \
  -d '{"message": "Transforming response through rhetoric module"}' \
  > /dev/null 2>&1 &

NorthwoodsRhetoric — Output Transform

Calls the deployed Northwoods Pack Worker (one Worker, five modules) to transform a draft AI response before showing it to the user.

Workflow

  1. Read pack.url and auth.token from ~/.claude/PAI/USER/SKILLCUSTOMIZATIONS/NorthwoodsPack/CONFIG.md.
  2. POST the draft response text + context hint to {pack.url}/rhetoric/transform.
  3. If the Worker returns transformed text, use it as the final response.
  4. If the Worker is unreachable (network down, 5xx error), return the original draft and log a quiet warning.

Request

PACK_URL="<from CONFIG.md pack.url>"
TOKEN="<from CONFIG.md auth.token>"

curl -s -X POST "$PACK_URL/rhetoric/transform" \
  -H "Content-Type: application/json" \
  -H "X-Pack-Token: $TOKEN" \
  -d '{
    "text": "the draft response markdown",
    "context": "chat"
  }'

Response shape

{
  "text": "transformed response",
  "applied": ["strip-emoji-headers", "split-long-sentences", ...],
  "warnings": []
}

Use the text field as the final response. The applied and warnings arrays are diagnostic — surface only if a warning fires.

Context values

Value When
chat Conversational reply, Discord, Slack, casual back-and-forth
doc Long-form writing, blog posts, reports
code-explain Explaining code — preserves code blocks
reflection Inner-voice/mirror work — preserves formatting hierarchy

Read the full file on GitHub · 74 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. 12d ago First seen · 74 lines · 107 tokens per session scan A f45c6fe99357

Subscribe to this mod's changes

NorthwoodsRhetoric is a skill published in the GitHub repository NorthwoodsSentinel/northwoods-pack (2 stars, last pushed 12d ago), licensed Apache-2.0. It adds 107 tokens to every session and 687 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

hyperframes

Create video compositions, animations, title cards, overlays, captions, voiceovers, audio-reactive visuals, and scene transitions in HyperFrames HTML. Use when asked to build any HTML-based video content, add captions or subtitles synced to audio, generate text-to-speech narration, create audio-reactive animation…

CoWork-OS/CoWork-OS · 155 tokens

hyperframes-cli

HyperFrames CLI tool — hyperframes init, lint, preview, render, transcribe, tts, doctor, browser, info, upgrade, compositions, docs, benchmark. Use when scaffolding a project, linting or validating compositions, previewing in the studio, rendering to video, transcribing audio, generating TTS, or troubleshooting the…

CoWork-OS/CoWork-OS · 77 tokens

whatsapp

Send WhatsApp messages, list chats, and search history via wacli (local CLI backed by a synced store at /.wacli). Unpaired? Run the guided connect flow (scripts/guidedconnect.py) from chat — no terminal needed.

sonichi/sutando · 55 tokens

skill-usage-report

Engine half of the skill-usage telemetry loop (owner spec 2026-07-19: "show when the skill is last used, and how many times… recommend disable, or user would disable themself"). Cloud half: AU#93 (skillusage rollup + POST /api/skills/usage + last-used in the assignments GET).

sonichi/sutando · 0 tokens

subscription-scanner

Scans Gmail for active paid subscriptions and tracks them over time. Surfaces additions / cancellations between scans.

sonichi/sutando · 0 tokens

macos-tools

Native macOS integrations via AppleScript. No API keys needed — works on any Mac.

sonichi/sutando · 52 tokens