midnight-infra-setup

midnight-infra-setup is a skill for Claude Code, Codex from UvRoxx/midnight-agent-skills. It costs 78 tokens per session (2,797 once invoked), scanned B, original, MIT.

A setup guide for running Midnight Network development services on your own computer. These services include a local blockchain node, an indexer that makes blockchain data searchable, and a proof server for zero-knowledge proofs.

In plain words
What is it for?
Use it to set up local Midnight infrastructure, start the node, indexer, or proof server, and troubleshoot the development stack.
Why use it?
It helps prepare the complete local environment needed to develop without connecting to a test network. It also covers starting services and syncing their components.

Skill for Claude CodeCodex

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

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./scripts/start-all.sh.

Good fit Use it to set up local Midnight infrastructure, start the node, indexer, or proof server, and troubleshoot the development stack.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/UvRoxx/midnight-agent-skills
agentmods
npx agentmods add skills/uvroxx/midnight-agent-skills/midnight-infra-setup

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 midnight-infra-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/uvroxx/midnight-agent-skills/midnight-infra-setup/github.svg)](https://agentmods.dev/skills/uvroxx/midnight-agent-skills/midnight-infra-setup)
Your own site
<a href="https://agentmods.dev/skills/uvroxx/midnight-agent-skills/midnight-infra-setup"><img src="https://agentmods.dev/badge/skills/uvroxx/midnight-agent-skills/midnight-infra-setup/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 midnight-infra-setup

Your own site · 80×15
<a href="https://agentmods.dev/skills/uvroxx/midnight-agent-skills/midnight-infra-setup"><img src="https://agentmods.dev/badge/skills/uvroxx/midnight-agent-skills/midnight-infra-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 78 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,797 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00078 $0.02797
Opus 5 $0.00039 $0.01399
Sonnet 5 $0.00016 $0.00559
Haiku 4.5 $0.00008 $0.00280

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

Security

Grade B, and why

midnight-infra-setup scanned grade B with 2 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/setup.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo systemctl start docker

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s http://127.0.0.1:9944/health
skills/midnight-infra-setup/SKILL.md · 415 lines

How it starts

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

Midnight Infrastructure Setup

Complete guide to running Midnight infrastructure locally using the official midnight-infra-dev-tools. This enables full local development without connecting to testnet.

Architecture Overview

┌─────────────────────────────────────────────────────────────────┐
│                    Local Development Stack                       │
├─────────────────────────────────────────────────────────────────┤
│                                                                  │
│  ┌─────────────────┐  ┌─────────────────┐  ┌─────────────────┐ │
│  │  Midnight Node  │  │    Indexer      │  │  Proof Server   │ │
│  │                 │  │                 │  │                 │ │
│  │  ws://127.0.0.1 │  │ http://127.0.0.1│  │ http://127.0.0.1│ │
│  │     :9944       │  │     :8088       │  │     :6300       │ │
│  │                 │  │                 │  │                 │ │
│  │  - Blockchain   │  │  - Query state  │  │  - ZK proofs    │ │
│  │  - Consensus    │  │  - Index txs    │  │  - Verification │ │
│  │  - State        │  │  - GraphQL API  │  │  - Circuits     │ │
│  └────────┬────────┘  └────────┬────────┘  └────────┬────────┘ │
│           │                    │                    │           │
│           └────────────────────┼────────────────────┘           │
│                                │                                 │
│                    ┌───────────┴───────────┐                    │
│                    │   Your dApp / Tests   │                    │
│                    └───────────────────────┘                    │
│                                                                  │
└─────────────────────────────────────────────────────────────────┘

When to Use

  • Setting up local Midnight development environment
  • Running node, indexer, and proof server locally
  • Troubleshooting infrastructure issues
  • Syncing component versions
  • Building/testing without testnet

Official Repositories

Component Repository Purpose
Dev Tools midnight-infra-dev-tools Scripts & guides for local setup
Node midnight-node Blockchain node (Substrate-based)
Indexer midnight-indexer State indexing & GraphQL API
Ledger midnight-ledger Proof server & ZK circuits

Read the full file on GitHub · 415 lines

Files

What ships with it

1 file 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.

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. 11d ago First seen · 415 lines · 78 tokens per session scan B 98c21a0a20dc

Subscribe to this mod's changes

midnight-infra-setup is a skill published in the GitHub repository UvRoxx/midnight-agent-skills (9 stars, last pushed 5mo ago), licensed MIT. It adds 78 tokens to every session and 2,797 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

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…

mzf11125/midnight_agent_skills · 374 tokens

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…

mzf11125/midnight_agent_skills · 91 tokens

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…

mzf11125/midnight_agent_skills · 104 tokens

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…

mzf11125/midnight_agent_skills · 76 tokens

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…

mzf11125/midnight_agent_skills · 80 tokens

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…

mzf11125/midnight_agent_skills · 287 tokens