ソース情報
- リポジトリ
- taracodlabs/aiden
- ソースの最終更新活動
- 2026年5月6日 12:31
- 検出された SKILL.md の言語
- 英語
- スター
- 779
- フォーク
- 140
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/taracodlabs/aiden --skill minecraft-modpack-serverコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | minecraft-modpack-server |
| description | Set up a modded Minecraft server (NeoForge or Forge) |
| category | gaming |
| version | 1.0.0 |
| origin | aiden |
| license | Apache-2.0 |
| tags | minecraft, neoforge, forge, modpack, server, java, gaming, mods, multiplayer |
Set up and manage a NeoForge or Forge modded Minecraft server on Windows. Covers server installation, modpack configuration, memory tuning, and startup automation.
# Verify Java 21+ is installed (required for 1.20.x+)
java -version
# Install from: https://adoptium.net/temurin/releases/?version=21
# Create server directory
New-Item -ItemType Directory -Path "C:\mc-server" -Force
Set-Location "C:\mc-server"
# Download NeoForge installer from https://neoforged.net/
# Get the installer for your Minecraft version
$neoforgeVersion = "21.1.99" # replace with desired version
$installerUrl = "https://maven.neoforged.net/releases/net/neoforged/neoforge/$neoforgeVersion/neoforge-$neoforgeVersion-installer.jar"
Invoke-WebRequest -Uri $installerUrl -OutFile "neoforge-installer.jar"
# Run installer (creates server files)
java -jar neoforge-installer.jar --installServer
# Required before server will start
Set-Content -Path "eula.txt" -Value "eula=true"
# start.bat — save in C:\mc-server\
$startBat = @'
@echo off
java -Xmx6G -Xms2G ^
-XX:+UseG1GC ^
-XX:+ParallelRefProcEnabled ^
-XX:MaxGCPauseMillis=200 ^
-XX:G1HeapRegionSize=16M ^
-XX:G1ReservePercent=25 ^
-jar libraries/net/neoforged/neoforge/21.1.99/neoforge-21.1.99-server.jar ^
nogui
pause
'@
Set-Content -Path "C:\mc-server\start.bat" -Value $startBat
Adjust -Xmx (max RAM) and -Xms (initial RAM) based on available system memory.
# Mods go in the mods/ directory
New-Item -ItemType Directory -Force -Path "C:\mc-server\mods"
# Download a mod from Modrinth (example: Fabric API replacement for NeoForge)
$modUrl = "https://cdn.modrinth.com/data/AANobbMI/versions/xxxxx/mod-name.jar"
Invoke-WebRequest -Uri $modUrl -OutFile "C:\mc-server\mods\mod-name.jar"
# List installed mods
Get-ChildItem "C:\mc-server\mods" -Filter "*.jar" | Select-Object Name, Length
# 1. Download the server pack ZIP from CurseForge (not the client pack)
# 2. Extract to server directory
Expand-Archive -Path "modpack-server.zip" -DestinationPath "C:\mc-server" -Force
# 3. Run the modpack's install script (varies by pack)
Set-Location "C:\mc-server"
.\startserver.sh # or start.bat depending on the pack
# Key settings in server.properties
$config = @"
max-players=10
difficulty=normal
spawn-protection=0
view-distance=10
online-mode=true
motd=My Modded Server
"@
Add-Content -Path "C:\mc-server\server.properties" -Value $config
Set-Location "C:\mc-server"
.\start.bat
"Set up a NeoForge 1.21.1 server with 8GB RAM"
→ Use steps 1–4. Adjust -Xmx8G in the startup script.
"Add the Create mod to my existing server"
→ Use step 5 — download the Create jar for NeoForge from Modrinth and place in mods/.
"Install the All The Mods 9 server pack" → Use step 6 — download the ATM9 server pack ZIP from CurseForge and extract with step 6.
-Xmx proportional to mod count — large packs (200+ mods) need at least 8-12GBonline-mode=true requires all players to have a paid Minecraft account (prevents cracked clients)world/ directory regularly — server crashes can corrupt world data