Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Insufficient Gallery Images

%R2.1%, we ask that projects like yours show off their content using images in the %PROJECT_GALLERY_FLINK%, or optionally in the Description, in order to effectively and clearly inform users of its content. \
Keep in mind that you should: \
Keep in mind that you should:

- Set a featured image that best represents your project.
- Ensure all your images have titles that accurately label the image, and optionally, details on the contents of the image in the images Description.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
## Project Withheld
## AI-generated Content

%R6.2b%, this project is not suitable to be published on Modrinth.
%R6.2b%, this project is not suitable to be published publicly on Modrinth.

With this in mind, this project will remain unlisted, so you may still share it privately with a direct link. \
We appreciate your understanding and ask that you **do not resubmit**.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Thank you for your report, we understand your concerns.

At this time, Modrinth does not prohibit the use of any specific tool, including AI tools, in the creation of project pages or content on Modrinth.</br>
If you have reason to believe that this project does not or cannot function as advertised, may be intentionally misleading, or otherwise violates [Modrinth's Content Rules](https://modrinth.com/legal/rules) please create a new report with the relevant evidence.
At this time, projects containing AI-generated content released before August 13th are given a 45-day grace period which ends on September 27th to ensure full compliance with [Modrinth's Content Rules](https://modrinth.com/legal/rules), after which, if the author does not comply, action may be taken.

To make it easier on our moderation team working to remove this content when the time comes, we ask that you wait to create any further reports regarding AI-generated content until September 28th 2026 or later, thank you.
6 changes: 5 additions & 1 deletion packages/moderation/src/data/stages/rules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { injectProjectPageContext } from '@modrinth/ui'
import { computed } from 'vue'

import { group, markdown, stage, toggle } from '../../types/node'
import { Priorities } from '../priorities'

export default function () {
const { projectV3: project } = injectProjectPageContext()
Expand Down Expand Up @@ -77,7 +78,10 @@ export default function () {
.suggestedStatus('flagged')
.message(),

toggle('ai-generated', 'AI Generated').suggestedStatus('flagged').message(),
toggle('ai-generated', 'AI Generated')
.suggestedStatus('flagged')
.message()
.priority(Priorities.alerts),
toggle('ai-images', 'AI Images').suggestedStatus('flagged').message(),

toggle('rule-breaking-other', 'Other')
Expand Down
Loading