diff --git a/paper-api/src/main/java/org/bukkit/package-info.java b/paper-api/src/main/java/org/bukkit/package-info.java
index da7d9f12c5..f4f8efcd03 100644
--- a/paper-api/src/main/java/org/bukkit/package-info.java
+++ b/paper-api/src/main/java/org/bukkit/package-info.java
@@ -1,5 +1,23 @@
/**
- * More generalized classes in the API.
+ * The root package of the Bukkit API, contains generalized API classes.
+ *
+ * Note: While the Bukkit API makes every effort to ensure stability, this is
+ * not guaranteed, especially across major versions. In particular the following
+ * is a (incomplete) list of things that are not API.
+ *
+ * - Implementing interfaces. The Bukkit API is designed to only be
+ * implemented by server software. Unless a class/interface is obviously
+ * designed for extension (eg {@link org.bukkit.scheduler.BukkitRunnable}), or
+ * explicitly marked as such, it should not be implemented by plugins. Although
+ * this can sometimes work, it is not guaranteed to do so and resulting bugs
+ * will be disregarded.
+ * - Constructing inbuilt events. Although backwards compatibility is
+ * attempted where possible, it is sometimes not possible to add new fields to
+ * events without breaking existing constructors. To ensure that the API
+ * continues to evolve, event constructors are therefore not plugin API.
+ * - Implementation classes. Concrete implementation classes packaged with
+ * Bukkit (eg those beginning with Simple) are not API. You should access them
+ * via their interfaces instead.
+ *
*/
package org.bukkit;
-