Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计异常

fabricfabric 搜索

Agent Skill

fabric 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,853

周安装

78

GitHub Stars

11

下载量

649
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fabric(fabric 搜索)
来源仓库:https://github.com/akillness/oh-my-skills
仓库路径:skills/fabric
安装命令:
npx skills add https://github.com/akillness/oh-my-skills --skill fabric
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akillness/oh-my-skills --skill fabric

简介

用于对已有文本内容执行可重复命名的 AI 转换任务,生成标准化输出。

  • 适合输入已存在、转换模式稳定且需通过 CLI 或 HTTP 交付的场景。
  • 使用时需先清洗输入、选择路由模式并定义清晰的输出边界。
  • 建议参考操作包模板和提供者设置文档,确保运行环境支持对应接口。
  • fabric 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Fabric

Use this skill when the real job is running a reusable named AI transform over existing text/content with Fabric.

Fabric is strongest when three things are true:

  1. the input already exists or can be cleaned first,
  2. the transform is repeatable enough to deserve a named pattern,
  3. the output should be delivered through a CLI, shell pipeline, or lightweight HTTP surface.

Read these support docs before going deeper:

When to use this skill

  • The user explicitly wants Fabric.
  • The user wants a named pattern instead of improvising a fresh prompt every time.
  • The job is a repeatable transform over stdin, files, transcripts, clipboard text, notes, logs, or cleaned article text.
  • The user wants a custom pattern pack for recurring work.
  • Fabric should sit inside a shell pipeline or a small local toolchain.
  • Another tool needs Fabric server mode via fabric --serve.
  • The boundary between Fabric vs general LLM CLI vs coding assistant is unclear.

When not to use this skill

  • One-off chat prompting in the current session → use the current model directly.
  • Repo-aware coding, editing, or git implementation → use a coding-assistant skill.
  • Scraping, OCR, transcript recovery, or file conversion is still the hard part → fix the upstream input layer first.
  • Deterministic multi-step automation is the real job → use scripts or workflow automation, with Fabric only as one step if needed.
  • Provider/platform setup is the whole question and not Fabric-specific → use the more relevant platform/provider skill first.

Core boundary

  • Fabric = reusable pattern-driven transforms on external text/content.
  • General LLM CLI = ad hoc prompting without strong pattern-library expectations.
  • Coding assistant = repo-aware editing, implementation, and git workflows.
  • Workflow automation / scripts = deterministic orchestration where Fabric may be one stage.

Instructions

Step 1: Classify the request into one primary lane

Choose exactly one lane:

fabric_intake:
  primary_lane: quick-transform | pattern-selection | custom-pattern | shell-pipeline | serve-api | boundary-review
  input_shape: stdin-text | file | clipboard | transcript | url-derived-text | logs | code-snippet | mixed | unknown
  output_shape: summary | extraction | rewrite | explanation | classification | structured-markdown | custom
  repetition_level: one-off | recurring | team-shared | embedded-in-script
  provider_need: default | specific-provider | local-model | server-mode | unknown
  input_ready: yes | no | unclear

Lane chooser:

  • quick-transform → the text is already available and one strong Fabric pass is enough.
  • pattern-selection → the user needs the right built-in pattern or family.
  • custom-pattern → the workflow repeats and needs a stable output shape.
  • shell-pipeline → Fabric is one step inside a larger terminal workflow.
  • serve-api → another local tool or script should call Fabric over HTTP.
  • boundary-review → the user is deciding among Fabric, a general LLM CLI, or a coding assistant.

Step 2: Verify the input layer before talking about patterns

Answer these first:

  1. Where does the text come from?
  2. Is the text already clean enough for Fabric?
  3. Is this a one-shot transform or a reusable workflow?
  4. Is provider/model setup already available?

If the text is still messy HTML, OCR noise, bad transcripts, or missing entirely, say so explicitly. Do not pretend Fabric owns the upstream cleanup problem.

Step 3: Run the correct lane

A. Quick-transform

Return:

  • one recommended pattern,
  • one exact command,
  • expected output shape,
  • one optional follow-up chain only if it materially helps.

Examples:

cat transcript.txt | fabric -p summarize
pbpaste | fabric -p extract_wisdom
git diff HEAD~1 | fabric -p explain_code

B. Pattern-selection

Return the top 1-3 plausible patterns and why.

