octoperf-report-item-editing

octoperf-report-item-editing is a skill for Claude Code from OctoPerf/octoperf-claude-plugins. It costs 0 tokens per session (1,200 once invoked), scanned A, original, Apache-2.0.

An editor for the metrics and filters shown in an OctoPerf bench-report item. A report item is one chart, table, or summary within a performance-test report.

In plain words
What is it for?
Use it to change measurements, sample types, and tag-based filters on supported report charts, tables, and summaries. The valid choices depend on the report item and its test results.
Why use it?
It avoids guessing which metric types and filters a particular chart or table accepts. It helps change what the report displays without treating report reading and report editing as the same task.

Skill for Claude Code

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

Part of the octoperf plugin — 20 skills, 1 MCP server shipped together

Good fit Use it to change measurements, sample types, and tag-based filters on supported report charts, tables, and summaries. The valid choices depend on the report item and its test results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/octoperf/octoperf-claude-plugins/octoperf-report-item-editing
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 OctoPerf/octoperf-claude-plugins --skill octoperf-report-item-editing
Clone the repo
git clone --depth 1 https://github.com/OctoPerf/octoperf-claude-plugins

Made for: Claude Code.

Or install octoperf, the plugin that ships this one along with the rest of its 20 skills, 1 MCP server.

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 octoperf-report-item-editing

README.md
[![agentmods](https://agentmods.dev/badge/skills/octoperf/octoperf-claude-plugins/octoperf-report-item-editing/github.svg)](https://agentmods.dev/skills/octoperf/octoperf-claude-plugins/octoperf-report-item-editing)
Your own site
<a href="https://agentmods.dev/skills/octoperf/octoperf-claude-plugins/octoperf-report-item-editing"><img src="https://agentmods.dev/badge/skills/octoperf/octoperf-claude-plugins/octoperf-report-item-editing/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 octoperf-report-item-editing

Your own site · 80×15
<a href="https://agentmods.dev/skills/octoperf/octoperf-claude-plugins/octoperf-report-item-editing"><img src="https://agentmods.dev/badge/skills/octoperf/octoperf-claude-plugins/octoperf-report-item-editing.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,200 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.
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.00000 $0.01200
Opus 5 $0.00000 $0.00600
Sonnet 5 $0.00000 $0.00240
Haiku 4.5 $0.00000 $0.00120

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

Security

Grade A, and why

octoperf-report-item-editing 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 12d 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.

plugins/octoperf/skills/octoperf-report-item-editing/SKILL.md · 82 lines

How it starts

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

Editing OctoPerf bench-report items

This skill covers changing the metrics/filters of a bench report item (a BenchReportItem) — not reading its values (see octoperf://skills/bench-reports for the read side). A report item's metrics are constrained: only certain sample types, metric ids and tag filters are valid for a given report item type. The backend exposes that contract; use it instead of guessing.

The model

A metric-bearing report item (StatisticTableReportItem, LineChartReportItem, PercentilesChartReportItem, SummaryReportItem, PieChartReportItem, StatisticTreeReportItem, BarChartReportItem, AreaRangeChartReportItem) holds a list of ReportItemMetric:

  • id — the MetricId (e.g. RESPONSE_TIME_AVG, HITS_TOTAL).
  • type — the SampleType (BASIC, WEB, LOAD, NUMBER_COUNTER, …).
  • filters — a set of SingleTermFilter{field,term} / MultiTermFilter{field,terms} narrowing the query by tag (region, injectorId, virtualUserName, actionPath, subSampleType, …). AND-combined.
  • benchResultId, configs.

Which type/id/filter is legal depends on the report item type, the report's bench results and whether it is a trend report. That is the allow-select descriptor.

Workflow

  1. Read the reportget_bench_report(reportId) to see items and their ids/@type.
  2. Resolve what's allowedget_report_item_allow_select(reportId, itemId) returns:
    • sampleTypes — allowed sample types for the item.
    • metricIdsBySampleType — selectable metric ids per sample type.
    • tagKeyConstraints — per tag key: whether it's offered/required, allowedValues (a closed whitelist when non-empty, e.g. subSampleType ∈ {Hit, Container}), single (single vs multi select), and dependsOn (parent keys, e.g. injectorId depends on region).
  3. Discover filter values (for open-ended tag keys):
    • get_report_tag_keys(reportId, sampleType) — the filterable tag keys.
    • get_report_tag_values(reportId, sampleType, tagKeys, filters?) — the concrete values, optionally scoped by already-selected filters (e.g. restrict injectorId values to a chosen region by passing {"region":["eu-west-1"]}).
  4. Build the metric(s) using only allowed types/ids/fields/values.
  5. Validatevalidate_report_item(reportId, itemId) returns ReportItemValidation (valid + violations). Fix every violation before persisting.
  6. Persistpatch_bench_report(reportId, patch) with an RFC 6902 JSON Patch (consult octoperf://schema/bench-report for the item shape). The server runs the same allow-select validation as a pre-flight and rejects the patch (with the violation messages) if any metric is invalid, so a green patch_bench_report means the edit was both structurally and semantically valid.

Read the full file on GitHub · 82 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. 12d ago First seen · 82 lines · 0 tokens per session scan A 3733076beec7

Subscribe to this mod's changes

octoperf-report-item-editing is a skill published in the GitHub repository OctoPerf/octoperf-claude-plugins (0 stars, last pushed 5d ago), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 1,200 tokens. 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-31.