events-tracker CLAUDE.md

events-tracker CLAUDE.md is an instructions file for coding agents from geoff-maddock/events-tracker. It costs 1,137 tokens per session, scanned A, original, MIT.

Repository instructions for Events Tracker, a Laravel application for managing events, venues, artists, promoters, and related records.

In plain words
What is it for?
Use them when changing the application, running PHP or frontend checks, testing specific features, or starting its development and production builds.
Why use it?
They document the project's technology choices and the commands needed to check code quality, run tests, build the frontend, and work with Laravel.

Instructions file

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.

agentmods
npx agentmods add instructions/geoff-maddock/events-tracker/claude-md
Clone the repo
git clone --depth 1 https://github.com/geoff-maddock/events-tracker

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 events-tracker CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/geoff-maddock/events-tracker/claude-md.svg)](https://agentmods.dev/instructions/geoff-maddock/events-tracker/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/geoff-maddock/events-tracker/claude-md"><img src="https://agentmods.dev/badge/instructions/geoff-maddock/events-tracker/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 1,137 This file is loaded in full into every session.
When invoked 1,137 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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 $0.01137 $0.01137
Opus 5 $0.00568 $0.00568
Sonnet 5 $0.00227 $0.00227
Haiku 4.5 $0.00114 $0.00114

Measured 3d ago against content hash 026a24b418d3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

events-tracker CLAUDE.md 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 3d 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.

CLAUDE.md · 77 lines

How it starts

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

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Project

Events Tracker — Laravel 12 CMS for tracking events, series, venues, artists, promoters, and related entities for music/arts communities. PHP 8.2+ (sandbox and CI run PHP 8.4), MySQL 8, Vite + Tailwind 4 + Vue 3 / Alpine / jQuery on the frontend. Legacy app skeleton (Kernels/Handler/providers) retained by choice.

Default branch for PRs is main

Common commands

# Static analysis (Larastan, level 3)
composer phpstan
./vendor/bin/phpstan analyse

# Full test pipeline (migrate + seed + phpunit) — what CI runs
composer tests

# PHPUnit directly
./vendor/bin/phpunit tests
./vendor/bin/phpunit tests/Feature/EventsControllerTest.php           # single file
./vendor/bin/phpunit --filter testEventCreation tests/Feature/...     # single test
php artisan test                                                       # Laravel wrapper

# Frontend
npm run dev        # Vite dev server
npm run build      # production build (alias: npm run prod)
npm run lint       # eslint resources/assets/js
npm run format     # prettier on resources/**

# Laravel
php artisan migrate:fresh
php artisan db:seed --class=ProdBasicDatabaseSeeder   # or ProdExtra / ProdPittsburgh
php artisan serve

composer.json scripts call php-latest (a system alias). Plain php artisan ... works fine in dev.

PHPUnit env (phpunit.xml) forces APP_ENV=testing, CACHE_DRIVER=array, SESSION_DRIVER=array, QUEUE_DRIVER=sync. Tests run against a real MySQL database — composer tests runs migrate + db:seed first, so a working DB connection is required.

PHPStan has a phpstan-baseline.neon — don't try to fix baseline errors as part of unrelated work; add new errors to the baseline only if intentional.

Architecture notes worth knowing up front

Filters. app/Filters/QueryFilter.php is the base class; each model has a sibling *Filters.php (e.g. EventFilters, EntityFilters). Controllers/API endpoints pipe request input through these to apply filters[field]=value, filters[tag]=…, sort, direction. When adding a filterable field, extend the relevant *Filters class — don't add ad-hoc where clauses in controllers.

Read the full file on GitHub · 77 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. 3d ago First seen · 77 lines · 1,137 tokens per session scan A 026a24b418d3

Subscribe to this mod's changes

events-tracker CLAUDE.md is an instructions file published in the GitHub repository geoff-maddock/events-tracker (24 stars, last pushed 2d ago), licensed MIT. It adds 1,137 tokens to every session, about $0.0057 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-09-01.