@xynogen/pix-welcome 0.1.0 → 0.1.1

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 +31 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # pix-welcome
2
+
3
+ Pi extension — welcome banner with startup health checks.
4
+
5
+ ## What it does
6
+
7
+ Renders a coloured ASCII π logo above the editor on session start and runs startup health checks in parallel while the banner is visible. Checks include: Pi version, auth status (at least one provider configured), and gitignore hygiene (auto-adds `.ai` and `.pi-lens` to `.gitignore` in git repos). Each check updates the banner live as results arrive, showing ✓/✗ and a brief status. The banner auto-dismisses on the first user turn. No configuration required.
8
+
9
+ ## Install
10
+
11
+ ```bash
12
+ pi install npm:@xynogen/pix-welcome
13
+ ```
14
+
15
+ > Also included in [`@xynogen/pix-core`](https://github.com/xynogen/pix-mono/tree/main/packages/pix-core):
16
+ >
17
+ > ```bash
18
+ > pi install npm:@xynogen/pix-core
19
+ > ```
20
+
21
+ ## Full distro
22
+
23
+ To install the complete pix suite (all packages + Pi itself):
24
+
25
+ ```bash
26
+ curl -fsSL https://raw.githubusercontent.com/xynogen/pix-mono/main/scripts/install.sh | sh
27
+ ```
28
+
29
+ ## License
30
+
31
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xynogen/pix-welcome",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Pi extension — welcome banner with startup health checks",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",