my-pi 0.1.40 → 0.1.41

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 +12 -7
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -45,6 +45,8 @@ directly as its own CLI.
45
45
  references, and document symbols via language servers.
46
46
  - **Managed skills** — discover, enable, disable, import, and sync
47
47
  Pi-native skills.
48
+ - **Svelte guardrails** — default-enabled protection against writing
49
+ discouraged Svelte patterns like `$effect` in `.svelte` files.
48
50
  - **Prompt presets** — base presets plus additive prompt layers with
49
51
  per-project persistence.
50
52
  - **Secret redaction** — redact API keys and other sensitive output
@@ -396,11 +398,13 @@ Stack arbitrary Pi extensions via `-e`. Use `--no-builtin` to skip all
396
398
  built-in extensions.
397
399
 
398
400
  Built-in extension choices can also be saved interactively with
399
- `/extensions`. Startup flags like `--no-recall` and `--no-skills`
400
- still force-disable those extensions for the current process only. The
401
- built-in registry in `src/extensions/builtin-registry.ts` is the
402
- source of truth for built-in order, API option names, disable flags,
403
- labels, and runtime-mode constraints.
401
+ `/extensions`. Startup flags like `--no-recall`, `--no-skills`, and
402
+ `--no-svelte-guardrails` still force-disable those extensions for the
403
+ current process only. The built-in registry in
404
+ `src/extensions/builtin-registry.ts` is the source of truth for
405
+ built-in order, API option names, disable flags, labels, and
406
+ runtime-mode constraints. SDK users can disable Svelte guardrails with
407
+ `create_my_pi({ svelte_guardrails: false })`.
404
408
 
405
409
  ### Themes
406
410
 
@@ -784,8 +788,9 @@ pi install npm:@spences10/pi-themes
784
788
  - [`@spences10/pi-sqlite-tools`](./packages/pi-sqlite-tools/README.md)
785
789
  — mcp-sqlite-tools reminder for safer SQLite database work
786
790
  - [`@spences10/pi-svelte-guardrails`](./packages/pi-svelte-guardrails/README.md)
787
- — Svelte pattern guardrails that block discouraged writes like
788
- `$effect`
791
+ default-enabled Svelte pattern guardrails that block discouraged
792
+ writes like `$effect`; install separately in vanilla Pi with
793
+ `pi install npm:@spences10/pi-svelte-guardrails`
789
794
  - [`@spences10/pi-team-mode`](./packages/pi-team-mode/README.md) —
790
795
  local orchestrator/team mode with RPC teammates, tasks, and
791
796
  mailboxes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "my-pi",
3
- "version": "0.1.40",
3
+ "version": "0.1.41",
4
4
  "description": "Composable pi coding agent with MCP, LSP, prompt presets, and local eval telemetry",
5
5
  "keywords": [
6
6
  "cli",
@@ -63,17 +63,17 @@
63
63
  "@spences10/pi-coding-preferences": "0.0.2",
64
64
  "@spences10/pi-confirm-destructive": "0.0.8",
65
65
  "@spences10/pi-context": "0.0.10",
66
- "@spences10/pi-mcp": "0.0.20",
67
66
  "@spences10/pi-lsp": "0.0.17",
67
+ "@spences10/pi-mcp": "0.0.20",
68
68
  "@spences10/pi-nopeek": "0.0.6",
69
69
  "@spences10/pi-omnisearch": "0.0.6",
70
70
  "@spences10/pi-recall": "0.0.6",
71
71
  "@spences10/pi-redact": "0.0.6",
72
- "@spences10/pi-sqlite-tools": "0.0.6",
73
72
  "@spences10/pi-skills": "0.0.14",
74
- "@spences10/pi-svelte-guardrails": "0.0.2",
75
- "@spences10/pi-telemetry": "0.0.9",
76
- "@spences10/pi-team-mode": "0.0.16"
73
+ "@spences10/pi-sqlite-tools": "0.0.6",
74
+ "@spences10/pi-team-mode": "0.0.16",
75
+ "@spences10/pi-svelte-guardrails": "0.0.3",
76
+ "@spences10/pi-telemetry": "0.0.9"
77
77
  },
78
78
  "engines": {
79
79
  "node": ">=24.15.0"