You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`index network delete <id>`| Delete a network you own. |
75
+
|`index network join <id>`| Join an open network. |
76
+
|`index network leave <id>`| Leave a network. |
77
+
|`index network invite <id> <email>`| Invite a member by email. |
78
+
|`index conversation list`| List your conversations. |
79
+
|`index conversation with <user-id>`| Open or resume a human DM. |
80
+
|`index conversation show <id>`| Read messages; use `agent --intent-id <id>` for the personal agent's scoped messages and pending question. |
81
+
|`index conversation send <id> <text>`| Send a message; for `agent`, supply `--intent-id` and the displayed `--question-id` when answering a question. |
82
+
|`index conversation stream`| Subscribe to conversation, negotiation, opportunity, and intent events over SSE. |
83
+
|`index conversation help`| Show conversation-specific help. |
84
+
|`index onboarding confirm-profile`| Confirm that the owner has reviewed their profile. |
85
+
|`index onboarding complete`| Complete onboarding once profile confirmation and first-signal prerequisites are met. |
86
+
|`index scrape <url>`| Extract text from a URL, optionally guided by an objective. |
87
+
|`index sync`| Read your profile, networks, and signals into `~/.index/context.json`, or stdout with `--json`. |
88
+
38
89
### `index login`
39
90
40
91
Authenticate with Index Network. Opens a browser window that runs the device authorization grant against your existing session (or a fresh login), then hands this machine a session of its own.
@@ -72,6 +123,39 @@ index agent me --json
72
123
Tool discovery includes the actual input schemas. `--query` must be a JSON
73
124
object; tool failures produce a structured error and a nonzero exit status.
74
125
126
+
#### Protocol tool reference
127
+
128
+
The API in this release exposes these 20 functions through `index tool call`.
129
+
Run `index tool list --json` against your selected API to read each function's
130
+
current input schema. The API enforces ownership, membership, and permission
131
+
checks when a function is invoked.
132
+
133
+
| Function | Purpose |
134
+
| --- | --- |
135
+
|`research_profile`| Research public identity information and return a suggested profile without persisting it. |
136
+
|`read_intents`| Read accessible signals with user, network, and pagination filters. |
137
+
|`create_intent`| Create a signal and link it to the explicitly supplied networks. |
138
+
|`update_intent`| Revise and reprocess a signal's description. |
139
+
|`delete_intent`| Archive a signal. |
140
+
|`add_intent_to_network`| Share a signal in a network. |
141
+
|`list_intent_networks`| List the networks a signal is shared in. |
142
+
|`remove_intent_from_network`| Remove a signal's link to a network. |
143
+
|`search_intents`| Search accessible signals by semantic similarity. |
144
+
|`read_networks`| Read accessible networks and their details. |
145
+
|`read_network_memberships`| Read network memberships and member information. |
146
+
|`update_network`| Update a network's settings. |
147
+
|`create_network`| Create a network, subject to the API's creation permissions. |
148
+
|`delete_network`| Delete a network you own. |
149
+
|`create_network_membership`| Join an open network or add a member when authorized. |
150
+
|`delete_network_membership`| Remove a member from a network you own. |
151
+
|`list_opportunities`| Read persisted opportunities and their presentation. |
152
+
|`update_opportunity`| Request an opportunity status transition under the server's lifecycle rules. |
153
+
|`scrape_url`| Extract text from a URL with an optional objective. |
154
+
|`read_docs`| Read canonical protocol guidance, optionally narrowed to a topic. |
155
+
156
+
Agent identity, negotiation turns, conversations, and onboarding use their
157
+
dedicated commands above and the corresponding REST endpoints.
158
+
75
159
### `index logout`
76
160
77
161
Revoke this machine's session server-side, then clear the local credential file. A session can revoke itself, so sign-out takes effect immediately without needing your browser. If the server cannot be reached the local file is still cleared, and logout tells you to revoke the device in Index web settings. If local cleanup fails, logout exits nonzero and asks you to remove the file manually.
@@ -236,10 +320,17 @@ index opportunity reject <id>
236
320
|`--app-url <url>`|| Override app URL for login (default: `https://index.network`) |
237
321
|`--archived`|| Include archived signals (intent list) |
238
322
|`--status <status>`|| Filter opportunities by status |
239
-
|`--limit <n>`||Limit number of results |
323
+
|`--limit <n>`||Positive result limit for intent/opportunity lists or conversation messages|
0 commit comments