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 Deep-Identity-Inc/agent-skills --skill deepai-assistantgit clone --depth 1 https://github.com/Deep-Identity-Inc/agent-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/deep-identity-inc/agent-skills/deepai-assistant)<a href="https://agentmods.dev/skills/deep-identity-inc/agent-skills/deepai-assistant"><img src="https://agentmods.dev/badge/skills/deep-identity-inc/agent-skills/deepai-assistant/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/deep-identity-inc/agent-skills/deepai-assistant"><img src="https://agentmods.dev/badge/skills/deep-identity-inc/agent-skills/deepai-assistant.svg" alt="Reviewed on agentmods" width="80" 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.00047 | $0.01933 |
| Opus 5 | $0.00023 | $0.00966 |
| Sonnet 5 | $0.00009 | $0.00387 |
| Haiku 4.5 | $0.00005 | $0.00193 |
Grade A, and why
deepai-assistant 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 10d 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 — 265 lines — stays where its author put it; the contents beside it link to each section on GitHub.
deepAI - deepidv Integration Assistant
Use this skill when an agent is helping a developer build, debug, or review a deepidv integration.
When To Use This Skill
Use this skill when the user is:
- integrating
@deepidv/serverinto a backend TypeScript application - making direct REST API calls to deepidv
- configuring or debugging a hosted MCP setup
- implementing verification, workflow, or screening flows
- wiring webhook consumers or callback handling
- diagnosing deepidv authentication, payload, or environment issues
If the user wants to execute live verification or screening requests, pair this
skill with deepidv-verify instead of inventing request shapes from memory.
Core Surfaces
This assistant should keep the product surfaces separate:
@deepidv/serveris the canonical backend TypeScript SDK- REST API and SDK usage authenticate with
x-api-key - hosted MCP usage authenticates with OAuth 2.0 and PKCE
- webhook handling is integration-specific and should be implemented in the caller's backend, not in a browser client
Do not tell users to mix these auth models.
Canonical TypeScript Path
When the user is writing TypeScript, default to the published server SDK docs:
import { DeepIDV } from '@deepidv/server';
const client = new DeepIDV({
apiKey: process.env.DEEPIDV_API_KEY!,
});
Important rules from the TypeScript docs:
@deepidv/serveris backend-first and should run in a trusted runtime- do not suggest using it in a browser or mobile client
- the documented namespaces are
sessions,document,face,identity,screening, andasyncJobs - do not invent undocumented SDK namespaces such as
client.workflows.* - if the user needs workflow management, guide them to the REST management API docs unless a documented SDK surface exists
Authentication Guidance
REST API and SDK
Use API-key authentication:
x-api-key: <api_key>
REST base URL:
https://api.deepidv.com/v1
SDK default baseUrl:
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 10d ago First seen · 265 lines · 47 tokens per session scan A 5fe1f997ef75
deepai-assistant is a skill published in the GitHub repository Deep-Identity-Inc/agent-skills (3 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 47 tokens to every session and 1,933 once invoked, about $0.0002 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
add-tool
Scaffold a new MCP tool definition. Use when the user asks to add a tool, create a new tool, or implement a new capability for the server.
add-service
Scaffold a new service integration. Use when the user asks to add a service, integrate an external API, or create a reusable domain module with its own initialization and state.
add-resource
Scaffold a new MCP resource definition. Use when the user asks to add a resource, expose data via URI, or create a readable endpoint.
api-auth
Authentication, authorization, and multi-tenancy patterns for @cyanheads/mcp-ts-core. Use when implementing auth scopes on tools/resources, configuring auth modes (none/jwt/oauth), working with JWT/OAuth env vars, or understanding how tenantId flows through ctx.state.
api-mirror
Stand up a persistent, self-refreshing local mirror of a bulk upstream dataset with the MirrorService (@cyanheads/mcp-ts-core/mirror). Use when a server wraps a large or slow API and should query a synced local index (embedded SQLite + FTS5) instead of paginating the live API per request.
regtech-expert
Expert in regulatory technology, compliance automation, KYC/AML, transaction monitoring, risk assessment, and automated reporting. Use when the user mentions compliance, KYC, AML, transaction monitoring, risk assessment, or regulatory reporting, or when the task involves KYC/AML Compliance, KYC/AML Program, Regulatory…