orchardcore-dnc-registry

orchardcore-dnc-registry is a skill for Claude Code, Codex from CrestApps/CrestApps.AgentSkills. It costs 135 tokens per session (2,325 once invoked), scanned A, original, MIT.

An Orchard Core module for checking phone numbers against national and local do-not-call lists before importing or contacting them. It can store uploaded local lists in Azure Blob Storage, Microsoft's cloud file storage service.

In plain words
What is it for?
Use it to configure registry providers, process CSV suppression lists, normalize numbers to the international E.164 format, and add audit information for skipped imports.
Why use it?
It helps prevent calls or imports involving numbers that should be suppressed and avoids comparing phone numbers in inconsistent formats. It also keeps tenant-specific list storage and registry settings organized.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to configure registry providers, process CSV suppression lists, normalize numbers to the international E.164 format, and add audit information for skipped imports.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/crestapps/crestapps.agentskills/orchardcore-dnc-registry
Install

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.

Any agent
npx skills add CrestApps/CrestApps.AgentSkills --skill orchardcore-dnc-registry
Clone the repo
git clone --depth 1 https://github.com/CrestApps/CrestApps.AgentSkills

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for orchardcore-dnc-registry

README.md
[![agentmods](https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-dnc-registry/github.svg)](https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-dnc-registry)
Your own site
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-dnc-registry"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-dnc-registry/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.

agentmods 80×15 button for orchardcore-dnc-registry

Your own site · 80×15
<a href="https://agentmods.dev/skills/crestapps/crestapps.agentskills/orchardcore-dnc-registry"><img src="https://agentmods.dev/badge/skills/crestapps/crestapps.agentskills/orchardcore-dnc-registry.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 135 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,325 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00135 $0.02325
Opus 5 $0.00068 $0.01162
Sonnet 5 $0.00027 $0.00465
Haiku 4.5 $0.00014 $0.00232

Measured 6d ago against content hash 3fb13f270b0a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

orchardcore-dnc-registry 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 6d 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.

plugins/crestapps-orchardcore/skills/orchardcore-dnc-registry/SKILL.md · 224 lines

How it starts

The opening of the file, as written. The whole thing — 224 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Orchard Core DNC Registry - Prompt Templates

Configure Do-Not-Call Suppression

You are an Orchard Core expert. Generate accurate compliance-focused configuration and code for CrestApps DNC Registry modules. The feature checks selected national registries and maintains local suppression lists. The optional Azure module changes local-list file storage from the tenant file system to Azure Blob Storage.

Guidelines

  • Install CrestApps.OrchardCore.DncRegistry in the web/startup project.
  • Enable CrestApps.OrchardCore.DncRegistry before provider features.
  • Install and enable CrestApps.OrchardCore.DncRegistry.Azure only when Azure Blob Storage should back local DNC uploaded files.
  • The core feature depends on CrestApps.OrchardCore.PhoneNumbers.
  • Normalize list numbers to canonical PhoneNumber values using IPhoneNumberService.TryParse; do not compare raw display strings.
  • Treat registry hits as suppression decisions and retain appropriate audit/export information for skipped import rows.
  • Configure external registry credentials only in protected tenant settings.
  • Use INationalDoNotCallRegistry to add providers and return only input numbers reported as registered.
  • Use NumberSearchContext.CountryCode to narrow country-aware lookups.
  • Do not claim that Azure stores DNC query indexes; it stores uploaded source files, while local indexes remain managed by the local DNC feature.
  • All recipe JSON must be wrapped in { "steps": [...] }.
  • All C# classes must use the sealed modifier, except for View Models.

Feature Overview

Feature Feature ID Purpose
DNC Registry CrestApps.OrchardCore.DncRegistry Common settings, permissions, and national-registry framework
USA FTC CrestApps.OrchardCore.DncRegistry.UsaFtc FTC national Do Not Call integration
Canada LNNTE-DNCL CrestApps.OrchardCore.DncRegistry.CanadaDncl Canadian national list integration
Local DNC Registry CrestApps.OrchardCore.DncRegistry.Local CSV upload, background import, YesSql records, and local suppression
Azure Blob backend module dependency on CrestApps.OrchardCore.DncRegistry.Local Replaces local source-file storage with Azure Blob Storage

Read the full file on GitHub · 224 lines

Changes

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.

  1. 6d ago First seen · 224 lines · 135 tokens per session scan A 3fb13f270b0a

Subscribe to this mod's changes

orchardcore-dnc-registry is a skill published in the GitHub repository CrestApps/CrestApps.AgentSkills (13 stars, last pushed 11d ago), licensed MIT. It adds 135 tokens to every session and 2,325 once invoked, about $0.0007 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-09-03.

Related

Other skills, from other repositories

prior-art-search

Systematic 7-step methodology for comprehensive patent prior art searches and patentability assessments using BigQuery and CPC classification.

RobThePCGuy/Claude-Patent-Creator · 26 tokens

mpep-search

Expert system for searching USPTO MPEP, 35 USC statutes, 37 CFR regulations, and post-Jan 2024 updates.

RobThePCGuy/Claude-Patent-Creator · 32 tokens

indirect-tax-einvoicing-advisor

Multi-jurisdiction indirect tax and e-invoicing reference framework covering VAT/GST compliance and mandatory electronic invoicing mandates across EU, Brazil, India, Mexico, China, UK, and Australia.

VincentChuWaiChow/vanguard-frontier-agentic · 50 tokens

consolidation-intercompany-advisor

Multi-jurisdiction consolidation scope and intercompany elimination reference framework covering ASC 810 / IFRS 10 control models, VIE (Variable Interest Entity) primary beneficiary analysis, NCI measurement, equity method accounting (ASC 323 / IAS 28), intercompany eliminations (sales, profit-in-inventory, debt…

VincentChuWaiChow/vanguard-frontier-agentic · 120 tokens

close-cycle-advisor

Multi-jurisdiction financial close cycle reference framework covering month-end, quarter-end, and year-end close. Provides regulatory filing deadlines by jurisdiction (SEC, EU TD, UK DTR, TSE/FSA, CSRC, SEBI, ASX, HKEX), record-to-report process steps, reconciliation standards, intercompany elimination requirements…

VincentChuWaiChow/vanguard-frontier-agentic · 154 tokens

data-classification-to-dlp-protocol

Use this skill when sensitive data must be discovered, classified with Microsoft Purview sensitivity labels, protected by Data Loss Prevention policies, and monitored for label adoption and DLP policy effectiveness across Microsoft 365 and Power Platform environments. Defines the end-to-end flow from data discovery…

VincentChuWaiChow/vanguard-frontier-agentic · 131 tokens