# Send Noir Developer 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": "noir-developer",
    "name": "Noir Developer",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jp4g/noir-developer",
    "canonicalUrl": "https://clawhub.ai/jp4g/noir-developer",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/noir-developer",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=noir-developer",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/barretenberg.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "noir-developer",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T05:35:51.629Z",
      "expiresAt": "2026-05-13T05:35:51.629Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=noir-developer",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=noir-developer",
        "contentDisposition": "attachment; filename=\"noir-developer-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "noir-developer"
      },
      "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/noir-developer"
    },
    "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/noir-developer",
    "downloadUrl": "https://openagent3.xyz/downloads/noir-developer",
    "agentUrl": "https://openagent3.xyz/skills/noir-developer/agent",
    "manifestUrl": "https://openagent3.xyz/skills/noir-developer/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/noir-developer/agent.md"
  }
}
```
## Documentation

### Workflow

Compile (nargo compile) Noir program into ACIR.
Generate witness (nargo execute or NoirJS execute) based on ACIR and user inputs.
Prove using ACIR and witness with the selected proving backend.
Verify proof with the selected proving backend.

### Environment

If the environment is unsupported by nargo (e.g. native Windows), guide the user to using GitHub Codespaces (https://noir-lang.org/docs/tooling/devcontainer#using-github-codespaces) or a supported setup (WSL, Docker, or VM).

### Plan

Define private inputs, public inputs (if any), and public outputs (if any) for each Noir program.

### Project Creation

When creating a Noir project, use nargo new or nargo init to scaffold it.

### Compilation

Use nargo (not noir_wasm) for compilation; it is the maintained path.

### Validation

Run nargo test to validate Noir implementations.

### Proving Backend

Confirm the proving backend choice before implementation details. If the user selects Barretenberg, read references/barretenberg.md.

### References

Run nargo --help for the full list of commands.
Read https://noir-lang.org/docs/ for language syntax, dependencies, and tooling.
Proving backends:

For Barretenberg specifics, read references/barretenberg.md.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jp4g
- Version: 0.1.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-05-06T05:35:51.629Z
- Expires at: 2026-05-13T05:35:51.629Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/noir-developer)
- [Send to Agent page](https://openagent3.xyz/skills/noir-developer/agent)
- [JSON manifest](https://openagent3.xyz/skills/noir-developer/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/noir-developer/agent.md)
- [Download page](https://openagent3.xyz/downloads/noir-developer)