From 005d7cd4e41cb2261c7193b59e7059b3bc4d9888 Mon Sep 17 00:00:00 2001 From: Renato Byrro Date: Tue, 17 Mar 2026 11:19:43 -0300 Subject: [PATCH 1/3] docs: add reference to custom user verifier demo server Add an info callout to the "Secure Auth in Production" guide pointing readers to the custom-user-verifier demo repo as a working example they can run locally or hand to a coding agent. Made-with: Cursor --- .../user-facing-agents/secure-auth-production/page.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/en/guides/user-facing-agents/secure-auth-production/page.mdx b/app/en/guides/user-facing-agents/secure-auth-production/page.mdx index 6ec6dbec2..4feabf2c0 100644 --- a/app/en/guides/user-facing-agents/secure-auth-production/page.mdx +++ b/app/en/guides/user-facing-agents/secure-auth-production/page.mdx @@ -47,6 +47,14 @@ When your users authorize a tool, Arcade.dev will redirect the user's browser to If you need help, join the [Implementing a custom user verifier](https://github.com/ArcadeAI/arcade-ai/discussions/486) GitHub discussion and we'll be happy to assist. + + For a complete working example, see the [custom user verifier demo + server](https://github.com/ArcadeAI/custom-user-verifier). It's a minimal + Python Flask app you can run locally to test the verification flow, use as a + reference when building your own, or to provide as a sample to your coding + agent (e.g. Claude Code, Cursor Agent, etc). + + import { Steps, Tabs, Callout } from "nextra/components"; From 257d1d4db2a7f7cb8e215c3f720a3a71af88770b Mon Sep 17 00:00:00 2001 From: Renato Byrro Date: Tue, 17 Mar 2026 11:47:41 -0300 Subject: [PATCH 2/3] docs: link to agent-skills repo for custom verifier skill Add a link to the build-custom-user-verifier agent skill hosted in ArcadeAI/agent-skills, giving coding agents an LLM-friendly reference for implementing the verification flow. Made-with: Cursor --- .../user-facing-agents/secure-auth-production/page.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/en/guides/user-facing-agents/secure-auth-production/page.mdx b/app/en/guides/user-facing-agents/secure-auth-production/page.mdx index 4feabf2c0..59b56ae2e 100644 --- a/app/en/guides/user-facing-agents/secure-auth-production/page.mdx +++ b/app/en/guides/user-facing-agents/secure-auth-production/page.mdx @@ -53,6 +53,11 @@ If you need help, join the [Implementing a custom user verifier](https://github. Python Flask app you can run locally to test the verification flow, use as a reference when building your own, or to provide as a sample to your coding agent (e.g. Claude Code, Cursor Agent, etc). + + If you're using a coding agent to help build your verifier, give it the + [build a custom user verifier](https://github.com/ArcadeAI/arcade-dev-skills/tree/main/build-custom-user-verifier) + skill — it contains the full flow, pseudocode, and common mistakes in an + LLM-friendly format. import { Steps, Tabs, Callout } from "nextra/components"; From f641b5bc05bd6bd02264c602bf8b39947a271ef0 Mon Sep 17 00:00:00 2001 From: Renato Byrro Date: Tue, 17 Mar 2026 12:00:12 -0300 Subject: [PATCH 3/3] Apply suggestion from @github-actions[bot] Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../guides/user-facing-agents/secure-auth-production/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/en/guides/user-facing-agents/secure-auth-production/page.mdx b/app/en/guides/user-facing-agents/secure-auth-production/page.mdx index 59b56ae2e..7a084fbe5 100644 --- a/app/en/guides/user-facing-agents/secure-auth-production/page.mdx +++ b/app/en/guides/user-facing-agents/secure-auth-production/page.mdx @@ -52,7 +52,7 @@ If you need help, join the [Implementing a custom user verifier](https://github. server](https://github.com/ArcadeAI/custom-user-verifier). It's a minimal Python Flask app you can run locally to test the verification flow, use as a reference when building your own, or to provide as a sample to your coding - agent (e.g. Claude Code, Cursor Agent, etc). + agent (for example Claude Code, Cursor Agent, etc). If you're using a coding agent to help build your verifier, give it the [build a custom user verifier](https://github.com/ArcadeAI/arcade-dev-skills/tree/main/build-custom-user-verifier)