harnessbrew 0.6.1 → 0.6.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/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## 0.6.2 - 2026-08-13
8
+
9
+ ### Security
10
+
11
+ - replace personal account identifiers in README and architecture examples with neutral `your-name` placeholders
12
+
7
13
  ## 0.6.1 - 2026-08-13
8
14
 
9
15
  ### Changed
package/README.md CHANGED
@@ -48,7 +48,7 @@ HarnessBrew stores managed state in `~/.harnessbrew` by default. Set `HARNESSBRE
48
48
  Register an asset Tap:
49
49
 
50
50
  ```bash
51
- harnessbrew tap add xiejinheng/agents git@github.com:xiejinheng/agent-assets.git --trust
51
+ harnessbrew tap add your-name/agents git@github.com:your-name/agent-assets.git --trust
52
52
  ```
53
53
 
54
54
  Search for and inspect Formulae:
@@ -56,13 +56,13 @@ Search for and inspect Formulae:
56
56
  ```bash
57
57
  harnessbrew search review
58
58
  harnessbrew search --kind skill --target openai-codex
59
- harnessbrew info xiejinheng/agents/code-review
59
+ harnessbrew info your-name/agents/code-review
60
60
  ```
61
61
 
62
62
  Install into the Cellar and link into Codex:
63
63
 
64
64
  ```bash
65
- harnessbrew install xiejinheng/agents/code-review \
65
+ harnessbrew install your-name/agents/code-review \
66
66
  --target openai-codex
67
67
  ```
68
68
 
@@ -134,7 +134,7 @@ The Formula directory name must match `name`, and its parent directory must matc
134
134
  "entry": "SKILL.md",
135
135
  "targets": ["openai-codex", "claude-code"],
136
136
  "dependencies": [
137
- "xiejinheng/agents/repository-guardrails"
137
+ "your-name/agents/repository-guardrails"
138
138
  ],
139
139
  "conflicts": [],
140
140
  "tags": ["review", "quality"]
@@ -200,13 +200,13 @@ A `Harnessfile` can be committed to a dotfiles or project repository:
200
200
  ```yaml
201
201
  schemaVersion: 2
202
202
  taps:
203
- - name: xiejinheng/agents
204
- git: git@github.com:xiejinheng/agent-assets.git
203
+ - name: your-name/agents
204
+ git: git@github.com:your-name/agent-assets.git
205
205
  ref: main
206
206
  trust: true
207
207
 
208
208
  assets:
209
- - formula: xiejinheng/agents/code-review
209
+ - formula: your-name/agents/code-review
210
210
  targets:
211
211
  - target: openai-codex
212
212
  scope: user
package/README.zh-CN.md CHANGED
@@ -48,7 +48,7 @@ HarnessBrew 默认将受管状态保存到 `~/.harnessbrew`。测试或隔离环
48
48
  注册自己的资产 Tap:
49
49
 
50
50
  ```bash
51
- harnessbrew tap add xiejinheng/agents git@github.com:xiejinheng/agent-assets.git --trust
51
+ harnessbrew tap add your-name/agents git@github.com:your-name/agent-assets.git --trust
52
52
  ```
53
53
 
54
54
  搜索并查看 Formula:
@@ -56,13 +56,13 @@ harnessbrew tap add xiejinheng/agents git@github.com:xiejinheng/agent-assets.git
56
56
  ```bash
57
57
  harnessbrew search review
58
58
  harnessbrew search --kind skill --target openai-codex
59
- harnessbrew info xiejinheng/agents/code-review
59
+ harnessbrew info your-name/agents/code-review
60
60
  ```
61
61
 
62
62
  安装到 Cellar,并链接到 Codex:
63
63
 
64
64
  ```bash
65
- harnessbrew install xiejinheng/agents/code-review \
65
+ harnessbrew install your-name/agents/code-review \
66
66
  --target openai-codex
67
67
  ```
68
68
 
@@ -134,7 +134,7 @@ Formula 的目录名称必须与 `name` 一致,目录类型必须与 `kind`
134
134
  "entry": "SKILL.md",
135
135
  "targets": ["openai-codex", "claude-code"],
136
136
  "dependencies": [
137
- "xiejinheng/agents/repository-guardrails"
137
+ "your-name/agents/repository-guardrails"
138
138
  ],
139
139
  "conflicts": [],
140
140
  "tags": ["review", "quality"]
@@ -197,13 +197,13 @@ harnessbrew unlink code-review --target openai-codex
197
197
  ```yaml
198
198
  schemaVersion: 2
199
199
  taps:
200
- - name: xiejinheng/agents
201
- git: git@github.com:xiejinheng/agent-assets.git
200
+ - name: your-name/agents
201
+ git: git@github.com:your-name/agent-assets.git
202
202
  ref: main
203
203
  trust: true
204
204
 
205
205
  assets:
206
- - formula: xiejinheng/agents/code-review
206
+ - formula: your-name/agents/code-review
207
207
  targets:
208
208
  - target: openai-codex
209
209
  scope: user
package/dist/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.6.1";
1
+ export declare const VERSION = "0.6.2";
2
2
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = "0.6.1";
1
+ export const VERSION = "0.6.2";
2
2
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harnessbrew",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "A Git-native package manager for AI Agent assets.",
5
5
  "type": "module",
6
6
  "bin": {