Skip to content

kuken-project/cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cli

Caution

  • Always download from official GitHub Releases
  • Verify checksums for security (SHA256 available in releases)

Download the latest release for your platform from GitHub Releases.

Manual Installation

Linux

curl -LO https://github.com/devnatan/kuken/releases/download/v0.1.0/kuken-linux-amd64
chmod +x kuken-linux-amd64
sudo mv kuken-linux-amd64 /usr/local/bin/kuken
kuken --version

macOS

curl -LO https://github.com/devnatan/kuken/releases/download/v0.1.0/kuken-darwin-arm64

chmod +x kuken-darwin-arm64
sudo mv kuken-darwin-arm64 /usr/local/bin/kuken
kuken --version

Windows

Invoke-WebRequest -Uri "https://github.com/devnatan/kuken/releases/download/v0.1.0/kuken-windows.exe" -OutFile "kuken.exe"
Move-Item kuken.exe "C:\Program Files\Kuken\kuken.exe"
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";C:\Program Files\Kuken", "Machine")

# Verify installation (restart PowerShell first)
kuken --version

Uninstallation

Linux / macOS

sudo rm /usr/local/bin/kuken

Windows

Remove-Item "C:\Program Files\Kuken\kuken.exe"

Getting Started

After installation, initialize your Kuken configuration:

kuken init

For available commands:

kuken help

Troubleshooting

Permission Denied (Linux/macOS)

If you get a permission denied error:

chmod +x kuken

Command Not Found

Make sure the installation directory is in your PATH:

Linux/macOS:

echo $PATH

Windows:

$env:Path

macOS "Cannot be opened because the developer cannot be verified"

Run:

xattr -d com.apple.quarantine /usr/local/bin/kuken

About

The official command-line interface for Küken.

Resources

Stars

Watchers

Forks

Releases

No releases published

Languages