@nex-ai/nex 0.1.43 → 0.1.44

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 (47) hide show
  1. package/dist/commands/setup.js +0 -3
  2. package/dist/commands/setup.js.map +1 -1
  3. package/dist/lib/installers.js +1 -57
  4. package/dist/lib/installers.js.map +1 -1
  5. package/dist/lib/platform-detect.d.ts +1 -1
  6. package/dist/lib/platform-detect.js +0 -29
  7. package/dist/lib/platform-detect.js.map +1 -1
  8. package/dist/mcp/channel.js +4 -10
  9. package/dist/mcp/channel.js.map +1 -1
  10. package/package.json +1 -1
  11. package/dist/plugin/adapters/cline-capture.d.ts +0 -7
  12. package/dist/plugin/adapters/cline-capture.js +0 -25
  13. package/dist/plugin/adapters/cline-capture.js.map +0 -1
  14. package/dist/plugin/adapters/cline-recall.d.ts +0 -7
  15. package/dist/plugin/adapters/cline-recall.js +0 -30
  16. package/dist/plugin/adapters/cline-recall.js.map +0 -1
  17. package/dist/plugin/adapters/cline-task-start.d.ts +0 -7
  18. package/dist/plugin/adapters/cline-task-start.js +0 -30
  19. package/dist/plugin/adapters/cline-task-start.js.map +0 -1
  20. package/dist/plugin/adapters/cursor-recall.d.ts +0 -7
  21. package/dist/plugin/adapters/cursor-recall.js +0 -31
  22. package/dist/plugin/adapters/cursor-recall.js.map +0 -1
  23. package/dist/plugin/adapters/cursor-session-start.d.ts +0 -7
  24. package/dist/plugin/adapters/cursor-session-start.js +0 -30
  25. package/dist/plugin/adapters/cursor-session-start.js.map +0 -1
  26. package/dist/plugin/adapters/cursor-stop.d.ts +0 -7
  27. package/dist/plugin/adapters/cursor-stop.js +0 -25
  28. package/dist/plugin/adapters/cursor-stop.js.map +0 -1
  29. package/dist/plugin/adapters/windsurf-capture.d.ts +0 -7
  30. package/dist/plugin/adapters/windsurf-capture.js +0 -25
  31. package/dist/plugin/adapters/windsurf-capture.js.map +0 -1
  32. package/dist/plugin/adapters/windsurf-recall.d.ts +0 -7
  33. package/dist/plugin/adapters/windsurf-recall.js +0 -31
  34. package/dist/plugin/adapters/windsurf-recall.js.map +0 -1
  35. package/dist/plugin/shared.d.ts +0 -39
  36. package/dist/plugin/shared.js +0 -380
  37. package/dist/plugin/shared.js.map +0 -1
  38. package/platform-rules/codex-agents.md +0 -50
  39. /package/platform-plugins/windsurf-workflows/{nex:ask.md → nex-ask.md} +0 -0
  40. /package/platform-plugins/windsurf-workflows/{nex:remember.md → nex-remember.md} +0 -0
  41. /package/platform-plugins/windsurf-workflows/{nex:search.md → nex-search.md} +0 -0
  42. /package/plugin-commands/{nex:entities.md → entities.md} +0 -0
  43. /package/plugin-commands/{nex:integrate.md → integrate.md} +0 -0
  44. /package/plugin-commands/{nex:recall.md → recall.md} +0 -0
  45. /package/plugin-commands/{nex:register.md → register.md} +0 -0
  46. /package/plugin-commands/{nex:remember.md → remember.md} +0 -0
  47. /package/plugin-commands/{nex:scan.md → scan.md} +0 -0
@@ -1,50 +0,0 @@
1
- # --- Nex Context & Memory ---
2
-
3
- # Nex — Organizational Context & Memory
4
-
5
- Nex provides your AI agent with real-time organizational knowledge — contacts, deals, meetings, emails, notes, insights, patterns, and playbooks — via MCP tools. Context is proactively injected into your conversation, so relevant knowledge surfaces automatically even when you don't ask for it.
6
-
7
- ## MCP Tools Available
8
-
9
- ### `nex_ask` — AI-powered context query (recommended)
10
- Use for natural language questions about organizational context.
11
- Examples: "what's the latest on the Acme deal?", "when did I last talk to Sarah?"
12
-
13
- ### `nex_remember` — Store information
14
- Save notes, observations, meeting summaries, or any text to the knowledge base.
15
- Examples: "remember that John prefers email over Slack", store meeting notes
16
-
17
- ### `nex_search` — Fuzzy record lookup
18
- Search CRM records (people, companies, deals) by name or keyword.
19
- Use when looking up a specific named entity rather than asking a question.
20
-
21
- ### `nex_list_integrations` — Check connected data sources
22
- Shows which integrations (Gmail, Slack, Calendar, CRM) are connected and active.
23
-
24
- ### `nex_connect_integration` — Connect a data source
25
- Initiate OAuth connection for Gmail, Google Calendar, Outlook, Slack, Salesforce, HubSpot, or Attio.
26
-
27
- ## Proactive Context
28
-
29
- Nex automatically surfaces relevant context from the user's knowledge graph on every prompt — not just questions. When you see a `<nex-context>` block, use it naturally to inform your response:
30
-
31
- - **Entity insights** — facts about people, companies, and deals mentioned or relevant to the task
32
- - **Knowledge insights** — patterns, lessons learned, and domain knowledge from past work
33
- - **Playbook rules** — proven approaches and best practices from the user's experience
34
-
35
- Leverage this context to provide more informed, personalized responses. If the context mentions a relevant pattern or past decision, incorporate it naturally without explicitly referencing the context block.
36
-
37
- ## When to Use Nex Tools Directly
38
-
39
- Use `nex_ask` proactively when:
40
- - The user mentions a person, company, or project — look up their context
41
- - The task involves a domain the knowledge graph may have insights on
42
- - You need organizational context to make a better recommendation
43
-
44
- Use `nex_remember` when:
45
- - The user shares a decision, preference, or important fact worth persisting
46
- - A conversation reveals new knowledge that future sessions should have access to
47
-
48
- Always try `nex_ask` first for general queries. Use `nex_search` when you need to find a specific record by name.
49
-
50
- # --- End Nex ---
File without changes
File without changes