Codeer.LowCode.Blazor.Designer.Standard 0.8.5

There is a newer version of this package available.
See the version list below for details.
dotnet add package Codeer.LowCode.Blazor.Designer.Standard --version 0.8.5
                    
NuGet\Install-Package Codeer.LowCode.Blazor.Designer.Standard -Version 0.8.5
                    
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="Codeer.LowCode.Blazor.Designer.Standard" Version="0.8.5" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Codeer.LowCode.Blazor.Designer.Standard" Version="0.8.5" />
                    
Directory.Packages.props
<PackageReference Include="Codeer.LowCode.Blazor.Designer.Standard" />
                    
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 Codeer.LowCode.Blazor.Designer.Standard --version 0.8.5
                    
#r "nuget: Codeer.LowCode.Blazor.Designer.Standard, 0.8.5"
                    
#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 Codeer.LowCode.Blazor.Designer.Standard@0.8.5
                    
#: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=Codeer.LowCode.Blazor.Designer.Standard&version=0.8.5
                    
Install as a Cake Addin
#tool nuget:?package=Codeer.LowCode.Blazor.Designer.Standard&version=0.8.5
                    
Install as a Cake Tool

Codeer.LowCode.Blazor.Designer.Standard

The standard implementation for the Codeer.LowCode.Blazor Designer. It packages everything a designer application normally ships — project templates, tool menus, icon candidates, and an AI chat assistant — so the Visual Studio template output stays thin and updates arrive as a NuGet version bump instead of regenerated code.

Distributed as open source under the MIT License.

Features

  • Project templates (StandardTemplates) — empty / empty with auth / getting started / pattern showcase / auth patterns / inventory / SFA / project management, with bundled sample SQLite databases.
  • Tool menus (StandardMenus) — Import Modules from Database, Create DDL, Create Field Class, Create FieldData Class, Export Excel Print CheatSheet, Export PageObject (Selenium), plus the standard DB column transform (PostgreSQL xmin → optimistic locking).
  • Icon candidates (StandardIcons) — Bootstrap Icons list for the icon picker.
  • Claude Code workspace (ClaudeWorkspaceDeploy / Tools > Claude Code Workspace) — deploys and updates the Claude Code workspace (CLAUDE.md, docs, hooks, permission settings with the designer exe path baked in). The docs ship inside this package (ClaudeWorkspace/), and deployment also runs ai-refresh to emit the generated references (field catalog, specs, default JSONs, samples) into ClaudeCodeForDesigner/; a hook detects designer updates and replaces that folder wholesale, so the deployed content always matches the running designer version. Also available headless via the claude-workspace CLI verb. The developer-workspace verb (DeveloperWorkspaceDeploy) writes the host-development specs (HostCustomization.md etc.) to <host root>/ClaudeCodeForDeveloper/_specs/ for Claude Code sessions that edit the C# host; it needs no design project and only owns the _-prefixed entries of that folder (_specs/, _hooks/). It also creates the root .claude/settings.local.json (permissions + hooks with the exe path baked in, never overwritten) so that a session started at the host root can edit the designs under DesignProjects/*/ with the same permissions and automatic reference refresh as one started inside a design workspace.
  • DDL generation (DbMapping) — deterministic CREATE TABLE / diff ALTER TABLE generation from module designs.
  • AI chat assistant (AIChat/) — natural-language editing of CSS, scripts, SQL, module settings, fields, layouts (detail / list / search), and page frames.
    • Task-oriented: an intent router splits a request into steps and dispatches each to the right editor function.
    • Self-correcting: generated changes run through the Designer's design checks and are regenerated on errors before being applied.
    • Model-swappable: built on the Microsoft.Extensions.AI IChatClient abstraction — inject any provider.
    • Custom-field aware: recognizes custom field types registered via the Designer's FieldCatalog.
    • Editable prompts: specifications are loaded from the Designer's SpecDocCatalog and guidelines from the embedded Claude Code workspace docs; fork and rebuild with your own.

Installation

dotnet add package Codeer.LowCode.Blazor.Designer.Standard

Requires the Designer package (Codeer.LowCode.Blazor.Designer, matching version).

Getting started

Register everything with two calls in your designer app — SetupHeadless before base.OnStartup(e) (project templates and CLI verbs are used by the headless CLI, which runs inside base.OnStartup), and Setup after it:

protected override void OnStartup(StartupEventArgs e)
{
    // ... app-specific service / script type registrations ...
    DesignerStandard.SetupHeadless(); // templates + claude-workspace / developer-workspace / selenium CLI verbs

    base.OnStartup(e);

    DesignerStandard.Setup(DesignerEnvironment, new DesignerStandardOptions
    {
        // null disables the AI chat. Provider choice and credentials stay in your app.
        CreateAiChatClient = () => new AzureOpenAIClient(endpoint, credential)
            .GetChatClient(model).AsIChatClient(),
    });
}

Or pick features individually — Setup is just the sum of public building blocks:

StandardIcons.AddBootstrapIcons();
DesignerTemplateCandidate.Templates.Add(StandardTemplates.PatternShowcase()); // 一部だけ
StandardMenus.AddCreateDdl(DesignerEnvironment);                              // メニューも個別に
DesignerChatRegistration.RegisterScreenChats(
    new DesignerEnvironmentChatHost(DesignerEnvironment), createAiChatClient);

AI chat architecture

Screen chats (ScreenChats)          per-editor entry points
        |
   AiOrchestrator + IntentRouter    split a request into ordered steps
        |
   Functions/ (IAiFunction)         field.create / field.edit / layout.* /
        |                           script.edit / sql.* / css.edit / db.update / ...
   IDesignerChatHost                bridge to the designer
                                    (DesignerEnvironmentChatHost is the standard implementation)

Prompts are single-sourced: framework specifications come from the Designer package (SpecDocCatalog, same assembly and version as the implementation), and authoring guidelines come from the embedded Claude Code workspace (ClaudeWorkspace/ClaudeCodeForDesigner/Docs/) — the AI chat and Claude Code read the same documents.

License

MIT License. See LICENSE.

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows 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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.8.11 32 9/8/2026
0.8.10 42 9/8/2026
0.8.9 52 9/7/2026
0.8.8 56 9/7/2026
0.8.7 55 9/4/2026
0.8.6 78 9/3/2026
0.8.5 86 9/2/2026
0.8.4 79 9/2/2026
0.8.3 77 9/2/2026
0.8.2 76 9/2/2026
0.8.1 111 8/31/2026
0.8.0 102 8/29/2026
0.7.0 98 8/24/2026
0.6.0 114 8/6/2026
0.5.1 115 7/30/2026
0.5.0 116 7/28/2026
0.4.0 122 7/23/2026
0.3.0 126 7/15/2026
0.2.0 127 7/10/2026
0.1.2 116 7/7/2026
Loading failed

- Pattern Showcase: the sidebar now shows user management (AppUser) and the approval route master to everyone (they were only in the admin frame); the sample data of the approval flow was rebuilt to be self-explanatory (an expense request waiting for bob's approval, approved expense and leave requests, unsubmitted ones, and routes "経費ルート" / "高額経費ルート" / "休暇ルート"; the expense request script picks the high-amount route for 100,000 yen or more). Sample database sqlite_patterns_v6.db (v5 removed from the package; existing local files are never overwritten).