tlamatini-exec-report-row-adder

tlamatini-exec-report-row-adder is a skill for Claude Code, Codex from XAIHT/Tlamatini. It costs 42 tokens per session (1,001 once invoked), scanned A, original, MIT.

A workflow for adding a state-changing tool to Tlamatini's execution report, the table that records agent operations in the chat page.

In plain words
What is it for?
Updating execution-report tool definitions and matching CSS when a state-changing tool or its display details are added.
Why use it?
It helps a newly added operation appear with the correct shared identifier, label, or table styling without duplicating the system's status rules.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Updating execution-report tool definitions and matching CSS when a state-changing tool or its display details are added.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xaiht/tlamatini/tlamatini_exec_report_row_adder
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 XAIHT/Tlamatini --skill tlamatini_exec_report_row_adder
Clone the repo
git clone --depth 1 https://github.com/XAIHT/Tlamatini

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 tlamatini-exec-report-row-adder

README.md
[![agentmods](https://agentmods.dev/badge/skills/xaiht/tlamatini/tlamatini_exec_report_row_adder/github.svg)](https://agentmods.dev/skills/xaiht/tlamatini/tlamatini_exec_report_row_adder)
Your own site
<a href="https://agentmods.dev/skills/xaiht/tlamatini/tlamatini_exec_report_row_adder"><img src="https://agentmods.dev/badge/skills/xaiht/tlamatini/tlamatini_exec_report_row_adder/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 tlamatini-exec-report-row-adder

Your own site · 80×15
<a href="https://agentmods.dev/skills/xaiht/tlamatini/tlamatini_exec_report_row_adder"><img src="https://agentmods.dev/badge/skills/xaiht/tlamatini/tlamatini_exec_report_row_adder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,001 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.00042 $0.01001
Opus 5 $0.00021 $0.00500
Sonnet 5 $0.00008 $0.00200
Haiku 4.5 $0.00004 $0.00100

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

Security

Grade A, and why

tlamatini-exec-report-row-adder 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 10d 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.

Tlamatini/agent/skills_pkg/tlamatini_exec_report_row_adder/SKILL.md · 81 lines

What it actually says

Exec Report row adder

Read this first — capture is ALREADY automatic (2026-06-07). EVERY wrapped chat_agent_* is captured by _resolve_exec_report_spec with no code at all, observational/output and read-only agents INCLUDED. This procedure is an OPTIONAL refinement: use it only to merge a shared agent_key (a direct @tool + its wrapped launch), fix the display casing, or give the table a CSS-matched caption gradient. A missing entry does NOT hide an agent.

And it never sets the row's colour. SUCCESS/FAILED is decided by agent/agent_verdict.py from the agent's OWN INI_SECTION self-report, which OUTRANKS the process exit code. Its CLOSED vocabulary has five disjoint sets: diagnostic-completed and work-completed statuses are green; degraded, work-not-done, and agent-error statuses are red. A completed read-only diagnostic must still sys.exit(0). Never write a numeric return code in status:; emit returncode, success, and a semantic status token. Never add a special case to mcp_agent.py or re-inline any vocabulary set — there is exactly ONE definition in agent_verdict.py, guarded by agent/test_status_vocabulary.py.

Three-step procedure (matches docs/claude/exec-report.md):

  1. Add an entry to _EXEC_REPORT_TOOLS in Tlamatini/agent/mcp_agent.py:

    "${input.tool_name}": ("${input.agent_key}", "${input.agent_display}"),
    
  2. Add CSS rules in agent_page.css:

    • .exec-report-caption-${input.agent_key} (gradient mirroring .canvas-item.${input.agent_key}-agent from agentic_control_panel.css)
    • .exec-report-${input.agent_key} .exec-report-cmd { border-left: 3px solid <primary>; }
    • If the caption is dark, append .exec-report-${input.agent_key} thead th to the dark-tinted override selector list.
  3. Run python Tlamatini/manage.py test agent.tests.ExecReportCaptureTests agent.test_agent_verdict agent.test_exec_report_verdict agent.test_status_vocabulary. Report the pass/fail status. If the verdict/colour logic was touched at all, also run agent.test_agent_verdict and agent.test_exec_report_verdict.

Return { rows_added, tests_pass }.

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. 10d ago First seen · 81 lines · 42 tokens per session scan A 9cecda3a8157

Subscribe to this mod's changes

tlamatini-exec-report-row-adder is a skill published in the GitHub repository XAIHT/Tlamatini (16 stars, last pushed yesterday), licensed MIT. It adds 42 tokens to every session and 1,001 once invoked, about $0.0002 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.