From ff87ae6004582d992be146e04805b8ffe82ec5d1 Mon Sep 17 00:00:00 2001 From: Aaron Stannard Date: Tue, 5 May 2026 01:06:51 +0000 Subject: [PATCH] Fix CLI NuGet package ID and link component READMEs Set explicit PackageId to Netclaw.SkillServer.Cli so the NuGet package matches the documented install command instead of defaulting to the AssemblyName. Link component names in the root README table to their respective READMEs. --- README.md | 4 ++-- src/Netclaw.SkillServer.Cli/Netclaw.SkillServer.Cli.csproj | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 59cc7a9..c22fa3b 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ This repository contains three components: | Component | Description | Install | |-----------|-------------|---------| | **SkillServer** | Self-hosted skill registry (web server) | `docker pull ghcr.io/netclaw-dev/skillserver` | -| **skillserver CLI** | Command-line tool for publishing and managing skills | `dotnet tool install -g Netclaw.SkillServer.Cli` | -| **Netclaw.SkillClient** | Typed .NET client library | `dotnet add package Netclaw.SkillClient` | +| **[skillserver CLI](src/Netclaw.SkillServer.Cli/README.md)** | Command-line tool for publishing and managing skills | `dotnet tool install -g Netclaw.SkillServer.Cli` | +| **[Netclaw.SkillClient](src/Netclaw.SkillClient/README.md)** | Typed .NET client library | `dotnet add package Netclaw.SkillClient` | ## Standards Support diff --git a/src/Netclaw.SkillServer.Cli/Netclaw.SkillServer.Cli.csproj b/src/Netclaw.SkillServer.Cli/Netclaw.SkillServer.Cli.csproj index c41ea2b..5cd5cb2 100644 --- a/src/Netclaw.SkillServer.Cli/Netclaw.SkillServer.Cli.csproj +++ b/src/Netclaw.SkillServer.Cli/Netclaw.SkillServer.Cli.csproj @@ -3,6 +3,7 @@ Exe $(NetLibVersion) + Netclaw.SkillServer.Cli skillserver Netclaw.SkillServer.Cli CLI tool for publishing and managing skills on a SkillServer instance.