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

Agent Presentation

ASecurity

Shared, runtime-free taxonomy for presenting OwlMeans Viable agent output. Use when classifying LLM thinking/history messages, adding semantic structured-output cards, or changing their server-to-browser event contract.

3 stars
0 votes
0 copies
0 views
Added 9/22/2026
developmenttypescriptgoreactgit

Works with

cli

Security Analysis

A100/100

Scanned 9/22/2026

Install to Claude Code

$npx -y skills add owlmeans/common --skill agent-presentation --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Agent Presentation?

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

Security grade badge for Agent Presentation
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/owlmeans-agent-presentation-common/badge)](https://www.skillsdirectory.com/skills/owlmeans-agent-presentation-common)

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

Download Zip
Files
SKILL.md
---
name: agent-presentation
description: Shared, runtime-free taxonomy for presenting OwlMeans Viable agent output. Use when classifying LLM thinking/history messages, adding semantic structured-output cards, or changing their server-to-browser event contract.
---
<!-- AUTO-GENERATED — do not edit. Regenerate via sync-agent-meta. -->

# Agent output presentation

**Install:** `"@owlmeans/viable-common": "^0.0.25"` in `dependencies`

`@owlmeans/viable-common`'s `agent/presentation.ts` owns the browser-safe vocabulary for agent
output. Keep the server and every client on `classifyAgentMessage()`; consumers may refine a
provisional classification as streamed text becomes parseable, but must not invent a competing
taxonomy.

## Contract

- The top-level categories are code, unified diff, structured output, Markdown and plain text.
  Code and diffs carry one of React TSX, CSS, TypeScript, JSON or other; structured output carries
  a semantic kind; Markdown carries a document kind; every presentation carries a specialist role.
- Classify from the combined source: agent, helper, action, explicit output type, text and parsed
  value. Helper/agent attribution selects the specialist family; content shape alone is not enough.
- A transport may send `presentation` on thinking start and stop events. It is optional for rolling
  compatibility; the final server hint is based on complete output and the browser refines it while
  it streams. Keep legacy `outputType` intact.
- Unwrap a single LangChain tool call's `args` before semantic classification
  (`agentToolCallArguments`). Known schemas render as cards; unknown objects and arrays remain
  generic structured output, never raw JSON.
- `structuredKindOf`'s shape checks are ORDER-SENSITIVE where one payload could match more than
  one: a scaffold plan carries its own `stories` array, so `ScaffoldPlan` (`identity` + `guestHome`
  + `areas` + `stories`) is checked before the bare `StoryPlan` (`stories` alone) check catches it
  first. `RuntimeDecision` matches on `jobs` + `agents` + `kv` alone — NOT `actor`/`worker`, which
  the live model call never sends (those two are added only once a decision is persisted onto a
  `StoryDesign`); requiring them missed every runtime-decision call the model actually makes.
- `outputType === 'tool_calls'` does not automatically mean `AgentStructuredKind.ToolCalls`: a
  SINGLE pinned-schema call (`choose-files-for-fix`, `plan-scaffold`, …) still renders as its own
  schema card. It reads as `ToolCalls` when any of these holds: more than one call arrived in the
  same turn, the action belongs to an unconstrained tool-calling loop (`agentLoopActions` —
  `coding-agent-ask`, `arbitrary-modification`, `fix-agent`, `architect`, `declaration-lookup`,
  `source-extract`), or the single call's shape only reaches a `Generic*` kind. Without the
  action check, a free-flight `read_sources({ files })` call reads as an `ArtifactSelection` card
  instead of a tool call, because its args happen to shape-match that schema.
- `isAgentMessageHidden()` owns utility-run suppression. The source extractor's `source-extract`
  range-selection calls are internal context reduction and never render in thinking or history.

## Consumer rules

- Treat Markdown as a compact draft, not as a full document. Keep raw HTML disabled.
- Use one token renderer for code and diff code portions; infer a diff language from its changed path.
- Plain text remains plain. Empty live output is an activity state, not a fabricated model response.
- Labels for known structured fields belong to the consuming app's i18n resources. Open model keys
  should be humanized rather than passed through an unbounded translation namespace.
- This package classifies WHICH kind and category a message is; it says nothing about how a
  consumer renders one. `product-viable`'s manager-web renders every `AgentStructuredKind` as a
  flat typed result card and captures per-tool-call outcomes as a platform-side thinking event
  (`AgentThinkingType.ToolResult`, in `sources/common`, not this package) — see that repo's
  `agent-output-cards` skill before changing either side of this contract.

## External docs

- https://github.com/remarkjs/react-markdown/blob/main/readme.md — safe-by-default Markdown with custom React components.
- https://github.com/remarkjs/remark-gfm — GFM tables, task lists, autolinks and strikethrough plugin.
- https://github.com/FormidableLabs/prism-react-renderer — React token rendering for compact source views.
- https://fontsource.org/fonts/jetbrains-mono/install — self-hosted variable JetBrains Mono for Vite apps.

Attribution

owlmeansowlmeans
View sourceMore from owlmeans →
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

Browser Extension Developer

Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.

284072 votes

Seo Optimizer

SEO optimization with keyword analysis, readability assessment, technical validation, content quality. Use for search rankings, blog posts, content audits, or encountering keyword density, readability scores, meta tags, schema markup errors.

2192 votes

Google Official Seo Guide

Official Google SEO guide covering search optimization, best practices, Search Console, crawling, indexing, and improving website search visibility based on official Google documentation

1862 votes

Tanstack Start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 + Cloudflare Workers app with file-based routing and server functions — even if they don't name TanStack Start specifically. No template repo — Claude generates every file fresh per ...

9881 votes

Pentest

PTES-aligned adversarial security audit for backend, frontend, and mobile applications. Produces a CVSS-scored Hacker Report with verified PoCs and phased remediation.

5491 votes
View all in development →