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.
Files changed (2) hide show
  1. package/README.md +9 -4
  2. 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 and any OpenClaw-powered agent will automatically use Domainstorm when you ask it to brainstorm or check domains.
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
- # Install the skill (from ClaHub or local)
131
- openclaw skill install domainstorm
130
+ npx domainstorm --install-skill
132
131
  ```
133
132
 
134
- Or drop the [`SKILL.md`](https://github.com/tanishqsh/domain-cli/blob/main/skill/SKILL.md) into your `~/.openclaw/workspace/skills/domainstorm/` directory manually.
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "domainstorm",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Brainstorm and check domain names in one command.",
5
5
  "repository": {
6
6
  "type": "git",