# Send Fabric Bridge 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": "fabric-bridge",
    "name": "Fabric Bridge",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/koriyoshi2041/fabric-bridge",
    "canonicalUrl": "https://clawhub.ai/koriyoshi2041/fabric-bridge",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fabric-bridge",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fabric-bridge",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/popular-patterns.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fabric-bridge"
    },
    "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/fabric-bridge",
    "downloadUrl": "https://openagent3.xyz/downloads/fabric-bridge",
    "agentUrl": "https://openagent3.xyz/skills/fabric-bridge/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fabric-bridge/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fabric-bridge/agent.md"
  }
}
```
## Documentation

### Fabric Bridge

Run Fabric AI patterns via the fabric-ai CLI. Each pattern is a reusable system prompt for a specific task.

See references/popular-patterns.md for a curated list of high-quality patterns by category.

### Important Notes

The command is fabric-ai, not fabric.
First-time setup: run fabric-ai -S to configure API keys.
If pattern list is empty: run fabric-ai -U to update patterns.
Use -s (stream) for most calls to avoid long waits.

### Basic usage

echo "input text" | fabric-ai -p <pattern>

### Stream output (recommended)

echo "input text" | fabric-ai -p <pattern> -s

### Process a YouTube video

fabric-ai -y "https://youtube.com/watch?v=..." -p extract_wisdom -s

### Process a web page

fabric-ai -u "https://example.com/article" -p summarize -s

### Specify model

echo "input" | fabric-ai -p <pattern> -m gpt-4o

### Chinese output

echo "input" | fabric-ai -p <pattern> -g zh -s

### Chain patterns (pipe output to next pattern)

echo "input" | fabric-ai -p extract_wisdom | fabric-ai -p summarize

### Reasoning strategy (requires setup)

echo "input" | fabric-ai -p <pattern> --strategy cot -s

### Process an image (multimodal)

echo "describe this image" | fabric-ai -p <pattern> -a /path/to/image.png -s

### Use context

echo "input" | fabric-ai -p <pattern> -C my_context -s

### Session continuity

echo "input" | fabric-ai -p <pattern> --session my_session -s

### Save output to file

echo "input" | fabric-ai -p extract_wisdom -o output.md

### Copy output to clipboard

echo "input" | fabric-ai -p extract_wisdom -c

### Dry run (preview without calling API)

fabric-ai -p <pattern> --dry-run

### List all available patterns

fabric-ai -l

### Template Variables

Patterns can contain {{variable}} placeholders. Pass values with -v:

# Single variable
echo "input" | fabric-ai -p <pattern> -v="#role:expert"

# Multiple variables
echo "input" | fabric-ai -p <pattern> -v="#role:expert" -v="#points:30"

### Custom Patterns

Create custom patterns at ~/.config/fabric/patterns/<name>/system.md.

Each pattern directory contains a system.md file with the system prompt.

### Feeding File Content

cat file.txt | fabric-ai -p <pattern> -s
cat file1.md file2.md | fabric-ai -p <pattern> -s

### Tips

Prefer -s (stream) for interactive use — output appears incrementally.
Chain patterns for multi-step processing (extract → summarize → translate).
Use -g zh when the user wants Chinese output.
Use -o file.md to save output, -c to copy to clipboard.
Use --dry-run to inspect what will be sent before making API calls.
Run fabric-ai -U periodically to get new community patterns.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: koriyoshi2041
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fabric-bridge)
- [Send to Agent page](https://openagent3.xyz/skills/fabric-bridge/agent)
- [JSON manifest](https://openagent3.xyz/skills/fabric-bridge/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fabric-bridge/agent.md)
- [Download page](https://openagent3.xyz/downloads/fabric-bridge)