@trim21/personal-pi-extensions 0.0.238 → 0.0.239

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 CHANGED
@@ -56,7 +56,7 @@ bash 工具(opencode 风格 `bash`、Claude Code 风格 `Bash`)注册了 `da
56
56
 
57
57
  配置文件(项目优先于全局):
58
58
 
59
- - `~/.pi/agent/extensions/bwrap.json`(全局)
59
+ - `~/.pi/agent/bwrap.json`(全局)
60
60
  - `.pi/bwrap.json`(项目)
61
61
 
62
62
  ```jsonc
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trim21/personal-pi-extensions",
3
- "version": "0.0.238",
3
+ "version": "0.0.239",
4
4
  "type": "module",
5
5
  "description": "Custom pi coding-agent extensions: bwrap sandbox, workspace guard, opencode edit, and more",
6
6
  "keywords": [
package/src/bwrap/core.ts CHANGED
@@ -126,7 +126,7 @@ export interface BwrapConfigPaths {
126
126
 
127
127
  export function getBwrapConfigPaths(cwd: string): BwrapConfigPaths {
128
128
  return {
129
- global: join(getAgentDir(), "extensions", "bwrap.json"),
129
+ global: join(getAgentDir(), "bwrap.json"),
130
130
  project: join(cwd, ".pi", "bwrap.json"),
131
131
  };
132
132
  }