pi-startup-redraw-fix 0.1.7 → 0.1.9

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 (3) hide show
  1. package/CHANGELOG.md +48 -42
  2. package/README.md +4 -3
  3. package/package.json +64 -64
package/CHANGELOG.md CHANGED
@@ -1,42 +1,48 @@
1
- # Changelog
2
-
3
- ## [0.1.7] - 2026-04-01
4
-
5
- ### Changed
6
- - Updated npm keywords and package metadata for improved discoverability
7
-
8
- ## [0.1.6] - 2026-04-01
9
-
10
- ### Changed
11
- - Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.64.0
12
-
13
- ## [0.1.5] - 2026-03-23
14
-
15
- ### Changed
16
- - Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.62.0
17
-
18
- ## [0.1.4] - 2026-03-12
19
-
20
- ### Changed
21
- - Updated AWS SDK and related dependencies
22
-
23
- ## [0.1.3] - 2026-03-04
24
-
25
- ### Fixed
26
- - Use absolute GitHub raw URL for README image to fix npm display
27
-
28
- ## [0.1.2] - 2026-03-04
29
-
30
- ### Changed
31
- - Rewrote README.md with professional documentation standards
32
- - Added comprehensive feature documentation, configuration reference, and usage examples
33
-
34
- ## 0.1.1
35
-
36
- - Added `asset/` to the npm `files` whitelist so README image assets are included in package tarballs.
37
- - Bumped patch version for republish.
38
-
39
- ## 0.1.0
40
-
41
- - Standardized repository structure with `src/` layout and root shim entrypoint.
42
- - Kept terminal clear-sequence patch behavior unchanged.
1
+ # Changelog
2
+
3
+ ## [0.1.9] - 2026-04-25
4
+
5
+ ### Changed
6
+ - Clarified the global extension path and `PI_CODING_AGENT_DIR` override behavior in README installation and configuration guidance
7
+ - Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.70.2
8
+
9
+ ## [0.1.7] - 2026-04-01
10
+
11
+ ### Changed
12
+ - Updated npm keywords and package metadata for improved discoverability
13
+
14
+ ## [0.1.6] - 2026-04-01
15
+
16
+ ### Changed
17
+ - Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.64.0
18
+
19
+ ## [0.1.5] - 2026-03-23
20
+
21
+ ### Changed
22
+ - Updated `@mariozechner/pi-coding-agent` and `@mariozechner/pi-tui` peer dependencies to ^0.62.0
23
+
24
+ ## [0.1.4] - 2026-03-12
25
+
26
+ ### Changed
27
+ - Updated AWS SDK and related dependencies
28
+
29
+ ## [0.1.3] - 2026-03-04
30
+
31
+ ### Fixed
32
+ - Use absolute GitHub raw URL for README image to fix npm display
33
+
34
+ ## [0.1.2] - 2026-03-04
35
+
36
+ ### Changed
37
+ - Rewrote README.md with professional documentation standards
38
+ - Added comprehensive feature documentation, configuration reference, and usage examples
39
+
40
+ ## 0.1.1
41
+
42
+ - Added `asset/` to the npm `files` whitelist so README image assets are included in package tarballs.
43
+ - Bumped patch version for republish.
44
+
45
+ ## 0.1.0
46
+
47
+ - Standardized repository structure with `src/` layout and root shim entrypoint.
48
+ - Kept terminal clear-sequence patch behavior unchanged.
package/README.md CHANGED
@@ -30,7 +30,7 @@ Place the extension folder in one of Pi's auto-discovered extension locations:
30
30
 
31
31
  | Location | Path |
32
32
  |----------|------|
33
- | Global | `~/.pi/agent/extensions/pi-startup-redraw-fix` |
33
+ | Global default | `~/.pi/agent/extensions/pi-startup-redraw-fix` (respects `PI_CODING_AGENT_DIR`) |
34
34
  | Project | `.pi/extensions/pi-startup-redraw-fix` |
35
35
 
36
36
  Alternatively, add the path to your Pi settings `extensions` array.
@@ -57,8 +57,9 @@ When loaded, the extension immediately patches `ProcessTerminal.prototype.write`
57
57
 
58
58
  Configuration is stored at `config.json` alongside the extension:
59
59
 
