@juicesharp/rpiv-args 1.0.9 → 1.0.11

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 +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/@juicesharp/rpiv-args.svg)](https://www.npmjs.com/package/@juicesharp/rpiv-args)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
- Substitute shell-style placeholders inside skill bodies in [Pi Agent](https://github.com/badlogic/pi-mono). `rpiv-args` resolves `$1`, `$ARGUMENTS`, `$@`, `${@:N}`, and `${@:N:L}` before the skill content reaches the LLM. Skills without placeholders emit a `<skill>` wrapper byte-identical to Pi's built-in, so installing `rpiv-args` never changes behavior for existing skills.
6
+ Pass arguments to your skills like a shell command. `rpiv-args` adds `$1`, `$ARGUMENTS`, `$@`, `${@:N}`, and `${@:N:L}` placeholders to [Pi Agent](https://github.com/badlogic/pi-mono) skills write `/skill:deploy api production` and your skill body sees `$1` = `api`, `$2` = `production`. Skills without placeholders are untouched, so installing `rpiv-args` is safe for any existing skill collection.
7
7
 
8
8
  ## Install
9
9
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@juicesharp/rpiv-args",
3
- "version": "1.0.9",
4
- "description": "Pi extension: skill-argument resolver — pre-emptively wraps /skill:<name> <args> via the input hook and performs opt-in $N/$ARGUMENTS substitution before Pi's built-in expansion",
3
+ "version": "1.0.11",
4
+ "description": "Pi extension: pass shell-style $1 / $ARGUMENTS placeholders to your Pi skills",
5
5
  "keywords": [
6
6
  "pi-package",
7
7
  "pi-extension",