skills$openclaw/fabric-bridge
koriyoshi2041688โ˜…

by koriyoshi2041

fabric-bridge โ€“ OpenClaw Skill

fabric-bridge is an OpenClaw Skills integration for writing workflows. Run Fabric AI patterns for text transformation, analysis, and content creation. Use when the user asks to use a Fabric pattern, extract wisdom, analyze claims, improve writing, summarize with Fabric, or mentions 'fabric' CLI. Supports 242+ patterns for tasks like content analysis, writing improvement, code review, threat modeling, and structured extraction.

688 stars5.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing

Skill Snapshot

namefabric-bridge
descriptionRun Fabric AI patterns for text transformation, analysis, and content creation. Use when the user asks to use a Fabric pattern, extract wisdom, analyze claims, improve writing, summarize with Fabric, or mentions 'fabric' CLI. Supports 242+ patterns for tasks like content analysis, writing improvement, code review, threat modeling, and structured extraction. OpenClaw Skills integration.
ownerkoriyoshi2041
repositorykoriyoshi2041/fabric-bridge
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @koriyoshi2041/fabric-bridge
last updatedFeb 7, 2026

Maintainer

koriyoshi2041

koriyoshi2041

Maintains fabric-bridge in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
references
popular-patterns.md
2.5 KB
_meta.json
285 B
SKILL.md
3.5 KB
SKILL.md

name: fabric-bridge description: "Run Fabric AI patterns for text transformation, analysis, and content creation. Use when the user asks to use a Fabric pattern, extract wisdom, analyze claims, improve writing, summarize with Fabric, or mentions 'fabric' CLI. Supports 242+ patterns for tasks like content analysis, writing improvement, code review, threat modeling, and structured extraction." homepage: https://github.com/danielmiessler/fabric metadata: {"clawdbot":{"emoji":"๐Ÿงถ","requires":{"bins":["fabric-ai"]},"install":[{"id":"brew","kind":"brew","formula":"fabric-ai","bins":["fabric-ai"],"label":"Install Fabric AI (brew)"}]}}

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.

Core Commands

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.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install fabric-bridge?

Run openclaw add @koriyoshi2041/fabric-bridge in your terminal. This installs fabric-bridge into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/koriyoshi2041/fabric-bridge. Review commits and README documentation before installing.