@c4t4/heyamigo 0.1.8 → 0.1.10
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 +10 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,30 +62,26 @@ npm install -g @anthropic-ai/claude-code
|
|
|
62
62
|
claude
|
|
63
63
|
```
|
|
64
64
|
|
|
65
|
-
Run `claude` and follow the login instructions.
|
|
65
|
+
Run `claude` and follow the login instructions. You need an [Anthropic account](https://console.anthropic.com). After logging in, exit claude.
|
|
66
66
|
|
|
67
|
-
### 2.
|
|
67
|
+
### 2. Run the setup wizard
|
|
68
68
|
|
|
69
69
|
```bash
|
|
70
|
-
|
|
71
|
-
cd heyamigo
|
|
72
|
-
npm install
|
|
73
|
-
npm run setup
|
|
70
|
+
npx @c4t4/heyamigo setup
|
|
74
71
|
```
|
|
75
72
|
|
|
76
|
-
The wizard handles
|
|
73
|
+
That's it. The wizard handles everything:
|
|
77
74
|
- WhatsApp pairing (QR code + pairing code)
|
|
78
75
|
- Browser setup (optional)
|
|
79
76
|
- Personality selection
|
|
80
|
-
- Knowledge import (optional)
|
|
81
77
|
|
|
82
|
-
|
|
78
|
+
### 3. Start the bot
|
|
83
79
|
|
|
84
80
|
```bash
|
|
85
|
-
heyamigo start
|
|
81
|
+
npx @c4t4/heyamigo start
|
|
86
82
|
```
|
|
87
83
|
|
|
88
|
-
|
|
84
|
+
Runs in the background, auto-restarts on crash, survives SSH disconnect.
|
|
89
85
|
|
|
90
86
|
---
|
|
91
87
|
|
|
@@ -171,13 +167,13 @@ All localhost. Nothing public.
|
|
|
171
167
|
|
|
172
168
|
Three built-in:
|
|
173
169
|
|
|
174
|
-
**Sharp** (default)
|
|
170
|
+
[**Sharp**](config/personalities/sharp.md) (default)
|
|
175
171
|
Talks like a smart friend at dinner. Specific, confident, never vague. Won't hedge, won't lecture, won't sound like a brochure. Calls things out when they're obvious, meets people where they actually are. Checks every reply against: would I be embarrassed saying this out loud?
|
|
176
172
|
|
|
177
|
-
**Casual**
|
|
173
|
+
[**Casual**](config/personalities/casual.md)
|
|
178
174
|
Warm, relaxed, friend-over-coffee energy. Short messages, matches your vibe.
|
|
179
175
|
|
|
180
|
-
**Professional**
|
|
176
|
+
[**Professional**](config/personalities/professional.md)
|
|
181
177
|
Clear, efficient, business-appropriate. Gets to the answer fast.
|
|
182
178
|
|
|
183
179
|
Create your own: add a `.md` file to `config/personalities/`, point `config.json` at it.
|