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 skills add znlgis/opengis-skills --skill sodgit clone --depth 1 https://github.com/znlgis/opengis-skillsWrote 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/skills/znlgis/opengis-skills/sod)<a href="https://agentmods.dev/skills/znlgis/opengis-skills/sod"><img src="https://agentmods.dev/badge/skills/znlgis/opengis-skills/sod/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/skills/znlgis/opengis-skills/sod"><img src="https://agentmods.dev/badge/skills/znlgis/opengis-skills/sod.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.00057 | $0.02288 |
| Opus 5 | $0.00028 | $0.01144 |
| Sonnet 5 | $0.00011 | $0.00458 |
| Haiku 4.5 | $0.00006 | $0.00229 |
Grade A, and why
sod 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 today.
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 — 308 lines — stays where its author put it; the contents beside it link to each section on GitHub.
项目地址: https://github.com/znlgis/SOD(社区主仓库见 https://gitee.com/znlgis/SOD)
官网: https://www.pwmis.com/sod/
官方文档: http://www.pwmis.com/sod/
NuGet:
PDF.NET.SODNuGet(.NET 6+):
PWMIS.SOD许可证: Apache-2.0
概述
SOD 由 PDF.NET 演化而来,主要特点:
- 混合 ORM 模式:原生 SQL + ORM + SQL-MAP(XML 配置)+ OQL(对象查询语言)
- 多数据库:SqlServer / Oracle / MySQL / PostgreSQL / SQLite / Access / 达梦 DM / 人大金仓 / 神舟通用
- AdoHelper:屏蔽底层 Provider 差异
- 实体类:
EntityBase,支持脏字段跟踪、字段映射、状态机 - OQL:链式 API 查询、连接、分组、聚合
- SQL-MAP:XML 写 SQL,Mybatis 风格
- 读写分离:主从配置
- 缓存与监控:内置 SQL 性能日志
安装
dotnet add package PDF.NET.SOD
# 或对应数据库 Provider:
dotnet add package PDF.NET.SOD.MySQL
dotnet add package PDF.NET.SOD.PostgreSQL
配置连接字符串(App.config / appsettings)
<connectionStrings>
<add name="local" providerName="SqlServer"
connectionString="server=.;database=demo;uid=sa;pwd=..." />
</connectionStrings>
或代码:
using PWMIS.DataProvider.Data;
var db = MyDB.GetDBHelperByConnectionString(
"server=.;database=demo;uid=sa;pwd=...", "SqlServer");
实体类
using PWMIS.DataMap.Entity;
[Serializable]
public class User : EntityBase
{
public User() {
TableName = "Users";
IdentityName = "Id"; // 自增列
PrimaryKeys.Add("Id");
}
public int Id { get => getProperty<int>("Id");
set => setProperty("Id", value); }
public string Name { get => getProperty<string>("Name");
set => setProperty("Name", value, 50); }
public DateTime Time { get => getProperty<DateTime>("CreateTime");
set => setProperty("CreateTime", value); }
}
可通过 SOD CodeMaker 或 EntityBuilder 自动生成。
CRUD(EntityQuery)
using PWMIS.DataMap.Entity;
var db = MyDB.GetDBHelperByConnectionName("local");
var q = new EntityQuery<User>(db);
var u = new User { Name = "Tom", Time = DateTime.Now };
q.Insert(u); // INSERT
u.Name = "Tom2";
q.Update(u); // UPDATE(仅脏字段)
var list = q.GetList(top: 10); // SELECT TOP 10
var u1 = q.GetEntity(new User { Id = 1 }); // by PK
q.Delete(u1); // DELETE
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.
- today Changed b95efd270e72
- 8d ago Changed 4498e99396a2
- 12d ago First seen · 308 lines · 57 tokens per session scan A 37b2f97b6549
sod is a skill published in the GitHub repository znlgis/opengis-skills (61 stars, last pushed today), licensed MIT. It adds 57 tokens to every session and 2,288 once invoked, about $0.0003 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-30.
Other skills, from other repositories
worker-services
Build long-running .NET background services with BackgroundService, Generic Host, graceful shutdown, configuration, logging, and deployment patterns suited to workers and daemons. USE FOR: background services; scheduled workers; hosted services; worker extraction; graceful shutdown, health checks, and service hosting…
aspnet-core
Build, debug, modernize, or review ASP.NET Core applications with correct hosting, middleware, security, configuration, logging, and deployment patterns on current .NET. USE FOR: working on ASP.NET Core apps, services, or middleware; changing auth, routing, configuration, hosting, or deployment behavior; deciding…
entity-framework-core
Design, tune, or review EF Core data access with proper modeling, migrations, query translation, performance, and lifetime management for modern .NET applications. USE FOR: DbContext, migrations, model configuration, EF queries, tracking, loading, performance, transactions, and EF6 migration decisions. DO NOT USE FOR…
minimal-apis
Design and implement Minimal APIs in ASP.NET Core using handler-first endpoints, route groups, filters, and lightweight composition suited to modern .NET services. USE FOR: building new HTTP APIs in ASP.NET Core; creating lightweight microservices; choosing between Minimal APIs and controllers. DO NOT USE FOR…
web-api
Build or maintain controller-based ASP.NET Core APIs when the project needs controller conventions, advanced model binding, validation extensions, OData, JsonPatch, or existing API patterns. USE FOR: working on controller-based APIs in ASP.NET Core; needing controller-specific extensibility or conventions; migrating…
managedcode-communication
Use ManagedCode.Communication when a .NET application needs explicit result objects, structured errors, and predictable service or API boundaries instead of exception-driven control flow. USE FOR: integrating ManagedCode.Communication into services or APIs; replacing exception-driven result handling with explicit…