@juicesharp/rpiv-args 0.12.5 → 0.12.7
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/README.md +3 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,18 +1,13 @@
|
|
|
1
|
-
#
|
|
1
|
+
# rpiv-args
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@juicesharp/rpiv-args)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
Pi
|
|
7
|
-
invoke `/skill:<name> <args>`, rpiv-args substitutes placeholders inside the
|
|
8
|
-
skill body — `$1`, `$ARGUMENTS`, `$@`, `${@:2}`, `${@:2:3}` — before the
|
|
9
|
-
content reaches the LLM. Skills without placeholders emit a `<skill>` wrapper
|
|
10
|
-
byte-identical to Pi's built-in, so installing rpiv-args never changes
|
|
11
|
-
behavior for existing skills.
|
|
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.
|
|
12
7
|
|
|
13
8
|
## Install
|
|
14
9
|
|
|
15
|
-
```
|
|
10
|
+
```bash
|
|
16
11
|
pi install npm:@juicesharp/rpiv-args
|
|
17
12
|
```
|
|
18
13
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juicesharp/rpiv-args",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.7",
|
|
4
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",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|