it4-tools 0.1.1 → 0.1.2

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/package.json +1 -1
  2. package/src/index.js +9 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "it4-tools",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Bootstrap público: autentica no Azure Artifacts da IT4 e instala @it4solution/tools.",
5
5
  "license": "ISC",
6
6
  "author": "Diego Andrade",
package/src/index.js CHANGED
@@ -92,6 +92,13 @@ function printPluginsHint() {
92
92
  log.message(` ${pc.dim("Liste o que está instalado com")} ${pc.cyan("it4 plugins")}.`);
93
93
  }
94
94
 
95
+ function printSkillHint() {
96
+ log.info("Usa Claude Code? Instale a skill que ensina o Claude a operar o CLI:");
97
+ log.message(
98
+ ` ${pc.cyan("it4 skills install --name it4-cli")} ${pc.dim("# comandos e flags do it4 direto no Claude Code")}`,
99
+ );
100
+ }
101
+
95
102
  function bail(message) {
96
103
  cancel(message);
97
104
  process.exit(0);
@@ -195,6 +202,7 @@ async function main() {
195
202
  if (!shouldInstall) {
196
203
  log.info(`Quando quiser instalar o core: ${pc.cyan("npm i -g @it4solution/tools")}.`);
197
204
  printPluginsHint();
205
+ printSkillHint();
198
206
  outro(`Depois, ${pc.cyan("it4 --help")} lista os comandos.`);
199
207
  return;
200
208
  }
@@ -216,6 +224,7 @@ async function main() {
216
224
  }
217
225
 
218
226
  printPluginsHint();
227
+ printSkillHint();
219
228
  outro(`Pronto. Depois de instalar os plugins, ${pc.cyan("it4 --help")} lista os comandos.`);
220
229
  }
221
230