domainstorm 0.3.0 → 0.3.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/README.md +9 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -124,14 +124,19 @@ Output columns:
|
|
|
124
124
|
|
|
125
125
|
## OpenClaw / AI Agent Skill
|
|
126
126
|
|
|
127
|
-
Domainstorm ships as an [OpenClaw](https://openclaw.ai) skill. Install it
|
|
127
|
+
Domainstorm ships as an [OpenClaw](https://openclaw.ai) skill. Install it with a single `npx` command — no global install needed:
|
|
128
128
|
|
|
129
129
|
```bash
|
|
130
|
-
|
|
131
|
-
openclaw skill install domainstorm
|
|
130
|
+
npx domainstorm --install-skill
|
|
132
131
|
```
|
|
133
132
|
|
|
134
|
-
|
|
133
|
+
This launches an interactive installer that lets you pick where to install the skill (Claude Code, OpenClaw, Cursor, or a custom path). Once installed, your agent will automatically use Domainstorm when you ask it to brainstorm or check domains.
|
|
134
|
+
|
|
135
|
+
You can also print the skill file to stdout for manual setup:
|
|
136
|
+
|
|
137
|
+
```bash
|
|
138
|
+
npx domainstorm --skill
|
|
139
|
+
```
|
|
135
140
|
|
|
136
141
|
Works with any agent that supports OpenClaw skills — Claude, Codex, Cursor, and others.
|
|
137
142
|
|