Flowcourier.Umbraco.AI.Agents.Seo 17.5.0

dotnet add package Flowcourier.Umbraco.AI.Agents.Seo --version 17.5.0
                    
NuGet\Install-Package Flowcourier.Umbraco.AI.Agents.Seo -Version 17.5.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Flowcourier.Umbraco.AI.Agents.Seo" Version="17.5.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Flowcourier.Umbraco.AI.Agents.Seo" Version="17.5.0" />
                    
Directory.Packages.props
<PackageReference Include="Flowcourier.Umbraco.AI.Agents.Seo" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Flowcourier.Umbraco.AI.Agents.Seo --version 17.5.0
                    
#r "nuget: Flowcourier.Umbraco.AI.Agents.Seo, 17.5.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Flowcourier.Umbraco.AI.Agents.Seo@17.5.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Flowcourier.Umbraco.AI.Agents.Seo&version=17.5.0
                    
Install as a Cake Addin
#tool nuget:?package=Flowcourier.Umbraco.AI.Agents.Seo&version=17.5.0
                    
Install as a Cake Tool

Flowcourier Umbraco AI

A suite of AI agents for the Umbraco CMS Copilot, built on the official Umbraco.AI packages.

Package What it does
Flowcourier.Umbraco.AI Meta-package — installs the whole suite in one reference.
Flowcourier.Umbraco.AI.Core Shared foundation: chat-client resolution, content/JSON helpers, code-first agent seeding, shared Copilot frontend.
Flowcourier.Umbraco.AI.Agents.Seo SEO Agent — reads the open page and suggests optimised SEO/metadata values, staged for review.
Flowcourier.Umbraco.AI.Agents.Translation Translation Agent — translates the open page into a target culture and offers a send-for-approval flow.

Requirements

  • .NET 10
  • Umbraco 17.5 or later with the Umbraco AI Copilot installed
  • An LLM provider configured (e.g. OpenAI or Anthropic)
  • SMTP configured in Umbraco if you want the translation approval and reminder emails (see Configuration below)

Install

dotnet add package Flowcourier.Umbraco.AI

The agents seed themselves into the Copilot on application start (idempotent and non-destructive). They appear once a default Chat profile exists.

Each installed agent also gets a page under Settings → Flowcourier in the backoffice showing its effective configuration.

Configuration

Translation review workflow

The Translation Agent's send-for-approval flow is configured under the Flowcourier:TranslationReview section of appsettings.json:

{
  "Flowcourier": {
    "TranslationReview": {
      "PublishOnApprove": true
    }
  }
}
Setting Default Description
PublishOnApprove false When false, approving a review only marks it Approved and leaves publishing to the requester. Set to true to publish the culture variant immediately on approval.
RemindersEnabled true Master switch for the background reminder job.
ReminderAfterHours 24 A pending review becomes reminder-eligible once it is this many hours old.
ReminderIntervalHours 24 Minimum spacing between reminders for the same review.
MaxReminders 3 Maximum reminders sent per review.
ReminderScanIntervalMinutes 60 How often the reminder job scans for due reviews.

Either way, approving sends the requester exactly one status email.

The Translation Workflow dashboard lives in a Flowcourier group in the sidebar of Umbraco's built-in Translation section. Make sure the relevant user groups have access to the Translation section (Users → Groups → …).

Approval emails need SMTP

Reviewer notifications, reminders and status emails are sent through Umbraco's standard SMTP settings. Without them, translation itself works normally — the emails are simply skipped with a warning in the log.

{
  "Umbraco": {
    "CMS": {
      "Global": {
        "Smtp": {
          "From": "noreply@yoursite.com",
          "Host": "smtp.yourprovider.com",
          "Port": 587,
          "Username": "…",
          "Password": "…"
        }
      }
    }
  }
}

Translation knowledge context

Under Flowcourier:Translation, KnowledgeContextAlias points at an Umbraco AI Context whose Brand Voice / Text resources steer translations (terminology, tone, do-not-translate guidance). Empty disables knowledge injection.

Documentation & support

License

Free to use, including commercially — not open source. See the LICENSE.md packed with this package. Paid Pro features and consulting are available from Flowcourier ApS.

© 2026 Flowcourier ApS. All rights reserved.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Flowcourier.Umbraco.AI.Agents.Seo:

Package Downloads
Flowcourier.Umbraco.AI

Installs the full Flowcourier Umbraco AI agent suite (Translation Agent and SEO Agent) and the shared foundation in one reference.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
17.5.0 46 7/10/2026
17.0.0-alpha.4 44 7/9/2026
17.0.0-alpha.3 53 7/4/2026
17.0.0-alpha.2 59 7/3/2026
17.0.0-alpha.1 60 7/1/2026