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.
npx agentmods add rules/burugo/one-mcp/thinggit clone --depth 1 https://github.com/burugo/one-mcpWhat 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 | $0.00000 | $0.02541 |
| Opus 5 | $0.00000 | $0.01270 |
| Sonnet 5 | $0.00000 | $0.00508 |
| Haiku 4.5 | $0.00000 | $0.00254 |
Grade A, and why
thing 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 yesterday.
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.
Copies of this mod
1 near-identical copy found in the catalogue:
- thing — 100% identical, 0 lines differ
How it starts
The opening of the file, as written. The whole thing — 237 lines — stays where its author put it; the contents beside it link to each section on GitHub.
description: globs: *.go alwaysApply: false
Rule Name: Thing ORM Usage Guide
Description:
Quick reference for using the Thing ORM (github.com/burugo/thing).
Core Concept
- High-performance Go ORM focusing on CRUD and list operations.
- Built-in caching (Redis or in-memory) automatically handles single-entity and list query caching & invalidation.
- Uses Go generics for type safety and a cleaner API.
- Supports MySQL, PostgreSQL, SQLite.
Configuration
- Create DB Adapter:
import "github.com/burugo/thing/drivers/db/sqlite" // Or mysql, postgres dbAdapter, err := sqlite.NewSQLiteAdapter(":memory:") - Create Cache Client (Optional, defaults to in-memory):
import ( "github.com/redis/go-redis/v9" redisCache "github.com/burugo/thing/drivers/cache/redis" "github.com/burugo/thing" ) // Use nil for default in-memory: // var cacheClient thing.CacheClient = nil // Or Redis: // rdb := redis.NewClient(...) // cacheClient = redisCache.NewClient(rdb) - Get ORM Instance per Model:
Alternative Global Config (less flexible):import "github.com/burugo/thing" // import your models package // For a specific model typels.User) userThing, err := thing.New[*models.User](mdc:db)thing.Configure(dbAdapter, cacheClient)thenthing.Use[*Model]().
Basic Usage
- Model Definition: Embed
thing.BaseModeland usedbtags for columns.
Note: While using thetype User struct { thing.BaseModel // Includes ID, CreatedAt, UpdatedAt, DeletedAt Name string `db:"name"` // Explicitly maps Name field to 'name' column UserAge int // db tag omitted, defaults to 'user_age' column } // Optional: Define TableName() method if different from snake_case plural struct name. // func (u *User) TableName() string { return "custom_users_table" }dbtag is recommended for clarity, it's technically optional. If omitted, Thing ORM defaults to converting the Go field name (CamelCase, e.g.,UserAge) to its snake_case equivalent (user_age) as the database column name. Usedb:"-"to explicitly ignore a field.
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.
- yesterday First seen · 237 lines · 2,541 tokens per session scan A 915b023f6220
thing is a cursor rule published in the GitHub repository burugo/one-mcp (412 stars, last pushed 14d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 2,541 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.
Other cursor rules, from other repositories
tools
MCP tool development patterns — factory pattern, base class, callbacks, and descriptions.
architecture
Add a new handler interface to internal/api/handlers.go.
mcp-debugging
Run the development restart script to rebuild and restart the muster service with your changes.
mcp-framework
We are in the mcp-framework , a typescript framework that allows construction of model context protocol (mcp) servers. We are implementing the new specification: Overview MCP provides a standardized way for applications to.
github-workflow
MCP tool management and workflow proxy.
elysia
TITLE: Elysia Supported Schema Validation Types DESCRIPTION: Elysia provides declarative schema support for various parts of an HTTP request and response, enabling robust validation and automatic OpenAPI generation. SOURCE: https://github.com/elysiajs/documentation/blob/main/docs/essential/validation.md#snippet3.