@hasna/experts 0.0.5 → 0.0.7
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 +21 -13
- package/dist/cli/index.js +1842 -74
- package/dist/connectors.d.ts +63 -4
- package/dist/connectors.d.ts.map +1 -1
- package/dist/contacts.d.ts +96 -0
- package/dist/contacts.d.ts.map +1 -0
- package/dist/crawl.d.ts +1 -0
- package/dist/crawl.d.ts.map +1 -1
- package/dist/db.d.ts +97 -2
- package/dist/db.d.ts.map +1 -1
- package/dist/embed.d.ts +57 -0
- package/dist/embed.d.ts.map +1 -0
- package/dist/enrich.d.ts +81 -1
- package/dist/enrich.d.ts.map +1 -1
- package/dist/format.d.ts +4 -1
- package/dist/format.d.ts.map +1 -1
- package/dist/identity.d.ts +23 -0
- package/dist/identity.d.ts.map +1 -0
- package/dist/index.d.ts +7 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1544 -21
- package/dist/score.d.ts +25 -0
- package/dist/score.d.ts.map +1 -0
- package/dist/sdk.d.ts +26 -1
- package/dist/sdk.d.ts.map +1 -1
- package/dist/sdk.js +12 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +960 -14
- package/dist/sources/adplist.d.ts +43 -0
- package/dist/sources/adplist.d.ts.map +1 -0
- package/dist/sources/clarity.d.ts +37 -0
- package/dist/sources/clarity.d.ts.map +1 -0
- package/dist/sources/common.d.ts +14 -0
- package/dist/sources/common.d.ts.map +1 -0
- package/dist/sources/glg.d.ts +36 -0
- package/dist/sources/glg.d.ts.map +1 -0
- package/dist/sources/index.d.ts +5 -1
- package/dist/sources/index.d.ts.map +1 -1
- package/dist/sources/mentorcruise.d.ts +47 -0
- package/dist/sources/mentorcruise.d.ts.map +1 -0
- package/dist/sync.d.ts +71 -0
- package/dist/sync.d.ts.map +1 -0
- package/dist/types.d.ts +34 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -45,20 +45,28 @@ experts show AlexisOhanian
|
|
|
45
45
|
| Command | What it does |
|
|
46
46
|
| --- | --- |
|
|
47
47
|
| `crawl [source]` | Fetch experts from a source into the store (default: `intro`) |
|
|
48
|
-
| `enrich [source]` | Enrich
|
|
49
|
-
| `
|
|
50
|
-
| `
|
|
51
|
-
| `
|
|
48
|
+
| `enrich [source]` | Enrich via X/Twitter — profile, recent tweets, avatar |
|
|
49
|
+
| `enrich-youtube [source]` | Fetch recent YouTube videos for experts with a YT handle |
|
|
50
|
+
| `enrich-linkedin [source]` | LinkedIn headline/company/about (needs linkedin connector auth) |
|
|
51
|
+
| `enrich-sites [source]` | Fetch experts' personal sites → text summary |
|
|
52
|
+
| `avatars [source]` | Download + properly name profile pictures (no API) |
|
|
53
|
+
| `find-contacts [source]` | Discover email + phone via Exa.ai websets |
|
|
54
|
+
| `verify-contacts [source]` | Validate contacts → working/not status |
|
|
55
|
+
| `embed [source]` | Build the semantic search index |
|
|
56
|
+
| `ask <query…>` | **Natural-language semantic search** |
|
|
57
|
+
| `brief <text…>` | Ranked, de-duplicated shortlist for a problem statement |
|
|
58
|
+
| `find <needs…>` | **Knowledge-graph search** — experts who cover specific needs |
|
|
52
59
|
| `related <id\|slug>` | Experts who share the most expertise with this one |
|
|
53
|
-
| `
|
|
54
|
-
| `show <id\|slug>` | Full profile
|
|
55
|
-
| `tweets <id\|slug>` |
|
|
56
|
-
| `
|
|
57
|
-
| `
|
|
58
|
-
| `
|
|
59
|
-
| `
|
|
60
|
-
| `
|
|
61
|
-
| `
|
|
60
|
+
| `list` / `search <q…>` | Filtered listing / full-text search |
|
|
61
|
+
| `show <id\|slug>` | Full profile (X, tweets, videos, contacts, LinkedIn, site) |
|
|
62
|
+
| `tweets <id\|slug>` | Recent tweets (`--live` to fetch fresh) |
|
|
63
|
+
| `videos <id\|slug>` | Recent YouTube videos |
|
|
64
|
+
| `contacts <id\|slug>` | Discovered emails/phones with working/not status |
|
|
65
|
+
| `graph` / `persons` / `changes` / `stale` | Graph, identity, change-log, staleness overviews |
|
|
66
|
+
| `topics` / `tags` / `stats` | Categories, tags, aggregate statistics |
|
|
67
|
+
| `sync-contacts <ids…>` | Export experts + contacts to the contacts system |
|
|
68
|
+
| `reindex` | Rebuild graph + authority + persons (no network) |
|
|
69
|
+
| `export` / `sources` | Dump store (JSON/CSV) / list marketplace adapters |
|
|
62
70
|
|
|
63
71
|
### Global options
|
|
64
72
|
|