moon-iq 0.2.0 → 0.2.2
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 +41 -0
- package/dist/index.js +461 -31
- package/dist/index.js.map +1 -1
- package/package.json +5 -1
- package/src/auth.ts +0 -332
- package/src/client.ts +0 -68
- package/src/generated/client.ts +0 -556
- package/src/index.ts +0 -307
- package/tsconfig.json +0 -10
- package/tsup.config.ts +0 -10
package/README.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# moon-iq
|
|
2
|
+
|
|
3
|
+
Moon IQ command-line interface.
|
|
4
|
+
|
|
5
|
+
- Install: `npm i -g moon-iq`
|
|
6
|
+
- Primary command: `mooniq`
|
|
7
|
+
- Aliases: `miq`, `moon-iq`
|
|
8
|
+
|
|
9
|
+
## Quick start
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm i -g moon-iq
|
|
13
|
+
mooniq login
|
|
14
|
+
mooniq whoami
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## Common commands
|
|
18
|
+
|
|
19
|
+
### Wallet + user
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
mooniq user retrieve
|
|
23
|
+
# or
|
|
24
|
+
mooniq run user_retrieve
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
### Balances
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
mooniq token balance list --wallet <WALLET> --chain solana
|
|
31
|
+
# or
|
|
32
|
+
mooniq run token_balance_list --input '{"wallet":"<WALLET>","chain":"solana"}'
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Troubleshooting
|
|
36
|
+
|
|
37
|
+
- If you see auth/401 errors: run `mooniq login` again.
|
|
38
|
+
|
|
39
|
+
## Related
|
|
40
|
+
|
|
41
|
+
- Skills pack (Anthropic-style `SKILL.md` folders): `npm i -g moon-iq-skills`
|