@impulselab/directory 1.0.2 → 1.0.4
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/README.md +1 -5
- package/index.js +2 -3
- package/package.json +9 -10
package/README.md
CHANGED
|
@@ -9,10 +9,6 @@ An NPX command by Impulse Lab (`https://impulselab.ai`) that downloads prompts f
|
|
|
9
9
|
```bash
|
|
10
10
|
npx @impulselab/directory <user-slug>/<command-slug> [--target <target>]
|
|
11
11
|
npx @impulselab/directory stack <stack-id> [--target <target>]
|
|
12
|
-
|
|
13
|
-
# Legacy command name also works
|
|
14
|
-
npx impulse-directory <user-slug>/<command-slug> [--target <target>]
|
|
15
|
-
npx impulse-directory stack <stack-id> [--target <target>]
|
|
16
12
|
```
|
|
17
13
|
|
|
18
14
|
`--target` selects the installation target. When omitted the command defaults to `claude-slash`.
|
|
@@ -144,7 +140,7 @@ npx/impulse-claude/
|
|
|
144
140
|
To see download details:
|
|
145
141
|
```bash
|
|
146
142
|
# The command automatically displays the download path and destination folder
|
|
147
|
-
npx
|
|
143
|
+
npx @impulselab/directory debug-user/debug-command
|
|
148
144
|
```
|
|
149
145
|
|
|
150
146
|
## 🏷️ Branding
|
package/index.js
CHANGED
|
@@ -84,8 +84,7 @@ const TARGET_CONFIG = {
|
|
|
84
84
|
const KNOWN_TARGETS = Object.keys(TARGET_CONFIG);
|
|
85
85
|
|
|
86
86
|
function showHelp() {
|
|
87
|
-
const primaryUsageCmd = `npx
|
|
88
|
-
const legacyUsageCmd = `npx ${PACKAGE.commandName}`;
|
|
87
|
+
const primaryUsageCmd = `npx impulse-directory`;
|
|
89
88
|
console.log(`
|
|
90
89
|
Impulse Directory Command Installer
|
|
91
90
|
Made by ${PACKAGE.brand} (${PACKAGE.websiteUrl})
|
|
@@ -93,7 +92,7 @@ Made by ${PACKAGE.brand} (${PACKAGE.websiteUrl})
|
|
|
93
92
|
Usage:
|
|
94
93
|
${primaryUsageCmd} <user-slug>/<command-slug> [--target <target>]
|
|
95
94
|
${primaryUsageCmd} stack <stack-id>
|
|
96
|
-
|
|
95
|
+
|
|
97
96
|
|
|
98
97
|
Description:
|
|
99
98
|
Downloads a command from Impulse Directory and installs it in the right tool folder.
|
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@impulselab/directory",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Download and install Claude commands from Impulse Directory",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
7
|
-
"directory": "./index.js"
|
|
8
|
-
|
|
7
|
+
"directory": "./index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "node index.js --help",
|
|
11
|
+
"predeploy": "chmod +x index.js",
|
|
12
|
+
"deploy": "pnpm publish --access public --no-git-checks"
|
|
9
13
|
},
|
|
10
14
|
"keywords": [
|
|
11
15
|
"claude",
|
|
@@ -13,7 +17,7 @@
|
|
|
13
17
|
"impulse",
|
|
14
18
|
"npx"
|
|
15
19
|
],
|
|
16
|
-
"author": "Impulse Lab <
|
|
20
|
+
"author": "Impulse Lab <team@impulselab.ai> (https://impulselab.ai)",
|
|
17
21
|
"homepage": "https://impulselab.ai",
|
|
18
22
|
"repository": {
|
|
19
23
|
"type": "git",
|
|
@@ -25,10 +29,5 @@
|
|
|
25
29
|
},
|
|
26
30
|
"publishConfig": {
|
|
27
31
|
"access": "public"
|
|
28
|
-
},
|
|
29
|
-
"scripts": {
|
|
30
|
-
"test": "node index.js --help",
|
|
31
|
-
"predeploy": "chmod +x index.js",
|
|
32
|
-
"deploy": "pnpm publish --access public --no-git-checks"
|
|
33
32
|
}
|
|
34
|
-
}
|
|
33
|
+
}
|