mirror of
https://github.com/danielmiessler/fabric.git
synced 2026-09-10 07:36:44 -04:00
docs: add Scoop install instructions and expand cSpell dictionary
- Add Windows Scoop install section to Chinese README - Link Scoop install entry in both README tables of contents - Extend cSpell dictionary with APIM, MSAL, and related terms - Ignore `.vscode/**` paths during cSpell checks - Allow `strong` tag in cSpell markdown configuration
This commit is contained in:
parent
3e7a3a88f7
commit
2b613a4787
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
|
|
@ -8,10 +8,13 @@
|
|||
"anthropics",
|
||||
"Aoede",
|
||||
"apikey",
|
||||
"APIM",
|
||||
"aplicar",
|
||||
"appuser",
|
||||
"Astley",
|
||||
"atotto",
|
||||
"Autonoe",
|
||||
"azurecommon",
|
||||
"azureml",
|
||||
"badfile",
|
||||
"Behrens",
|
||||
|
|
@ -131,6 +134,7 @@
|
|||
"modelines",
|
||||
"Moltbot",
|
||||
"mpga",
|
||||
"MSAL",
|
||||
"mvdan",
|
||||
"mychat",
|
||||
"mygroup",
|
||||
|
|
@ -222,6 +226,7 @@
|
|||
"cSpell.ignorePaths": [
|
||||
"go.mod",
|
||||
".gitignore",
|
||||
".vscode/**",
|
||||
"CHANGELOG.md",
|
||||
"scripts/installer/install.*",
|
||||
"web/static/data/pattern_descriptions.json",
|
||||
|
|
@ -255,6 +260,7 @@
|
|||
"module",
|
||||
"p",
|
||||
"summary",
|
||||
"strong",
|
||||
"sup"
|
||||
]
|
||||
},
|
||||
|
|
|
|||
|
|
@ -137,6 +137,7 @@ Keep in mind that many of these were recorded when Fabric was Python-based, so r
|
|||
- [macOS (Homebrew)](#macos-homebrew)
|
||||
- [Arch Linux (AUR)](#arch-linux-aur)
|
||||
- [Windows](#windows)
|
||||
- [Windows (Scoop)](#windows-scoop)
|
||||
- [From Source](#from-source)
|
||||
- [Docker](#docker)
|
||||
- [Environment Variables](#environment-variables)
|
||||
|
|
|
|||
|
|
@ -131,6 +131,7 @@ Fabric 按照现实世界中的任务来组织 Prompt,允许人们在一个地
|
|||
- [macOS (Homebrew)](#macos-homebrew)
|
||||
- [Arch Linux (AUR)](#arch-linux-aur)
|
||||
- [Windows](#windows)
|
||||
- [Windows (Scoop)](#windows-scoop)
|
||||
- [从源码构建](#从源码构建)
|
||||
- [Docker](#docker)
|
||||
- [环境变量](#环境变量)
|
||||
|
|
@ -260,6 +261,12 @@ yay -S fabric-ai
|
|||
winget install danielmiessler.Fabric
|
||||
```
|
||||
|
||||
#### Windows (Scoop)
|
||||
|
||||
```bash
|
||||
scoop install fabric-ai
|
||||
```
|
||||
|
||||
### 从源码构建
|
||||
|
||||
安装 Fabric 前,请先[确保已安装 Go](https://go.dev/doc/install),然后运行:
|
||||
|
|
|
|||
Loading…
Reference in a new issue