Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

Back to skills

Output Style Builder

ASecurity

Creates structured output formats (JSON/YAML/Markdown-KV/XML) and response style scope configurations via accuracy-token tradeoff analysis. Use when defining agent schemas, building CLAUDE.md output sections, configuring hierarchy overrides, or standardizing serialization patterns across agents/commands.

2 stars
0 votes
0 copies
0 views
Added 9/19/2026
devopsapiperformance

Works with

api

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add bsamiee/Parametric_Portal --skill output-style-builder --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Output Style Builder?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Output Style Builder
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/bsamiee-output-style-builder/badge)](https://www.skillsdirectory.com/skills/bsamiee-output-style-builder)

More formats (shields.io, HTML) on the badges page.

Download Zip
Files
SKILL.md
---
name: output-style-builder
description: >-
  Creates structured output formats (JSON/YAML/Markdown-KV/XML) and response style scope
  configurations via accuracy-token tradeoff analysis. Use when defining agent schemas,
  building CLAUDE.md output sections, configuring hierarchy overrides, or standardizing
  serialization patterns across agents/commands.
---

# [H1][OUTPUT-STYLE-BUILDER]
>**Dictum:** *Parsing clarity requires structured serialization.*

<br>

Build agent response formats. Configure scope-based style.

[DELEGATE] Voice, formatting, constraint rules → `style-standards` skill.

**Tasks:**
1. Select domain — FORMATS (structured data) or CONFIGURATION (response style scope)
2. (formats) Read [formats.md](./references/formats.md) — Selection metrics, embedding, validation scoring
3. (configuration) Read [configuration.md](./references/configuration.md) — Scope hierarchy, embedding patterns
4. (schema) Read [schema.md](./references/schema.md) — Delimiter syntax, canonical examples
5. (structure) Read [structure.md](./references/structure.md) — Ordering patterns, composition
6. (prose) Load `style-standards` skill — Voice, formatting, constraints
7. Execute per domain — Apply Guidance and Best-Practices
8. Validate — Quality gate; see §VALIDATION

**Scope:**
- *Formats:* Structured data serialization (JSON, YAML, Markdown-KV, XML) for agent output.
- *Configuration:* Response style scope hierarchy (global → project → skill → command).

**Domain Navigation:**
- *[FORMATS]* — Structured data output. Load for: agent schemas, API responses, validation scoring.
- *[CONFIGURATION]* — Scope hierarchy. Load for: CLAUDE.md output sections, precedence rules.
- *[SCHEMA]* — Delimiters, examples. Load for: syntax reference, canonical patterns.
- *[STRUCTURE]* — Ordering, composition. Load for: section sequencing, chaining.

**References:**

| Domain        | File                                                     |
| ------------- | -------------------------------------------------------- |
| Formats       | [formats.md](references/formats.md)                     |
| Configuration | [configuration.md](references/configuration.md)          |
| Schema        | [schema.md](references/schema.md)                        |
| Structure     | [structure.md](references/structure.md)                  |
| Validation    | [validation.md](references/validation.md)                |
| Template      | [format.template.md](templates/format.template.md)       |
| Template      | [style.template.md](templates/style.template.md)         |

---
## [1][FORMATS]
>**Dictum:** *Format optimization requires accuracy-token tradeoff analysis.*

<br>

[IMPORTANT] Format choice impacts accuracy (16pp variance) and tokens (6.75x variance).

**Guidance:**
- `Selection` — Markdown-KV: 60.7% accuracy, 2.7x tokens. JSON: 52.3% accuracy, 0.85x tokens.
- `Embedding` — Inline for single use. Reference (`@.claude/styles/`) for 3+ consumers.
- `Validation` — 100-point scoring. Deployment requires score >= 80.

**Best-Practices:**<br>
- Single format per output type.
- Max 5 variables per format; every optional has default.
- Constrained decoding guarantees 97-100% schema compliance.

**References:**<br>
- [→formats.md](./references/formats.md): Selection, embedding, validation.
- [→format.template.md](./templates/format.template.md): Format scaffold.

---
## [2][CONFIGURATION]
>**Dictum:** *Narrow context requires specialized output rules.*

<br>

[IMPORTANT] Higher precedence overrides lower (command level 5 > global level 1).

**Guidance:**
- `Global` — CLAUDE.md `[OUTPUT]` section. 50-100 LOC optimal.
- `Project` — PROJECT.md overrides. Document divergence reason.
- `Skill/Agent` — Inline or reference pattern. Match reuse requirements.
- `Command` — Narrowest scope. Specialized output for single invocation.

**Best-Practices:**<br>
- Global rules in CLAUDE.md; overrides minimal (max 30 LOC).
- Reference `style-standards` for voice/formatting rules—no duplication.
- Place weight-10 constraints first in all scopes.

**References:**<br>
- [→configuration.md](./references/configuration.md): Scope hierarchy, embedding.
- [→style.template.md](./templates/style.template.md): Style scaffold.
- [DELEGATE] `style-standards` skill: Voice, formatting, constraints.

---
## [3][SCHEMA]
>**Dictum:** *Performance consistency requires delimiter standardization.*

<br>

[IMPORTANT] Maintain delimiter consistency throughout output.

**Guidance:**
- `Delimiters` — Code fence (` ``` `), separator (`---`), soft break (`<br>`).
- `Consistency` — Prohibit mixed delimiter styles within single output.

**References:**<br>
- [→schema.md](./references/schema.md): Syntax reference.

---
## [4][STRUCTURE]
>**Dictum:** *Attention decay requires priority-first placement.*

<br>

[IMPORTANT] Primacy effect assigns 5.79x weight to early items.

**Guidance:**
- `Ordering` — Action-first, Priority-first, or Context-first patterns.
- `Hierarchy` — Maximum 3 levels. 2-7 items per container.
- `Composition` — Base-override inheritance. Shallow or deep merge.

**References:**<br>
- [→structure.md](./references/structure.md): Sequencing, composability.

---
## [5][TEMPLATES]
>**Dictum:** *Structural consistency requires scaffold reuse.*

<br>

**FORMATS Domain:**<br>
- [→format.template.md](./templates/format.template.md): Structured data format scaffold.

**CONFIGURATION Domain:**<br>
- [→style.template.md](./templates/style.template.md): Response style scaffold.

---
## [6][VALIDATION]
>**Dictum:** *Gates prevent incomplete artifacts.*

<br>

[VERIFY] Completion:
- [ ] Domain: Selected FORMATS or CONFIGURATION scope.
- [ ] References: Required domain files loaded per Tasks.
- [ ] Style: `style-standards` delegation applied—zero duplication.
- [ ] Format: Validation score >= 80 (formats domain).
- [ ] Quality: LOC within limits, weight-10 constraints first.

[REFERENCE] Operational checklist: [→validation.md](./references/validation.md)

Attribution

bsamieebsamiee
View sourceMore from bsamiee →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Terraform Module Library

Build reusable Terraform modules for AWS, Azure, and GCP infrastructure following infrastructure-as-code best practices. Use when creating infrastructure modules, standardizing cloud provisioning, or implementing reusable IaC components.

393431 votes

sematext-otel

Wire a service's OpenTelemetry output to Sematext Cloud. Walks through region, App-type, instrumentation flow (managed OTLP endpoint vs Sematext Agent), and signal selection (traces/metrics/logs), then produces the exact env-var block and points at a runnable reference example in this repo. Invoke when instrumenting a new app for Sematext.

01 votes

Deployment Patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications. Use when setting up deployment infrastructure or planning releases.

2459130 votes

Babysit

Watch a pull request or review cycle until it is ready to merge. Use when asked to babysit, monitor, or keep checking PR comments, reviews, and CI until all actionable issues are resolved.

929660 votes

V7 Roster

Interact with the Paperclip control plane API for task coordination and governance. Use when checking assignments, updating issue status, posting comments, delegating work, managing routines, or calling Paperclip API endpoints.

798220 votes
View all in devops →