openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > A2A Delegation Setup

Guided setup and troubleshooting for installing, enabling, configuring, verifying, and updating @aramisfa/openclaw-a2a-outbound in OpenClaw.

AI 与大模型

作者:Aramis Facchinetti @aramisfacchinetti

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v0.1.0

统计:⭐ 0 · 144 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :良性 · OpenClaw :良性

Package:aramisfacchinetti/a2a-delegation-setup

安全扫描(ClawHub)

  • VirusTotal :良性
  • OpenClaw :良性

OpenClaw 评估

The skill is an instruction-only, focused setup/troubleshooting guide for installing and configuring the openclaw-a2a-outbound plugin and its requirements are proportional to that purpose.

目的

The name and description match the runtime instructions: everything in SKILL.md is about installing, enabling, configuring, verifying, and updating @aramisfa/openclaw-a2a-outbound. The skill does not request unrelated credentials, binaries, or config paths.

说明范围

Instructions are concrete: run openclaw CLI commands, set config entries, validate, restart the gateway, and verify with remote_agent. The skill explicitly asks to obtain user confirmation before changes and to provide commands when shell access is unavailable. It does not instruct reading unrelated files, exfiltrating data, or contacting unexpected external endpoints. It does assume you (or the operator) will run commands on the Gateway host.

安装机制

This is instruction-only (no install spec, no code files). The SKILL.md tells operators to use the OpenClaw CLI to install/update the plugin; the skill itself does not download or install arbitrary code.

证书

No environment variables, credentials, or config paths are requested by the skill. The config keys it references are directly related to the plugin's readiness and policy settings.

持久

always is false and disable-model-invocation is true, so the skill will not run autonomously and is not requesting persistent elevated privileges or modifying other skills' configuration.

综合结论

This appears to be a focused, coherent setup guide. Before running the steps: (1) verify you trust the plugin source (review the repository and release artifacts for @aramisfa/openclaw-a2a-outbound); (2) take an OpenClaw/Gateway configuration backup and perform actions during a maintenance window because a restart is required; (3) run the provided openclaw commands manually (the skill only tells you what to run — it does not run them itself); …

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「A2A Delegation Setup」。简介:Guided setup and troubleshooting for installing, enabling, configuring, verifyi…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aramisfacchinetti/a2a-delegation-setup/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: a2a-delegation-setup
description: Guided setup and troubleshooting for installing, enabling, configuring, verifying, and updating @aramisfa/openclaw-a2a-outbound in OpenClaw.
homepage: "https://github.com/aramisfacchinetti/openclaw-a2a-plugins/tree/master/packages/openclaw-a2a-outbound#readme"
user-invocable: true
disable-model-invocation: true
---

# A2A Delegation Setup

Use this skill when `@aramisfa/openclaw-a2a-outbound` still needs installation, enablement, configuration, verification, updating, or troubleshooting on the OpenClaw Gateway host.

Do not use this skill for routine runtime delegation after setup is complete. Once the plugin is ready, switch to the bundled `remote-agent` skill and the `remote_agent` tool.

## Interaction rules

- Ask before any install, update, restart, or config edit.
- Run commands on the Gateway host that owns the OpenClaw config and plugin installation.
- If shell access is unavailable, provide the exact commands and expected verification steps instead of claiming success.

## Use when

- Install `@aramisfa/openclaw-a2a-outbound` for the first time.
- Enable `openclaw-a2a-outbound` in OpenClaw.
- Configure targets or policy settings.
- Verify whether the plugin is actually ready for runtime delegation.
- Update or troubleshoot an existing setup.

## Do not use when

- The plugin is already installed, enabled, configured, and verified, and the task is routine runtime delegation.

## Collect or confirm first

- The target alias to configure.
- The target base URL.
- Whether this target should be the default target.
- Whether direct URL overrides should be allowed through `plugins.entries.openclaw-a2a-outbound.config.policy.allowTargetUrlOverride`.

## Inspect current state

Run these first:

```bash
openclaw plugins list
openclaw plugins info openclaw-a2a-outbound
openclaw config get plugins.entries.openclaw-a2a-outbound
openclaw config validate
```

The bundled runtime skill is only eligible when both `plugins.entries.openclaw-a2a-outbound.enabled` and `plugins.entries.openclaw-a2a-outbound.config.enabled` are true.

## Install or update

For a first install:

```bash
openclaw plugins install @aramisfa/openclaw-a2a-outbound --pin
```

For an update:

```bash
openclaw plugins update openclaw-a2a-outbound
```

Then ensure the plugin entry itself is enabled:

```bash
openclaw plugins enable openclaw-a2a-outbound
```

## Configure readiness

Use `openclaw config set ... --strict-json` whenever you write booleans or arrays into the plugin config.

Required readiness paths:

- `plugins.entries.openclaw-a2a-outbound.config.enabled`
- `plugins.entries.openclaw-a2a-outbound.config.targets`
- `plugins.entries.openclaw-a2a-outbound.config.policy.allowTargetUrlOverride`

Example commands:

```bash
openclaw config set plugins.entries.openclaw-a2a-outbound.config.enabled --strict-json true
openclaw config set plugins.entries.openclaw-a2a-outbound.config.targets --strict-json '[{"alias":"support","baseUrl":"https://support.example","default":true}]'
openclaw config set plugins.entries.openclaw-a2a-outbound.config.policy.allowTargetUrlOverride --strict-json false
openclaw config validate
```

Replace the example alias, base URL, default-target choice, and URL-override policy with the values you confirmed earlier.

## Activate and verify

Use a Gateway restart as the deterministic activation step:

```bash
openclaw gateway restart
```

After the restart, start a new session and verify with:

```text
remote_agent { "action": "list_targets" }
```

If `list_targets` succeeds and the two enable flags remain true, setup is complete.

## Handoff

After setup is complete, stop using this setup skill for normal delegation work. Use the bundled `remote-agent` skill and the `remote_agent` tool instead.