@nex-ai/nex 0.1.18 → 0.1.20
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 +42 -23
- package/dist/commands/integrate.js +10 -1
- package/dist/commands/integrate.js.map +1 -1
- package/dist/commands/setup.d.ts +5 -4
- package/dist/commands/setup.js +132 -40
- package/dist/commands/setup.js.map +1 -1
- package/dist/lib/installers.d.ts +62 -5
- package/dist/lib/installers.js +373 -34
- package/dist/lib/installers.js.map +1 -1
- package/dist/lib/platform-detect.d.ts +7 -0
- package/dist/lib/platform-detect.js +150 -8
- package/dist/lib/platform-detect.js.map +1 -1
- package/dist/lib/project-config.js +1 -1
- package/dist/plugin/adapters/cline-capture.d.ts +7 -0
- package/dist/plugin/adapters/cline-capture.js +25 -0
- package/dist/plugin/adapters/cline-capture.js.map +1 -0
- package/dist/plugin/adapters/cline-recall.d.ts +7 -0
- package/dist/plugin/adapters/cline-recall.js +30 -0
- package/dist/plugin/adapters/cline-recall.js.map +1 -0
- package/dist/plugin/adapters/cline-task-start.d.ts +7 -0
- package/dist/plugin/adapters/cline-task-start.js +30 -0
- package/dist/plugin/adapters/cline-task-start.js.map +1 -0
- package/dist/plugin/adapters/cursor-recall.d.ts +7 -0
- package/dist/plugin/adapters/cursor-recall.js +31 -0
- package/dist/plugin/adapters/cursor-recall.js.map +1 -0
- package/dist/plugin/adapters/cursor-session-start.d.ts +7 -0
- package/dist/plugin/adapters/cursor-session-start.js +30 -0
- package/dist/plugin/adapters/cursor-session-start.js.map +1 -0
- package/dist/plugin/adapters/cursor-stop.d.ts +7 -0
- package/dist/plugin/adapters/cursor-stop.js +25 -0
- package/dist/plugin/adapters/cursor-stop.js.map +1 -0
- package/dist/plugin/adapters/windsurf-capture.d.ts +7 -0
- package/dist/plugin/adapters/windsurf-capture.js +25 -0
- package/dist/plugin/adapters/windsurf-capture.js.map +1 -0
- package/dist/plugin/adapters/windsurf-recall.d.ts +7 -0
- package/dist/plugin/adapters/windsurf-recall.js +31 -0
- package/dist/plugin/adapters/windsurf-recall.js.map +1 -0
- package/dist/plugin/auto-capture.js +5 -106
- package/dist/plugin/auto-capture.js.map +1 -1
- package/dist/plugin/auto-recall.js +5 -79
- package/dist/plugin/auto-recall.js.map +1 -1
- package/dist/plugin/auto-session-start.d.ts +0 -3
- package/dist/plugin/auto-session-start.js +8 -114
- package/dist/plugin/auto-session-start.js.map +1 -1
- package/dist/plugin/shared.d.ts +38 -0
- package/dist/plugin/shared.js +241 -0
- package/dist/plugin/shared.js.map +1 -0
- package/package.json +3 -1
- package/platform-plugins/continue-provider.ts +62 -0
- package/platform-plugins/kilocode-modes.yaml +17 -0
- package/platform-plugins/opencode-plugin.ts +103 -0
- package/platform-plugins/vscode-agent.md +34 -0
- package/platform-plugins/windsurf-workflows/nex-ask.md +10 -0
- package/platform-plugins/windsurf-workflows/nex-remember.md +10 -0
- package/platform-plugins/windsurf-workflows/nex-search.md +10 -0
- package/platform-rules/aider-conventions.md +38 -0
- package/platform-rules/cline-rules.md +34 -0
- package/platform-rules/continue-rules.md +34 -0
- package/platform-rules/cursor-rules.md +34 -0
- package/platform-rules/kilocode-rules.md +34 -0
- package/platform-rules/opencode-agents.md +38 -0
- package/platform-rules/vscode-instructions.md +38 -0
- package/platform-rules/windsurf-rules.md +34 -0
- package/platform-rules/zed-rules.md +38 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Nex — Organizational Context & Memory
|
|
2
|
+
|
|
3
|
+
Nex provides your AI agent with real-time organizational knowledge — contacts, deals, meetings, emails, notes, and more — via MCP tools.
|
|
4
|
+
|
|
5
|
+
## MCP Tools Available
|
|
6
|
+
|
|
7
|
+
### `nex_ask` — AI-powered context query (recommended)
|
|
8
|
+
Use for natural language questions about organizational context.
|
|
9
|
+
Examples: "what's the latest on the Acme deal?", "when did I last talk to Sarah?"
|
|
10
|
+
|
|
11
|
+
### `nex_remember` — Store information
|
|
12
|
+
Save notes, observations, meeting summaries, or any text to the knowledge base.
|
|
13
|
+
Examples: "remember that John prefers email over Slack", store meeting notes
|
|
14
|
+
|
|
15
|
+
### `nex_search` — Fuzzy record lookup
|
|
16
|
+
Search CRM records (people, companies, deals) by name or keyword.
|
|
17
|
+
Use when looking up a specific named entity rather than asking a question.
|
|
18
|
+
|
|
19
|
+
### `nex_list_integrations` — Check connected data sources
|
|
20
|
+
Shows which integrations (Gmail, Slack, Calendar, CRM) are connected and active.
|
|
21
|
+
|
|
22
|
+
### `nex_connect_integration` — Connect a data source
|
|
23
|
+
Initiate OAuth connection for Gmail, Google Calendar, Outlook, Slack, Salesforce, HubSpot, or Attio.
|
|
24
|
+
|
|
25
|
+
## When to Use Nex
|
|
26
|
+
|
|
27
|
+
When the user asks about:
|
|
28
|
+
- **People or companies** — contacts, relationships, org charts
|
|
29
|
+
- **Deals or opportunities** — status, history, next steps
|
|
30
|
+
- **Meetings or calls** — past conversations, upcoming schedules
|
|
31
|
+
- **Emails or messages** — communication history
|
|
32
|
+
- **Organizational context** — company knowledge, team notes, decisions
|
|
33
|
+
|
|
34
|
+
Always try `nex_ask` first for general queries. Use `nex_search` when you need to find a specific record by name.
|
|
@@ -0,0 +1,38 @@
|
|
|
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, and more — via MCP tools.
|
|
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
|
+
## When to Use Nex
|
|
28
|
+
|
|
29
|
+
When the user asks about:
|
|
30
|
+
- **People or companies** — contacts, relationships, org charts
|
|
31
|
+
- **Deals or opportunities** — status, history, next steps
|
|
32
|
+
- **Meetings or calls** — past conversations, upcoming schedules
|
|
33
|
+
- **Emails or messages** — communication history
|
|
34
|
+
- **Organizational context** — company knowledge, team notes, decisions
|
|
35
|
+
|
|
36
|
+
Always try `nex_ask` first for general queries. Use `nex_search` when you need to find a specific record by name.
|
|
37
|
+
|
|
38
|
+
# --- End Nex ---
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
---
|
|
2
|
+
applyTo: "**"
|
|
3
|
+
---
|
|
4
|
+
|
|
5
|
+
# Nex — Organizational Context & Memory
|
|
6
|
+
|
|
7
|
+
Nex provides your AI agent with real-time organizational knowledge — contacts, deals, meetings, emails, notes, and more — via MCP tools.
|
|
8
|
+
|
|
9
|
+
## MCP Tools Available
|
|
10
|
+
|
|
11
|
+
### `nex_ask` — AI-powered context query (recommended)
|
|
12
|
+
Use for natural language questions about organizational context.
|
|
13
|
+
Examples: "what's the latest on the Acme deal?", "when did I last talk to Sarah?"
|
|
14
|
+
|
|
15
|
+
### `nex_remember` — Store information
|
|
16
|
+
Save notes, observations, meeting summaries, or any text to the knowledge base.
|
|
17
|
+
Examples: "remember that John prefers email over Slack", store meeting notes
|
|
18
|
+
|
|
19
|
+
### `nex_search` — Fuzzy record lookup
|
|
20
|
+
Search CRM records (people, companies, deals) by name or keyword.
|
|
21
|
+
Use when looking up a specific named entity rather than asking a question.
|
|
22
|
+
|
|
23
|
+
### `nex_list_integrations` — Check connected data sources
|
|
24
|
+
Shows which integrations (Gmail, Slack, Calendar, CRM) are connected and active.
|
|
25
|
+
|
|
26
|
+
### `nex_connect_integration` — Connect a data source
|
|
27
|
+
Initiate OAuth connection for Gmail, Google Calendar, Outlook, Slack, Salesforce, HubSpot, or Attio.
|
|
28
|
+
|
|
29
|
+
## When to Use Nex
|
|
30
|
+
|
|
31
|
+
When the user asks about:
|
|
32
|
+
- **People or companies** — contacts, relationships, org charts
|
|
33
|
+
- **Deals or opportunities** — status, history, next steps
|
|
34
|
+
- **Meetings or calls** — past conversations, upcoming schedules
|
|
35
|
+
- **Emails or messages** — communication history
|
|
36
|
+
- **Organizational context** — company knowledge, team notes, decisions
|
|
37
|
+
|
|
38
|
+
Always try `nex_ask` first for general queries. Use `nex_search` when you need to find a specific record by name.
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Nex — Organizational Context & Memory
|
|
2
|
+
|
|
3
|
+
Nex provides your AI agent with real-time organizational knowledge — contacts, deals, meetings, emails, notes, and more — via MCP tools.
|
|
4
|
+
|
|
5
|
+
## MCP Tools Available
|
|
6
|
+
|
|
7
|
+
### `nex_ask` — AI-powered context query (recommended)
|
|
8
|
+
Use for natural language questions about organizational context.
|
|
9
|
+
Examples: "what's the latest on the Acme deal?", "when did I last talk to Sarah?"
|
|
10
|
+
|
|
11
|
+
### `nex_remember` — Store information
|
|
12
|
+
Save notes, observations, meeting summaries, or any text to the knowledge base.
|
|
13
|
+
Examples: "remember that John prefers email over Slack", store meeting notes
|
|
14
|
+
|
|
15
|
+
### `nex_search` — Fuzzy record lookup
|
|
16
|
+
Search CRM records (people, companies, deals) by name or keyword.
|
|
17
|
+
Use when looking up a specific named entity rather than asking a question.
|
|
18
|
+
|
|
19
|
+
### `nex_list_integrations` — Check connected data sources
|
|
20
|
+
Shows which integrations (Gmail, Slack, Calendar, CRM) are connected and active.
|
|
21
|
+
|
|
22
|
+
### `nex_connect_integration` — Connect a data source
|
|
23
|
+
Initiate OAuth connection for Gmail, Google Calendar, Outlook, Slack, Salesforce, HubSpot, or Attio.
|
|
24
|
+
|
|
25
|
+
## When to Use Nex
|
|
26
|
+
|
|
27
|
+
When the user asks about:
|
|
28
|
+
- **People or companies** — contacts, relationships, org charts
|
|
29
|
+
- **Deals or opportunities** — status, history, next steps
|
|
30
|
+
- **Meetings or calls** — past conversations, upcoming schedules
|
|
31
|
+
- **Emails or messages** — communication history
|
|
32
|
+
- **Organizational context** — company knowledge, team notes, decisions
|
|
33
|
+
|
|
34
|
+
Always try `nex_ask` first for general queries. Use `nex_search` when you need to find a specific record by name.
|
|
@@ -0,0 +1,38 @@
|
|
|
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, and more — via MCP tools.
|
|
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
|
+
## When to Use Nex
|
|
28
|
+
|
|
29
|
+
When the user asks about:
|
|
30
|
+
- **People or companies** — contacts, relationships, org charts
|
|
31
|
+
- **Deals or opportunities** — status, history, next steps
|
|
32
|
+
- **Meetings or calls** — past conversations, upcoming schedules
|
|
33
|
+
- **Emails or messages** — communication history
|
|
34
|
+
- **Organizational context** — company knowledge, team notes, decisions
|
|
35
|
+
|
|
36
|
+
Always try `nex_ask` first for general queries. Use `nex_search` when you need to find a specific record by name.
|
|
37
|
+
|
|
38
|
+
# --- End Nex ---
|