aenvironment-deploy

aenvironment-deploy is a skill for Claude Code, Codex from inclusionAI/AEnvironment. It costs 89 tokens per session (2,251 once invoked), scanned A, original, Apache-2.0.

A workflow for deploying agents, web services, and applications to AEnvironment, an infrastructure platform for isolated agent instances and hosted services. It supports building or registering container images before deployment.

In plain words
What is it for?
Use it to deploy from a local Docker build or an existing image, configure registry and API details, and run agent instances or services in AEnvironment.
Why use it?
It organizes the deployment steps and required settings for temporary agent environments and longer-running services.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/inclusionai/aenvironment/aenvironment-deploy
Any agent
npx skills add inclusionAI/AEnvironment --skill aenvironment-deploy
Clone the repo
git clone --depth 1 https://github.com/inclusionAI/AEnvironment

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 aenvironment-deploy

README.md
[![agentmods](https://agentmods.dev/badge/skills/inclusionai/aenvironment/aenvironment-deploy.svg)](https://agentmods.dev/skills/inclusionai/aenvironment/aenvironment-deploy)
Your own site
<a href="https://agentmods.dev/skills/inclusionai/aenvironment/aenvironment-deploy"><img src="https://agentmods.dev/badge/skills/inclusionai/aenvironment/aenvironment-deploy.svg" alt="Measured on agentmods" height="20"></a>
Per session 89 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,251 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00089 $0.02251
Opus 5 $0.00044 $0.01125
Sonnet 5 $0.00018 $0.00450
Haiku 4.5 $0.00009 $0.00225

Measured 4d ago against content hash 06803c991a76, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

aenvironment-deploy 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 4d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/aenv_operations.py, scripts/deploy_existing_env.py, scripts/deploy_with_existing_image.py, …), 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.

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.

.claude/aenvironment-deploy/SKILL.md · 346 lines

How it starts

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

AEnvironment Deploy

Automate deployment of sandboxed environment instances and services using the AEnvironment platform.

Overview

AEnvironment provides isolated sandbox environments for running agents and applications. This skill handles the complete deployment workflow:

  • Instances: Short-lived environments for agents (IP-based access, no persistence)
  • Services: Long-running services for apps (domain access, optional storage, multiple replicas)

Prerequisites

Install AEnvironment CLI:

pip install aenvironment --upgrade
aenv --help

Deployment Workflows

Workflow A: Deploy with Local Image Build

Build Docker image locally, register to EnvHub, and deploy.

When to use: Creating a new environment from scratch with local Dockerfile.

Requirements: Docker installed, registry credentials configured.

Script: scripts/deploy_with_local_build.py

Example:

python scripts/deploy_with_local_build.py \
  --env-name myagent \
  --owner-name john \
  --api-service-url https://api.example.com \
  --envhub-url https://envhub.example.com \
  --registry-host registry.example.com \
  --registry-username user \
  --registry-password pass \
  --registry-namespace myteam \
  --deploy-type instance \
  --ttl 24h \
  --env-vars '{"API_KEY":"xxx"}'

Workflow B: Deploy with Existing Image

Register existing Docker image to EnvHub and deploy.

When to use: You have a pre-built Docker image to deploy.

Requirements: Existing image accessible in registry.

Script: scripts/deploy_with_existing_image.py

Example:

python scripts/deploy_with_existing_image.py \
  --env-name myagent \
  --image-name registry.example.com/myteam/agent:1.0.0 \
  --owner-name john \
  --api-service-url https://api.example.com \
  --envhub-url https://envhub.example.com \
  --deploy-type instance \
  --ttl 48h

Workflow C: Deploy Existing Environment

Deploy from already registered environment in EnvHub.

When to use: Environment is already registered, just need to deploy.

Read the full file on GitHub · 346 lines

Files

What ships with it

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

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. 4d ago First seen · 346 lines · 89 tokens per session scan A 06803c991a76

Subscribe to this mod's changes

aenvironment-deploy is a skill published in the GitHub repository inclusionAI/AEnvironment (314 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 89 tokens to every session and 2,251 once invoked, about $0.0004 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

vercel-cli

Deploy apps to Vercel. Use when asked to deploy, ship, or publish a web application, or manage Vercel projects, domains, and environment variables.

suyoumo/ClawProBench · 38 tokens

terraform-skill

Use when working with Terraform or OpenTofu - creating modules, writing tests (native test framework, Terratest), setting up CI/CD pipelines, reviewing configurations, choosing between testing approaches, debugging state issues, implementing security scanning (trivy, checkov), or making infrastructure-as-code…

agentscope-ai/QwenPaw · 62 tokens

alicloud_cli

阿里云 CLI 中文文档镜像检索与命令辅助:先走章节索引,再下钻正文页面,给出命令前必须有本地文档证据。.

agentscope-ai/QwenPaw · 45 tokens

deploy-open-harness

Guides a user through collecting the credentials needed to deploy their own copy of Open Harness, deploying this repo on Vercel, and completing first-run setup. Use for requests about deploying, self-hosting, configuring credentials, or getting started with a fork of this app.

vercel-labs/open-agents · 60 tokens

terraform-cli-setup

Terraform CLI 安装与初始化技能。当用户本地未安装 Terraform 时自动完成安装,确保 terraform 命令可用并能执行 init/validate。不负责 Provider 凭证配置,凭证在实际使用时由 terraform-skill 引导。.

agentscope-ai/QwenPaw · 58 tokens

ondb

A logical analysis and reasoning tool for AI. Use when decomposing documents into structured knowledge, querying entities and relations, validating consistency, or indexing files. Trigger on "remember", "what do I know about", "link X to Y", "show dependencies", "analyze this document", entity CRUD, or cross-skill…

x-cmd/x-cmd · 71 tokens