Skip to content

Commit 4f9b4ec

Browse files
committed
fix broken links
1 parent 4bb5cef commit 4f9b4ec

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/api-reference/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ It is important to keep your API key confidential to prevent unauthorized access
5757

5858
### Using an OAuth Token
5959

60-
If your application uses [OAuth](/dev-tools/build-plane-app/) to obtain user authorization (for example, a Plane app you've built), you can authenticate API requests with the OAuth access token. Include the token in the `Authorization` header as a Bearer token:
60+
If your application uses [OAuth](/dev-tools/build-plane-app/overview) to obtain user authorization (for example, a Plane app you've built), you can authenticate API requests with the OAuth access token. Include the token in the `Authorization` header as a Bearer token:
6161

6262
```
6363
Authorization: Bearer <your-oauth-access-token>

docs/dev-tools/agents/building-an-agent.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ Plane Agents are currently in **Beta**. Please send any feedback to support@plan
1313

1414
Before building an agent, make sure you have completed the following:
1515

16-
1. **Build a Plane app** — Follow the [Build a Plane App](/dev-tools/build-plane-app) guide to understand OAuth flows, deployment, and webhook handling.
16+
1. **Build a Plane app** — Follow the [Build a Plane App](/dev-tools/build-plane-app/overview) guide to understand OAuth flows, deployment, and webhook handling.
1717

18-
2. **Get your bot token** — Complete the [Bot Token Flow](/dev-tools/build-plane-app#bot-token-flow) to obtain a `bot_token` for your agent. This token is used for all API calls.
18+
2. **Get your bot token** — Complete the [Bot Token Flow](/dev-tools/build-plane-app/choose-token-flow) to obtain a `bot_token` for your agent. This token is used for all API calls.
1919

20-
3. **Set up webhook handling** — Ensure your server can [receive and verify webhooks](/dev-tools/build-plane-app#handling-webhooks) from Plane.
20+
3. **Set up webhook handling** — Ensure your server can [receive and verify webhooks](/dev-tools/build-plane-app/webhooks) from Plane.
2121

2222
::: info
23-
This guide assumes you have a working OAuth app with webhook handling. If not, complete the [Build a Plane App](/dev-tools/build-plane-app) guide first.
23+
This guide assumes you have a working OAuth app with webhook handling. If not, complete the [Build a Plane App](/dev-tools/build-plane-app/overview) guide first.
2424
:::
2525

2626
## Creating an agent
@@ -33,7 +33,7 @@ Building a Plane agent involves three main steps:
3333

3434
### OAuth app creation
3535

36-
To create an agent, you first need to [register an OAuth application](/dev-tools/build-plane-app#create-an-oauth-application) with the **Enable App Mentions** checkbox enabled.
36+
To create an agent, you first need to [register an OAuth application](/dev-tools/build-plane-app/create-oauth-application) with the **Enable App Mentions** checkbox enabled.
3737

3838
1. Navigate to `https://app.plane.so/<workspace_slug>/settings/integrations/`
3939
2. Click on **Build your own** button
@@ -60,7 +60,7 @@ After installation, your agent appears alongside workspace members in the mentio
6060

6161
## Agent interaction
6262

63-
Once your agent is installed via the [OAuth consent flow](/dev-tools/build-plane-app#bot-token-flow) and users start mentioning it, you need to handle the interactions through Agent Runs and Activities.
63+
Once your agent is installed via the [OAuth consent flow](/dev-tools/build-plane-app/choose-token-flow) and users start mentioning it, you need to handle the interactions through Agent Runs and Activities.
6464

6565
### AgentRun
6666

0 commit comments

Comments
 (0)