enclave-inspect

enclave-inspect is a skill for Claude Code, Codex from kurtosis-tech/kurtosis. It costs 52 tokens per session (859 once invoked), scanned A, original, Apache-2.0.

A guide for inspecting Kurtosis enclaves, which are temporary environments containing groups of running services. It shows their status, services, ports, stored files, and logs.

In plain words
What is it for?
Use it to list and inspect enclaves, read or follow service logs, open a shell or run commands in a service, check port mappings, export state, and clean up.
Why use it?
It helps you understand what is running, how to reach it, and what went wrong inside an environment.

Skill for Claude CodeCodex

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

Good fit Use it to list and inspect enclaves, read or follow service logs, open a shell or run commands in a service, check port mappings, export state, and clean up.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kurtosis-tech/kurtosis/enclave-inspect
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 kurtosis-tech/kurtosis --skill enclave-inspect
Clone the repo
git clone --depth 1 https://github.com/kurtosis-tech/kurtosis

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 enclave-inspect

README.md
[![agentmods](https://agentmods.dev/badge/skills/kurtosis-tech/kurtosis/enclave-inspect/github.svg)](https://agentmods.dev/skills/kurtosis-tech/kurtosis/enclave-inspect)
Your own site
<a href="https://agentmods.dev/skills/kurtosis-tech/kurtosis/enclave-inspect"><img src="https://agentmods.dev/badge/skills/kurtosis-tech/kurtosis/enclave-inspect/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 enclave-inspect

Your own site · 80×15
<a href="https://agentmods.dev/skills/kurtosis-tech/kurtosis/enclave-inspect"><img src="https://agentmods.dev/badge/skills/kurtosis-tech/kurtosis/enclave-inspect.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 859 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.00052 $0.00859
Opus 5 $0.00026 $0.00430
Sonnet 5 $0.00010 $0.00172
Haiku 4.5 $0.00005 $0.00086

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

Security

Grade A, and why

enclave-inspect 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 11d 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.

skills/enclave-inspect/SKILL.md · 139 lines

How it starts

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

Enclave Inspect

Inspect and manage Kurtosis enclaves and their contents.

List enclaves

kurtosis enclave ls

Output shows enclave name, UUID, status (RUNNING/STOPPED), and creation time.

Inspect an enclave

kurtosis enclave inspect <enclave-name>

This shows:

  • File Artifacts — uploaded files and rendered templates
  • User Services — running containers with their ports and status

Services

View service details

# Full enclave inspection (shows all services with ports)
kurtosis enclave inspect <enclave-name>

# View logs for a service
kurtosis service logs <enclave-name> <service-name>

# Follow logs in real time
kurtosis service logs <enclave-name> <service-name> -f

# Shell into a service
kurtosis service shell <enclave-name> <service-name>

# Run a command in a service
kurtosis service exec <enclave-name> <service-name> -- <command>

Access service ports

The inspect output shows port mappings like:

http: 8545/tcp -> http://127.0.0.1:61817

This means port 8545 inside the container is mapped to localhost:61817. On Kubernetes with gateway running, these are forwarded through the gateway.

File artifacts

File artifacts are named blobs of files stored in the enclave.

# List artifacts (shown in enclave inspect)
kurtosis enclave inspect <enclave-name>

# Download an artifact to local disk
kurtosis files download <enclave-name> <artifact-name> /tmp/output-dir

# Upload a local file as an artifact
kurtosis files upload <enclave-name> /path/to/local/file

Dump enclave state

Export the full enclave state for offline debugging:

kurtosis enclave dump <enclave-name> /tmp/enclave-dump

# Verify the dump completed successfully
ls -la /tmp/enclave-dump/

This exports:

  • Service logs
  • Service configurations
  • File artifacts
  • Enclave metadata

Useful for sharing with others to debug issues.

Troubleshooting

Symptom Cause Fix
Enclave not found Typo or enclave was removed Run kurtosis enclave ls to see available enclaves
Dump directory empty Enclave has no services Check kurtosis enclave inspect — enclave may be idle
Inspect shows STOPPED services Services crashed or were stopped Check logs with kurtosis service logs before restarting
K8s namespace missing Enclave was cleaned up Re-run the package to recreate the enclave

Read the full file on GitHub · 139 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. 11d ago First seen · 139 lines · 52 tokens per session scan A bc4e4d01f857

Subscribe to this mod's changes

enclave-inspect is a skill published in the GitHub repository kurtosis-tech/kurtosis (551 stars, last pushed yesterday), licensed Apache-2.0. It adds 52 tokens to every session and 859 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-30.

Related

Other skills, from other repositories

docker-docs

Comprehensive Docker 28.x reference covering all features: installation, Dockerfile instructions, multi-stage builds, Docker Compose, networking, volumes, CLI commands, image management, registries, security best practices, CI/CD integration, debugging, and Kubernetes migration. Use whenever the user mentions Docker…

pledgeandgrow/pledge-skills · 93 tokens

docker-management

Docker container lifecycle management, Dockerfile authoring, and debugging.

furkangonel/cowrangler · 16 tokens

env-doctor

A diagnostic tool for checking a development environment, including runtimes, ports, and service health.

chainlesschain/chainlesschain · 24 tokens

Pair Programming

AI-assisted pair programming with multiple modes (driver/navigator/switch), real-time verification, quality monitoring, and comprehensive testing. Supports TDD, debugging, refactoring, and learning sessions. Features automatic role switching, continuous code review, security scanning, and performance optimization with…

amangit1314/repo-rag · 61 tokens

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

sagebynature/team-nexus · 21 tokens

harbor-daytona

Use Harbor's Daytona sandbox platform for computer use — creating sandboxes, taking screenshots, sending mouse/keyboard input, and building agent loops. Use when the user wants to interact with a GUI, automate a desktop, do computer use, control a browser visually, or run Claude computer use against a Daytona sandbox.

av/harbor · 67 tokens