@ngocsangairvds/vsaf 3.2.15 → 3.2.16
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/bin/vsaf.js +5 -4
- package/package.json +1 -1
- package/src/project.js +1 -0
package/bin/vsaf.js
CHANGED
|
@@ -127,10 +127,11 @@ function printInstallHint() {
|
|
|
127
127
|
console.log(` \x1b[32mbash scripts/setup-vsaf.sh\x1b[0m\n`);
|
|
128
128
|
|
|
129
129
|
console.log(` After installation, scaffold each project:\n`);
|
|
130
|
-
console.log(` \x1b[36mvsaf init\x1b[0m
|
|
131
|
-
console.log(` \x1b[36mvsaf status\x1b[0m
|
|
132
|
-
console.log(` \x1b[36mvsaf index\x1b[0m
|
|
133
|
-
console.log(` \x1b[36mvsaf
|
|
130
|
+
console.log(` \x1b[36mvsaf init\x1b[0m # run inside each repo`);
|
|
131
|
+
console.log(` \x1b[36mvsaf status\x1b[0m # check installation`);
|
|
132
|
+
console.log(` \x1b[36mvsaf index\x1b[0m # index codebase (GitNexus)`);
|
|
133
|
+
console.log(` \x1b[36mvsaf config env\x1b[0m # update ~/.vds/.env credentials`);
|
|
134
|
+
console.log(` \x1b[36mvsaf review\x1b[0m # run 2-layer review\n`);
|
|
134
135
|
console.log(` \x1b[90mOr continue using npx without global install:\x1b[0m`);
|
|
135
136
|
console.log(` \x1b[90m npx ${pkg} <command>\x1b[0m\n`);
|
|
136
137
|
}
|
package/package.json
CHANGED
package/src/project.js
CHANGED
|
@@ -25,6 +25,7 @@ async function installProject() {
|
|
|
25
25
|
console.log('\n Next steps:');
|
|
26
26
|
console.log(' vsaf status check all tools');
|
|
27
27
|
console.log(' vsaf index build/update knowledge graph');
|
|
28
|
+
console.log(' vsaf config env edit ~/.vds/.env (add/edit/delete credentials)');
|
|
28
29
|
console.log('\n \x1b[1mActivate Superpowers:\x1b[0m');
|
|
29
30
|
console.log(' \x1b[36mClaude Code\x1b[0m /plugin install superpowers@claude-plugins-official');
|
|
30
31
|
console.log(' \x1b[36mCodex\x1b[0m skills auto-loaded — use /superpowers:brainstorming, /superpowers:code-review, etc.\n');
|