diff --git a/LANGS.md b/LANGS.md
new file mode 100644
index 0000000..1d7c5ae
--- /dev/null
+++ b/LANGS.md
@@ -0,0 +1,2 @@
+* [English](en_us/)
+* [简体中文](zh_cn/)
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..56df9cd
--- /dev/null
+++ b/README.md
@@ -0,0 +1,29 @@
+---
+description: Welcome to the public TrMenu documentation
+---
+
+# First Page
+> This Wiki is following the original [Wiki](https://trmenu.trixey.cc/) with some new features and points.
+
+## Introduction
+
+TrMenu is an advanced dynamic menu system developed based on [TabooLib](https://docs.tabooproject.org/) and published on **2019-10-4**
+
+
+
+* Unique efficient, readable & visual configuration experience
+* Powerful, flexible and expandable
+* Open source code
+
+
+
+Up to now, TrMenu has gone through three major version iterations
+
+This document is only for TrMenu v3.x (old versions are not supported and are strongly not recommended)
+
+## Note
+
+This document may be more technical description, beginners can try to view the following **community documents** to facilitate understanding and get started
+
+{% embed url="https://wiki.ptms.ink/index.php?title=%E7%A4%BE%E5%8C%BA:TrMenu" caption="TrMenu community tutorial" %}
+
diff --git a/SUMMARY.md b/SUMMARY.md
new file mode 100644
index 0000000..f6c60cd
--- /dev/null
+++ b/SUMMARY.md
@@ -0,0 +1,71 @@
+# Table of contents
+
+* [First Page](README.md)
+* [Start](start/README.md)
+ * [Purchase](start/purchase.md)
+ * [Install](start/install.md)
+ * [Configuration](start/configurate.md)
+* [Migrate](migrate.md)
+
+## MENU
+
+* [Create](menu/create.md)
+* [Configuration](menu/configuration/README.md)
+ * [Title](menu/configuration/title.md)
+ * [Layout](menu/configuration/layout.md)
+ * [Option](menu/configuration/option.md)
+ * [Bindings](menu/configuration/bindings.md)
+ * [Event](menu/configuration/event.md)
+ * [Built-in function](menu/configuration/internal-functions.md)
+ * [Tasks](menu/configuration/tasks.md)
+* [Icon](menu/icon/README.md)
+ * [Settings](menu/icon/settings.md)
+ * [Display](menu/icon/display/README.md)
+ * [Material](menu/icon/display/material.md)
+ * [Name](menu/icon/display/name.md)
+ * [Lore](menu/icon/display/lore.md)
+ * [Property](menu/icon/display/property.md)
+ * [Handler](menu/icon/handler.md)
+* [Action](menu/action/README.md)
+ * [Type](menu/action/types.md)
+ * [Option](menu/action/option.md)
+ * [Reaction \(action group\)](menu/action/reactions.md)
+* [Condition](menu/condition.md)
+
+## DATABASE
+
+* [LOCAL](database/local.md)
+* [MONGODB](database/mongodb.md)
+* [Custom](database/custom.md)
+
+## SCRIPT
+
+* [Kether](script/kether.md)
+* [JavaScript](script/javascript.md)
+
+## USAGE
+
+* [Command](usage/command.md)
+* [Arguments](usage/arguments.md)
+* [Item Matchers](usage/item-matchers.md)
+* [Functions](usage/functions.md)
+* [Shortcuts](usage/shortcuts.md)
+* [Command register](usage/register-commands.md)
+* [Node Variable](usage/node-getter.md)
+
+## HOOK
+
+* [PAPI Variables](hook/placeholders.md)
+* [Support Plugins](hook/hookplugins.md)
+
+## DEVELOP
+
+* [API](develop/api/README.md)
+ * [Events](develop/api/events.md)
+ * [Receptacle](develop/api/receptacle.md)
+* [Example](develop/example.md)
+
+## appendix
+
+* [Upgrade Wizard](appendix/v3-guide.md)
+
diff --git a/appendix/v3-guide.md b/appendix/v3-guide.md
new file mode 100644
index 0000000..a92919c
--- /dev/null
+++ b/appendix/v3-guide.md
@@ -0,0 +1,145 @@
+---
+description: This document is taking you to quickly understand TrMenu 3.0 and upgrade steps
+---
+
+# Upgrade Wizard
+
+## Update Content
+
+### Bottom Layer
+
+* Configuration file & language file format are all redesigned
+* 90% of the code is completely rewritten, aiming at the ultimate performance experience
+* The virtual container structure of the package is completely remade, faster & more flexible
+
+#### Function
+
+* Added `Free-Slot` item to unlock items in the target slot (unstable)
+
+#### Material
+
+```text
+head:%player_name% head:BlackSky
+head:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNDRmNDUyZDk5OGVhYmFjNDY0MmM2YjBmZTVhOGY0ZTJlNjczZWRjYWUyYTZkZmQ5ZTZhMmU4NmU3ODZlZGFjMCJ9fX0=
+head:44f452d998eabac4642c6b0fe5a8f4e2e673edcae2a6dfd9e6a2e86e786edac0
+
+repo:myCustomItem
+repo:%custom_variable_whichreturnstheid%
+
+source:HDB:random
+source:ORAXEN:itemId
+
+{json Content}
+```
+
+* Special items are no longer needed { } 、<> etc.
+* HeadDatabase / Oraxen / **ItemsAdder**\(新\) ****Other item hooks need to be in ItemSource format
+* SkinsRestorer hook and heads of custom materials are all integrated into the player’s head, and will be automatically detected and processed
+
+#### Condition
+
+Conditional detection is the biggest change part of this update
+
+Now the condition abandoned the "smart expression" provided by TrMenu 2,and only supports **Kether** and **JavaScript** statements. Kether statement is used by default
+
+* **Kether**
+ * Kether official documentation will provide instructions for use
+* **JavaScript**
+ * Js prefix is required, for example `condition: 'js: player.getHealth() > 20.0'`
+ * Full cache, does not support dynamic compilation of variables, use of variables requires a set of functions
+ * **Objects** is provided by default
+ * `player`
+ * `bukkitServer`
+ * `utils`
+ * **Function** is provided by default
+ * `vars("STRING")` Compile variables and return String
+ * `varInt("STRING")` Compile variable, return integer
+
+> Reasons for deprecating v2:
+>
+> ```text
+> 1. Bloated and inflexible, many errors caused by imperfections
+> 2. No standard caching, variable processing
+> ```
+
+#### Function
+
+{% page-ref page="../usage/functions.md" %}
+
+#### Action
+
+* **ActionBound** The \_\|\|\_ left over from v1 is discarded, and at this stage, it is unified as `&&&`
+* **Title** The unified specification format of the action is
+ * `title: [Title] [Subtitle] [Fade In] [Stay] [Fade Out]`
+ * Title text application that contains spaces · Enclose
+* **Refresh** Actions can now specify icon slots to refresh a single icon
+* **ActionOption** Action parameters are now recommended to use the format definition of `{[TYPE]=[VALUE]}`
+* **InputCatcher** The standard parameters of the catcher now include `type`, `start`, `cancel`, `end`. The special parameters are `display`, `itemLeft`, `itemRight`, `content` & add BOOK type catcher
+
+#### Data
+
+* Meta & Data function module is rewritten, and GlobalData is added to set global variables
+* Can be called by function
+
+#### Command
+
+* Item repo and item conversion are combined into one command
+* Sound preview function is rewritten based on ReceptacleAPI
+* Rewrite the performance loss statistics function
+* Menu list formatting
+* Debug function rewrite Mirror & Dump function integrated under Debug
+
+{% page-ref page="../usage/command.md" %}
+
+#### API
+
+* Provide `ReceptacleAPI` to create custom virtual containers, use cases can refer to `me.arasple.mc.trmenu.module.internal.command.impl.CommandSounds`
+
+## Start
+
+Because the configuration & language structure of v3.x and v2.x are completely incompatible, the menu is partially compatible
+
+Therefore, in order to better complete the upgrade, please rename the old TrMenu folder for future use.
+
+Then replace the plugin to generate a new TrMenu folder
+
+## Configuration
+
+Quickly understand the configuration structure according to this Wiki & configure as needed
+
+## Menu
+
+Point of incompatibility
+
+* Built-in functions & conditions & scripts
+* Part of the hook material writing
+* \(v1.x \) TITLE action writing
+* \(v1.x\) Action option binding `_||_`
+
+Solution
+
+* Make sure to read the new version of the document completely
+* Rewrite conditions according to the new format (for JavaScript, string related expressions need to be processed)
+
+## Q & A
+
+#### Why not provide one-click migrate
+
+This update discards most of the bloated design of v2 & rewrites almost all modules
+
+Especially when it comes to scripts and conditions, the migration function is not easy to do
+
+If you only use some simple conditions or JavaScript forms, it is relatively easier to upgrade
+
+For example, application replacement function `hasPerm.` -> `perm *`
+
+#### Is it necessary to upgrade
+
+For a large-scale server that is running and a large menu volume, it is not necessary in the short term
+
+New servers or menus with low demand (less conditional expressions) are recommended to upgrade as soon as possible
+
+The old version has ceased maintenance and support, and no longer deals with remaining issues
+
+
+
diff --git a/database/custom.md b/database/custom.md
new file mode 100644
index 0000000..69a6fe8
--- /dev/null
+++ b/database/custom.md
@@ -0,0 +1,3 @@
+# Custom
+
+Refer to: https://trmenu.docs.insinuate.cn/develop/api/events#customdatabaseevent
\ No newline at end of file
diff --git a/database/local.md b/database/local.md
new file mode 100644
index 0000000..a4de16e
--- /dev/null
+++ b/database/local.md
@@ -0,0 +1,18 @@
+---
+description: Local database
+---
+
+# LOCAL
+
+## Configuration
+
+```yaml
+Database:
+ Method: LOCAL
+```
+
+## Located
+
+```text
+./plugins/TrMenu/data/data.db
+```
\ No newline at end of file
diff --git a/database/mongodb.md b/database/mongodb.md
new file mode 100644
index 0000000..54b3446
--- /dev/null
+++ b/database/mongodb.md
@@ -0,0 +1,16 @@
+---
+description: MongoDB database
+---
+
+# MONGODB
+
+## Configuration
+
+```yaml
+Database:
+ Method: MONGODB
+ Url:
+ Client: 'mongodb://localhost:3307'
+ Database: trixey
+ Collection: menu
+```
\ No newline at end of file
diff --git a/develop/api/README.md b/develop/api/README.md
new file mode 100644
index 0000000..7ff0182
--- /dev/null
+++ b/develop/api/README.md
@@ -0,0 +1,31 @@
+# API
+
+Maven:
+```xml
+
+
+ roselle-public
+ https://repo.iroselle.com/repository/maven-public/
+
+
+
+
+
+ me.arasple
+ trmenu
+ {LATEST-VERSION}
+ provided
+
+
+```
+
+Gradle Kotlin DSL
+```kotlin
+repositories {
+ maven("https://repo.iroselle.com/repository/maven-public/")
+}
+dependencies {
+ compileOnly("me.arasple:TrMenu:{LATEST-VERSION}")
+}
+
+```
\ No newline at end of file
diff --git a/develop/api/events.md b/develop/api/events.md
new file mode 100644
index 0000000..6909c2e
--- /dev/null
+++ b/develop/api/events.md
@@ -0,0 +1,94 @@
+---
+description: TrMenu built-in events
+---
+
+# Events
+
+## CustomDatabaseEvent
+* Custom Database
+```kotlin
+package me.arasple.mc.trmenu.api.event
+
+import me.arasple.mc.trmenu.module.internal.database.Database
+import taboolib.platform.type.BukkitProxyEvent
+
+/**
+ * @Author sky
+ * @Since 2020-08-14 14:52
+ */
+class CustomDatabaseEvent(val name: String, var database: Database? = null) : BukkitProxyEvent() {
+
+ override val allowCancelled: Boolean
+ get() = false
+}
+```
+
+
+## MenuOpenEvent
+* Menu Open Event
+```kotlin
+package me.arasple.mc.trmenu.api.event
+
+import me.arasple.mc.trmenu.module.display.Menu
+import me.arasple.mc.trmenu.module.display.MenuSession
+import taboolib.platform.type.BukkitProxyEvent
+
+/**
+ * @author Arasple
+ * @date 2021/1/29 17:34
+ */
+class MenuOpenEvent(val session: MenuSession, val menu: Menu, val page: Int, val reason: Reason = Reason.UNKNOWN) :
+ BukkitProxyEvent() {
+
+ enum class Reason {
+
+ RELOAD,
+
+ PLAYER_COMMAND,
+
+ CONSOLE,
+
+ BINDING_COMMANDS,
+
+ BINDING_ITEMS,
+
+ BINDING_SHORTCUT,
+
+ UNKNOWN
+
+ }
+
+}
+```
+
+
+## MenuPageChangeEvent
+* Menu Page Change Event
+```kotlin
+package me.arasple.mc.trmenu.api.event
+
+import me.arasple.mc.trmenu.module.display.MenuSession
+import taboolib.platform.type.BukkitProxyEvent
+
+/**
+ * @author Arasple
+ * @date 2021/2/4 11:33
+ */
+class MenuPageChangeEvent(val session: MenuSession, val from: Int, val to: Int, val override: Boolean) : BukkitProxyEvent()
+```
+
+
+## MenuCloseEvent
+* Menu Close Event
+```kotlin
+package me.arasple.mc.trmenu.api.event
+
+import me.arasple.mc.trmenu.module.display.MenuSession
+import taboolib.platform.type.BukkitProxyEvent
+
+/**
+ * @author Arasple
+ * @date 2021/1/29 17:34
+ */
+class MenuCloseEvent(val session: MenuSession) : BukkitProxyEvent()
+```
\ No newline at end of file
diff --git a/develop/api/receptacle.md b/develop/api/receptacle.md
new file mode 100644
index 0000000..337d7b0
--- /dev/null
+++ b/develop/api/receptacle.md
@@ -0,0 +1,3 @@
+# Receptacle
+
+> This API has been moved to TabooLib 6, so please focus on the [ReceptacleAPI](https://docs.tabooproject.org/plugin/module/ui-receptacle/index.html) document of TabooLib Docs.
\ No newline at end of file
diff --git a/develop/example.md b/develop/example.md
new file mode 100644
index 0000000..db08a62
--- /dev/null
+++ b/develop/example.md
@@ -0,0 +1,23 @@
+# Example
+
+> The following code is demonstrated in accordance with the TabooLib plugin method
+```kotlin
+package com.github.username
+
+import taboolib.common.platform.event.SubscribeEvent
+
+/**
+ * @project Example
+ *
+ * @author Score2
+ * @since 2021/10/23 22:35
+ */
+object Demo {
+
+ @SubscribeEvent
+ fun e(e: MenuOpenEvent) {
+ println("玩家: ${e.session.viewer.name} 打开了菜单: ${e.menu.id}")
+ }
+
+}
+```
\ No newline at end of file
diff --git a/hook/hookplugins.md b/hook/hookplugins.md
new file mode 100644
index 0000000..6dfb4ea
--- /dev/null
+++ b/hook/hookplugins.md
@@ -0,0 +1,13 @@
+# Support Plugins
+
+| Plugin | Use for |
+| :--- | :--- |
+| HeadDatabase | Item material |
+| Oraxen | Item material |
+| PlayerPoints | Actions and variables |
+| SkinsRestorer | Custom player skull textures |
+| ItemsAdder | Item material |
+| Floodgate | Script util |
+| Vault | Actions and variables |
+| FastScript | Custom script (not currently supported) |
+| Zaphkiel | Item material |
\ No newline at end of file
diff --git a/hook/placeholders.md b/hook/placeholders.md
new file mode 100644
index 0000000..9fc3d52
--- /dev/null
+++ b/hook/placeholders.md
@@ -0,0 +1,34 @@
+# PAPI Variables
+
+## Total Menu
+
+> %trmenu\_menus%
+
+## Pass Argument
+
+> %trmenu\_args\_<Index>%
+
+## Metadata Data
+
+> %trmenu\_meta\_<key>
+>
+> %trmenu\_data\_<key>%
+
+## Menu Data
+
+> %trmenu\_menu\_page% \# The page number currently being viewed
+>
+> %trmenu\_menu\_pages% \# The total number of pages in the menu
+>
+> %trmenu\_menu\_next% \# Next page number
+>
+> %trmenu\_menu\_prev% \# Previous page number
+>
+> %trmenu\_menu\_title% \# Title of the currently menu
+
+## JavaScript Operation
+
+> %trmenu\_js\_<Context>%
+
+
+
diff --git a/menu/action/README.md b/menu/action/README.md
new file mode 100644
index 0000000..c201240
--- /dev/null
+++ b/menu/action/README.md
@@ -0,0 +1,2 @@
+# 动作
+
diff --git a/menu/action/option.md b/menu/action/option.md
new file mode 100644
index 0000000..bd8a065
--- /dev/null
+++ b/menu/action/option.md
@@ -0,0 +1,45 @@
+---
+description: 单条动作支持的参数
+---
+
+# 参数
+
+## 延时
+
+> {delay=\[TICKS\]}
+
+```yaml
+# 延时 1sec 发送消息
+- 'tell: Delayed Message {delay=20}'
+```
+
+## 概率
+
+> {chance=\[rate\]}
+
+```yaml
+- 'give-item: material:DIAMOND {chance=0.8}'
+```
+
+## 条件
+
+> {condition=<Expression>}
+
+```yaml
+- 'tell: VIP User Message {condition=perm *user.vip}'
+```
+
+## 遍历
+
+> {players=<Expression>}
+
+```yaml
+- 'tell: A Broadcast Message {players}'
+
+- 'tell: An admin broadcast message {players: perm *admin}'
+```
+
+* 循环为所有满足条件的在线玩家执行该动作
+
+
+
diff --git a/menu/action/reactions.md b/menu/action/reactions.md
new file mode 100644
index 0000000..f1c4d32
--- /dev/null
+++ b/menu/action/reactions.md
@@ -0,0 +1,35 @@
+# 反应 \(动作组\)
+
+## 常规
+
+```yaml
+actions:
+ - 'tell: Hello, %player_name%'
+```
+
+```yaml
+actions: 'tell: Hello, %player_name%'
+```
+
+## 三元动作组
+
+```yaml
+ actions:
+ all:
+ - condition: 'js: utils.chance(0.1)'
+ actions:
+ - 'tell: Prize 1'
+ - 'return'
+ - condition: 'js: utils.chance(0.5)'
+ actions:
+ - 'tell: Prize 2'
+ - 'return'
+ - condition: ''
+ actions:
+ - 'tell: Prize 3'
+```
+
+## 注意
+
+* 动作做的执行结果取决于是否有 return 动作返回,若有返回则为 false
+
diff --git a/menu/action/types.md b/menu/action/types.md
new file mode 100644
index 0000000..54f2ac4
--- /dev/null
+++ b/menu/action/types.md
@@ -0,0 +1,367 @@
+# 类型
+
+## 发送文本
+
+> 向玩家发送一条普通消息
+
+```yaml
+- 'tell: Hello There'
+```
+
+```yaml
+- 'tell: Hello There;There is a message'
+- 'tell: First Line\nSecond Line!'
+```
+
+## 强制聊天
+
+> 让玩家发送一条消息到聊天框
+
+```yaml
+- 'chat: Hello Everyone!'
+```
+
+## 发送音效
+
+> 向玩家播放目标音效
+
+```yaml
+- 'sound: BLOCK_ANVIL_HIT-1-2'
+```
+
+```yaml
+- 'sound: BLOCK_BEEHIVE_ENTER-1-2;BLOCK_BUBBLE_COLUMN_WHIRLPOOL_INSIDE-1-0'
+```
+
+## 发送 Title
+
+> 向玩家展示一条 Title 信息
+
+```yaml
+# 用 \s 代替标题中需要使用的空格
+- 'title: WELCOME %player_name%~ 20 20 10'
+
+# 用 ` 括起内容,支持直接用空格
+- 'title: `&c&lPermission Required` `&7&lYou need permission &6<rmenu.use &7<o open this menu` 15 20 15'
+```
+
+* TITLE 后对应的三个整数型参数分别为 FadeIn, Stay, FadeOut \(渐入、停留、渐出\) 的时间,可以不设置
+
+## 发送 Actionbar
+
+> 向玩家展示一条 Actionbar 信息
+
+```yaml
+- 'actionbar: Hello There'
+```
+
+## 发送 Tellraw
+
+> 向玩家发送一条原版 Json 消息,或利用 TrMenu 轻松构建一条
+
+{% tabs %}
+{% tab title="原版 JSON" %}
+```yaml
+- 'json: {"text":"Hello World!"}'
+```
+{% endtab %}
+
+{% tab title="构建消息 1" %}
+```yaml
+- 'json: Hello World! <--- Click That'
+```
+{% endtab %}
+
+{% tab title="构建消息 2" %}
+```
+- 'json: &3Hello, &b%player_name%&3, Buy Ranks on our <&2&nstore@url=https://store.example.net> &3site.'
+```
+{% endtab %}
+{% endtabs %}
+
+## 执行命令
+
+> 调用对象执行命令
+
+### 玩家身份
+
+```yaml
+- 'command: spawn'
+```
+
+```yaml
+# 以 ; 分隔,可以执行多个命令
+# 下方动作等同于
+# - 'command: spawn'
+# - 'command: say I am Back'
+
+- 'command: spawn ; say I am Back'
+```
+
+### Operator 身份
+
+```yaml
+- 'op: kick {meta:input}'
+```
+
+```yaml
+- 'op: kick {meta:input} ; broadcast I just kicked {meta:input}'
+```
+
+{% hint style="danger" %}
+实现以 Op 执行命令的方法是 **授予 OP,执行操作,撤销 OP**
+
+在可以用 **CONSOLE** 控制台执行命令实现需求的情况下,**不推荐**使用此动作
+{% endhint %}
+
+### Console 控制台
+
+```yaml
+- 'console: lp perm add %player_name% vip.user; give %player_name% diamond 64'
+```
+
+## 跨服传送
+
+> BungeeCord 群组下,跨服传送玩家到目标服务器
+
+```yaml
+- 'server: Lobby'
+```
+
+## 菜单
+
+### 关闭菜单
+
+```yaml
+- 'close'
+```
+
+### 关闭菜单 \(静默\)
+
+> 通过此形式关闭菜单,将不会执行 Events.Close 的动作组
+
+```yaml
+- 'force-close'
+```
+
+### 开启菜单
+
+```yaml
+- 'open: Example'
+```
+
+```yaml
+# 打开菜单 Shop-Handler,
+# 指定参数为 [APPLE, 10, 1]
+
+- 'open: Shop-Handler APPLE 10 1'
+```
+
+```yaml
+# 打开菜单 Browser 的指定页码 3
+
+- 'open: Browser:3'
+```
+
+### 开启菜单 \(静默\)
+
+> 通过此形式开启菜单,将不会执行 Events.Open 的动作组
+
+```yaml
+- 'force-open: