> ## Documentation Index
> Fetch the complete documentation index at: https://resumecontext.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# What your agent can do

> The six tools ResumeContext adds to your coding agent.

Once connected, your agent gains tools scoped to **one project**. You never call
these yourself. You ask a question in plain language and the agent picks.

| Tool                          | For                                                             |
| ----------------------------- | --------------------------------------------------------------- |
| `search_conversation_history` | Find passages by meaning or keyword                             |
| `grep_conversation_history`   | Exact regex search, exact counts, which sessions match          |
| `read_conversation_session`   | Read a session at specific line numbers                         |
| `query_archive`               | SQL over counts, dates, people, machines, sessions and requests |
| `add_project_member`          | Invite someone by email                                         |
| `remove_project_member`       | Revoke someone's access                                         |

<Note>
  Four read, two write. The two that change access are the only ones with any
  side effect. Everything else is read-only, enforced by a database role that
  cannot write anything at all.
</Note>

## No model on our side

ResumeContext does not summarise your sessions or answer questions with a
model of its own. The tools hand your agent the archive itself: passages,
matches, transcript pages and query results, all verbatim. Your agent does the
reading and the judging, the same way it would if every past conversation were
a file on disk. Nothing it tells you was written by a second model it cannot
see.

## Asking good questions

You do not need to name tools. These all work:

* *"What were we doing yesterday?"*
* *"Why did we drop the Redis cache?"*
* *"What's the current staging database host?"*
* *"How many sessions has each person recorded this week?"*
* *"Read the end of my longest session."*
* *"Invite [priya@company.com](mailto:priya@company.com) to this project."*
