@tanagram/cli 0.6.0 → 0.6.1
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/npm/darwin-arm64/tanagram +0 -0
- package/dist/npm/darwin-x64/tanagram +0 -0
- package/dist/npm/linux-arm64/tanagram +0 -0
- package/dist/npm/linux-x64/tanagram +0 -0
- package/dist/npm/tanagram_0.6.1_darwin_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.1_darwin_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.1_linux_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.1_linux_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.1_windows_amd64.zip +0 -0
- package/dist/npm/win32-x64/tanagram.exe +0 -0
- package/install.js +5 -1
- package/package.json +1 -1
- package/uninstall.js +5 -1
- package/dist/npm/tanagram_0.6.0_darwin_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.0_darwin_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.0_linux_amd64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.0_linux_arm64.tar.gz +0 -0
- package/dist/npm/tanagram_0.6.0_windows_amd64.zip +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/install.js
CHANGED
|
@@ -6,7 +6,11 @@ const os = require('os');
|
|
|
6
6
|
const https = require('https');
|
|
7
7
|
const crypto = require('crypto');
|
|
8
8
|
const pkg = require('./package.json');
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
// Discover skills from the skills/ directory
|
|
11
|
+
const SKILLS = fs.readdirSync(path.join(__dirname, 'skills'), { withFileTypes: true })
|
|
12
|
+
.filter(d => d.isDirectory())
|
|
13
|
+
.map(d => d.name);
|
|
10
14
|
|
|
11
15
|
const POSTHOG_KEY = 'phc_sMsUvf0nK50rZdztSlX9rDJqIreLcXj4dyGS0tORQpQ';
|
|
12
16
|
const POSTHOG_HOST = 'phe.tanagram.ai';
|
package/package.json
CHANGED
package/uninstall.js
CHANGED
|
@@ -6,7 +6,11 @@ const os = require('os');
|
|
|
6
6
|
const https = require('https');
|
|
7
7
|
const crypto = require('crypto');
|
|
8
8
|
const pkg = require('./package.json');
|
|
9
|
-
|
|
9
|
+
|
|
10
|
+
// Discover skills from the skills/ directory
|
|
11
|
+
const SKILLS = fs.readdirSync(path.join(__dirname, 'skills'), { withFileTypes: true })
|
|
12
|
+
.filter(d => d.isDirectory())
|
|
13
|
+
.map(d => d.name);
|
|
10
14
|
|
|
11
15
|
const POSTHOG_KEY = 'phc_sMsUvf0nK50rZdztSlX9rDJqIreLcXj4dyGS0tORQpQ';
|
|
12
16
|
const POSTHOG_HOST = 'phe.tanagram.ai';
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|