Token导航 LogoToken导航TokenDH.com
运维和基础设施需要联网github未标认证来源可访问许可证需确认审计异常

cardano-devnet-in-a-box盒子里的卡尔达诺开发网

Agent Skill

cardano-devnet-in-a-box 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

329

周安装

14

GitHub Stars

7

下载量

115
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cardano-devnet-in-a-box(盒子里的卡尔达诺开发网)
来源仓库:https://github.com/flux-point-studios/cardano-agent-skills
仓库路径:skills/cardano-devnet-in-a-box
安装命令:
npx skills add https://github.com/flux-point-studios/cardano-agent-skills --skill cardano-devnet-in-a-box
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/flux-point-studios/cardano-agent-skills --skill cardano-devnet-in-a-box

简介

cardano-devnet-in-a-box 搭建本地端到端 Cardano 开发与测试环境。

  • 集成 cardano-node、Hydra、Ogmios 与 Kupo,支持 L1/L2 全栈演练。
  • 基于 Hydra 官方 demo devnet 构建,确保环境已知良好状态。
  • 使用前应预留足够磁盘空间与内存资源,避免容器启动失败。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cardano Devnet-in-a-Box (cardano-node + hydra + ogmios + kupo)

What this skill is for

You are setting up a local, end-to-end rehearsal environment so we can:

  • build/sign/submit real transactions (cardano-cli)
  • run dApp infra (Ogmios + Kupo)
  • open/close a Hydra Head and push L2 txs

…all locally before anyone even thinks about mainnet.

This skill uses Hydra’s official demo devnet as the base (because it’s the most “known-good” path), then bolts on Ogmios + Kupo as extra services.

Hydra’s docs describe this demo setup: a single fast local devnet + 3 Hydra nodes (Alice/Bob/Carol) + hydra-tui.

Kupo’s Docker image docs show the minimal container flags we reuse (--node-socket, --node-config, --host, --workdir).

Hydra publishes official Docker images at ghcr.io/cardano-scaling/hydra-node.


Assumptions

  • Docker is installed and running.
  • git is available.
  • Ports available on host:

- 1337 (ogmios) - 1442 (kupo) - 4001-4003 (hydra API) - 3000 (grafana, optional)


The canonical setup

If the repo already has devnet-in-a-box/

Run:

cd devnet-in-a-box
chmod +x run.sh
./run.sh up

This will:

  1. Clone cardano-scaling/hydra into devnet-in-a-box/.vendor/hydra
  2. Copy our docker-compose.override.yml into hydra/demo/
  3. Run the upstream demo scripts:

- ./prepare-devnet.sh (creates the devnet/ folder + fresh genesis start time) - ./seed-devnet.sh (publishes Hydra scripts + funds parties)

  1. Start:

- cardano-node - hydra-node-1..3 - ogmios - kupo

If the repo does NOT have devnet-in-a-box/

Create it by copying these exact files from the skill repo:

  • devnet-in-a-box/run.sh
  • devnet-in-a-box/docker-compose.override.yml
  • devnet-in-a-box/README.md

(They’re designed to be dropped into any project.)


Endpoints

  • Ogmios (WebSocket): ws://localhost:1337
  • Kupo (HTTP): http://localhost:1442
  • Hydra API:

- Alice: http://localhost:4001 - Bob: http://localhost:4002 - Carol: http://localhost:4003


How to use it (agent playbook)

1) Bring the stack up

./devnet-in-a-box/run.sh up

2) Open a head (fastest path = TUI)

In 3 terminals:

./devnet-in-a-box/run.sh tui 1
./devnet-in-a-box/run.sh tui 2
./devnet-in-a-box/run.sh tui 3

Then inside the TUI:

  • [i] init
  • [c] commit
  • once all parties commit, the head opens automatically

Hydra’s docs walk through this flow.

3) Validate the L1 + infra are alive

From the demo directory (the script handles paths for you), you can query the chain tip:

./devnet-in-a-box/run.sh logs cardano-node

Or directly:

cd devnet-in-a-box/.vendor/hydra/demo
docker compose exec -T cardano-node cardano-cli query tip --testnet-magic 42 --socket-path /devnet/node.socket

4) Use Ogmios + Kupo for app-level rehearsal

Typical dApp stack:

  • Kupo for UTxO lookup / index queries
  • Ogmios for chain sync + tx submission

This is the pair most “realistic” apps use for local integration tests.


Deterministic rehearsal (green / red)

For a no-vibes end-to-end check, run:

cd devnet-in-a-box
./run.sh rehearsal

It will:

  • run a smoke test (cardano-node + hydra APIs + optional kupo health)
  • create a tiny always-true Plutus script UTxO on L1 (inline datum = 42, 10 ADA)
  • initialize a Hydra Head
  • commit: Alice (script UTxO + collateral) + Bob + Carol
  • submit one L2 transaction that spends the script UTxO inside the head
  • close → wait contestation → fanout

If everything works you get GREEN. Otherwise you get RED and the failing step.

Lightweight health check:

./run.sh smoke

Troubleshooting (quick hits)

TraceNoLedgerView in cardano-node logs

That’s almost always a genesis start time drift.

Fix: rerun prepare + restart the node.

cd devnet-in-a-box/.vendor/hydra/demo
./prepare-devnet.sh
docker compose up -d --force-recreate cardano-node

Hydra docs explicitly warn about waiting too long after prepare-devnet.sh.

Ogmios/Kupo can’t open the node socket

Usually permissions on devnet/node.socket.

The run.sh tries to chmod a+w the socket from inside the container.

If it still fails:

cd devnet-in-a-box/.vendor/hydra/demo
docker compose exec -u root cardano-node chmod a+w /devnet/node.socket

Kupo is “running” but returns nothing

Make sure we’re indexing something.

We default to --match "*" for devnet so it indexes everything.

If you change it, you can accidentally index zero addresses.


Hard rule

This devnet harness is for rehearsals:

  • never treat the demo keys as production keys
  • never assume devnet settings ≈ mainnet settings
  • always re-check protocol params, cost models, and script budgets when moving to preprod/mainnet

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.32%
按下载量换算43

Claude

27.3%
按下载量换算31

Cursor

17.21%
按下载量换算20

Gemini CLI

8.71%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills