@juicesharp/rpiv-args 0.11.6 → 0.12.0
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/args.ts +5 -1
- package/package.json +1 -1
package/args.ts
CHANGED
|
@@ -111,7 +111,11 @@ export function invalidateSkillIndex(): void {
|
|
|
111
111
|
|
|
112
112
|
/** Build the name→path index by asking Pi for its currently-loaded skills. */
|
|
113
113
|
function buildSkillIndex(): Map<string, SkillIndexEntry> {
|
|
114
|
-
const { skills } = loadSkills({
|
|
114
|
+
const { skills } = loadSkills({
|
|
115
|
+
cwd: process.cwd(),
|
|
116
|
+
skillPaths: [],
|
|
117
|
+
includeDefaults: true,
|
|
118
|
+
});
|
|
115
119
|
const index = new Map<string, SkillIndexEntry>();
|
|
116
120
|
for (const s of skills as Skill[]) {
|
|
117
121
|
index.set(s.name, { name: s.name, filePath: s.filePath, baseDir: s.baseDir });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@juicesharp/rpiv-args",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
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",
|