Skip to content

Commit f47e0a7

Browse files
peopleworksclaude
andcommitted
Release: Core, Cli and Mcp to 0.2.0
A minor rather than a patch: Core gains public API (RulePack.Messages, its Text() lookup, and PackMessages) and changes what a reader sees — findings on Spanish text are now written in Spanish, in the analyzers and on the catalog page alike. It also settles a version skew. Mcp sat at 0.1.1 from the release that claimed the MCP registry name, while Core and Cli stayed at 0.1.0; 0.2.0 puts the three back on the same number without pretending the change is a patch. The manifest carries the version twice, and the workflow guard checks both. Verified by packing all three locally and looking inside the artifact rather than trusting the build: the Core package's embedded rule-packs carry the Spanish wording that is the reason for shipping this at all. SignsOfAI.Documents stays unpublished for now. It is one day old, and a NuGet version cannot be withdrawn once it is out. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent e2d1068 commit f47e0a7

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/SignsOfAI.Cli/SignsOfAI.Cli.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackAsTool>true</PackAsTool>
1414
<ToolCommandName>signsofai</ToolCommandName>
1515
<PackageId>SignsOfAI.Cli</PackageId>
16-
<Version>0.1.0</Version>
16+
<Version>0.2.0</Version>
1717
<Authors>Pedro Hernández (PeopleWorks)</Authors>
1818
<Company>PeopleWorks</Company>
1919
<Description>CLI to detect the signs of AI writing (English &amp; Spanish) and recommend fixes — lint your prose in CI.</Description>

src/SignsOfAI.Core/SignsOfAI.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<!-- Publishable as a library so others can embed the engine. -->
1212
<PackageId>SignsOfAI.Core</PackageId>
13-
<Version>0.1.0</Version>
13+
<Version>0.2.0</Version>
1414
<Authors>Pedro Hernández (PeopleWorks)</Authors>
1515
<Company>PeopleWorks</Company>
1616
<Description>The engine behind Signs of AI Writing: detects the stylometric tells of AI-generated text (English &amp; Spanish) — overused vocabulary, rhetorical crutches, syntactic tells and burstiness — and returns an actionable fix for each finding. No external dependencies.</Description>

src/SignsOfAI.Mcp/.mcp/server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
33
"name": "io.github.peopleworks/signs-of-ai",
4-
"version": "0.1.1",
4+
"version": "0.2.0",
55
"title": "Signs of AI Writing",
66
"description": "Bilingual (EN/ES) AI-writing detection that shows the evidence, plus originality checking.",
77
"packages": [
88
{
99
"registryType": "nuget",
1010
"registryBaseUrl": "https://api.nuget.org/v3/index.json",
1111
"identifier": "SignsOfAI.Mcp",
12-
"version": "0.1.1",
12+
"version": "0.2.0",
1313
"transport": {
1414
"type": "stdio"
1515
},

src/SignsOfAI.Mcp/SignsOfAI.Mcp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<PackAsTool>true</PackAsTool>
1313
<ToolCommandName>signsofai-mcp</ToolCommandName>
1414
<PackageId>SignsOfAI.Mcp</PackageId>
15-
<Version>0.1.1</Version>
15+
<Version>0.2.0</Version>
1616
<Authors>Pedro Hernández (PeopleWorks)</Authors>
1717
<Company>PeopleWorks</Company>
1818
<Description>Model Context Protocol (MCP) server for Signs of AI Writing. Exposes the engine as tools — analyze text for AI tells, check originality between documents, search the sign catalog, extract distinctive phrases, and (optionally, via the hosted API) measure perplexity and find paraphrases — to Claude Desktop and any MCP client.</Description>

0 commit comments

Comments
 (0)