show-side-by-side

show-side-by-side is a skill for Claude Code, Codex from jimmc414/claude-code-plugin-marketplace. It costs 25 tokens per session (798 once invoked), scanned A, original, MIT.

A display pattern that prints two or more text outputs in parallel columns. It makes differences between versions, solutions, or results easier to see.

In plain words
What is it for?
Comparing before-and-after text, multiple solutions, debugging diffs, or outputs from parallel algorithms.
Why use it?
Reading separate outputs one after another can make small differences hard to spot. Side-by-side output keeps corresponding lines together.

Skill for Claude CodeCodex

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

Part of the norvig-patterns plugin — 54 skills shipped together

Good fit Comparing before-and-after text, multiple solutions, debugging diffs, or outputs from parallel algorithms.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jimmc414/claude-code-plugin-marketplace/show-side-by-side
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 jimmc414/claude-code-plugin-marketplace --skill show-side-by-side
Clone the repo
git clone --depth 1 https://github.com/jimmc414/claude-code-plugin-marketplace

Made for: Claude Code, Codex.

Or install norvig-patterns, the plugin that ships this one along with the rest of its 54 skills.

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 show-side-by-side

README.md
[![agentmods](https://agentmods.dev/badge/skills/jimmc414/claude-code-plugin-marketplace/show-side-by-side/github.svg)](https://agentmods.dev/skills/jimmc414/claude-code-plugin-marketplace/show-side-by-side)
Your own site
<a href="https://agentmods.dev/skills/jimmc414/claude-code-plugin-marketplace/show-side-by-side"><img src="https://agentmods.dev/badge/skills/jimmc414/claude-code-plugin-marketplace/show-side-by-side/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 show-side-by-side

Your own site · 80×15
<a href="https://agentmods.dev/skills/jimmc414/claude-code-plugin-marketplace/show-side-by-side"><img src="https://agentmods.dev/badge/skills/jimmc414/claude-code-plugin-marketplace/show-side-by-side.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 798 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.00025 $0.00798
Opus 5 $0.00013 $0.00399
Sonnet 5 $0.00005 $0.00160
Haiku 4.5 $0.00003 $0.00080

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

Security

Grade A, and why

show-side-by-side 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.

plugins/norvig-patterns/skills/show-side-by-side/SKILL.md · 101 lines

How it starts

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

show-side-by-side

When to Use

  • Comparing before and after states
  • Showing multiple solutions
  • Visual diff for debugging
  • Parallel algorithm outputs

When NOT to Use

  • Single output
  • Very wide outputs
  • Non-textual data

The Pattern

Print two or more outputs in parallel columns.

def side_by_side(left, right, width=40, labels=('Left', 'Right')):
    """Print two strings side by side."""
    left_lines = left.splitlines()
    right_lines = right.splitlines()

    # Header
    print(f"{labels[0]:<{width}} {labels[1]:<{width}}")
    print('-' * width + ' ' + '-' * width)

    # Content
    for l, r in zip_longest(left_lines, right_lines, fillvalue=''):
        print(f"{l:<{width}} {r:<{width}}")

Example (from pytudes)

# Sudoku.ipynb - puzzle vs solution
def print_side_by_side(left, right, width=20):
    """Print two strings side-by-side, line-by-line."""
    for L, R in zip(left.splitlines(), right.splitlines()):
        print(L.ljust(width), R.ljust(width))

# Usage
puzzle = '''
4 . . |. . . |8 . 5
. 3 . |. . . |. . .
. . . |7 . . |. . .
------+------+------
. 2 . |. . . |. 6 .
. . . |. 8 . |4 . .
. . . |. 1 . |. . .
------+------+------
. . . |6 . 3 |. 7 .
5 . . |2 . . |. . .
1 . 4 |. . . |. . .
'''

solution = '''
4 1 7 |3 6 9 |8 2 5
6 3 2 |1 5 8 |9 4 7
9 5 8 |7 2 4 |3 1 6
------+------+------
8 2 5 |4 3 7 |1 6 9
7 9 1 |5 8 6 |4 3 2
3 4 6 |9 1 2 |7 5 8
------+------+------
2 8 9 |6 4 3 |5 7 1
5 7 3 |2 9 1 |6 8 4
1 6 4 |8 7 5 |2 9 3
'''

print_side_by_side(puzzle, solution)

# Multiple comparison
def show_algorithms(puzzle, *algorithms):
    """Compare multiple algorithm results."""
    results = [algo(puzzle) for algo in algorithms]
    names = [algo.__name__ for algo in algorithms]

    # Print headers
    width = 25
    print(' '.join(name.center(width) for name in names))
    print(' '.join('-' * width for _ in names))

    # Print results line by line
    result_lines = [r.splitlines() for r in results]
    for lines in zip(*result_lines):
        print(' '.join(line.ljust(width) for line in lines))

Read the full file on GitHub · 101 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 · 101 lines · 25 tokens per session scan A 7dc15b5d8204

Subscribe to this mod's changes

show-side-by-side is a skill published in the GitHub repository jimmc414/claude-code-plugin-marketplace (4 stars, last pushed today), licensed MIT. It adds 25 tokens to every session and 798 once invoked, about $0.0001 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

audit-progressive-disclosure

Read-only progressive-disclosure audit for agent-facing instruction markdown. Grades every target against a three-tier load-cost model (always-loaded / invocation-loaded / on-demand) and classifies seven finding shapes in two lanes: split opportunities (oversize vs tier-calibrated Anthropic-prescribed caps…

melodic-software/claude-code-plugins · 259 tokens

quiz-me

Post-work comprehension check: after a change is complete, generate a self-contained HTML report of what was done (context, intuition, decisions) with a quiz at the bottom that you answer. Verifying the HUMAN absorbed the work, not the artifact. Non-gating by default; the quizpolicy userConfig tunes offer cadence.…

melodic-software/claude-code-plugins · 177 tokens

reach

Run a Claude Code agent turn on ANOTHER machine in the fleet, over SSH on the tailnet. Every machine signs into its own Claude account, so the peer tools (ListAgents, SendMessage) are same-account and never span machines; SSH plus a headless claude -p is the path that does. Carries: resolving a target host from…

melodic-software/claude-code-plugins · 226 tokens

shape

Shape the assistant's output for a reader with ADHD, and anyone who wants action-first, low-friction responses. Lead with the concrete next action, number multi-step work, restate state across turns, cap and rank lists, give concrete time estimates, make wins visible, and cut preamble, recap, and closers. Use when…

melodic-software/claude-code-plugins · 209 tokens

generate

Build a source-backed AI industry briefing from official vendor publications, configured RSS feeds, GitHub releases, reputable secondary reporting, and user-supplied URLs. Use when: 'ai briefing', 'ai news', 'what's new in AI', 'catch me up on AI', 'prep for AI meeting', 'AI roundup', or 'generate AI slides'.

melodic-software/claude-code-plugins · 72 tokens

changelog

Ingest Claude Code changelog entries and integrate them into the current repo. Fetch (read-only display), diff (impact analysis, no edits), status (applied versions), and apply (full integrate pipeline, explicit user intent only). Use when: 'new cc version', 'what changed in claude code', 'apply changelog', a new CC…

melodic-software/claude-code-plugins · 84 tokens