@henryqw/pi-open-in 1.0.1 → 2.0.0

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.
Files changed (2) hide show
  1. package/README.md +7 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  # `@henryqw/pi-open-in`
2
2
 
3
- Open the current working directory with a configurable editor command. The default is `code`.
3
+ Open the current Pi working directory in your editor with one command. The default editor is VS Code.
4
4
 
5
5
  ## Why
6
6
 
7
- - **Created for**: Replace manually typed editor commands with one configurable action for the working directory.
8
- - **Advantage**: `/open` works while the agent is busy and supports any simple editor command, defaulting to `code`.
7
+ - **Created for**: Pi users who move between terminal work and an editor.
8
+ - **Advantage**: `/open` works while the agent is busy and supports any simple editor command.
9
9
 
10
10
  ## Install
11
11
 
@@ -15,6 +15,10 @@ pi install npm:@henryqw/pi-open-in
15
15
 
16
16
  ## Use
17
17
 
18
+ Run `/open`. With default settings, VS Code opens the current working directory.
19
+
20
+ Run `/set-open-in` when you want another command.
21
+
18
22
  | Surface | Type | Purpose |
19
23
  | --- | --- | --- |
20
24
  | `/open` | command | Run `<command> <current-working-directory>`. Works while the agent is busy. |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@henryqw/pi-open-in",
3
- "version": "1.0.1",
3
+ "version": "2.0.0",
4
4
  "description": "Open the current Pi working directory with a configurable command.",
5
5
  "keywords": [
6
6
  "pi-package",
@@ -28,15 +28,15 @@
28
28
  "pack:check": "npm pack --dry-run"
29
29
  },
30
30
  "peerDependencies": {
31
- "@earendil-works/pi-coding-agent": "^0.84.4"
31
+ "@earendil-works/pi-coding-agent": "^0.85.0"
32
32
  },
33
33
  "repository": {
34
34
  "type": "git",
35
- "url": "git+https://github.com/HenryQW/pi-packages.git",
36
- "directory": "packages/pi-open-in"
35
+ "url": "git+https://github.com/HenryQW/pi-harness.git",
36
+ "directory": "extensions/pi-open-in"
37
37
  },
38
38
  "bugs": {
39
- "url": "https://github.com/HenryQW/pi-packages/issues"
39
+ "url": "https://github.com/HenryQW/pi-harness/issues"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
@@ -47,6 +47,6 @@
47
47
  ]
48
48
  },
49
49
  "dependencies": {
50
- "@henryqw/pi-config-store": "^0.1.0"
50
+ "@henryqw/pi-config-store": "^1.0.0"
51
51
  }
52
52
  }