SignsofAI

(★ 20)

A free, privacy-first tool that flags the tells of AI-generated writing, overused vocabulary, rhetorical crutches, robotic sentence rhythm and, for every finding, tells you how to fix it.

File Explorer

  • .gitattributes
  • .gitignore
  • CODE_OF_CONDUCT.md
  • CONTRIBUTING.md
  • Directory.Build.props
  • Dockerfile
  • LICENSE
  • README.md
  • SECURITY.md
  • SignsOfAI.Desktop.slnx
  • SignsOfAI.slnx
  • SKILL.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

dotnet add package

View Details ▼

Add or update a .NET package reference in a project file.

dotnet add package {{package}}

Add a package to the project in the current directory:

dotnet add {{path/to/file.csproj}} package {{package}}

Add a package to a specific project:

dotnet add package {{package}} {{[-v|--version]}} {{1.0.0}}

Add a specific version of a package to the project:

🔍

dotnet publish

View Details ▼

Publish a .NET application and its dependencies to a directory for deployment to a hosting system.

dotnet publish {{[-c|--configuration]}} Release {{path/to/project_file}}

Compile a .NET project in release mode:

dotnet publish {{[-sc|--self-contained]}} true {{[-r|--runtime]}} {{runtime_identifier}} {{path/to/project_file}}

Publish the .NET Core runtime with your application for the specified runtime:

dotnet publish {{[-r|--runtime]}} {{runtime_identifier}} -p:PublishSingleFile=true {{path/to/project_file}}

Package the application into a platform-specific single-file executable:

🔍

dotnet run

View Details ▼

Run a .NET application without explicit compile or launch commands.

dotnet run

Run the project in the current directory:

dotnet run --project {{path/to/file.csproj}}

Run a specific project:

dotnet run -- {{arg1=foo arg2=bar ...}}

Run the project with specific arguments:

🔍

dotnet test

View Details ▼

Execute tests for a .NET application.
Note: View <https://learn.microsoft.com/dotnet/core/testing/selective-unit-tests> for supported filter expressions.

dotnet test

Execute tests for a .NET project/solution in the current directory:

dotnet test {{path/to/project_or_solution}}

Execute tests for a .NET project/solution in a specific location:

dotnet test --filter {{Name~TestMethod1}}

Execute tests matching the given filter expression:

🔍

dotnet tool

View Details ▼

Manage .NET tools and search published tools in NuGet.

dotnet tool install {{[-g|--global]}} {{dotnetsay}}

Install a global tool (don't use `--global` for local tools):

dotnet tool restore

Install tools defined in the local tool manifest:

dotnet tool update {{[-g|--global]}} {{tool_name}}

Update a specific global tool (don't use `--global` for local tools):

# Project Badges

// repository documentation