AI prompts
base on A compatibility layer that allows running Fabric mods on NeoForge <p align="center">
<img src="https://raw.githubusercontent.com/Sinytra/.github/main/art/connector_banner_small.png">
</p>
<p align="center">
<a href="https://github.com/Sinytra/Connector/actions/workflows/build.yml"><img src="https://github.com/Sinytra/Connector/actions/workflows/build.yml/badge.svg"></a>
<a href="https://github.com/Sinytra/Connector/releases/latest"><img src="https://img.shields.io/github/v/release/Sinytra/Connector?style=flat&label=Release&include_prereleases&sort=semver"></a>
<a href="https://legacy.curseforge.com/minecraft/mc-mods/sinytra-connector"><img src="https://cf.way2muchnoise.eu/title/sinytra-connector.svg"></a>
<a href="https://modrinth.com/mod/connector"><img src="https://img.shields.io/modrinth/dt/u58R1TMW?color=00AF5C&label=modrinth&style=flat&logo=modrinth"></a>
<a href="https://github.com/Sinytra/ForgifiedFabricAPI"><img src="https://raw.githubusercontent.com/Sinytra/.github/main/badges/forgified-fabric-api-neo/compacter.svg"></a>
<a href="https://discord.sinytra.org"><img src="https://discordapp.com/api/guilds/1141048834177388746/widget.png?style=shield"></a>
<a href="https://nightly.link/Sinytra/Connector/workflows/build/dev/Maven%20Local.zip"><img src="https://img.shields.io/badge/Nightly-Download-9a32f0?logo=github"></a>
</p>
## š About
**Sinytra Connector** is a translation/compatibility layer that allows running [Fabric](https://fabricmc.net) mods
on [NeoForge](https://neoforged.net). Its goal is to bring the two platforms closer together, saving
developers time and effort maintaining their mods for multiple platforms at once, as well as allowing players to play
all their favourite mods in one modpack.
**š The official documentation is available at [sinytra.org](https://sinytra.org/docs).**
### š Related Projects
- Visit the [Mod Compatibility Thread](https://github.com/Sinytra/Connector/discussions/12) to can find information about known working / incompatible mods
- To learn more about how Connector works, read our [Introductory blog post](https://github.com/Sinytra/Connector/discussions/11)
- Developing cross-platform mods? Check out the [Forgified Fabric API](https://github.com/Sinytra/ForgifiedFabricAPI), a port of the Fabric API to NeoForge
- Install [Connector Extras](https://github.com/Sinytra/ConnectorExtras) for improved compatibility with third-party libraries and APIs
### š¬ Join the Community
We have an official [Discord community](https://discord.sinytra.org) for Connector. By joining, you can:
- Get help and technical support from our team and community members
- Keep in touch with the latest development updates and community events
- Engage in the project's development and collaborate with our team
- ... and just hang out with the rest of our community.
## š Usage Guide
To install Connector and its dependencies, follow the same installation steps as you would for any other mods:
1. Install **NeoForge**. We recommend using the latest stable version.
[\[NeoForge's website\]](https://neoforged.net/)
2. Install **Connector**. Get the latest release from one of our official distribution channels and drop the jar in your mods folder.
[\[CurseForge\]](https://curseforge.com/minecraft/mc-mods/sinytra-connector) [\[Modrinth\]](https://modrinth.com/mod/connector) [\[GitHub\]](https://github.com/Sinytra/Connector/releases)
4. Download the **Forgified Fabric API**.
It is meant to be a direct *replacement* for the Fabric API and is not compatible with it.
We'll try our best to avoid loading the Fabric API if it's installed automatically (e.g.
by your modpack manager), but if you have the option to avoid installing it, please do so.
[\[CurseForge\]](https://curseforge.com/minecraft/mc-mods/forgified-fabric-api) [\[Modrinth\]](https://modrinth.com/mod/forgified-fabric-api) [\[GitHub\]](https://github.com/Sinytra/ForgifiedFabricAPI/releases/latest)
5. You're good to go! With all dependencies installed, grab your favourite Fabric mods and
**just drop them in the mods folder** like you would with any NeoForge mods. Connector will handle loading them for
you with no additional steps required.
## š Get help
If you're having trouble running a mod on Connector, join our community on [Discord](https://discord.sinytra.org), ask us
on [GitHub Discussions](https://github.com/Sinytra/Connector/discussions) or open an issue in this repository.
Here's a few tips to follow when reporting issues:
1. Make sure you are using latest available version. Look for existing issues that might've already been answered /
fixed. Think about whether the issue is caused by Connector itself and not another mod you've installed. To test
this, try reproducing the same issue on Fabric.
2. Navigate to [the issues tab](https://github.com/Sinytra/Connector/issues) and open
a [new issue](https://github.com/Sinytra/Connector/issues/new/choose). Select one of the available templates
depending on the topic. Fill in the required fields. In order to increase our chances of identifying and reproducing
the issue, please make sure to include as many details as possible.
3. Once you're done describing the problem, submit the issue. We'll get to you as soon as we can.
Please note that providing as many details as possible is crucial to help us find and resolve the issue faster, while
also getting you a fixed version ASAP.
### Supported versions
ā
**1.21** is our **primary supported version**.
This is the one that will receive new fixes and compatibility improvements.
ā ļø **1.20.1** is our **long-term-support** version and will still receive critical bugfixes.
However, no compatibility fixes will be made.
## āļø License
Sinytra Connector is, and will always remain, licensed under the [MIT License](https://github.com/Sinytra/Connector/blob/master/LICENSE). All files in this repository should be
treated as such unless otherwise explicitly stated.
## š¤ Contributing
Before you decide to make major changes, you might want to discuss them with us beforehand, so that you're not wasting
your time.
To submit your changes to the project, you can contribute
via [Pull-Request](https://help.github.com/articles/creating-a-pull-request).
Here's a few tips to help get your PR approved:
* A PR should be focused on content, rather than syntax changes.
* Use the file you are editing as a style guide.
* Make sure your feature isn't already in the works, or hasn't been rejected previously.
## š ļø Developer guide
If you're a mod developer and you'd like to run Connector in your dev environment, it is possible in just a few steps.
Used Fabric mods must be mapped to `intermediary` so that Connector can process them.
#### ModDevGradle Usage
```groovy
plugins {
// Used to attach the clean mapped Minecraft artifact to run configurations
// Find the latest version at https://maven.su5ed.dev/#/releases/org/sinytra/adapter/userdev/
id 'org.sinytra.adapter.userdev' version '<version>'
}
repositories {
// Make sure to add this to the pluginManagement.repositories block in settings.gradle as well
maven {
name = "Sinytra"
url = "https://maven.su5ed.dev/releases"
}
}
dependencies {
// Add Connector to the launch classpath
additionalRuntimeClasspath "org.sinytra:Connector:<version>"
// Add FFAPI dependency
runtimeOnly "org.sinytra.forgified-fabric-api:forgified-fabric-api:<version>"
// Install desired Fabric mods. Make sure they remain unmapped at runtime
runtimeOnly "some.fabric:mod:<version>"
}
```
## āļø Configuration
All information regarding Connector's configuration options can be found [on our website](https://sinytra.org/docs).", Assign "at most 3 tags" to the expected json: {"id":"8822","tags":[]} "only from the tags list I provide: [{"id":77,"name":"3d"},{"id":89,"name":"agent"},{"id":17,"name":"ai"},{"id":54,"name":"algorithm"},{"id":24,"name":"api"},{"id":44,"name":"authentication"},{"id":3,"name":"aws"},{"id":27,"name":"backend"},{"id":60,"name":"benchmark"},{"id":72,"name":"best-practices"},{"id":39,"name":"bitcoin"},{"id":37,"name":"blockchain"},{"id":1,"name":"blog"},{"id":45,"name":"bundler"},{"id":58,"name":"cache"},{"id":21,"name":"chat"},{"id":49,"name":"cicd"},{"id":4,"name":"cli"},{"id":64,"name":"cloud-native"},{"id":48,"name":"cms"},{"id":61,"name":"compiler"},{"id":68,"name":"containerization"},{"id":92,"name":"crm"},{"id":34,"name":"data"},{"id":47,"name":"database"},{"id":8,"name":"declarative-gui "},{"id":9,"name":"deploy-tool"},{"id":53,"name":"desktop-app"},{"id":6,"name":"dev-exp-lib"},{"id":59,"name":"dev-tool"},{"id":13,"name":"ecommerce"},{"id":26,"name":"editor"},{"id":66,"name":"emulator"},{"id":62,"name":"filesystem"},{"id":80,"name":"finance"},{"id":15,"name":"firmware"},{"id":73,"name":"for-fun"},{"id":2,"name":"framework"},{"id":11,"name":"frontend"},{"id":22,"name":"game"},{"id":81,"name":"game-engine "},{"id":23,"name":"graphql"},{"id":84,"name":"gui"},{"id":91,"name":"http"},{"id":5,"name":"http-client"},{"id":51,"name":"iac"},{"id":30,"name":"ide"},{"id":78,"name":"iot"},{"id":40,"name":"json"},{"id":83,"name":"julian"},{"id":38,"name":"k8s"},{"id":31,"name":"language"},{"id":10,"name":"learning-resource"},{"id":33,"name":"lib"},{"id":41,"name":"linter"},{"id":28,"name":"lms"},{"id":16,"name":"logging"},{"id":76,"name":"low-code"},{"id":90,"name":"message-queue"},{"id":42,"name":"mobile-app"},{"id":18,"name":"monitoring"},{"id":36,"name":"networking"},{"id":7,"name":"node-version"},{"id":55,"name":"nosql"},{"id":57,"name":"observability"},{"id":46,"name":"orm"},{"id":52,"name":"os"},{"id":14,"name":"parser"},{"id":74,"name":"react"},{"id":82,"name":"real-time"},{"id":56,"name":"robot"},{"id":65,"name":"runtime"},{"id":32,"name":"sdk"},{"id":71,"name":"search"},{"id":63,"name":"secrets"},{"id":25,"name":"security"},{"id":85,"name":"server"},{"id":86,"name":"serverless"},{"id":70,"name":"storage"},{"id":75,"name":"system-design"},{"id":79,"name":"terminal"},{"id":29,"name":"testing"},{"id":12,"name":"ui"},{"id":50,"name":"ux"},{"id":88,"name":"video"},{"id":20,"name":"web-app"},{"id":35,"name":"web-server"},{"id":43,"name":"webassembly"},{"id":69,"name":"workflow"},{"id":87,"name":"yaml"}]" returns me the "expected json"