@ushiradineth/veil 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +21 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,6 +17,23 @@ Veil is built for agent workflows that need fast, token-lean context before edit
|
|
|
17
17
|
|
|
18
18
|
Requires Node.js 20 or later.
|
|
19
19
|
|
|
20
|
+
### Homebrew
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
brew tap ushiradineth/homebrew https://github.com/ushiradineth/homebrew
|
|
24
|
+
brew install veil
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Nix
|
|
28
|
+
|
|
29
|
+
Run without installing:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
nix run github:ushiradineth/veil
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
### npm
|
|
36
|
+
|
|
20
37
|
```bash
|
|
21
38
|
npm i -g @ushiradineth/veil
|
|
22
39
|
```
|
|
@@ -109,9 +126,9 @@ Required GitHub secrets:
|
|
|
109
126
|
|
|
110
127
|
Optional repository variables:
|
|
111
128
|
|
|
112
|
-
| Variable | Default
|
|
113
|
-
| ----------------------- |
|
|
114
|
-
| `HOMEBREW_TAP_REPO` | `ushiradineth/homebrew
|
|
115
|
-
| `HOMEBREW_FORMULA_PATH` | `Formula/veil.rb`
|
|
129
|
+
| Variable | Default | Purpose |
|
|
130
|
+
| ----------------------- | ----------------------- | ------------------------ |
|
|
131
|
+
| `HOMEBREW_TAP_REPO` | `ushiradineth/homebrew` | Tap owner/repo |
|
|
132
|
+
| `HOMEBREW_FORMULA_PATH` | `Formula/veil.rb` | Formula file path in tap |
|
|
116
133
|
|
|
117
134
|
Branch protection on `main` should require the `CI / test` check context before merge.
|