Use job shape, not novelty:

  • summarize → compress source into a readable brief
  • extract / wisdom / questions / claims → pull structured ideas out
  • explain / analyze → interpret code, prose, logs, incidents, or decisions
  • rewrite / improve / repurpose → convert one artifact into another tone or shape

Do not dump the whole catalog.

C. Custom-pattern

Use when the workflow will recur.

Minimum scaffold:

IDENTITY AND PURPOSE
STEPS
OUTPUT INSTRUCTIONS
INPUT

Good custom-pattern output includes:

  • pattern name,
  • exact use case,
  • system.md skeleton,
  • example invocation,
  • note on when to fork vs reuse a stock pattern.

D. Shell-pipeline

Treat Fabric as one stage in a pipeline:

fetch or prepare input → optional cleanup → fabric pattern → save / chain / post-edit

Return:

  • what creates the input,
  • where Fabric sits,
  • where output goes,
  • what still needs human review or another tool.

E. Serve-api

Use when another app/script needs HTTP access.

Baseline commands:

fabric --serve
curl http://localhost:8080/patterns/names

Also call out:

  • whether --api-key is needed,
  • local-only vs shared-machine assumptions,
  • whether the caller needs pattern CRUD, listing, apply endpoints, or plain chat completion.

F. Boundary-review

Compare by workflow shape:

  • Fabric → repeatable named transforms over external text/content
  • general LLM CLI → flexible ad hoc prompting
  • coding assistant → repo-aware code work
  • workflow automation → deterministic multi-step logic

If the user is mixing use cases, keep Fabric only for the transform layer.

Step 4: Return a short operator packet

Default output should contain:

  • chosen lane,
  • input source and cleanup assumptions,
  • recommended pattern(s) or custom-pattern path,
  • exact command(s) or artifact layout,
  • realistic friction note,
  • route-out if Fabric is not the whole answer.

Use this structure:

# Fabric Workflow Packet

## Lane
- quick-transform | pattern-selection | custom-pattern | shell-pipeline | serve-api | boundary-review

## Input
- source: ...
- cleanup needed: ...
- assumptions: ...

## Recommended Fabric move
- pattern / custom pattern / server mode: ...
- why this fits: ...

## Command or artifact
- exact command(s) or `system.md` scaffold

## Output shape
- summary / extraction / rewrite / explanation / structured markdown / custom

## Friction
- provider setup / token limits / noisy input / post-editing / custom-pattern drift

## Route-outs
- next tool or workflow layer if Fabric is not the whole answer

Step 5: Keep the advice reusable

Prefer:

  • one primary lane,
  • one top recommendation over a laundry list,
  • a reusable custom-pattern scaffold over a clever one-off prompt,
  • honest route-outs when Fabric is not the whole answer.

Examples

Example 1: Transcript summary

Input

I already have transcript.txt. Show me how to use Fabric to summarize it and keep the workflow reusable.

Output sketch

  • Lane: quick-transform
  • Command: cat transcript.txt | fabric -p summarize
  • Output: markdown summary
  • Route-out: only add another extraction pass if action items matter

Example 2: Weekly custom pattern

Input

We summarize competitor articles every week. Help me make a reusable Fabric pattern pack.

Output sketch

  • Lane: custom-pattern
  • Deliver system.md scaffold plus invocation
  • Explain why a custom pattern beats repeating a one-off prompt

Example 3: Fabric or something else?

Input

Should I use Fabric, a general LLM CLI, or a coding assistant for this workflow?

Output sketch

  • Lane: boundary-review
  • Keep repeatable text transforms in Fabric
  • Route repo-aware editing to a coding assistant

Best practices

  1. Treat Fabric as a pattern-first transform layer, not a generic terminal chatbot.
  2. Solve messy input acquisition before blaming the pattern.
  3. Return the top 1-3 pattern choices instead of the full catalog.
  4. Fork a custom pattern when the workflow repeats or the output shape must stay stable.
  5. Only recommend fabric --serve when another tool genuinely needs HTTP access.
  6. Keep provider/setup friction explicit instead of hiding it behind pattern talk.
  7. If the task is really coding-assistant work or deterministic automation, route out early.

References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.55%
按下载量换算218

Claude

31.11%
按下载量换算202

Cursor

19.08%
按下载量换算124

Gemini CLI

8.93%
按下载量换算58

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/akillness/oh-my-skills --skill fabric 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills