@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.
Files changed (45) hide show
  1. package/README.md +21 -13
  2. package/dist/cli/index.js +1842 -74
  3. package/dist/connectors.d.ts +63 -4
  4. package/dist/connectors.d.ts.map +1 -1
  5. package/dist/contacts.d.ts +96 -0
  6. package/dist/contacts.d.ts.map +1 -0
  7. package/dist/crawl.d.ts +1 -0
  8. package/dist/crawl.d.ts.map +1 -1
  9. package/dist/db.d.ts +97 -2
  10. package/dist/db.d.ts.map +1 -1
  11. package/dist/embed.d.ts +57 -0
  12. package/dist/embed.d.ts.map +1 -0
  13. package/dist/enrich.d.ts +81 -1
  14. package/dist/enrich.d.ts.map +1 -1
  15. package/dist/format.d.ts +4 -1
  16. package/dist/format.d.ts.map +1 -1
  17. package/dist/identity.d.ts +23 -0
  18. package/dist/identity.d.ts.map +1 -0
  19. package/dist/index.d.ts +7 -2
  20. package/dist/index.d.ts.map +1 -1
  21. package/dist/index.js +1544 -21
  22. package/dist/score.d.ts +25 -0
  23. package/dist/score.d.ts.map +1 -0
  24. package/dist/sdk.d.ts +26 -1
  25. package/dist/sdk.d.ts.map +1 -1
  26. package/dist/sdk.js +12 -1
  27. package/dist/server/index.d.ts.map +1 -1
  28. package/dist/server/index.js +960 -14
  29. package/dist/sources/adplist.d.ts +43 -0
  30. package/dist/sources/adplist.d.ts.map +1 -0
  31. package/dist/sources/clarity.d.ts +37 -0
  32. package/dist/sources/clarity.d.ts.map +1 -0
  33. package/dist/sources/common.d.ts +14 -0
  34. package/dist/sources/common.d.ts.map +1 -0
  35. package/dist/sources/glg.d.ts +36 -0
  36. package/dist/sources/glg.d.ts.map +1 -0
  37. package/dist/sources/index.d.ts +5 -1
  38. package/dist/sources/index.d.ts.map +1 -1
  39. package/dist/sources/mentorcruise.d.ts +47 -0
  40. package/dist/sources/mentorcruise.d.ts.map +1 -0
  41. package/dist/sync.d.ts +71 -0
  42. package/dist/sync.d.ts.map +1 -0
  43. package/dist/types.d.ts +34 -0
  44. package/dist/types.d.ts.map +1 -1
  45. 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 experts via X/Twitter — profile, recent tweets, avatar |
49
- | `list` | List experts with filters and sorting |
50
- | `search <query…>` | Full-text search across name, title and bio |
51
- | `find <needs…>` | **Knowledge-graph search** — experts who cover specific needs (tags/topics) |
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
- | `graph` | Knowledge-graph overview (nodes, edges, most-covered expertise) |
54
- | `show <id\|slug>` | Full profile detail for one expert (incl. X profile + tweets) |
55
- | `tweets <id\|slug>` | An expert's stored recent tweets |
56
- | `topics` | Topics / categories with expert counts |
57
- | `tags` | Expertise tags (optionally per topic) |
58
- | `stats` | Aggregate statistics |
59
- | `reindex` | Rebuild the knowledge graph from stored experts (no network) |
60
- | `export` | Dump the store as JSON or CSV |
61
- | `sources` | List available marketplace adapters |
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