From 3cd2454148317146198e16dd75b6073d8feca026 Mon Sep 17 00:00:00 2001 From: Saif Ali Shaik Date: Fri, 15 May 2026 13:37:21 +0530 Subject: [PATCH 1/7] Rename plugin install commands and template prose to AgentKit/SaaSKit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update all coding-agent template files and overview pages: - agent-auth@ → agentkit@ - full-stack-auth@ → saaskit@ - mcp-auth@ → saaskit@ - modular-sso@ → saaskit@ - modular-scim@ → saaskit@ Also update narrative text in templates to reference the new plugin names (AgentKit/SaaSKit) instead of the old 5-plugin names. --- .../coding-agents/_agentkit-claude-code.mdx | 43 +++++++++++++++---- .../coding-agents/_agentkit-codex.mdx | 8 ++-- .../_agentkit-github-copilot-cli.mdx | 16 +++---- .../templates/coding-agents/_cursor.mdx | 2 +- .../coding-agents/_fsa-claude-code.mdx | 43 +++++++++++++++---- .../templates/coding-agents/_fsa-codex.mdx | 8 ++-- .../coding-agents/_fsa-github-copilot-cli.mdx | 16 +++---- .../coding-agents/_mcp-auth-claude-code.mdx | 35 ++++++++++++--- .../coding-agents/_mcp-auth-codex.mdx | 6 +-- .../_mcp-auth-github-copilot-cli.mdx | 10 ++--- .../coding-agents/_scim-claude-code.mdx | 39 ++++++++++++++--- .../templates/coding-agents/_scim-codex.mdx | 6 +-- .../_scim-github-copilot-cli.mdx | 10 ++--- .../templates/coding-agents/_skills-cli.mdx | 2 +- .../coding-agents/_sso-claude-code.mdx | 39 ++++++++++++++--- .../templates/coding-agents/_sso-codex.mdx | 6 +-- .../coding-agents/_sso-github-copilot-cli.mdx | 12 +++--- .../docs/dev-kit/build-with-ai/index.mdx | 14 +++--- src/content/docs/home/saaskit/index.mdx | 14 +++--- 19 files changed, 231 insertions(+), 98 deletions(-) diff --git a/src/components/templates/coding-agents/_agentkit-claude-code.mdx b/src/components/templates/coding-agents/_agentkit-claude-code.mdx index ec365641a..c375ec263 100644 --- a/src/components/templates/coding-agents/_agentkit-claude-code.mdx +++ b/src/components/templates/coding-agents/_agentkit-claude-code.mdx @@ -1,17 +1,42 @@ import { Steps, Aside } from '@astrojs/starlight/components' -1. ## Install the Scalekit Auth Stack +1. ## Add the Scalekit Auth Stack marketplace Not yet on Claude Code? Follow the [official quickstart guide](https://code.claude.com/docs/en/quickstart) to install it. - Register Scalekit's plugin marketplace and install the Agent Auth plugin in a single command: + Register Scalekit's plugin marketplace to access pre-configured authentication skills. This marketplace provides context-aware prompts and implementation guides that help coding agents generate correct AgentKit code. + + Start the Claude Code REPL: ```bash title="Terminal" frame="terminal" showLineNumbers=false - claude plugin marketplace add scalekit-inc/claude-code-authstack && claude plugin install agent-auth@scalekit-auth-stack + claude + ``` + + Then add the marketplace: + + ```bash title="Claude REPL" showLineNumbers=false + /plugin marketplace add scalekit-inc/claude-code-authstack ``` - The marketplace provides specialized authentication plugins that understand Agent Auth patterns and OAuth 2.0 security requirements. These plugins guide the coding agent to generate implementation code that matches your project structure. + When the marketplace registers successfully, you'll see confirmation output: + + ```bash title="Terminal" frame="terminal" showLineNumbers=false + ❯ /plugin marketplace add scalekit-inc/claude-code-authstack + ⎿ Successfully added marketplace: scalekit-auth-stack + ``` + + The marketplace provides specialized authentication plugins that understand AgentKit patterns and OAuth 2.0 security requirements. These plugins guide the coding agent to generate implementation code that matches your project structure. + +2. ## Enable authentication plugins + + Select which authentication capabilities to activate in your development environment. Each plugin provides specific skills that the coding agent uses to generate authentication code. + + Directly install the specific plugin: + + ```bash title="Claude REPL" showLineNumbers=false + /plugin install agentkit@scalekit-auth-stack + ```
Alternative: Enable authentication plugins via plugin wizard @@ -22,7 +47,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' /plugins ``` - Navigate through the visual interface to enable the Agent Auth plugin. + Navigate through the visual interface to enable the AgentKit plugin.
-2. ## Generate authentication implementation +3. ## Generate authentication implementation - Use a structured prompt to direct the coding agent. A well-formed prompt ensures the agent generates complete, production-ready Agent Auth code that includes all required security components. + Use a structured prompt to direct the coding agent. A well-formed prompt ensures the agent generates complete, production-ready AgentKit code that includes all required security components. Copy the following prompt into your coding agent: @@ -40,13 +65,13 @@ import { Steps, Aside } from '@astrojs/starlight/components' Guide me through configuring the installed Scalekit marketplace plugin to handle agent authentication for Gmail. Provide the code to trigger the auth flow, retrieve the secure user token, and then use that authenticated session to fetch and list the last 5 unread emails. Add logging to verify the flow. ``` - When you submit this prompt, Claude Code loads the Agent Auth skill from the marketplace -> analyzes your existing application structure -> generates Scalekit client initialization -> creates connected account management functions -> implements OAuth authorization link generation -> adds token fetching and refresh logic. + When you submit this prompt, Claude Code loads the AgentKit skills from the marketplace -> analyzes your existing application structure -> generates Scalekit client initialization -> creates connected account management functions -> implements OAuth authorization link generation -> adds token fetching and refresh logic. -3. ## Verify just-in-time implementation +4. ## Verify just-in-time implementation After the coding agent completes, verify that all authentication components are properly configured: diff --git a/src/components/templates/coding-agents/_agentkit-codex.mdx b/src/components/templates/coding-agents/_agentkit-codex.mdx index 9676fffe4..3a98c741a 100644 --- a/src/components/templates/coding-agents/_agentkit-codex.mdx +++ b/src/components/templates/coding-agents/_agentkit-codex.mdx @@ -17,15 +17,15 @@ import { Steps, Aside } from '@astrojs/starlight/components' The installer avoids overwriting another personal marketplace by default. If it skips that file, follow the installer's manual path and select the marketplace from `~/.codex/marketplaces/scalekit-auth-stack/.agents/plugins/marketplace.json`. -2. ## Enable the Agent Auth plugin +2. ## Enable the AgentKit plugin Restart Codex so it reloads installed marketplaces, then open the Plugin Directory and select **Scalekit Auth Stack**. - Install the `agent-auth` plugin. This plugin includes the workflows, connector guidance, and references Codex uses to generate Agent Auth code for connected accounts and delegated OAuth flows. + Install the `agentkit` plugin. This plugin includes the workflows, connector guidance, and references Codex uses to generate AgentKit code for connected accounts and delegated OAuth flows. 3. ## Generate the authentication implementation - Use a structured prompt to direct Codex. A well-formed prompt helps Codex generate complete, production-ready Agent Auth code that includes all required security components. + Use a structured prompt to direct Codex. A well-formed prompt helps Codex generate complete, production-ready AgentKit code that includes all required security components. Copy the following prompt into Codex: @@ -33,7 +33,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' Guide me through configuring the installed Scalekit marketplace plugin to handle agent authentication for Gmail. Provide the code to trigger the auth flow, retrieve the secure user token, and then use that authenticated session to fetch and list the last 5 unread emails. Add logging to verify the flow. ``` - When you submit this prompt, Codex loads the Agent Auth plugin from the Scalekit Auth Stack marketplace, analyzes your existing application structure, generates Scalekit client initialization, creates connected account management functions, implements OAuth authorization link generation, and adds token fetching and refresh logic. + When you submit this prompt, Codex loads the AgentKit plugin from the Scalekit Auth Stack marketplace, analyzes your existing application structure, generates Scalekit client initialization, creates connected account management functions, implements OAuth authorization link generation, and adds token fetching and refresh logic. @@ -42,7 +42,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' 3. ## Generate authentication implementation - Use a structured prompt to direct GitHub Copilot. A well-formed prompt ensures the agent generates complete, production-ready Agent Auth code that includes all required security components. + Use a structured prompt to direct GitHub Copilot. A well-formed prompt ensures the agent generates complete, production-ready AgentKit code that includes all required security components. Copy the following command into your terminal: @@ -50,7 +50,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' copilot "Configure Scalekit agent authentication for Gmail — provide the code to trigger the auth flow, retrieve the secure user token, and then use that authenticated session to fetch and list the last 5 unread emails. Add logging to verify the flow." ``` - GitHub Copilot uses the Agent Auth plugin to analyze your existing application structure, generate Scalekit client initialization code, create connected account management functions, implement OAuth authorization link generation, and add token fetching and refresh logic. + GitHub Copilot uses the AgentKit plugin to analyze your existing application structure, generate Scalekit client initialization code, create connected account management functions, implement OAuth authorization link generation, and add token fetching and refresh logic. -2. ## Enable the MCP Auth plugin +2. ## Enable the SaaSKit plugin Restart Codex so it reloads installed marketplaces, then open the Plugin Directory and select **Scalekit Auth Stack**. - Install the `mcp-auth` plugin. This plugin includes the workflows, framework-specific guidance, and references Codex uses to generate OAuth 2.1 protection for remote MCP servers. + Install the `saaskit` plugin. This plugin includes the workflows, framework-specific guidance, and references Codex uses to generate OAuth 2.1 protection for remote MCP servers. 3. ## Generate the authentication implementation @@ -34,7 +34,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' Add OAuth 2.1 authentication to my MCP server using Scalekit. Initialize ScalekitClient with environment credentials, implement /.well-known/ metadata endpoint for discovery, and add authentication middleware that validates JWT bearer tokens on all MCP requests. Code only. ``` - When you submit this prompt, Codex loads the MCP Auth plugin from the Scalekit Auth Stack marketplace, analyzes your existing MCP server structure, generates authentication middleware with token validation, creates the OAuth discovery endpoint, and configures environment variable handling. + When you submit this prompt, Codex loads the SaaSKit plugin from the Scalekit Auth Stack marketplace, analyzes your existing MCP server structure, generates authentication middleware with token validation, creates the OAuth discovery endpoint, and configures environment variable handling. @@ -50,7 +50,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' copilot "Add OAuth 2.1 authentication to my MCP server using Scalekit. Initialize ScalekitClient with environment credentials, implement /.well-known/ metadata endpoint for discovery, and add authentication middleware that validates JWT bearer tokens on all MCP requests. Code only." ``` - GitHub Copilot uses the MCP Auth plugin to analyze your existing MCP server structure, generate authentication middleware with token validation, create the OAuth discovery endpoint, and configure environment variable handling. + GitHub Copilot uses the SaaSKit plugin to analyze your existing MCP server structure, generate authentication middleware with token validation, create the OAuth discovery endpoint, and configure environment variable handling. -2. ## Enable the Modular SCIM plugin +2. ## Enable the SaaSKit plugin Restart Codex so it reloads installed marketplaces, then open the Plugin Directory and select **Scalekit Auth Stack**. - Install the `modular-scim` plugin. This plugin includes the workflows, references, and prompts Codex uses to generate SCIM provisioning and deprovisioning code for your application. + Install the `saaskit` plugin. This plugin includes the workflows, references, and prompts Codex uses to generate SCIM provisioning and deprovisioning code for your application. 3. ## Generate the SCIM implementation @@ -34,7 +34,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' Guide the coding agent to add Scalekit SCIM directory sync to my app — set up the webhook endpoint to receive SCIM events, validate the webhook signature, and handle user provisioning and deprovisioning events to create, update, and delete users in my database. Code only. ``` - When you submit this prompt, Codex loads the Modular SCIM plugin from the Scalekit Auth Stack marketplace, analyzes your existing application structure, generates a webhook endpoint to receive SCIM events from Scalekit, implements webhook signature validation to prevent unauthorized requests, creates handlers for user provisioning events, and adds deprovisioning logic to delete or deactivate users in your database. + When you submit this prompt, Codex loads the SaaSKit plugin from the Scalekit Auth Stack marketplace, analyzes your existing application structure, generates a webhook endpoint to receive SCIM events from Scalekit, implements webhook signature validation to prevent unauthorized requests, creates handlers for user provisioning events, and adds deprovisioning logic to delete or deactivate users in your database. @@ -51,7 +51,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' copilot "Add Scalekit SCIM directory sync to my app — set up the webhook endpoint to receive SCIM events, validate the webhook signature, and handle user provisioning and deprovisioning events to create, update, and delete users in my database. Code only." ``` - GitHub Copilot uses the Modular SCIM plugin to analyze your existing application structure, generate a webhook endpoint to receive SCIM events from Scalekit, implement webhook signature validation to prevent unauthorized requests, create handlers for user provisioning events (create and update), and add deprovisioning logic to delete or deactivate users in your database. + GitHub Copilot uses the SaaSKit plugin to analyze your existing application structure, generate a webhook endpoint to receive SCIM events from Scalekit, implement webhook signature validation to prevent unauthorized requests, create handlers for user provisioning events (create and update), and add deprovisioning logic to delete or deactivate users in your database. -2. ## Enable the Modular SSO plugin +2. ## Enable the SaaSKit plugin Restart Codex so it reloads installed marketplaces, then open the Plugin Directory and select **Scalekit Auth Stack**. - Install the `modular-sso` plugin. This plugin includes the workflows, references, and prompts Codex uses to generate SAML and OIDC SSO code for your existing application. + Install the `saaskit` plugin. This plugin includes the workflows, references, and prompts Codex uses to generate SAML and OIDC SSO code for your existing application. 3. ## Generate the SSO implementation @@ -34,7 +34,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' Guide the coding agent to add Scalekit SSO to my existing app — initialize ScalekitClient, generate an SSO authorization URL for a given organization, handle the SSO callback to validate and exchange the code for user identity, and integrate the SSO user into my existing session system. Code only. ``` - When you submit this prompt, Codex loads the Modular SSO plugin from the Scalekit Auth Stack marketplace, analyzes your existing application structure, generates Scalekit client initialization with environment credentials, creates an SSO authorization URL generator for organization-based routing, implements the SSO callback handler to validate and exchange the code for user identity, and integrates SSO user data into your existing session system. + When you submit this prompt, Codex loads the SaaSKit plugin from the Scalekit Auth Stack marketplace, analyzes your existing application structure, generates Scalekit client initialization with environment credentials, creates an SSO authorization URL generator for organization-based routing, implements the SSO callback handler to validate and exchange the code for user identity, and integrates SSO user data into your existing session system. @@ -50,7 +50,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' copilot "Add Scalekit SSO to my existing app — initialize ScalekitClient, generate an SSO authorization URL for a given organization, handle the SSO callback to validate and exchange the code for user identity, and integrate the SSO user into my existing session system. Code only." ``` - GitHub Copilot uses the Modular SSO plugin to analyze your existing application structure, generate Scalekit client initialization code, create an SSO authorization URL generator for organization-based routing, implement the SSO callback handler to validate and exchange the code for user identity, and integrate SSO user data into your existing session system. + GitHub Copilot uses the SaaSKit plugin to analyze your existing application structure, generate Scalekit client initialization code, create an SSO authorization URL generator for organization-based routing, implement the SSO callback handler to validate and exchange the code for user identity, and integrate SSO user data into your existing session system. -Custom tools unlock the full potential of Agent Auth by allowing you to create specialized workflows that perfectly match your business needs. With proper design, testing, and deployment practices, you can build powerful tools that enhance your team's productivity and streamline complex operations. +Custom tools unlock the full potential of AgentKit by allowing you to create specialized workflows that perfectly match your business needs. With proper design, testing, and deployment practices, you can build powerful tools that enhance your team's productivity and streamline complex operations. diff --git a/src/content/docs/browse/code-samples/agent-framework-examples.mdx b/src/content/docs/browse/code-samples/agent-framework-examples.mdx index c1f045dc7..678b24a50 100644 --- a/src/content/docs/browse/code-samples/agent-framework-examples.mdx +++ b/src/content/docs/browse/code-samples/agent-framework-examples.mdx @@ -1,6 +1,6 @@ --- title: "Agent framework integration examples" -description: "Examples showing how to integrate Scalekit Agent Auth with various AI frameworks including LangChain, Google ADK, and direct integrations." +description: "Examples showing how to integrate Scalekit AgentKit with various AI frameworks including LangChain, Google ADK, and direct integrations." browseCentral: label: "Agent framework examples" filterType: ["code-sample"] @@ -21,7 +21,7 @@ head: import { LinkButton, Tabs, TabItem } from '@astrojs/starlight/components'; -These examples demonstrate how to integrate Scalekit Agent Auth with AI frameworks for identity-aware tool calling and authenticated agent operations. +These examples demonstrate how to integrate Scalekit AgentKit with AI frameworks for identity-aware tool calling and authenticated agent operations. @@ -52,9 +52,9 @@ This example shows how to integrate a Google ADK agent with Scalekit for authent ## Direct integration -Direct Agent Auth integration examples in Python. +Direct AgentKit integration examples in Python. -This directory provides direct integration examples for Agent Auth using Python. It covers auth, tool definitions, and secured requests. +This directory provides direct integration examples for AgentKit using Python. It covers auth, tool definitions, and secured requests. View repository diff --git a/src/content/docs/cookbooks/apify-actor-per-user-oauth.mdx b/src/content/docs/cookbooks/apify-actor-per-user-oauth.mdx index a98f32d74..35dacf542 100644 --- a/src/content/docs/cookbooks/apify-actor-per-user-oauth.mdx +++ b/src/content/docs/cookbooks/apify-actor-per-user-oauth.mdx @@ -1,6 +1,6 @@ --- title: 'Apify Actor with per-user OAuth via Scalekit' -description: 'Build an Apify Actor that uses Scalekit Agent Auth so each user connects their OAuth accounts, keyed by Apify userId.' +description: 'Build an Apify Actor that uses Scalekit AgentKit so each user connects their OAuth accounts, keyed by Apify userId.' date: 2026-04-21 tags: ['Agent auth'] sidebar: diff --git a/src/content/docs/cookbooks/daily-briefing-agent.mdx b/src/content/docs/cookbooks/daily-briefing-agent.mdx index 35720a549..f1c32c7f2 100644 --- a/src/content/docs/cookbooks/daily-briefing-agent.mdx +++ b/src/content/docs/cookbooks/daily-briefing-agent.mdx @@ -1,6 +1,6 @@ --- -title: 'Build a daily briefing agent with Vercel AI SDK and Scalekit Agent Auth' -description: 'Connect a TypeScript or Python agent via Vercel AI SDK and Scalekit Agent Auth to Google Calendar and Gmail using two integration patterns.' +title: 'Build a daily briefing agent with Vercel AI SDK and Scalekit AgentKit' +description: 'Connect a TypeScript or Python agent via Vercel AI SDK and Scalekit AgentKit to Google Calendar and Gmail using two integration patterns.' date: 2026-03-27 tags: ['Agent auth'] sidebar: diff --git a/src/content/docs/cookbooks/render-github-pr-summarizer.mdx b/src/content/docs/cookbooks/render-github-pr-summarizer.mdx index bd31efa2f..89617891e 100644 --- a/src/content/docs/cookbooks/render-github-pr-summarizer.mdx +++ b/src/content/docs/cookbooks/render-github-pr-summarizer.mdx @@ -202,7 +202,7 @@ export const scalekit = new Proxy({} as ScalekitClient, { const GITHUB_CONNECTION_NAME = process.env.GITHUB_CONNECTION_NAME; if (!GITHUB_CONNECTION_NAME) { throw new Error( - "GITHUB_CONNECTION_NAME is required. Copy the connection name from Scalekit Dashboard > Agent Auth > Connectors.", + "GITHUB_CONNECTION_NAME is required. Copy the connection name from Scalekit Dashboard > AgentKit > Connectors.", ); } diff --git a/src/content/docs/cookbooks/set-up-agentkit-with-your-coding-agent.mdx b/src/content/docs/cookbooks/set-up-agentkit-with-your-coding-agent.mdx index d46b4b227..a48c549eb 100644 --- a/src/content/docs/cookbooks/set-up-agentkit-with-your-coding-agent.mdx +++ b/src/content/docs/cookbooks/set-up-agentkit-with-your-coding-agent.mdx @@ -1,6 +1,6 @@ --- title: 'Set up AgentKit with your coding agent' -description: 'Add Scalekit Agent Auth to your codebase using Claude Code, Codex, GitHub Copilot CLI, Cursor, or any of 40+ coding agents.' +description: 'Add Scalekit AgentKit to your codebase using Claude Code, Codex, GitHub Copilot CLI, Cursor, or any of 40+ coding agents.' date: 2026-04-15 tags: ['Agent auth'] sidebar: @@ -66,7 +66,7 @@ Install the Scalekit Auth Stack plugin into your coding agent and paste one prom ```bash title="Terminal" frame="terminal" showLineNumbers=false curl -fsSL https://raw.githubusercontent.com/scalekit-inc/cursor-authstack/main/install.sh | bash ``` - Reload Cursor → **Settings → Plugins** → enable **Agent Auth**. If a browser authorization prompt appears, complete the OAuth flow before continuing. Open chat (Cmd+L / Ctrl+L) and paste the implementation prompt above. + Reload Cursor → **Settings → Plugins** → enable **AgentKit**. If a browser authorization prompt appears, complete the OAuth flow before continuing. Open chat (Cmd+L / Ctrl+L) and paste the implementation prompt above. ```bash title="Terminal" frame="terminal" showLineNumbers=false diff --git a/src/content/docs/dev-kit/build-with-ai/index.mdx b/src/content/docs/dev-kit/build-with-ai/index.mdx index c1b2b99fb..7656a3b70 100644 --- a/src/content/docs/dev-kit/build-with-ai/index.mdx +++ b/src/content/docs/dev-kit/build-with-ai/index.mdx @@ -86,7 +86,7 @@ Pick the auth feature you need below. Each page gives you a ready-to-paste promp clickable={true} /> Date: Fri, 15 May 2026 13:45:08 +0530 Subject: [PATCH 4/7] =?UTF-8?q?Fix=20llms.config.ts:=20Agent=20Authenticat?= =?UTF-8?q?ion=20set=20=E2=86=92=20AgentKit=20documentation=20set?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/configs/llms.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configs/llms.config.ts b/src/configs/llms.config.ts index 54fa423c4..2dcbed755 100644 --- a/src/configs/llms.config.ts +++ b/src/configs/llms.config.ts @@ -16,7 +16,7 @@ for in-depth answers. Load \`llms-full.txt\` only when exhaustive context is nee ## Product → Documentation routing -- **AgentKit** (AI agents, tool calling, connectors) → load Agent Authentication set +- **AgentKit** (AI agents, tool calling, connectors) → load AgentKit documentation set - **AgentKit + specific framework** → fetch the framework page directly (see Framework routing below) - **SaaSKit / FSA** (login, sessions, RBAC) → load SaaSKit Complete set - **MCP Authentication** (OAuth 2.1 for MCP servers) → load MCP Authentication set From bffc5281d3278c530731a18d4fc1f88c75b93fbf Mon Sep 17 00:00:00 2001 From: Saif Ali Shaik Date: Tue, 19 May 2026 18:25:15 +0530 Subject: [PATCH 5/7] Address CodeRabbit review: fix indentation, tags, title length, and terminology consistency --- .../templates/coding-agents/_agentkit-claude-code.mdx | 2 +- src/components/templates/coding-agents/_fsa-claude-code.mdx | 2 +- src/components/templates/coding-agents/_fsa-codex.mdx | 2 +- .../templates/coding-agents/_scim-claude-code.mdx | 2 +- src/components/templates/coding-agents/_skills-cli.mdx | 2 +- src/components/templates/coding-agents/_sso-claude-code.mdx | 2 +- src/content/docs/agentkit/advanced/overview.mdx | 2 +- src/content/docs/agentkit/tools/agent-tools-quickstart.mdx | 2 +- src/content/docs/agentkit/tools/custom-processors.mdx | 2 +- src/content/docs/agentkit/tools/proxy-tools.mdx | 2 +- src/content/docs/cookbooks/apify-actor-per-user-oauth.mdx | 2 +- src/content/docs/cookbooks/daily-briefing-agent.mdx | 4 ++-- src/content/docs/cookbooks/render-github-pr-summarizer.mdx | 2 +- .../cookbooks/set-up-agentkit-with-your-coding-agent.mdx | 2 +- src/content/docs/dev-kit/build-with-ai/scim.mdx | 6 +++--- 15 files changed, 18 insertions(+), 18 deletions(-) diff --git a/src/components/templates/coding-agents/_agentkit-claude-code.mdx b/src/components/templates/coding-agents/_agentkit-claude-code.mdx index c375ec263..ca75a5499 100644 --- a/src/components/templates/coding-agents/_agentkit-claude-code.mdx +++ b/src/components/templates/coding-agents/_agentkit-claude-code.mdx @@ -65,7 +65,7 @@ import { Steps, Aside } from '@astrojs/starlight/components' Guide me through configuring the installed Scalekit marketplace plugin to handle agent authentication for Gmail. Provide the code to trigger the auth flow, retrieve the secure user token, and then use that authenticated session to fetch and list the last 5 unread emails. Add logging to verify the flow. ``` - When you submit this prompt, Claude Code loads the AgentKit skills from the marketplace -> analyzes your existing application structure -> generates Scalekit client initialization -> creates connected account management functions -> implements OAuth authorization link generation -> adds token fetching and refresh logic. + When you submit this prompt, Claude Code loads the AgentKit skills from the marketplace -> analyzes your existing application structure -> generates Scalekit client initialization -> creates connected account management functions -> implements OAuth authorization link generation -> adds token fetching and refresh logic.