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
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ It is built for scientists, analysts, and curious people who want a powerful AI
22
22
-**Organise your work in projects.** Each project has its own files, chat history, and settings. Upload files, browse folders, preview documents, and download results - all from inside the app.
23
23
-**Rich file previews.** Built-in viewers for code, Markdown (with math and diagrams), CSVs, PDFs, images, Jupyter notebooks, and bioinformatics formats (FASTA, FASTQ, VCF, BED, GFF, SAM, BCF).
24
24
-**LaTeX editor.** Split-pane editor with live PDF compilation (pdfLaTeX, XeLaTeX, LuaLaTeX).
25
-
-**Web search and document conversion.** Kady can search the web (via [Parallel](https://parallel.ai/) or [Exa](https://exa.ai/)) and convert documents between formats (PDF, DOCX, HTML, etc.) with no extra setup.
25
+
-**Web search and document conversion.** Kady can search the web (via [Exa](https://exa.ai/) or [Parallel](https://parallel.ai/)) and convert documents between formats (PDF, DOCX, HTML, etc.) with no extra setup.
26
26
-**Voice input, drag-and-drop attachments, `@` file mentions,** and a **message queue** for batching up to 5 messages while the agent is working.
27
27
-**Publication-ready provenance.** A timeline of every step in your session, plus a one-click "Copy as Methods" button that exports a paragraph ready to paste into a paper.
28
28
-**Optional remote compute.** Plug in [Modal](https://modal.com/) to run heavy jobs on cloud GPUs (T4, L4, A10G, A100, H100) or serverless CPUs - selected right from the input bar.
@@ -34,8 +34,8 @@ It is built for scientists, analysts, and curious people who want a powerful AI
34
34
|------|-----|-----------------|
35
35
| A computer running **macOS or Linux**| The app runs locally on your machine | Windows works too - use [WSL](https://learn.microsoft.com/en-us/windows/wsl/install)|
36
36
| An **OpenRouter API key**| This is how the AI models are accessed |[openrouter.ai](https://openrouter.ai/) - sign up and create a key |
37
-
|A**Parallel API key***(optional)*| Lets Kady search the web |[parallel.ai](https://parallel.ai/)|
38
-
|An**Exa API key***(optional)*| Alternative web search provider; neural (embedding-based) retrieval tuned for scientific content |[exa.ai](https://exa.ai/)|
37
+
|An**Exa API key***(optional)*| Lets Kady search the web with neural (embedding-based) retrieval tuned for scientific content | Get your Exa API key: [dashboard.exa.ai/api-keys](https://dashboard.exa.ai/api-keys)|
38
+
|A**Parallel API key***(optional)*| Alternative web search provider|[parallel.ai](https://parallel.ai/)|
39
39
|**Modal** credentials *(optional)*| Only needed for remote GPU/CPU compute |[modal.com](https://modal.com/)|
40
40
41
41
You do not need any coding experience. The startup script installs everything else for you.
@@ -55,7 +55,7 @@ cd k-dense-byok
55
55
56
56
Inside the `kady_agent` folder you'll find a file called `env.example`. Make a copy and rename the copy to `.env` (note the dot at the start). Open `.env` in any text editor and paste your **OpenRouter API key** on the first line - that's the only key you need to get started.
57
57
58
-
The file also has sections for other optional keys (Parallel or Exa for web search, Modal for remote compute, and many scientific and government database keys). Leave blank anything you don't need.
58
+
The file also has sections for other optional keys (Exa or Parallel for web search, Modal for remote compute, and many scientific and government database keys). Leave blank anything you don't need.
Copy file name to clipboardExpand all lines: docs/custom-mcp-servers.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Custom MCP Servers
2
2
3
-
K-Dense BYOK comes with built-in [MCP](https://modelcontextprotocol.io/) servers: Docling for document conversion, and two optional web-search providers — Parallel and Exa — each enabled by supplying the corresponding API key in `.env`. You can add your own MCP servers to give Kady's expert agents more tools - for example, connecting to internal databases, custom APIs, or specialised scientific tooling.
3
+
K-Dense BYOK comes with built-in [MCP](https://modelcontextprotocol.io/) servers: Docling for document conversion, and two optional web-search providers — Exa and Parallel — each enabled by supplying the corresponding API key in `.env` (get an Exa key at [dashboard.exa.ai/api-keys](https://dashboard.exa.ai/api-keys)). You can add your own MCP servers to give Kady's expert agents more tools - for example, connecting to internal databases, custom APIs, or specialised scientific tooling.
4
4
5
5
## Adding a server through the UI
6
6
@@ -30,6 +30,6 @@ Two transport types are supported:
30
30
31
31
## How it's stored
32
32
33
-
- Your custom servers are **merged** with the built-in defaults (Docling, plus Parallel and/or Exa when their API keys are set) and passed to the Gemini CLI.
33
+
- Your custom servers are **merged** with the built-in defaults (Docling, plus Exa and/or Parallel when their API keys are set) and passed to the Gemini CLI.
34
34
- The configuration is saved **per project** in `projects/<project-id>/custom_mcps.json` (outside the `sandbox/` folder) so it survives sandbox deletion and app restarts.
35
35
- Switching projects automatically swaps the MCP set - each project has its own.
Copy file name to clipboardExpand all lines: kady_agent/instructions/main_agent.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ Choose the lightest reliable path:
20
20
You do **NOT** have the ability to activate or execute skills. Skills are capabilities that only the expert (Gemini CLI) inside `delegate_task` can use via its `activate_skill` tool. The skill reference table at the end of these instructions exists **solely** so you can:
21
21
22
22
1.**Recognize** when a user names a skill (e.g. "use the parallel-web skill", "use literature-review").
23
-
2.**Match** a user request to the most relevant skill(s) even when the user does not name one explicitly (e.g. a request for "research best places in SF" should suggest the `parallel-web` or `exa-search` skill; a request to "write a report" should suggest the `writing` skill).
23
+
2.**Match** a user request to the most relevant skill(s) even when the user does not name one explicitly (e.g. a request for "research best places in SF" should suggest the `exa-search` or `parallel-web` skill; a request to "write a report" should suggest the `writing` skill).
24
24
3.**Pass the skill name(s) verbatim** in the `delegate_task` prompt so the expert can activate them.
25
25
26
26
**Never** attempt to use, activate, or simulate a skill yourself. If a task needs a skill, delegate it.
@@ -31,15 +31,15 @@ You do **NOT** have the ability to activate or execute skills. Skills are capabi
31
31
- In `prompt`, pass the user's request, the expert's role/objective/constraints, relevant context, file paths, URLs, and explicit success criteria.
32
32
- Do not prescribe implementation approaches, libraries, or fallback methods unless the user explicitly requires them.
33
33
-**Skills passthrough (MANDATORY):** If the user's message names specific skills (e.g. "use the parallel-web skill" or "use the skills: 'writing', 'literature-review'"), you MUST include an explicit instruction in the delegate prompt telling the expert to activate those skills. Use the format: `"You MUST activate and follow these skills: 'skill-name-1', 'skill-name-2'."` Do not paraphrase, omit, reorder, or summarize the skill list. The expert relies on exact names to activate the correct skills.
34
-
-**Proactive skill matching:** Even when the user does not name a skill, consult the skill reference table and identify skills that match the task. Include them in the delegate prompt the same way: `"You should activate and follow these skills: 'skill-name'."` For example, if the user asks to "search the web for X", include whichever web-search skill matches the enabled MCP (`parallel-web` for Parallel Search MCP, `exa-search` for Exa Search MCP); if they ask for a "literature review", include `literature-review` and `writing`.
34
+
-**Proactive skill matching:** Even when the user does not name a skill, consult the skill reference table and identify skills that match the task. Include them in the delegate prompt the same way: `"You should activate and follow these skills: 'skill-name'."` For example, if the user asks to "search the web for X", include whichever web-search skill matches the enabled MCP (`exa-search` for Exa Search MCP, `parallel-web` for Parallel Search MCP); if they ask for a "literature review", include `literature-review` and `writing`.
35
35
-**Modal compute passthrough (MANDATORY):** If the user's prompt requests specific compute infrastructure and mentions **Modal** (e.g. "run this on Modal", "use Modal GPUs", "deploy on Modal"), you MUST:
36
36
1. Include the compute requirement explicitly in the `delegate_task` prompt.
37
37
2. State that the expert **MUST activate and follow the `modal` skill** before writing or running any Modal-related code.
38
38
3. Do not assume the expert will infer Modal usage on its own — spell it out: "You must activate and follow the skill: 'modal' to execute this code on a Modal instance."
39
39
40
40
## Tool preferences
41
41
42
-
- Prefer Parallel Search MCP or Exa Search MCP for open-web search and URL content retrieval — whichever is available. Both expose MCP tools for search and content fetch; the user's `.env` determines which one (or both) are enabled.
42
+
- Prefer Exa Search MCP or Parallel Search MCP for open-web search and URL content retrieval — whichever is available. Both expose MCP tools for search and content fetch; the user's `.env` determines which one (or both) are enabled.
43
43
- Prefer Docling for document conversion, text extraction, and markdown export.
44
44
- Users may install custom MCP tools (e.g. memory/knowledge-graph, filesystem, databases, specialized APIs) via the Settings panel. These tools appear alongside the built-in ones — use them directly whenever the request matches their capabilities instead of routing through `delegate_task`.
45
45
- For reports, papers, literature reviews, or other structured prose, instruct the expert to use the `writing` skill.
0 commit comments