@newpeak/barista-cli 0.2.59 → 0.2.60
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@newpeak/barista-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.60",
|
|
4
4
|
"description": "AI Tools CLI for Liberica and Arabica services",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"keywords": [
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"format": "prettier --write src",
|
|
44
44
|
"changelog": "git-cliff -o CHANGELOG.md",
|
|
45
45
|
"changelog:prepend": "git-cliff --unreleased --prepend CHANGELOG.md",
|
|
46
|
+
"postinstall": "node scripts/postinstall.js",
|
|
46
47
|
"prepare": "npm run build",
|
|
47
48
|
"prepublishOnly": "npm run build"
|
|
48
49
|
},
|
|
@@ -50,6 +51,7 @@
|
|
|
50
51
|
"dist",
|
|
51
52
|
"bin",
|
|
52
53
|
"skills",
|
|
54
|
+
"scripts",
|
|
53
55
|
"package.json",
|
|
54
56
|
"README.md",
|
|
55
57
|
"LICENSE"
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
console.log('');
|
|
2
|
+
console.log('\x1b[1m🧩 Barista CLI AI Skills\x1b[0m');
|
|
3
|
+
console.log('');
|
|
4
|
+
console.log(' Supercharge your AI assistant with production management knowledge:');
|
|
5
|
+
console.log('');
|
|
6
|
+
console.log(' \x1b[36mbarista skills install --ai claude\x1b[0m');
|
|
7
|
+
console.log(' \x1b[36mbarista skills install --ai opencode\x1b[0m');
|
|
8
|
+
console.log(' \x1b[36mbarista skills install --ai cursor\x1b[0m');
|
|
9
|
+
console.log('');
|
|
10
|
+
console.log(' \x1b[90mOr explore all platforms:\x1b[0m');
|
|
11
|
+
console.log('');
|
|
12
|
+
console.log(' \x1b[36mbarista skills install --list\x1b[0m');
|
|
13
|
+
console.log('');
|