+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see .
+
+Also add information on how to contact you by electronic and paper mail.
+
+If your software can interact with users remotely through a computer
+network, you should also make sure that it provides a way for users to
+get its source. For example, if your program is a web application, its
+interface could display a "Source" link that leads users to an archive
+of the code. There are many ways you could offer source, and different
+solutions will be better for different programs; see section 13 for the
+specific requirements.
+
+You should also get your employer (if you work as a programmer) or school,
+if any, to sign a "copyright disclaimer" for the program, if necessary.
+For more information on this, and how to apply and follow the GNU AGPL, see
+.
\ No newline at end of file
diff --git a/LICENSES/MIT.txt b/LICENSES/MIT.txt
new file mode 100644
index 000000000..4126cb8c2
--- /dev/null
+++ b/LICENSES/MIT.txt
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2025-present SkyCrypt's team and Lea Seibert
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/NOTICE b/NOTICE
new file mode 100644
index 000000000..92e90347a
--- /dev/null
+++ b/NOTICE
@@ -0,0 +1,36 @@
+SkyCrypt Frontend Licensing Notice
+
+SkyCrypt Frontend is primarily licensed under the GNU Affero General Public
+License version 3 (GNU AGPLv3).
+
+Unless a more specific license notice applies, source code, documentation,
+configuration, build scripts, and original non-excepted assets introduced or
+modified by SkyCrypt contributors from the June 2026 license-change commit
+onward are licensed under GNU AGPLv3.
+
+This license transition does not revoke, replace, or limit any rights that were
+previously granted under the MIT License for earlier versions, files, or
+contributions. Pre-change contributions remain available under the MIT License
+to the extent they were originally licensed that way.
+
+The following SkyCrypt brand/logo assets remain under the MIT License
+and are not offered under the repository's AGPL default:
+
+- static/apple-touch-icon-precomposed.png
+- static/favicon.ico
+- static/favicon.png
+- static/img/logo.avif
+- static/img/logo_black.avif
+- static/img/newsroom.avif
+- static/img/app-icons/**
+
+The MIT brand asset exception does not grant trademark rights, service
+mark rights, impersonation rights, or permission to use SkyCrypt branding in a
+way that is confusing, misleading, or suggests endorsement by the SkyCrypt
+project.
+
+Third-party libraries, resources, fonts, textures, APIs, and other dependencies
+remain under their own licenses. Built output generated from SkyCrypt-owned
+AGPL-covered source is covered by GNU AGPLv3, except for third-party
+components and explicitly listed MIT brand assets, which retain their own
+license notices.
diff --git a/README.md b/README.md
index 5e78fe4d1..edb500327 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,29 @@ Refer to the CONTRIBUTING.md file for more inform
> [!TIP]
> Contributions are not limited to code. Making suggestions, reporting bugs, and sharing the project with others are all forms of contribution that are highly appreciated.
+Licensing
+
+SkyCrypt Frontend uses a split license model:
+
+| Material | License | Notes |
+| ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------- | ------------------------------------------------------------------------------------------------------------------------------ |
+| Source code, documentation, configuration, build scripts, and original non-excepted assets introduced or modified from the June 2026 license-change commit onward | [GNU AGPLv3](./LICENSE) | Network use of modified versions must provide users access to the corresponding source code. |
+| Earlier versions and pre-change contributions previously released under MIT | MIT | Existing MIT grants are preserved and are not revoked by this transition. |
+| SkyCrypt brand/logo asset exception | MIT | These assets are explicitly listed in [`NOTICE`](./NOTICE) and [`static/BRAND_ASSETS_LICENSE`](./static/BRAND_ASSETS_LICENSE). |
+| Third-party libraries, resources, APIs, fonts, and textures | Their respective licenses | See upstream projects and package metadata for their terms. |
+
+The MIT brand assets are:
+
+- `static/apple-touch-icon-precomposed.png`
+- `static/favicon.ico`
+- `static/favicon.png`
+- `static/img/logo.avif`
+- `static/img/logo_black.avif`
+- `static/img/newsroom.avif`
+- `static/img/app-icons/**`
+
+Unless a file has a more specific license notice, new contributions to this repository are accepted under GNU AGPLv3.
+
Credits
Original Site: [sky.lea.moe](https://sky.lea.moe/) by LeaPhant
diff --git a/REUSE.toml b/REUSE.toml
new file mode 100644
index 000000000..36a2e46d2
--- /dev/null
+++ b/REUSE.toml
@@ -0,0 +1,21 @@
+version = 1
+
+[[annotations]]
+path = ["*", "**/*"]
+precedence = "closest"
+SPDX-FileCopyrightText = "2025-present SkyCrypt Team"
+SPDX-License-Identifier = "AGPL-3.0-only"
+
+[[annotations]]
+path = [
+ "static/apple-touch-icon-precomposed.png",
+ "static/favicon.ico",
+ "static/favicon.png",
+ "static/img/logo.avif",
+ "static/img/logo_black.avif",
+ "static/img/newsroom.avif",
+ "static/img/app-icons/**"
+]
+precedence = "override"
+SPDX-FileCopyrightText = "2025-present SkyCrypt's team and Lea Seibert"
+SPDX-License-Identifier = "MIT"
diff --git a/package.json b/package.json
index 4f7be7fe9..bd4b4aa16 100644
--- a/package.json
+++ b/package.json
@@ -2,6 +2,7 @@
"name": "skycrypt-frontend",
"version": "3.7.0",
"private": true,
+ "license": "AGPL-3.0-only",
"type": "module",
"repository": {
"type": "git",
diff --git a/src/lib/components/header/Info.svelte b/src/lib/components/header/Info.svelte
index b4bf38234..b3a2c7027 100644
--- a/src/lib/components/header/Info.svelte
+++ b/src/lib/components/header/Info.svelte
@@ -24,7 +24,7 @@
{#if packageVersion}{packageVersion}{/if}
{#if commitHash}
- {#if packageVersion}{"("}{/if}{commitHash}{#if packageVersion}{")"}{/if}
+ {#if packageVersion}({/if}{commitHash}{#if packageVersion}){/if}
{/if}
@@ -35,6 +35,9 @@
You can report bugs, suggest features on Discord, and/or contribute to the code on GitHub. It would be much appreciated!
+
+ SkyCrypt Frontend is open source under GNU AGPLv3. View the source on GitHub.
+
Join our community on Discord!
diff --git a/static/BRAND_ASSETS_LICENSE b/static/BRAND_ASSETS_LICENSE
new file mode 100644
index 000000000..7120877ff
--- /dev/null
+++ b/static/BRAND_ASSETS_LICENSE
@@ -0,0 +1,16 @@
+Brand Assets - MIT License
+
+This notice applies only to the following SkyCrypt brand/logo assets:
+
+- static/apple-touch-icon-precomposed.png
+- static/favicon.ico
+- static/favicon.png
+- static/img/logo.avif
+- static/img/logo_black.avif
+- static/img/newsroom.avif
+- static/img/app-icons/**
+
+These files remain under the MIT License and are not offered under the
+repository's GNU AGPLv3 default.
+
+See ../LICENSES/MIT.txt for the MIT License text.