Agent skill
libformat
libformat - Markdown formatting utilities. toHtml converts markdown to sanitized HTML safe for web display. toTerminal converts markdown to ANSI terminal output with colors. createToHtml and createToTerminal are factories for dependency injection. Use for rendering markdown in web apps and CLI tools.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/libformat
SKILL.md
libformat Skill
When to Use
- Rendering markdown as HTML in web applications
- Formatting CLI output with colors and styling
- Converting agent responses for display
- Sanitizing user-generated markdown content
Key Concepts
toHtml: Converts markdown to HTML with sanitization to prevent XSS attacks.
toTerminal: Converts markdown to terminal output with ANSI escape codes for colors and formatting.
Usage Patterns
Pattern 1: Web rendering
import { toHtml } from "@copilot-ld/libformat";
const html = toHtml("# Hello **World**");
// Returns: <h1>Hello <strong>World</strong></h1>
Pattern 2: Terminal output
import { toTerminal } from "@copilot-ld/libformat";
const output = toTerminal("# Hello **World**");
console.log(output); // Colored terminal output
Integration
Used by Web extension to format agent responses. Used by CLI tools for terminal output.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?