No description
  • Rust 78.3%
  • Go 14.2%
  • Dart 5%
  • Shell 0.6%
  • CMake 0.6%
  • Other 1.3%
Find a file
youugiuhiuh 2447f1e9b4
Some checks failed
Build and Release / build-and-release (push) Has been cancelled
Repo Mirror Sync / Mirror to Codeberg (push) Has been cancelled
Repo Mirror Sync / Mirror to GitLab (push) Has been cancelled
Repo Mirror Sync / Mirror to Forgejo (push) Has been cancelled
Fix and Update CC.pd
2026-08-13 16:01:11 +08:00
.agents/skills Init 2026-07-30 19:33:03 +08:00
.codegraph Init 2026-07-30 19:33:03 +08:00
.github chore(deps): bump mozilla-actions/sccache-action from 0.0.10 to 0.0.11 2026-08-04 09:08:12 +00:00
.vscode Init 2026-07-30 19:33:03 +08:00
docs docs: revise webpki security update design 2026-08-11 10:39:48 +08:00
go/installer Fix and Update CC.pd 2026-08-13 16:01:11 +08:00
proto Init 2026-07-30 19:33:03 +08:00
rust Fix and Update CC.pd 2026-08-13 16:01:11 +08:00
scripts Init 2026-07-30 19:33:03 +08:00
sni_tester Fix and Update CC.pd 2026-08-13 16:01:11 +08:00
sni_tester_app Init 2026-07-30 19:33:03 +08:00
tools Init 2026-07-30 19:33:03 +08:00
.build.yml Init 2026-07-30 19:33:03 +08:00
.gitattributes Init 2026-07-30 19:33:03 +08:00
.gitignore Fix and Update CC.pd 2026-08-13 16:01:11 +08:00
.pre-commit-config.yaml Init 2026-07-30 19:33:03 +08:00
AGENTS.md Init 2026-07-30 19:33:03 +08:00
LICENSE Init 2026-07-30 19:33:03 +08:00
mise.toml Init 2026-07-30 19:33:03 +08:00
README.md Init 2026-07-30 19:33:03 +08:00
SECURITY.md Init 2026-07-30 19:33:03 +08:00
skills-lock.json Init 2026-07-30 19:33:03 +08:00

WWPS Control Stack

License: AGPL v3 Platform Status

Overview

This is the control plane used to deploy, initialize, update, and operate the WWPS environment on Linux VPS hosts.

An experimental self-hosted server emulator project for Wuthering Waves, focused on quick deployment, simple management, and stable runtime behavior on Linux VPS environments.

Features

  • One-command bootstrap installer
  • Remote management workflow after deployment
  • User profile and runtime configuration management
  • Deployment asset rotation and maintenance utilities
  • Network tuning and recovery helpers
  • Suitable for lightweight VPS environments

Components

  • rust/aegis: Telegram-based management bot
  • go/installer: bootstrap installer and update entrypoint
  • rust/version-sync: release/version synchronization helper
  • sni_tester: standalone SNI and connectivity testing utility

Quick Start

Recommended environment:

  • Ubuntu 20.04+
  • Debian 10+
  • amd64 or arm64 Linux VPS

Install with:

Interactive (simplest): SSH into your server and run:

wget -O /root/installer "https://github.com/youugiuhiuh/Wuthering_Waves_Private_Server/releases/latest/download/installer" && chmod +x /root/installer && ./installer

Follow the prompts to enter your Telegram Bot Token and Admin ID. Optionally configure Matrix for sensitive notification routing.

To update an existing installation, just run the same command again — the installer handles upgrades automatically.

Headless (automation via SSH pipe): download once, then pipe config via heredoc.

JSON format (best for simple ASCII values):

ssh root@YOUR_SERVER_IP "wget -qO /root/installer 'https://github.com/youugiuhiuh/Wuthering_Waves_Private_Server/releases/latest/download/installer' && chmod +x /root/installer"
ssh -T root@YOUR_SERVER_IP /root/installer --setup-stdin <<'JSONEOF'
{"token":"YOUR_BOT_TOKEN","admin_id":"YOUR_ADMIN_ID","totp_secret":"","matrix_homeserver":"https://matrix.org","matrix_username":"@bot:matrix.org","matrix_password":"YOUR_PASSWORD","matrix_room_id":"!room:matrix.org"}
JSONEOF

Key=value format (avoids JSON quoting, recommended for passwords with special/non-ASCII characters):

ssh root@YOUR_SERVER_IP "wget -qO /root/installer 'https://github.com/youugiuhiuh/Wuthering_Waves_Private_Server/releases/latest/download/installer' && chmod +x /root/installer"
ssh -T root@YOUR_SERVER_IP /root/installer --setup-keyval <<'KVEOF'
token=YOUR_BOT_TOKEN
admin_id=YOUR_ADMIN_ID
totp_secret=
matrix_homeserver=https://matrix.org
matrix_username=@bot:matrix.org
matrix_password=YOUR_PASSWORD
matrix_room_id=!room:matrix.org
KVEOF

Fields matrix_* are optional. Set totp_secret to empty string to auto-generate. Using a heredoc (<<'EOF') avoids shell injection — your password can contain any characters safely. The key=value format passes raw bytes without JSON escaping, making it the easier choice when passwords contain special or non-ASCII characters.

Repository Contents

Releases include:

  • installer: bootstrap program
  • aegis: management-side executable

Use the installer first. It will prepare the runtime environment and deploy the required components automatically.

Operations

After installation, the management interface can be used for:

  • service status checks
  • user and configuration maintenance
  • deployment updates
  • runtime diagnostics
  • security and recovery operations

Build

Rust bot

cd rust/aegis
cargo build --release

Go installer

cd go/installer
go build -o installer .

SNI tester

cd sni_tester
go build .

Release Flow

The CI/CD workflows build release artifacts from this repository and create releases with aegis and installer binaries.

Supported CI/CD platforms:

  • GitHub Actions (.github/workflows/public-release.yml)
  • GitLab CI (.gitlab-ci.yml)
  • Azure Pipelines (azure-pipelines.yml)
  • Bitbucket Pipelines (bitbucket-pipelines.yml)
  • SourceHut Builds (.build.yml)

Trigger by bumping version in rust/aegis/Cargo.toml and pushing to default branch, or run manually with version input.

Scope

The project focuses on:

  • host bootstrap and secure initialization
  • Telegram-side operations and maintenance workflows
  • inbound configuration generation and lifecycle management
  • routing, geo data, certificate, and kernel/network maintenance helpers

Disclaimer

This project is intended for educational and technical research purposes only. Do not use it for commercial activities.

Wuthering Waves is a trademark of its respective owner. Please support the official game.