Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

openexec-skill开放执行技能

Agent Skill

openexec-skill 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

28,176

周安装

1,151

GitHub Stars

2

下载量

9,024
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:openexec-skill(开放执行技能)
来源仓库:https://github.com/trendinghot/openexec-skill
安装命令:
openclaw skills install openexec-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install openexec-skill

简介

openexec-skill 是具有固定依赖项的分布式确定性执行服务。

  • 适合在 OpenClaw 中需要辅助部署、云资源和容器运维时使用。
  • 仅使用签名的批准工件运行,确保可验证的执行环境。
  • 安装前建议确认权限范围、维护状态及是否会触发命令执行或网络访问。
  • 可结合来源仓库和 README 进一步核验具体用法和限制条件。

SKILL.md

name
OpenExec
slug
openexec
version
0.1.10
category
infrastructure/governance/execution
runtime
python
entrypoint
main:app
requires_network
false # No outbound HTTP/RPC calls during execution. Inbound HTTP only.
modes
env
required
none
optional
description
Source-distributed deterministic execution service with pinned dependencies. Runs only with a signed approval artifact (ClawShield mode) and emits verifiable receipts. Performs no outbound HTTP or governance calls. No runtime package installation or dynamic downloads occur.

OpenExec — Governed Deterministic Execution (Skill)

OpenExec is a runnable governed execution service. It executes only what has already been approved.

It is not an agent. It is not a policy engine. It does not self-authorize.

OpenExec performs no outbound HTTP, RPC, or governance calls during signature verification or execution. All verification is fully offline. By default, OpenExec uses a local SQLite database (sqlite:///openexec.db). Database network I/O occurs only if explicitly configured by the operator via OPENEXEC_DB_URL.


Install

pip install -r requirements.txt

Run (local)

python -m uvicorn main:app --host 0.0.0.0 --port 5000

Endpoints

  • GET / → service info (deployment health check)
  • GET /health → health status, mode, restriction level
  • GET /ready → readiness check
  • GET /version → version metadata
  • POST /execute → execute an approved action deterministically
  • POST /receipts/verify → verify receipt hash integrity

Modes

1) Demo mode (default, free)

No external governance required. No env vars required.

export OPENEXEC_MODE=demo

Demo mode still enforces:

  • deterministic execution
  • replay protection (nonce uniqueness)
  • receipt generation

2) ClawShield mode (production / business)

Requires a signed approval artifact issued by ClawShield. OpenExec verifies the Ed25519 signature offline using the configured public key.

export OPENEXEC_MODE=clawshield
export CLAWSHIELD_PUBLIC_KEY="-----BEGIN PUBLIC KEY----- ... -----END PUBLIC KEY-----"
export CLAWSHIELD_TENANT_ID="tenant-id"

If signature validation fails, execution is denied.

Note: ClawShield governance SaaS is available at https://clawshield.forgerun.ai/. OpenExec does not contact this URL at runtime. It is provided for reference only.

Environment Variables

All environment variables are optional. OpenExec runs with zero configuration in demo mode.

VariableDefaultDescription
OPENEXEC_MODEdemoExecution mode: demo or clawshield
CLAWSHIELD_PUBLIC_KEY(none)PEM-encoded Ed25519 public key for signature verification
CLAWSHIELD_TENANT_ID(none)Tenant identifier for multi-tenant isolation
OPENEXEC_ALLOWED_ACTIONS(none)Comma-separated list of permitted actions. If unset, all registered actions are allowed
OPENEXEC_DB_URLsqlite:///openexec.dbDatabase URL for execution record persistence

90-Second Quickstart (Demo)

  1. Start server:
python -m uvicorn main:app --host 0.0.0.0 --port 5000
  1. Confirm health:
curl http://localhost:5000/health
  1. Execute a deterministic demo action:
curl -X POST http://localhost:5000/execute \
  -H "Content-Type: application/json" \
  -d '{
    "action":"echo",
    "payload":{"msg":"hello"},
    "nonce":"unique-1"
  }'
  1. Replay attempt (returns same result, no re-execution):
curl -X POST http://localhost:5000/execute \
  -H "Content-Type: application/json" \
  -d '{
    "action":"echo",
    "payload":{"msg":"hello"},
    "nonce":"unique-1"
  }'

Receipts

Every execution produces a receipt hash. Receipts are evidence, not logs.

Verify a receipt:

curl -X POST http://localhost:5000/receipts/verify \
  -H "Content-Type: application/json" \
  -d '{"exec_id":"<id>","result":"<result_json>","receipt":"<hash>"}'

What this skill does

  • Accepts structured execution requests
  • Enforces replay protection
  • Executes deterministically (approved parameters only)
  • Emits verifiable receipts for every attempt
  • In ClawShield mode: verifies signed approvals before execution
  • Supports optional execution allow-list via environment variable

What this skill does not do

  • Define policy
  • Grant permissions
  • Reason autonomously
  • Override governance decisions
  • Self-authorize execution
  • Make outbound HTTP or governance calls during execution
  • Provide OS-level sandboxing or container isolation

Security Boundary Notice

OpenExec enforces execution boundaries at the application layer. It does not provide OS-level sandboxing. Deploy behind containerization, VM isolation, or hardened environments when actions interact with production systems.

OpenExec enforces authority separation. It is not a sandbox.


Architecture context (3-layer separation)

  • OpenExec -- deterministic execution adapter (this skill)
  • ClawShield -- governance + approval minting (SaaS): https://clawshield.forgerun.ai/
  • ClawLedger -- witness ledger (optional integration)

Each layer is replaceable. No single layer can act alone.


Security Documentation

A full security model, threat assumptions, and production hardening checklist are available in SECURITY.md.

This skill intentionally separates:

  • Execution enforcement (OpenExec)
  • Infrastructure isolation (operator responsibility)

Execution Safety Guarantees

This skill:

  • Does not dynamically load code
  • Does not evaluate user input as code
  • Uses a static handler registry
  • Does not install packages at runtime
  • Does not fetch remote execution logic

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

71.65%
按下载量换算6,466

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills