insta 0.0.18 → 0.0.19
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/dist/ensure-skills.js +6 -2
- package/package.json +1 -1
package/dist/ensure-skills.js
CHANGED
|
@@ -47,9 +47,13 @@ export async function installSkills(deps) {
|
|
|
47
47
|
const run = deps.run ?? defaultRunner;
|
|
48
48
|
const print = deps.print ?? ((s) => process.stdout.write(s + '\n'));
|
|
49
49
|
try {
|
|
50
|
-
print(' installing related agent skills (insta, neon-postgres, tigris, better-auth)
|
|
50
|
+
print(' installing related agent skills (insta, neon-postgres, tigris, better-auth) …');
|
|
51
51
|
for (const s of SKILLS) {
|
|
52
|
-
|
|
52
|
+
// Don't stream: the `skills` tool's clack UI (clone spinner, banners) is noise. Run it
|
|
53
|
+
// silent (stdio 'ignore') and let the per-skill ✓/failed line below be the clean output —
|
|
54
|
+
// it appears as each skill finishes, so there's still live progress. (Also avoids the
|
|
55
|
+
// child inheriting a piped stdin.)
|
|
56
|
+
const r = await run('npx', s.args);
|
|
53
57
|
print(r.ok ? ` ${s.label} ✓` : ` ${s.label} failed — add manually: npx ${s.args.join(' ')}`);
|
|
54
58
|
}
|
|
55
59
|
const added = ensureGitignore(deps.cwd, SKILL_DIRS);
|