# WolvenKit Console

## What is the WolvenKit Console?

WolvenKit Console is the core "Modkit" that drives the WolvenKit application. The Console supersedes the original CP77 Tools application created by rfuzzo. The same core functionalities of WolvenKit are available from command line for simplicity and extendibility for power users.

* For a documentation of the individual commands, see [Wolvenkit.CLI: Command List](/wolvenkit/wolvenkit-cli/usage/command-list.md)
* For further instructions on using it, see [Wolvenkit.CLI: Usage](/wolvenkit/wolvenkit-cli/usage.md)

{% hint style="warning" %}
As of January 2024, Wolvenkit.CLI does not work under Linux. You can run it though qemu and virtofs.
{% endhint %}

## Installing WolvenKit Console

### As a dotnet tool

For a global install, you can install it as a dotnet tool. Open up the windows command line (`Windows+R`, type `cmd`, hit `return`) or Powershell, then enter the following:

```
dotnet tool install -g wolvenkit.cli 
```

Verify if the installation was successful:

```
cp77tools -help
```

{% hint style="info" %}
You can also use `dotnet tool list -g` to see if WolvenKit CLI is present. You'll see in the last column the command to run it.
{% endhint %}

{% hint style="warning" %}
If starting WolvenKit CLI fails with an error regarding .NET version, it means you need to install or update the SDK. You can check your setup with `dotnet sdk check`. You can install the latest version required for this tool by following this [link](https://aka.ms/dotnet-core-download). As of writing this note, you need to keep **.NET v8** up-to-date.
{% endhint %}

### By downloading it from the repository

You can download WolvenKit Console from the Releases page on the GitHub repository ([Release](https://github.com/WolvenKit/WolvenKit/releases) | [Nightly](https://github.com/WolvenKit/WolvenKit-nightly-releases/releases)). Select the download starting with `WolvenKit.Console`.

Extract it to a directory of your choice (for example `C:\Cyberpunk_Modding\WolvenKit.Console`).&#x20;

You can run WolvenKit Console from that directory, for example:&#x20;

```
C:\Cyberpunk_Modding\WolvenKit.Console\Wolvenkit.CLI.exe -help
```

To make the command globally available, add the directory to your [Windows Path](https://www.architectryan.com/2018/03/17/add-to-the-path-on-windows-10/).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://wiki.redmodding.org/wolvenkit/wolvenkit-cli/wolvenkit-console.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
