agentuity-command-runner

Parse developer command outputs into structured error reports.

19|2|Updated Dec 9, 2025
One-click install
npx skills add https://github.com/agentuity/sdk --skill agentuity-command-runner
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: agentuity-command-runner
Source: https://github.com/agentuity/sdk/tree/main/packages/claude-code/skills/agentuity-command-runner
Command: npx skills add https://github.com/agentuity/sdk --skill agentuity-command-runner

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill provides automated parsing of command runner output to produce structured error reports with locations, classifications, and deduplication to speed up debugging in CI and local development.

Core Features & Use Cases

  • Runtime-aware parsing: detects runtime (bun, npm, go, etc.) and applies appropriate patterns to extract errors and warnings.
  • Structured output: consolidates issues into file:line style with type labels (Type, Syntax, Lint, Test, Build).
  • Use Case: when running lint/build/test on a multi-repo project, generate a concise error summary for a PR description or dashboard.

Quick Start

Run this skill against your repo's test output to generate a structured error report.

Frequently Asked Questions about agentuity-command-runner

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I parse build and test output into structured errors for CI pipelines?

This Skill automatically parses developer command outputs to produce structured error reports. It detects the runtime toolchain, extracts file locations and error types, and outputs a standardized schema suitable for downstream tooling.

What is the best way to consolidate lint and typecheck errors across multiple repositories?

Automated parsing consolidates lint and typecheck issues into file:line style with type labels like Type, Syntax, Lint, Test, and Build. It deduplicates identical issues to generate concise error summaries for multi-repo projects.

Does command output parsing work with JavaScript, Go, and Rust ecosystems?

Yes, command output parsing works with JavaScript/TypeScript, Go, Rust, and other ecosystems. It applies runtime-aware patterns to extract errors and warnings across lint, build, test, typecheck, and format commands.

How do I generate a structured error summary for a PR description?

You generate a structured error summary for a PR description by running automated parsing against your repo's test output. It consolidates issues into a standardized schema with file locations and classifications, suitable for dashboard integration.

Can I deduplicate identical issues when extracting errors from format and build commands?

Yes, the parser deduplicates identical issues when extracting errors from format and build commands. It detects the runtime, applies appropriate patterns, and outputs a standardized schema without duplicate issues.