Generate Minecraft 3D build plan

v1.0.1

Call Craftsman Agent API OneKey Router to generate a Minecraft 3D scene build plan.

0· 123·0 current·0 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for ai-hub-admin/generate-minecraft-3d-build-plan.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Generate Minecraft 3D build plan" (ai-hub-admin/generate-minecraft-3d-build-plan) from ClawHub.
Skill page: https://clawhub.ai/ai-hub-admin/generate-minecraft-3d-build-plan
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install generate-minecraft-3d-build-plan

ClawHub CLI

Package manager switcher

npx clawhub@latest install generate-minecraft-3d-build-plan
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description match the behavior: both scripts and the CLI call a OneKey agent router endpoint and require DEEPNLP_ONEKEY_ROUTER_ACCESS. No unrelated credentials, binaries, or config paths are requested.
Instruction Scope
SKILL.md instructs to set the OneKey API key and run the provided CLI / Python / TypeScript scripts. The instructions and included scripts only validate image URLs and POST prompt/images to the declared endpoint; they do not read unrelated files or environment variables.
Install Mechanism
There is no registry-level install spec, but SKILL.md recommends installing npm (@aiagenta2z/onekey-gateway) and pip (ai-agent-marketplace) packages via standard package managers. These are normal mechanisms but are third‑party packages — verify package provenance before installing.
Credentials
Only a single service API key (DEEPNLP_ONEKEY_ROUTER_ACCESS) is required, which is appropriate for acting as a gateway client. The code only reads that environment variable and sends it in an X-OneKey header.
Persistence & Privilege
Skill is not always-enabled and does not request elevated or persistent system privileges. It does not modify other skills or system configuration.
Assessment
This skill appears coherent and implements what it says: it sends your prompt and any reference image URLs to https://agent.deepnlp.org/agent_router using the DEEPNLP_ONEKEY_ROUTER_ACCESS key. Before installing or running: (1) verify you trust the endpoint (agent.deepnlp.org) and the packages @aiagenta2z/onekey-gateway and ai-agent-marketplace; (2) use an API key with the minimum required scope and rotate/revoke it if needed; (3) avoid including sensitive secrets or personal data inside prompts or reference images because those are transmitted to the remote service; (4) if you prefer, review the included scripts (they are short and readable) and run them locally rather than installing additional packages.
scripts/generate_minecraft_build_plan.ts:53
Environment variable access combined with network send.
Confirmed safe by external scanners
Static analysis detected API credential-access patterns, but both VirusTotal and OpenClaw confirmed this skill is safe. These patterns are common in legitimate API integration skills.

Like a lobster shell, security has layers — review code before you run it.

latestvk9797r2p1npqdb5g8r8gfe5ybd83qdrj
123downloads
0stars
1versions
Updated 1mo ago
v1.0.1
MIT-0

Generate Minecraft 3D Build Plan

Call Craftsman Agent API OneKey Router to generate a Minecraft 3D scene build plan.

Quick Start

  1. Set your environment variable DEEPNLP_ONEKEY_ROUTER_ACCESS.
  2. Use the CLI (primary suggested method) or the provided scripts.

Usage

1. CLI (Recommended)

CLI Illustration

onekey agent <unique_id> <api_id> $JSON --timeout 30000
  • <unique_id>: the unique identifier of the onekey routed agents, "owner/repo".
  • <api_id>: refers to the unique endpoint name of API.
  • $JSON: the json string passed to cli.
  • --timeout: controlls the timeout of API calling, unit is mill seconds.

Example

export DEEPNLP_ONEKEY_ROUTER_ACCESS=YOUR_ACCESS_KEY
onekey agent craftsman-agent/craftsman-agent generate_minecraft_build_plan '{"prompt":"Minecraft scene of Grassland and TNT Block, Purple Crystals","images":[],"mode":"basic"}' --timeout 30000

2. Python REST API

python3 scripts/generate_minecraft_build_plan.py --prompt "Minecraft scene of Grassland and TNT Block, Purple Crystals" --mode basic

3. TypeScript REST API

node scripts/generate_minecraft_build_plan.ts --prompt "Minecraft scene of Grassland and TNT Block, Purple Crystals" --mode basic

Authentication

Remember to set the environment variable:

export DEEPNLP_ONEKEY_ROUTER_ACCESS=YOUR_ACCESS_KEY

Get your key at DeepNLP Workspace.

Demo Result

{"success":true,"text":"","images":[{"url":"https://us-static.aiagenta2z.com/local/files-wd/onekey_llm_router/efd67a8f-a427-4e56-8b00-c02d4eb332d5.png"}]}

Comments

Loading comments...