Borrowing it
Nothing to install: this file belongs to lancereinsmith/claude-qgenda-plugin. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/lancereinsmith/claude-qgenda-plugin/master/CLAUDE.mdgit clone --depth 1 https://github.com/lancereinsmith/claude-qgenda-pluginWrote 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.
[](https://agentmods.dev/instructions/lancereinsmith/claude-qgenda-plugin/claude-md)<a href="https://agentmods.dev/instructions/lancereinsmith/claude-qgenda-plugin/claude-md"><img src="https://agentmods.dev/badge/instructions/lancereinsmith/claude-qgenda-plugin/claude-md/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.
<a href="https://agentmods.dev/instructions/lancereinsmith/claude-qgenda-plugin/claude-md"><img src="https://agentmods.dev/badge/instructions/lancereinsmith/claude-qgenda-plugin/claude-md.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.01801 | $0.01801 |
| Opus 5 | $0.00901 | $0.00901 |
| Sonnet 5 | $0.00360 | $0.00360 |
| Haiku 4.5 | $0.00180 | $0.00180 |
Grade A, and why
claude-qgenda-plugin 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 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.
How it starts
The opening of the file, as written. The whole thing — 118 lines — stays where its author put it; the contents beside it link to each section on GitHub.
QGenda Claude Skill
Overview
This project provides a read-only QGenda scheduling integration for Claude through two interfaces:
- Claude Code Plugin/Skill —
skills/qgenda/SKILL.md+scripts/qgenda_query.py(plugin structure with.claude-plugin/plugin.json) - Claude Desktop MCP Server —
server.pyvia FastMCP
Both share core logic in qgenda_core.py. The project covers 15 QGenda REST API endpoints spanning schedules, staff, tasks, requests, rotations, audit logs, daily operations, and patient encounters.
Architecture
qgenda_core.py ← Shared: client, OData, formatting, 15 query functions
├── server.py ← MCP server (15 tools, thin wrappers over core)
└── scripts/qgenda_query.py ← CLI script (15 subcommands, thin wrappers with argparse)
How the layers connect
-
qgenda_core.pycontains ALL business logic: client initialization, OData query building, response formatting, and onequery_*()function per API endpoint. It usesqgendapyfor all API access — authentication and token refresh are handled automatically. -
server.py(MCP) andscripts/qgenda_query.py(CLI) are thin wrappers — they accept user input, call the matchingcore.query_*()function, and return/print the result. They contain no query logic themselves. -
All 15 endpoints use
qgendapyresource methods (e.g.,client.schedule.list(),client.staff.get(),client.daily.rooms()).
Endpoints covered
| # | Endpoint | API Path | Core Function | CLI Command | MCP Tool |
|---|---|---|---|---|---|
| 1 | Schedule | GET /schedule |
query_schedule() |
schedule |
get_schedule |
| 2 | Staff list | GET /staffmember |
query_staff() |
staff |
get_staff |
| 3 | Staff with tags | GET /staffmember (w/ includes) |
query_staff_with_tags() |
staff-tags |
get_staff_tags |
| 4 | Tasks | GET /task |
query_tasks() |
tasks |
get_tasks |
| 5 | Facilities | GET /facility |
query_facilities() |
facilities |
get_facilities |
| 6 | Time events | GET /timeevent |
query_time_events() |
timeevent |
get_time_events |
| 7 | Daily cases | GET /dailycase |
query_daily_cases() |
dailycase |
get_daily_cases |
| 8 | Open shifts | GET /schedule/openshifts |
query_open_shifts() |
openshifts |
get_open_shifts |
| 9 | Requests (PTO/swaps) | GET /request |
query_requests() |
requests |
get_requests |
| 10 | Rotations | GET /schedule/rotations |
query_rotations() |
rotations |
get_rotations |
| 11 | Schedule audit log | GET /schedule/auditLog |
query_schedule_audit_log() |
auditlog |
get_schedule_audit_log |
| 12 | Staff member by ID | GET /staffmember/:id |
query_staff_member() |
staff-detail |
get_staff_member |
| 13 | Daily configuration | GET /daily/dailyconfiguration |
query_daily_configuration() |
dailyconfig |
get_daily_configuration |
| 14 | Rooms | GET /daily/room |
query_rooms() |
rooms |
get_rooms |
| 15 | Patient encounters | GET /daily/patientencounter |
query_patient_encounters() |
encounters |
get_patient_encounters |
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.
- 10d ago First seen · 118 lines · 1,801 tokens per session scan A a88076d6280b
claude-qgenda-plugin CLAUDE.md is an instructions file published in the GitHub repository lancereinsmith/claude-qgenda-plugin (2 stars, last pushed 1mo ago), licensed MIT. It adds 1,801 tokens to every session, about $0.0090 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-31.
Other instructions, from other repositories
next.js AGENTS.md
AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.
codex AGENTS.md
AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.
vscode buildNext.instructions.md
Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).
spec-kit AGENTS.md
AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.
vscode oss-third-party-notices.instructions.md
Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).
langchain AGENTS.md
AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.