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 UvRoxx/midnight-agent-skills --skill midnight-compact-guidegit clone --depth 1 https://github.com/UvRoxx/midnight-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/uvroxx/midnight-agent-skills/midnight-compact-guide)<a href="https://agentmods.dev/skills/uvroxx/midnight-agent-skills/midnight-compact-guide"><img src="https://agentmods.dev/badge/skills/uvroxx/midnight-agent-skills/midnight-compact-guide/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/uvroxx/midnight-agent-skills/midnight-compact-guide"><img src="https://agentmods.dev/badge/skills/uvroxx/midnight-agent-skills/midnight-compact-guide.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.00066 | $0.03294 |
| Opus 5 | $0.00033 | $0.01647 |
| Sonnet 5 | $0.00013 | $0.00659 |
| Haiku 4.5 | $0.00007 | $0.00329 |
Grade A, and why
midnight-compact-guide 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 12d 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 — 483 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Midnight Compact Language Reference (v0.19+)
CRITICAL: This reference is derived from actual compiling contracts in the Midnight ecosystem (MeshJS starter template). Always verify syntax against this reference before generating contracts.
Quick Start Template
Use this as a starting point - it compiles successfully:
pragma language_version >= 0.19;
import CompactStandardLibrary;
// Ledger state (individual declarations, NOT a block)
export ledger counter: Counter;
export ledger owner: Bytes<32>;
// Witness for private/off-chain data (declaration only)
witness local_secret_key(): Bytes<32>;
// Circuit (returns [] not Void)
export circuit increment(): [] {
counter.increment(1);
}
1. Pragma (Version Declaration)
CORRECT - simple minimum version:
pragma language_version >= 0.19;
WRONG - these will cause issues:
pragma language_version >= 0.14.0; // ❌ outdated version
pragma language_version >= 0.16 && <= 0.18; // ❌ outdated, use >= 0.19
2. Imports
Always import the standard library:
import CompactStandardLibrary;
For modular code:
import "path/to/module";
import { SomeType } from "other/module";
3. Ledger Declarations
CORRECT - individual declarations with export ledger:
export ledger counter: Counter;
export ledger owner: Bytes<32>;
export ledger balances: Map<Bytes<32>, Uint<64>>;
// Private state (off-chain only)
ledger secretValue: Field; // no export = private
WRONG - block syntax is DEPRECATED:
// ❌ This causes parse error: found "{" looking for an identifier
ledger {
counter: Counter;
owner: Bytes<32>;
}
Ledger Modifiers
export ledger publicData: Field; // Public, readable by anyone
export sealed ledger immutableData: Field; // Set once in constructor, cannot change
ledger privateData: Field; // Private, not exported
What ships with it
4 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.
- 12d ago First seen · 483 lines · 66 tokens per session scan A 2305bc157828
midnight-compact-guide is a skill published in the GitHub repository UvRoxx/midnight-agent-skills (9 stars, last pushed 5mo ago), licensed MIT. It adds 66 tokens to every session and 3,294 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-31.
Other skills, from other repositories
midnight-dapp-dev
Comprehensive guide for Midnight Network DApp frontend development covering project scaffolding with Vite and React 19 plus shadcn/ui templates, Next.js wallet connector patterns via the DApp Connector API with App Router, React wallet connector with Vite setup, provider architecture including MidnightProviders, proof…
midnight-compact
Comprehensive guide to the Compact programming language (v0.22+) for writing privacy-preserving smart contracts on Midnight Network. Use when users need to write Compact smart contracts with zero-knowledge proofs, understand Compact syntax and language features, implement ZK circuit patterns and optimizations…
midnight-api
Comprehensive guide to Midnight Network APIs (v8.0+) for building decentralized applications. Use when users need to integrate Midnight APIs including Compact Runtime, DApp Connector, ZSwap, Wallet, and Ledger APIs, connect DApps to Midnight wallets, generate and verify zero-knowledge proofs programmatically, manage…
midnight-concepts
Foundational knowledge about Midnight Network zero-knowledge blockchain technology, privacy mechanisms, and architecture. Use when users need to understand zero-knowledge proofs, privacy mechanisms like Zswap and selective disclosure, partner chain architecture, real-world use cases for private DeFi and voting, when…
midnight-network
Guide to Midnight Network infrastructure, validators, indexers, and network operations. Use when users need to run Midnight validators and participate in consensus, set up and configure Midnight indexers for blockchain data, configure network nodes and infrastructure, monitor validator performance and network health…
midnight-wallet
Complete reference for Midnight Network wallet operations covering the Wallet SDK with shielded wallet, unshielded wallet, DUST wallet, HD wallet, and WalletFacade, wallet types including ShieldedWallet for private transactions and UnshieldedWallet for public transactions, creating wallets from seed phrases, random…