@pi-kaush/pi-welcome-screen 0.1.0 → 0.1.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
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.2
4
+
5
+ - Summarize the extension's main benefits at the top of the package README.
6
+
7
+ ## 0.1.1
8
+
9
+ - Add the welcome-screen screenshot to the GitHub and npm package pages.
10
+
3
11
  ## 0.1.0
4
12
 
5
13
  - Add a responsive custom Pi startup header.
package/README.md CHANGED
@@ -2,19 +2,20 @@
2
2
 
3
3
  A compact, centered startup screen for the [Pi coding agent](https://pi.dev). It keeps Pi's loaded context, skills, prompts, and extensions visible while replacing the stock header with a responsive branded layout.
4
4
 
5
- ## Features
5
+ ![Pi welcome screen showing context, skills, prompts, and extensions](https://raw.githubusercontent.com/kaushikgopal/pi-kaush/main/extensions/pi-welcome-screen/assets/pi-welcome.webp)
6
6
 
7
- - Responsive stacked and wide terminal layouts
8
- - Pi version displayed beside a compact banner
9
- - Loaded resources grouped into readable sections
10
- - Extensions split into Pi-local, installed-package, and linked source-path groups
11
- - Full linked source paths shown instead of ambiguous labels such as `src`
12
- - Unknown startup diagnostics preserved through a fail-safe fallback
7
+ ## Why use it
8
+
9
+ - **Zero runtime dependencies** installs as readable TypeScript without pulling additional packages into your Pi setup.
10
+ - **Context files in load order** — shows exactly which instructions Pi loaded and the order in which they apply.
11
+ - **Extensions grouped by source** separates Pi-local extensions, installed packages, and linked source paths.
12
+ - **Responsive layout** switches between stacked and side-by-side views, with two- or three-column lists based on terminal width.
13
+ - **Fail-safe behavior** — if the startup data or UI shape is unfamiliar, restores Pi's untouched native resource panel instead of hiding information.
13
14
 
14
15
  ## Install
15
16
 
16
17
  ```sh
17
- pi install npm:@pi-kaush/pi-welcome-screen@0.1.0
18
+ pi install npm:@pi-kaush/pi-welcome-screen@0.1.2
18
19
  ```
19
20
 
20
21
  Restart Pi or run `/reload`.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pi-kaush/pi-welcome-screen",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Replace Pi's startup header with centered branding and a compact resource summary.",
5
5
  "license": "MIT",
6
6
  "author": "Kaushik Gopal",
@@ -23,6 +23,7 @@
23
23
  "directory": "extensions/pi-welcome-screen"
24
24
  },
25
25
  "files": [
26
+ "assets",
26
27
  "src",
27
28
  "CHANGELOG.md",
28
29
  "LICENSE",