# Send Agent Setup Survey to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "agent-setup-survey",
    "name": "Agent Setup Survey",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Agent-Deployments/agent-setup-survey",
    "canonicalUrl": "https://clawhub.ai/Agent-Deployments/agent-setup-survey",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agent-setup-survey",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-setup-survey",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "scripts/environment-survey.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agent-setup-survey",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T13:52:08.412Z",
      "expiresAt": "2026-05-06T13:52:08.412Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-setup-survey",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agent-setup-survey",
        "contentDisposition": "attachment; filename=\"agent-setup-survey-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agent-setup-survey"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/agent-setup-survey"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/agent-setup-survey",
    "downloadUrl": "https://openagent3.xyz/downloads/agent-setup-survey",
    "agentUrl": "https://openagent3.xyz/skills/agent-setup-survey/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agent-setup-survey/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agent-setup-survey/agent.md"
  }
}
```
## Documentation

### Overview

This skill runs a local detection script, shows the user the collected data, then submits it to the open research survey at internetwarte.eu/agentsetup. No personally identifying information is collected or transmitted.

### What is collected

FieldDescriptionosOS family: linux / windows / macos / otherarchCPU architecture (e.g. x86_64, arm64)container.is_containerWhether a container runtime was detectedcontainer.typedocker / podman / lxc / none / hintvm.is_vmWhether a hypervisor was detectedvm.typekvm / vmware / virtualbox / none / hintsignals.*Five boolean detection indicators (see Privacy section)

The backend additionally records the submitting IP address anyonmized on a /24 network level. The User-Agent header is set by the agent to identify itself (e.g. Claude Code, OpenAI Codex, or others) + Model version (sonnet 4.6, gpt-5.3, or others) used that was able to submit the survey.

### 1. Run detection

RESULT_FILE="$(mktemp outbox/agent-setup-survey-result.XXXXXX.json)"
python3 scripts/environment-survey.py > "$RESULT_FILE"

Show the JSON output to the user, ask about metadata before submitting.

### 2. Collect skill metadata

Ask the user if he desires to share more information about installed skills:

"How many skills does your agent have available?" (0, 1-10, >10) - Default 0
"Which skill names would you like to share?" (prompt user with comma-separated list of skills - exclude the survey skill, let user decide which ones to submit)

### 3. Submit

POST the payload with the metadata extension as JSON to https://internetwarte.eu/submit. Set User-Agent to the name of the executing agent (e.g. Claude Code, OpenAI Codex, Gemini CLI, ...).

Default Payload:

{
  "os": "linux/windows/macOS",
  "arch": "<from_survey>",
  "container": { "is_container": true/false, "type": "<from_survey>" },
  "vm": { "is_vm": true/false, "type": "<from_survey>" },
  "signals": {
    "has_dockerenv": true/false,
    "has_containerenv": true/false,
    "cgroup_hints": true/false,
    "cpuinfo_hypervisor_flag": true/false,
    "dmi_vm_hints": true/false
  }
 "skill_disclosure": {
    "skills_added": "1-10",
    "skills_names": ["<skill_name1>", "<skill_name2>"]
}

On failure, save the payload to outbox/ for manual upload.

### Privacy disclosure

Signals collected:

has_dockerenv - /.dockerenv file present
has_containerenv - /run/.containerenv file present
cgroup_hints - cgroup paths mention docker/kubepods/lxc/…
cpuinfo_hypervisor_flag - /proc/cpuinfo contains hypervisor
dmi_vm_hints - DMI strings match VM vendor keywords (raw strings are NOT sent)

### View results

Dashboard: https://internetwarte.eu/agentsetup
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Agent-Deployments
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T13:52:08.412Z
- Expires at: 2026-05-06T13:52:08.412Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agent-setup-survey)
- [Send to Agent page](https://openagent3.xyz/skills/agent-setup-survey/agent)
- [JSON manifest](https://openagent3.xyz/skills/agent-setup-survey/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agent-setup-survey/agent.md)
- [Download page](https://openagent3.xyz/downloads/agent-setup-survey)