Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
d7222bb
Updating DOCS for Windows environment setup
jottakka Feb 24, 2026
ef8d80c
Regenerate clean markdown files
github-actions[bot] Feb 24, 2026
e077260
Regenerate clean markdown files
github-actions[bot] Feb 24, 2026
b73f7dd
small typo fix
jottakka Feb 25, 2026
edfb01b
Merge branch 'main' into francisco/adding-windows-docs-update
jottakka Feb 25, 2026
f5a6ea7
Regenerate clean markdown files
github-actions[bot] Feb 25, 2026
7826888
Update app/en/get-started/setup/windows-environment/page.mdx
jottakka Feb 25, 2026
3a6f19f
Regenerate clean markdown files
github-actions[bot] Feb 25, 2026
7788067
some fixing
jottakka Feb 25, 2026
c80b80d
Merge branch 'main' into francisco/adding-windows-docs-update
jottakka Feb 25, 2026
f77690c
Regenerate clean markdown files
github-actions[bot] Feb 25, 2026
6caa903
improving tabs
jottakka Feb 26, 2026
27dcb26
updating markdown gen code
jottakka Feb 26, 2026
a2ea575
Merge branch 'main' into francisco/adding-windows-docs-update
jottakka Feb 26, 2026
f124e4e
Regenerate clean markdown files
github-actions[bot] Feb 26, 2026
23bc2a1
Fix shell fence correction for all blocks
cursoragent Feb 26, 2026
6f60ba9
Add targeted regression for Windows PowerShell fences
cursoragent Feb 26, 2026
0cc5774
Regenerate clean markdown files
github-actions[bot] Feb 26, 2026
efbc2fb
Regenerate clean markdown files
github-actions[bot] Feb 26, 2026
876948e
Merge origin/main into francisco/adding-windows-docs-update.
jottakka Feb 26, 2026
37af620
Regenerate clean markdown files
github-actions[bot] Feb 26, 2026
308ab17
Merge origin/main into francisco/adding-windows-docs-update.
jottakka Feb 26, 2026
8bf048a
Regenerate clean markdown files
github-actions[bot] Feb 26, 2026
3b0bd8f
Regenerate clean markdown files
github-actions[bot] Feb 26, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Setup Arcade tools with CrewAI"
description: "Learn how to use Arcade tools in CrewAI applications"
---

import { Steps, Callout } from "nextra/components";
import { Steps, Tabs, Callout } from "nextra/components";

# Use Arcade tools with CrewAI

Expand Down Expand Up @@ -50,9 +50,25 @@ mkdir crewai-arcade-example
cd crewai-arcade-example
uv init
uv venv
```

<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
<Tabs.Tab>

```bash
source .venv/bin/activate
```

</Tabs.Tab>
<Tabs.Tab>

```powershell
. ".venv\Scripts\Activate.ps1"
```

</Tabs.Tab>
</Tabs>

Install the necessary packages:

```bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Setup Arcade with Google ADK (Python)"
description: "Build an agent with Arcade tools using Google ADK"
---

import { Steps, Callout } from "nextra/components";
import { Steps, Tabs, Callout } from "nextra/components";

# Setup Arcade with Google ADK (Python)

Expand Down Expand Up @@ -48,9 +48,25 @@ mkdir google-adk-arcade-example
cd google-adk-arcade-example
uv init
uv venv
```

<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
<Tabs.Tab>

```bash
source .venv/bin/activate
```

</Tabs.Tab>
<Tabs.Tab>

```powershell
. ".venv\Scripts\Activate.ps1"
```

</Tabs.Tab>
</Tabs>

Install the necessary packages:

```bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,26 @@ mkdir langchain-arcade-example
cd langchain-arcade-example
uv init
uv venv
```

<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
<Tabs.Tab>

```bash
source .venv/bin/activate
```

</Tabs.Tab>
<Tabs.Tab>

```powershell
. ".venv\Scripts\Activate.ps1"
```

</Tabs.Tab>
</Tabs>

```bash
uv add arcadepy langchain langchain-openai python-dotenv
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,25 @@ mkdir openai-agents-arcade-example
cd openai-agents-arcade-example
uv init
uv venv
```

<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
<Tabs.Tab>

```bash
source .venv/bin/activate
```

</Tabs.Tab>
<Tabs.Tab>

```powershell
. ".venv\Scripts\Activate.ps1"
```

</Tabs.Tab>
</Tabs>

Install the necessary packages:

```bash
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,25 @@ Create a new virtual environment and activate it:

```bash
uv venv
```

<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
<Tabs.Tab>

```bash
source .venv/bin/activate
```

</Tabs.Tab>
<Tabs.Tab>

```powershell
. ".venv\Scripts\Activate.ps1"
```

</Tabs.Tab>
</Tabs>

Install the dependencies:

```bash
Expand Down
18 changes: 17 additions & 1 deletion app/en/get-started/quickstarts/call-tool-agent/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,25 @@ Install and use the Arcade client to call Arcade Hosted Tools.

```bash
uv venv
source .venv/bin/activate
```

<Tabs items={["Bash/Zsh (macOS/Linux)", "PowerShell (Windows)"]}>
<Tabs.Tab>

```bash
source .venv/bin/activate
```

</Tabs.Tab>
<Tabs.Tab>

```powershell
. ".venv\Scripts\Activate.ps1"
```

</Tabs.Tab>
</Tabs>

Then, run the following command to install the Python client package `arcadepy`:

```bash
Expand Down
2 changes: 1 addition & 1 deletion app/en/get-started/setup/api-keys/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ arcade login
The CLI will automatically:

- Print your API key to the console
- Save your credentials to `~/.arcade/credentials.yaml`
- Save your credentials to `~/.arcade/credentials.yaml` (or `%USERPROFILE%\.arcade\credentials.yaml` on Windows)

</Steps>

Expand Down
Loading