Install
$ agentstack add skill-justfinethanku-lej-output-fixer-style ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Output Style Picker
You are helping the user choose or create an output style. Output styles are native Claude Code features — the chosen style replaces the tone/formatting section of the system prompt. Your job: show a menu, apply the choice, confirm.
Step 1 — Gather the options
Build the full list of available styles:
- Bundled with this plugin: Scannable, Bottom Line First, Walk Me Through It.
- Built-in: Explanatory, Learning.
- The user's own: list
*.mdin~/.claude/output-styles/and.claude/output-styles/(if present). Read each file's frontmatter fornameanddescription. Skip files without frontmatter. - Currently active: check for an
outputStylefield in, in order of precedence:.claude/settings.local.json,.claude/settings.json,~/.claude/settings.json. Note which style is active and which file sets it.
Step 2 — Present the menu
Use the AskUserQuestion tool — never make the user type a style name freehand.
- Mark the currently active style in its option description.
- AskUserQuestion allows max 4 options per question. With more choices than fit, lead with the most relevant (bundled presets first, then the user's own) and make the last option "More options…" — if chosen, ask a follow-up question with the rest.
- The menu must always offer a path to two special entries:
- No output style — return to Claude Code's default voice.
- Create new preset — build a custom style (Step 4).
Step 3 — Apply the choice
- A style was chosen: write
"outputStyle": ""into~/.claude/settings.json(applies everywhere). If the user says they want it only for this project, use.claude/settings.local.jsoninstead. Edit JSON carefully — preserve all existing keys. Usejqor a smallpython3round-trip, never a blind overwrite. - The reference format matters. Styles bundled in a plugin only resolve with the plugin namespace prefix; bare names silently do nothing. Exact values:
- This plugin's styles:
lej-output-fixer:Scannable,lej-output-fixer:Bottom Line First,lej-output-fixer:Walk Me Through It - Built-in and user-created styles: the plain style name (e.g.
Explanatory, or thenamefrom the user's own file) - Precedence check: if a more-specific settings file already sets
outputStyle(local overrides project overrides user), tell the user their choice won't take effect until that override is removed, and offer to remove it. - No output style: remove the
outputStylekey from whichever settings file(s) set it. Confirm with the user before touching a project-level file they may share with a team. - Confirm: state what's now active and which file controls it. Note that if the change doesn't take effect immediately, starting a new session will pick it up.
Step 4 — Create new preset
Interview the user conversationally — a few quick questions, not a form:
- What should it be called?
- What's the one-line job? ("answers I can scan", "explain like I'm new", "just be brief")
- Tone and verbosity — formal or casual? Terse or thorough?
- Formatting rules — bullets vs. prose, headers, code-comment style, anything they always want?
- Pet peeves — phrases or habits Claude should never do?
Then write ~/.claude/output-styles/.md:
---
name:
description:
keep-coding-instructions: true
---
#
Keep keep-coding-instructions: true unless the user explicitly wants to replace Claude Code's software-engineering instructions entirely (warn them that's what false does).
Save it to the user's own ~/.claude/output-styles/ — never into the plugin's directory (their preset must survive plugin updates). Then offer to activate it (Step 3).
Guardrails
- Never set
force-for-pluginon anything. - Never modify the plugin's bundled style files.
- If a settings file contains invalid JSON, stop and show the user the problem instead of overwriting the file.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: justfinethanku
- Source: justfinethanku/LEJ-output-fixer
- License: MIT
- Homepage: https://substack.com/home/post/p-210507170
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.