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 skills/apideck-libraries/api-skills/apideck-dotnetnpx skills add apideck-libraries/api-skills --skill apideck-dotnetgit clone --depth 1 https://github.com/apideck-libraries/api-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/apideck-libraries/api-skills/apideck-dotnet)<a href="https://agentmods.dev/skills/apideck-libraries/api-skills/apideck-dotnet"><img src="https://agentmods.dev/badge/skills/apideck-libraries/api-skills/apideck-dotnet.svg" alt="Measured on agentmods" 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.00123 | $0.01615 |
| Opus 5 | $0.00062 | $0.00807 |
| Sonnet 5 | $0.00025 | $0.00323 |
| Haiku 4.5 | $0.00012 | $0.00161 |
Grade A, and why
apideck-dotnet 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 5d 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 — 216 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Apideck .NET SDK Skill
Overview
The Apideck Unified API provides a single integration layer to connect with 200+ third-party services across accounting, CRM, HRIS, file storage, ATS, e-commerce, and more. The official .NET SDK (ApideckUnifySdk) provides typed clients for all unified APIs.
Installation
dotnet add package ApideckUnifySdk
IMPORTANT RULES
- ALWAYS use the
ApideckUnifySdkNuGet package. DO NOT make rawHttpClientcalls to the Apideck API. - ALWAYS pass
apiKey,appId, andconsumerIdwhen initializing the client. - USE
ServiceIdto specify which downstream connector to use (e.g.,"salesforce","quickbooks"). - USE async/await for all API calls — all operations return
Task<T>. - ALWAYS handle errors with try/catch using
BaseExceptionas the base class. - DO NOT store API keys in source code. Use environment variables or a secrets manager.
Quick Start
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Requests;
var sdk = new Apideck(
consumerId: "your-consumer-id",
appId: "your-app-id",
apiKey: Environment.GetEnvironmentVariable("APIDECK_API_KEY") ?? ""
);
var res = await sdk.Crm.Contacts.ListAsync(new CrmContactsAllRequest {
ServiceId = "salesforce",
Limit = 20,
});
while (res != null)
{
foreach (var contact in res.GetContactsResponse?.Data ?? [])
{
Console.WriteLine($"{contact.Name} - {contact.Emails?.FirstOrDefault()?.Email}");
}
res = await res.Next!();
}
SDK Patterns
Client Setup
using ApideckUnifySdk;
var sdk = new Apideck(
consumerId: "your-consumer-id",
appId: "your-app-id",
apiKey: Environment.GetEnvironmentVariable("APIDECK_API_KEY") ?? ""
);
CRUD Operations
All resources follow the pattern: sdk.{Api}.{Resource}.{Operation}Async(request).
using ApideckUnifySdk;
using ApideckUnifySdk.Models.Requests;
using ApideckUnifySdk.Models.Components;
// LIST
var listRes = await sdk.Crm.Contacts.ListAsync(new CrmContactsAllRequest {
ServiceId = "salesforce",
Limit = 20,
Filter = new ContactsFilter { Email = "[email protected]" },
Sort = new ContactsSort {
By = ContactsSortBy.UpdatedAt,
Direction = SortDirection.Desc,
},
});
// CREATE
var createRes = await sdk.Crm.Contacts.CreateAsync(new CrmContactsAddRequest {
ServiceId = "salesforce",
Contact = new ContactInput {
FirstName = "John",
LastName = "Doe",
Emails = new List<Email> {
new Email { EmailAddress = "[email protected]", Type = EmailType.Primary },
},
PhoneNumbers = new List<PhoneNumber> {
new PhoneNumber { Number = "+1234567890", Type = PhoneNumberType.Mobile },
},
},
});
Console.WriteLine(createRes.CreateContactResponse?.Data?.Id);
// GET
var getRes = await sdk.Crm.Contacts.GetAsync(new CrmContactsOneRequest {
Id = "contact_123",
ServiceId = "salesforce",
});
// UPDATE
var updateRes = await sdk.Crm.Contacts.UpdateAsync(new CrmContactsUpdateRequest {
Id = "contact_123",
ServiceId = "salesforce",
Contact = new ContactInput { FirstName = "Jane" },
});
// DELETE
await sdk.Crm.Contacts.DeleteAsync(new CrmContactsDeleteRequest {
Id = "contact_123",
ServiceId = "salesforce",
});
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.
- 5d ago First seen · 216 lines · 123 tokens per session scan A 5574660d2cba
apideck-dotnet is a skill published in the GitHub repository apideck-libraries/api-skills (3 stars, last pushed 6d ago), licensed Apache-2.0. It adds 123 tokens to every session and 1,615 once invoked, about $0.0006 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 skills, from other repositories
csharp-coding-standards
Defines the C# coding standards, patterns, and conventions to be applied consistently across all C# projects. Rules cover naming, structure, async patterns, null handling, dependency injection, logging, result patterns, and formatting. Apply these rules uniformly in all production code.
csharp-api-controller-standards
Defines the coding standards, patterns, and conventions for ASP.NET Core REST API controllers. Rules cover routing, HTTP verbs, response types, XML documentation, dependency injection, and asynchronous execution. Apply these rules uniformly to ensure a consistent, predictable, and well-documented API surface.
csharp-testing-standards
Defines the testing standards, patterns, and conventions for all C# unit and integration test projects. Rules cover test framework usage, naming, structure, mocking, assertions, and parameterization. Apply these rules uniformly across all test projects.
go-style
Modern Go code style for stdlib-first programs — error wrapping with %w, sentinel errors, structured logging with log/slog, context threading, consumer-defined interfaces, nil-safe constructors, net/http servers with method-pattern routing, flag/env configuration for services, and cobra commands with viper…
go-project
Scaffold a Go project with the canonical layout — cmd/ entrypoints with a thin main, private packages under internal/ (no pkg/), a separate tools module pinning Go developer CLIs (invoked directly via go tool -modfile=tools/go.mod, no GOBIN), Node tools pinned in package.json and run from nodemodules/.bin, and a…
python-project
Scaffold and modernize a Python project with uv. Sets up the src/ layout; a pyproject.toml on uv's native uvbuild backend; runtime deps plus a dev dependency group (PEP 735) pinning developer tooling like ruff, ty (or pyright), and pytest; a committed uv.lock and pinned interpreter; a thin main entry point; and a…