60
- ```
61
- ~/.pi/agent/extensions/pi-startup-redraw-fix/config.json
60
+ ```text
61
+ Default global path: ~/.pi/agent/extensions/pi-startup-redraw-fix/config.json
62
+ Actual global path: $PI_CODING_AGENT_DIR/extensions/pi-startup-redraw-fix/config.json when PI_CODING_AGENT_DIR is set
62
63
  ```
63
64
 
64
65
  A template is provided at `config/config.example.json`.
package/package.json CHANGED
@@ -1,64 +1,64 @@
1
- {
2
- "name": "pi-startup-redraw-fix",
3
- "version": "0.1.7",
4
- "description": "Pi extension that patches terminal full-clear ordering to avoid startup redraw glitches.",
5
- "type": "module",
6
- "main": "./index.ts",
7
- "exports": {
8
- ".": "./index.ts"
9
- },
10
- "files": [
11
- "index.ts",
12
- "src",
13
- "asset",
14
- "config/config.example.json",
15
- "README.md",
16
- "CHANGELOG.md",
17
- "LICENSE"
18
- ],
19
- "scripts": {
20
- "build": "npx --yes -p typescript@5.7.3 tsc -p tsconfig.json --noCheck",
21
- "lint": "npm run build",
22
- "test": "node --test",
23
- "check": "npm run lint && npm run test"
24
- },
25
- "keywords": [
26
- "pi-package",
27
- "pi",
28
- "pi-extension",
29
- "pi-coding-agent",
30
- "pi-tui",
31
- "coding-agent",
32
- "terminal",
33
- "terminal-emulator",
34
- "startup",
35
- "startup-fix",
36
- "redraw",
37
- "bugfix"
38
- ],
39
- "author": "MasuRii",
40
- "license": "MIT",
41
- "repository": {
42
- "type": "git",
43
- "url": "git+https://github.com/MasuRii/pi-startup-redraw-fix.git"
44
- },
45
- "bugs": {
46
- "url": "https://github.com/MasuRii/pi-startup-redraw-fix/issues"
47
- },
48
- "homepage": "https://github.com/MasuRii/pi-startup-redraw-fix#readme",
49
- "engines": {
50
- "node": ">=20"
51
- },
52
- "publishConfig": {
53
- "access": "public"
54
- },
55
- "pi": {
56
- "extensions": [
57
- "./index.ts"
58
- ]
59
- },
60
- "peerDependencies": {
61
- "@mariozechner/pi-coding-agent": "^0.64.0",
62
- "@mariozechner/pi-tui": "^0.64.0"
63
- }
64
- }
1
+ {
2
+ "name": "pi-startup-redraw-fix",
3
+ "version": "0.1.9",
4
+ "description": "Pi extension that patches terminal full-clear ordering to avoid startup redraw glitches.",
5
+ "type": "module",
6
+ "main": "./index.ts",
7
+ "exports": {
8
+ ".": "./index.ts"
9
+ },
10
+ "files": [
11
+ "index.ts",
12
+ "src",
13
+ "asset",
14
+ "config/config.example.json",
15
+ "README.md",
16
+ "CHANGELOG.md",
17
+ "LICENSE"
18
+ ],
19
+ "scripts": {
20
+ "build": "npx --yes -p typescript@5.7.3 tsc -p tsconfig.json --noCheck",
21
+ "lint": "npm run build",
22
+ "test": "node --test",
23
+ "check": "npm run lint && npm run test"
24
+ },
25
+ "keywords": [
26
+ "pi-package",
27
+ "pi",
28
+ "pi-extension",
29
+ "pi-coding-agent",
30
+ "pi-tui",
31
+ "coding-agent",
32
+ "terminal",
33
+ "terminal-emulator",
34
+ "startup",
35
+ "startup-fix",
36
+ "redraw",
37
+ "bugfix"
38
+ ],
39
+ "author": "MasuRii",
40
+ "license": "MIT",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "git+https://github.com/MasuRii/pi-startup-redraw-fix.git"
44
+ },
45
+ "bugs": {
46
+ "url": "https://github.com/MasuRii/pi-startup-redraw-fix/issues"
47
+ },
48
+ "homepage": "https://github.com/MasuRii/pi-startup-redraw-fix#readme",
49
+ "engines": {
50
+ "node": ">=20"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public"
54
+ },
55
+ "pi": {
56
+ "extensions": [
57
+ "./index.ts"
58
+ ]
59
+ },
60
+ "peerDependencies": {
61
+ "@mariozechner/pi-coding-agent": "^0.70.2",
62
+ "@mariozechner/pi-tui": "^0.70.2"
63
+ }
64
+ }