ElBruno.MempalaceNet: Skill for Claude Code

.squad/skills/performance-tracking/SKILL.md

performance-tracking is a skill for Claude Code, Codex from elbruno/ElBruno.MempalaceNet. It costs 0 tokens per session (2,907 once invoked), scanned A, original, MIT.

A performance-testing guide for measuring how long operations take and checking latency percentiles such as P50, P95, and P99. It also covers checking service-level targets and creating reports.

In plain words
What is it for?
Use it to measure API calls, database queries, AI inference, searches, long-running services, or competing implementations.
Why use it?
It helps find slow operations and verify performance targets in tests or continuous integration, without confusing this work with production monitoring or CPU profiling.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

This is elbruno/ElBruno.MempalaceNet's own configuration. It tells Claude Code and Codex how to work on ElBruno.MempalaceNet 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 ElBruno.MempalaceNet configures →

Reuse

Borrowing it

Nothing to install: this file belongs to elbruno/ElBruno.MempalaceNet. 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/elbruno/ElBruno.MempalaceNet/main/.squad/skills/performance-tracking/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/elbruno/ElBruno.MempalaceNet

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 performance-tracking

README.md
[![agentmods](https://agentmods.dev/badge/skills/elbruno/elbruno.mempalacenet/performance-tracking/github.svg)](https://agentmods.dev/skills/elbruno/elbruno.mempalacenet/performance-tracking)
Your own site
<a href="https://agentmods.dev/skills/elbruno/elbruno.mempalacenet/performance-tracking"><img src="https://agentmods.dev/badge/skills/elbruno/elbruno.mempalacenet/performance-tracking/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 performance-tracking

Your own site · 80×15
<a href="https://agentmods.dev/skills/elbruno/elbruno.mempalacenet/performance-tracking"><img src="https://agentmods.dev/badge/skills/elbruno/elbruno.mempalacenet/performance-tracking.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 2,907 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.02907
Opus 5 $0.00000 $0.01453
Sonnet 5 $0.00000 $0.00581
Haiku 4.5 $0.00000 $0.00291

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

Security

Grade A, and why

performance-tracking 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 9d 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.

.squad/skills/performance-tracking/SKILL.md · 415 lines

How it starts

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

Skill: Performance Tracking with MemPalace.Diagnostics

Status: Active
Domain: Diagnostics, SLA Validation, Benchmarking
Created: 2026-04-28
Author: Rachael (CLI/UX Dev)


Overview

Use MemPalace.Diagnostics.PerformanceBenchmark to track operation latencies, calculate percentile statistics (P50/P95/P99/P100), validate SLA compliance, and generate human/machine-readable reports.


When to Use This Skill

  • ✅ Tracking latency of API calls, database queries, AI inference, search operations
  • ✅ Validating P95/P99 SLA compliance in integration tests or CI pipelines
  • ✅ Generating performance reports for trend analysis or debugging
  • ✅ Comparing performance across different implementations (e.g., A/B testing)
  • ✅ Monitoring long-running services with periodic latency snapshots

Do NOT use for:

  • Real-time metrics collection in production (use OpenTelemetry, Prometheus instead)
  • Memory profiling or CPU profiling (use dotnet-trace, PerfView instead)
  • Distributed tracing (use Application Insights, Jaeger instead)

Pattern 1: Basic Latency Tracking

Use Case: Measure and validate a single operation's P95 latency.

using MemPalace.Diagnostics;
using System.Diagnostics;

[Fact]
public async Task SearchOperation_MeetsP95SLA()
{
    var benchmark = new PerformanceBenchmark();
    
    // Run 100 search operations
    for (int i = 0; i < 100; i++)
    {
        var sw = Stopwatch.StartNew();
        await _searchService.Search("test query");
        benchmark.RecordLatency("search", sw.Elapsed);
    }
    
    // Validate P95 < 100ms
    var passes = benchmark.ValidateSLA("search", TimeSpan.FromMilliseconds(100));
    
    if (!passes)
    {
        var stats = benchmark.GetPercentiles("search");
        Assert.Fail($"Search P95 SLA failed: {stats.P95.TotalMilliseconds:F2}ms exceeds 100ms");
    }
}

Pattern 2: Multi-Operation Batch Validation

Use Case: Validate multiple operations against their SLAs in a single test.

Read the full file on GitHub · 415 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. 9d ago First seen · 415 lines · 0 tokens per session scan A 54298031a3d4

Subscribe to this mod's changes

performance-tracking is a skill published in the GitHub repository elbruno/ElBruno.MempalaceNet (11 stars, last pushed 2mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,907 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-30.

Related

Other skills, from other repositories

potpie-debug-memory

Use while debugging or troubleshooting failures, flaky tests, incidents, production alerts, CI failures, local dev setup issues, repeated bugs, prior fixes, failed attempts, and verification history.

potpie-ai/potpie · 41 tokens

potpie-project-preferences

Use before writing, modifying, reviewing, refactoring, or testing code so repo/project preferences surface: error handling, file structure, frameworks, logging, dependency choices, testing, security, API style, and naming. Also use after code work when a reusable project preference should be recorded.

potpie-ai/potpie · 63 tokens

tla

TLA+ formal verification — extracts invariants, models state machines, checks for race conditions. Use after browser tests or manually. Triggers: verify, formal, invariant, TLA, race condition.

johanolofsson72/Claude · 44 tokens

foundry-hosted-agent-validation

Step-by-step process for validating a Python Foundry hosted agent sample (under python/samples/04-hosting/foundry-hosted-agents/) end to end — running it locally (native runtime and azd ai agent run) and after deploying it to an Azure AI Foundry project with azd. Use this when asked to validate a hosted agent sample.

microsoft/agent-framework · 82 tokens

build-and-test

How to build and test .NET projects in the Agent Framework repository. Use this when verifying or testing changes.

microsoft/agent-framework · 26 tokens

skill-release-gate

Evaluate an Agent Skill bundle for structural integrity, trigger quality, artifact improvement, script correctness, safety, installed-tree integrity, and target-host portability before release.

rohitg00/ai-engineering-from-scratch · 36 tokens