manzanas: Skill for Claude Code

.agents/skills/journal-evidence-export/SKILL.md

journal-evidence-export is a skill for Claude Code, Codex from BariBariGood/manzanas. It costs 63 tokens per session (887 once invoked), scanned A, original, Apache-2.0.

A run-evidence tool for the manzanasd journal, which records actions performed on a simulator and stores related screenshots. It can inspect those records and create a Markdown summary.

In plain words
What is it for?
Use it to list runs, inspect actions, download or upload screenshot evidence, and export a pull-request-ready report for testing or debugging.
Why use it?
It removes the need to collect simulator logs, failures, and screenshots by hand when proving what happened during a task.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: installed under .agents/ (shared by several agents).

This is BariBariGood/manzanas's own configuration. It tells Claude Code and Codex how to work on manzanas itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything manzanas configures →

Reuse

Borrowing it

Nothing to install: this file belongs to BariBariGood/manzanas. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/BariBariGood/manzanas/main/.agents/skills/journal-evidence-export/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/BariBariGood/manzanas

Made for: Claude Code, Codex.

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 journal-evidence-export

README.md
[![agentmods](https://agentmods.dev/badge/skills/baribarigood/manzanas/journal-evidence-export/github.svg)](https://agentmods.dev/skills/baribarigood/manzanas/journal-evidence-export)
Your own site
<a href="https://agentmods.dev/skills/baribarigood/manzanas/journal-evidence-export"><img src="https://agentmods.dev/badge/skills/baribarigood/manzanas/journal-evidence-export/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for journal-evidence-export

Your own site · 80×15
<a href="https://agentmods.dev/skills/baribarigood/manzanas/journal-evidence-export"><img src="https://agentmods.dev/badge/skills/baribarigood/manzanas/journal-evidence-export.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 887 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 62
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
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.00063 $0.00887
Opus 5 $0.00032 $0.00443
Sonnet 5 $0.00013 $0.00177
Haiku 4.5 $0.00006 $0.00089

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

Security

Grade A, and why

journal-evidence-export scanned grade A with 1 finding 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 11d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s $D/v0/journal/$LID/export.md > evidence.md # same markdown, raw HTTP
.agents/skills/journal-evidence-export/SKILL.md · 87 lines

How it starts

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

Journal evidence export

Every mutating op under a lease is journaled (append-only JSONL + content- addressed artifacts). The run ID is the lease ID, so you always know your run without extra bookkeeping. Journal-disabled daemons (--journal-dir "") answer 501 on all of these.

The one-call PR evidence export

manzanas journal export $LID -o evidence.md      # or: --format json
curl -s $D/v0/journal/$LID/export.md > evidence.md   # same markdown, raw HTTP

Returns a PR-comment-ready markdown summary: run metadata (agent, purpose, target, runtime), an ordered action table with failures highlighted, and the artifact list. Paste it into the PR body or a comment. Works after the lease is released. --journal-dir ~/.manzanasd/journal exports offline straight from the on-disk store (daemon stopped, or a copied run dir). MCP agents have the same export as the journal_export tool; the GitHub Action posts it automatically with journal-evidence: "true".

Inspect a run

curl -s $D/v0/journal | jq '.runs[0]'                  # newest runs first
curl -s "$D/v0/journal/$LID?limit=100" | jq '.entries[] | .payload.action'
# next_seq != 0 → pass it back as from_seq for the next page

Entry kinds: lease, action, observation, state, segment. HID actions record ax_before/ax_after tree hashes when dispatched with payload "ax_hashes": true — cheap before/after UI evidence.

Fetch artifacts (screenshots)

A successful screenshot action is stored automatically; entries carry artifacts: [{path, sha256, bytes}]:

curl -s "$D/v0/journal/$LID?limit=1000" \
  | jq -r '.entries[].payload.artifacts[]?.path'
curl -s -o shot.png "$D/v0/journal/$LID/artifacts/artifacts/<sha256>.png"

Tip: dispatch screenshots with "inline": false to keep responses small and pull the bytes from the journal afterwards.

Upload your own evidence

While the lease is still active (immutable after release/expiry — upload before you release):

manzanas journal upload $LID shot1.png shot2.png   # --kind observation|screenshot|video
# or raw HTTP:
curl -s -X POST "$D/v0/journal/$LID/artifacts?name=final-state&kind=screenshot" \
  --data-binary @shot.png

Read the full file on GitHub · 87 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. 11d ago First seen · 87 lines · 63 tokens per session scan A c84955e99d15

Subscribe to this mod's changes

journal-evidence-export is a skill published in the GitHub repository BariBariGood/manzanas (20 stars, last pushed 9d ago), licensed Apache-2.0. It adds 63 tokens to every session and 887 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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

ios-simulator-interaction

Interaction with the iOS simulator using iosef, a CLI optimized for agent usage. Use when building or testing changes on the iOS Simulator — viewing the screen, tapping buttons, reading accessibility trees, finding elements by selector, asserting UI state, scripting multi-step test flows, installing and launching…

riwsky/iosef · 100 tokens

testa

Autonomously E2E-test iOS apps in the Simulator — read the screen (accessibility tree OR on-device OCR), tap/type/swipe/drag-drop/pinch/rotate, manage apps, and assert results. Use when asked to test, QA, drive, or reproduce a flow in an iOS app/simulator (React Native, Expo, native SwiftUI, or any app).…

valewnrt/testa · 103 tokens

argent-screenshot-diff

Compare saved or live app screenshots with the argent screenshot-diff tool. Use when testing visual regressions, before/after UI comparisons, screenshot diff checks, visible layout, spacing, color, typography, clipping, overflow, text rendering, or image/icon rendering changes.

software-mansion/argent · 59 tokens

mobile-automation

Control Android and iOS devices, emulators and simulators — launch apps, tap, swipe, type, take screenshots, read the accessibility tree. Use when a task involves a mobile device or app, mobile UI testing, or reproducing a bug on a phone.

mobile-next/mobile-mcp · 58 tokens

argent-create-flow

Create, record, edit, replay, or repair reusable Argent flow YAML files. Use when the user asks to record or replay a repeatable device path, set up profiling or an A/B comparison, or invoke the authoring engine behind argent-qa-flows. Also use before repeating three or more interactions. For one-off UI checks…

software-mansion/argent · 100 tokens

voice-agent-test-harness

Drive a fixed suite of spoken tests against a voice agent ("subject") from a co-located machine ("prober"), measure response latency / clarity / accuracy, diff against baseline, and report to the owner over Telegram.

sonichi/sutando · 0 tokens