peekie-errors

peekie-errors is a skill for Claude Code from dodobrands/Peekie. It costs 130 tokens per session (913 once invoked), scanned A, original, Apache-2.0.

A tool for listing build errors from an Xcode .xcresult bundle, the report file produced by Apple development tools. It outputs each error with its file, line, column, type, and message when available.

In plain words
What is it for?
Use it to investigate a failed build, produce a flat JSON or readable list of errors, and identify the source location and message for each problem.
Why use it?
It makes compiler and other build failures easier to search, sort, inspect, or pass into scripts.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the peekie plugin — 6 skills shipped together

Good fit Use it to investigate a failed build, produce a flat JSON or readable list of errors, and identify the source location and message for each problem.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dodobrands/peekie/peekie-errors
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dodobrands/Peekie --skill peekie-errors
Clone the repo
git clone --depth 1 https://github.com/dodobrands/Peekie

Made for: Claude Code.

Or install peekie, the plugin that ships this one along with the rest of its 6 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for peekie-errors

README.md
[![agentmods](https://agentmods.dev/badge/skills/dodobrands/peekie/peekie-errors.svg)](https://agentmods.dev/skills/dodobrands/peekie/peekie-errors)
Your own site
<a href="https://agentmods.dev/skills/dodobrands/peekie/peekie-errors"><img src="https://agentmods.dev/badge/skills/dodobrands/peekie/peekie-errors.svg" alt="Measured on agentmods" height="20"></a>
Per session 130 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 913 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00130 $0.00913
Opus 5 $0.00065 $0.00456
Sonnet 5 $0.00026 $0.00183
Haiku 4.5 $0.00013 $0.00091

Measured 8d ago against content hash eb99a145c646, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

peekie-errors scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agent/skills/peekie-errors/SKILL.md · 91 lines

How it starts

The opening of the file, as written. The whole thing — 91 lines — stays where its author put it; the contents beside it link to each section on GitHub.

peekie errors

List every build error in a .xcresult bundle as a flat sorted JSON array (or human-readable list). Same shape as peekie warnings.

Synopsis

peekie errors <xcresult-path> [flags]

Flags

Flag Default Notes
<xcresult-path> Required positional. Path to the .xcresult bundle.
--format json|list json Output format.
-v, --verbose false Debug-level logging to stderr.

There is no --include flag on peekie errors. Filter with jq.

Output shape

--format json (default)

Flat sorted array, one entry per error:

[
  {"file": "AppDelegate.swift", "line": 87, "column": 5, "type": "Swift Compiler Error", "message": "Cannot find 'FooBar' in scope"},
  {"file": "Network/Client.swift", "line": 154, "column": 12, "type": "Swift Compiler Error", "message": "Value of type 'URLSession' has no member 'asyncData'"}
]
  • line / column are null when xcresult didn't emit them.
  • type is the raw Apple issueType string — most commonly Swift Compiler Error, but anything in the errors bucket appears here.

Note: unlike peekie warnings, you should not see #warning(...) markers here — those land in peekie warnings even though Apple tags them Swift Compiler Error (see peekie-warnings).

--format list

One line per error, grouped by file.

Recipes

Fail CI on any error

errors=$(peekie errors Build.xcresult | jq 'length')
if [ "$errors" -gt 0 ]; then
  peekie errors Build.xcresult --format list
  exit 1
fi

Print first three errors with file:line

peekie errors Build.xcresult \
  | jq -r '.[:3] | .[] | "\(.file):\(.line // "?"): \(.message)"'

Group errors by file

peekie errors Build.xcresult | jq 'group_by(.file) | map({file: .[0].file, count: length})'

Just the first error's message (handy for build-failure notifications)

peekie errors Build.xcresult | jq -r '.[0].message // "no errors"'

Read the full file on GitHub · 91 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 91 lines · 130 tokens per session scan A eb99a145c646

Subscribe to this mod's changes

peekie-errors is a skill published in the GitHub repository dodobrands/Peekie (32 stars, last pushed 8d ago), licensed Apache-2.0. It adds 130 tokens to every session and 913 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

swift-testing-expert

Expert guidance for Swift Testing: test structure, #expect/#require macros, traits and tags, parameterized tests, test plans, parallel execution, async waiting patterns, and XCTest migration. Use when writing new Swift tests, modernizing XCTest suites, debugging flaky tests, or improving test quality and…

AvdLee/Swift-Testing-Agent-Skill · 73 tokens

ci-cd-patterns

CI/CD patterns for mobile - GitHub Actions workflows for Android/iOS, Fastlane integration, code signing, artifact publishing, and automated release.

ahmed3elshaer/everything-claude-code-mobile · 35 tokens

swift-testing

Expert guidance on Swift Testing best practices, patterns, and implementation. Use when developers mention: (1) Swift Testing, @Test, #expect, #require, or @Suite, (2) "use Swift Testing" or "modern testing patterns", (3) test doubles, mocks, stubs, spies, or fixtures, (4) unit tests, integration tests, or snapshot…

bocato/swift-testing-agent-skill · 124 tokens

chinese-git-workflow

A reference for configuring Git with Chinese code-hosting services such as Gitee, Coding.net, GitLab China, and CNB, including SSH, HTTPS, credentials, CI, and repository mirroring.

jnMetaCode/superpowers-zh · 69 tokens

configure-env-variables

Configures environment variables for Power Pages site settings to support ALM across environments. Creates environment variable definitions in Dataverse, guides the user through linking site settings to those variables via the Power Pages Management app, adds the variables to the solution, and generates a…

microsoft/power-platform-skills · 119 tokens

atmos-profiles

Atmos profiles: profile directories, --profile and ATMOSPROFILE activation, profile merge behavior, environment switching, and routing profile-specific auth/toolchain/config overrides.

cloudposse/atmos · 35 tokens