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/moaidhathot/zakira.imprint/stringutilsnpx skills add MoaidHathot/Zakira.Imprint --skill stringutilsgit clone --depth 1 https://github.com/MoaidHathot/Zakira.ImprintWrote 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/moaidhathot/zakira.imprint/stringutils)<a href="https://agentmods.dev/skills/moaidhathot/zakira.imprint/stringutils"><img src="https://agentmods.dev/badge/skills/moaidhathot/zakira.imprint/stringutils.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 | $0.00025 | $0.01620 |
| Opus 5 | $0.00013 | $0.00810 |
| Sonnet 5 | $0.00005 | $0.00324 |
| Haiku 4.5 | $0.00003 | $0.00162 |
Grade A, and why
Zakira.Imprint.Sample - String Utilities Library 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 — 210 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Zakira.Imprint.Sample - String Utilities
This skill teaches you how to use the Zakira.Imprint.Sample NuGet package, which provides string manipulation utilities via the StringExtensions and StringHelper classes.
Namespace
All types are in the Zakira.Imprint.Sample.WithCode namespace:
using Zakira.Imprint.Sample.WithCode;
StringExtensions (Extension Methods)
These are extension methods on string. After adding the using directive, call them directly on any string instance.
Slugify
Converts a string to a URL-friendly slug (lowercase, hyphens, no special chars).
"Hello World! This is C#".Slugify() // => "hello-world-this-is-c"
"Café Résumé".Slugify() // => "cafe-resume" (diacritics removed)
" Multiple Spaces ".Slugify() // => "multiple-spaces"
Truncate
Truncates to a maximum length with a configurable suffix.
"Hello World".Truncate(8) // => "Hello..."
"Hello World".Truncate(8, "~") // => "Hello W~"
"Hi".Truncate(10) // => "Hi" (no truncation needed)
Mask
Masks the middle portion of a string, keeping visible characters at start and end.
"1234567890".Mask(2, 2) // => "12******90"
"SensitiveData".Mask(3, 3) // => "Sen*******ata"
"1234567890".Mask(2, 2, '#') // => "12######90"
ToTitleCase
Converts to Title Case (first letter of each word capitalized).
"hello world example".ToTitleCase() // => "Hello World Example"
"ALL CAPS INPUT".ToTitleCase() // => "All Caps Input"
RemoveDiacritics
Strips accent marks from characters.
"café résumé".RemoveDiacritics() // => "cafe resume"
"naïve über".RemoveDiacritics() // => "naive uber"
ToCamelCase
Converts to camelCase from any word-separated format.
"hello world example".ToCamelCase() // => "helloWorldExample"
"some-kebab-case".ToCamelCase() // => "someKebabCase"
"SOME_SCREAMING_SNAKE".ToCamelCase() // => "someScreamingSnake"
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 · 210 lines · 25 tokens per session scan A 5b8e8e98e213
Zakira.Imprint.Sample - String Utilities Library is a skill published in the GitHub repository MoaidHathot/Zakira.Imprint (22 stars, last pushed 2mo ago), licensed MIT. It adds 25 tokens to every session and 1,620 once invoked, about $0.0001 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
winui-setup
Install and verify the prerequisites the win-dev-skills WinUI 3 toolchain depends on — .NET SDK 8.0.100+, WinApp CLI 0.6+, and Developer Mode. Use only when the user explicitly asks to set up or repair the toolchain. Do not invoke automatically when another skill reports a missing prerequisite; tell the user what is…
winui-wpf-migration
Migrate WPF applications to WinUI 3 — namespace replacement (System.Windows → Microsoft.UI.Xaml), control mapping (DataGrid→ListView, WrapPanel→ItemsRepeater, TabControl→TabView), threading (Dispatcher→DispatcherQueue), imaging (System.Drawing→BitmapImage), MVVM conversion to CommunityToolkit.Mvvm, and…
opengis-skills
Use when AI coding assistant needs GIS/CAD/C#/AI/IoT/3D domain expertise for 73+ open-source projects. One-stop skill index with tag-based search and on-demand loading for GDAL, GeoServer, QGIS, PostGIS, JTS, CesiumJS, FreeCAD, OpenSCAD, OCCT, NPOI, SqlSugar, Furion, Dify, SuperSplat, Go and more.
csharp-dotnet
Use when building on .NET 8+ with C# 12. Covers nullable reference types, records, async/await correctness, minimal APIs, dependency injection, and EF Core query performance.
csharp-mstest
Get best practices for MSTest 3.x/4.x unit testing, including modern assertion APIs and data-driven tests.
fluentui-blazor
Guide for using the Microsoft Fluent UI Blazor component library (Microsoft.FluentUI.AspNetCore.Components NuGet package) in Blazor applications. Use this when the user is building a Blazor app with Fluent UI components, setting up the library, using FluentUI components like FluentButton, FluentDataGrid, FluentDialog…