@xynogen/pix-core 0.3.0 → 0.3.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 +24 -21
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,35 +1,38 @@
1
1
  # pix-core
2
2
 
3
- Pi coding agent extension — core UI/UX bundle.
3
+ Pi coding agent extension — core UI/UX meta-package.
4
+
5
+ Installing `pix-core` pulls in all of the packages below as npm dependencies — no source code of its own.
4
6
 
5
7
  ## What's included
6
8
 
7
- | Extension | Type | Description |
8
- |---|---|---|
9
- | `welcome` | lifecycle | ASCII π banner + startup health checks (version, auth, models, gitignore) |
10
- | `footer` | UI | Status bar: mode / git branch / model / cost / tps |
11
- | `models` | command | `/models` — enhanced model picker with BenchLM rank, context, cost |
12
- | `update` | command | `/update` — self-update Pi + refresh extensions from dotfiles |
13
- | `lg` | command | `/lg` summarize unstaged git changes with per-file +/- counts |
14
- | `yeet` | command | `/yeet` stage all, commit, and push current changes |
15
- | `copy-all` | command | `/copy-all` copy the whole conversation to the clipboard |
16
- | `diff` | command | `/diff` list/open files changed during the last agent run |
17
- | `todo` | tool | durable execution checklist (survives compaction) |
18
- | `toolbox` | tool | `search` (fuzzy-find every tool / MCP tool / skill / command), `enable` / `disable` (turn a gated tool on/off by name) |
19
- | `nudges` | hooks | model-steering reminders (tools / skill / capability) |
9
+ | Package | Description |
10
+ |---|---|
11
+ | `pix-welcome` | ASCII π banner + startup health checks (version, auth, models, gitignore) |
12
+ | `pix-footer` | Status bar: mode / git branch / model / cost / live TPS |
13
+ | `pix-models` | `/models` — enhanced model picker with BenchLM rank, context, cost |
14
+ | `pix-update` | `/update` — self-update Pi + refresh extensions |
15
+ | `pix-commands` | `/diff` and `/clear` slash commands |
16
+ | `pix-diagnostics` | Compact LSP diagnostic widget |
17
+ | `pix-prompts` | System-prompt injection (AGENTS.md + repo directive files) |
18
+ | `pix-skills` | Agent skill loader (`read_skills` tool + 21 bundled skills) |
19
+ | `pix-nudge` | Tool + capability nudge hooks |
20
20
 
21
21
  ## Install
22
22
 
23
23
  ```bash
24
- pi install git:github.com/xynogen/pix-core
24
+ pi install npm:@xynogen/pix-core
25
25
  ```
26
26
 
27
- > **Requires** [pix-data](https://github.com/xynogen/pix-data) for shared models.dev + BenchLM cache.
28
- > Install both:
29
- > ```bash
30
- > pi install git:github.com/xynogen/pix-data
31
- > pi install git:github.com/xynogen/pix-core
32
- > ```
27
+ > Includes the core pix UI/UX packages and installs their dependencies.
28
+
29
+ ## Full distro
30
+
31
+ To install the complete pix suite (all packages + Pi itself):
32
+
33
+ ```bash
34
+ curl -fsSL https://raw.githubusercontent.com/xynogen/pix-mono/main/scripts/install.sh | sh
35
+ ```
33
36
 
34
37
  ## License
35
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xynogen/pix-core",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Pi extension bundle — installs all core pix-* packages",
5
5
  "type": "module",
6
6
  "scripts": {