RuleStack

Configs

Stacks

Compare

Diff

RuleStack

Configs

Stacks

Compare

Diff

Read API

RuleStack

Configs

Stacks

Compare

Diff

Read API

Configs/Cursor rules/survivorsunited/mods-su-compostables

Cursor rule

.cursor/rules/recipe-json-standards.mdc
Cursor rules

Quality

62/100

Scores the file, not the repository.

Length

294 words

10 headings · 4 code blocks

Repository

0

— · pushed 47 days ago

Last changed

3 days ago

First indexed 3 days ago.
survivorsunited/mods-su-compostables/.cursor/rules/recipe-json-standards.mdcRawGitHub
1# JSON Recipe Standards for Minecraft
2 
3## Recipe File Structure
4- Place recipes in `src/main/resources/data/{modid}/recipes/`
5- Use appropriate recipe type for your crafting method
6- Use descriptive filenames that match the output item
7 
8## Common Recipe Types
9- `minecraft:crafting_shaped` - Shaped crafting table recipes
10- `minecraft:crafting_shapeless` - Shapeless crafting recipes
11- `minecraft:smelting` - Furnace recipes
12- `minecraft:blasting` - Blast furnace recipes
13- `minecraft:smoking` - Smoker recipes
14- `minecraft:campfire_cooking` - Campfire recipes
15- `minecraft:stonecutting` - Stonecutter recipes
16- `minecraft:smithing` - Smithing table recipes
17 
18## Shaped Recipe Format
19```json
20{
21 "type": "minecraft:crafting_shaped",
22 "pattern": [
23 "ABC",
24 "DEF",
25 "GHI"
26 ],
27 "key": {
28 "A": {"item": "minecraft:diamond"},
29 "B": {"item": "minecraft:stick"},
30 "C": {"tag": "minecraft:planks"}
31 },
32 "result": {
33 "item": "modid:custom_item",
34 "count": 1
35 },
36 "show_notification": true
37}
38```
39 
40## Shapeless Recipe Format
41```json
42{
43 "type": "minecraft:crafting_shapeless",
44 "ingredients": [
45 {"item": "minecraft:diamond"},
46 {"item": "minecraft:stick"},
47 {"tag": "minecraft:planks"}
48 ],
49 "result": {
50 "item": "modid:custom_item",
51 "count": 1
52 }
53}
54```
55 
56## Smelting Recipe Format
57```json
58{
59 "type": "minecraft:smelting",
60 "ingredient": {"item": "minecraft:iron_ore"},
61 "result": "minecraft:iron_ingot",
62 "experience": 0.7,
63 "cookingtime": 200
64}
65```
66 
67## Pattern Guidelines
68- Use 3x3 grid for shaped recipes (can be smaller)
69- Use single uppercase letters for ingredient keys
70- Space characters represent empty slots
71- Pattern should be visually intuitive
72- Consider multiple valid patterns for flexibility
73 
74## Ingredient Types
75- `{"item": "minecraft:item_name"}` - Specific item
76- `{"tag": "minecraft:tag_name"}` - Any item with tag
77- `[{"item": "..."}, {"item": "..."}]` - Choice of items
78 
79## Custom Tags
80Create tags in `src/main/resources/data/{modid}/tags/items/`:
81```json
82{
83 "replace": false,
84 "values": [
85 "minecraft:oak_log",
86 "minecraft:birch_log",
87 "#minecraft:logs"
88 ]
89}
90```
91 
92## Best Practices
93- Use tags for ingredient flexibility
94- Keep recipes balanced and logical
95- Test all recipes in-game
96- Document complex recipes
97- Consider recipe unlocking/advancements
98- Use consistent naming conventions
99- Avoid recipe conflicts with other mods
100description:
101globs:
102alwaysApply: false
103---
104 

Sections

  • JSON Recipe Standards for Minecraft
  • Recipe File Structure
  • Common Recipe Types
  • Shaped Recipe Format
  • Shapeless Recipe Format
  • Smelting Recipe Format
  • Pattern Guidelines
  • Ingredient Types
  • Custom Tags
  • Best Practices

What it covers

lint-formatcode-stylearchitecturetypes

Stack — with the evidence

react

(0.70)

typescript

(0.60)

java

(0.60)

github-actions

(0.60)

javascript

(0.50)

Format

Cursor rules

The most expressive format here. Many small .mdc files, each with frontmatter declaring when it should load, so a rule about migrations only enters context when a migration is open. Costs the most to maintain and only one editor reads it.

What the corpus says about it

Repository

Owner
survivorsunited
Language
—
License
—
Archived
no

All configs in this repo

Also in survivorsunited/mods-su-compostables

Diff this repo’s formats

One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?

The other instruction files in this repository
RepositoryFormatStackCoversScoreChanged
survivorsunited/mods-su-compostables.cursor/rules/ci-cd-workflow.mdc · 0Cursor rulesreacttypescript+3setupbuildgitsecurity+363/1003 days ago
survivorsunited/mods-su-compostables.cursor/rules/development-workflow.mdc · 0Cursor rulesreacttypescript+3setupbuildteststyle+486/1003 days ago
survivorsunited/mods-su-compostables.cursor/rules/documentation-standards.mdc · 0Cursor rulesreacttypescript+3setupbuildtestlint-format+491/1003 days ago
survivorsunited/mods-su-compostables.cursor/rules/gradle-build-standards.mdc · 0Cursor rulesreacttypescript+3buildstyledependenciesdeployment78/1003 days ago
survivorsunited/mods-su-compostables.cursor/rules/java-coding-standards.mdc · 0Cursor rulesreacttypescript+3stylearch58/1003 days ago
survivorsunited/mods-su-compostables.cursor/rules/proj-compostables.mdc · 0Cursor rulesreacttypescript+3archsecuritydeploymentagent-behaviour+166/1003 days ago
survivorsunited/mods-su-compostables.cursor/rules/project-overview.mdc · 0Cursor rulesreacttypescript+3buildarchdeploymentagent-behaviour+167/1003 days ago
survivorsunited/mods-su-compostables.cursor/rules/rules.mdc · 0Cursor rulesreacttypescript+3buildteststylearch+492/1003 days ago
Diff against .cursor/rules/ci-cd-workflow.mdc Diff against .cursor/rules/development-workflow.mdc Diff against .cursor/rules/documentation-standards.mdc Diff against .cursor/rules/gradle-build-standards.mdc Diff against .cursor/rules/java-coding-standards.mdc Diff against .cursor/rules/proj-compostables.mdc Diff against .cursor/rules/project-overview.mdc Diff against .cursor/rules/rules.mdc

Similar configs

Same format, overlapping stack, ranked by quality.

Same format, overlapping stack, ranked by quality
RepositoryFormatStackCoversScoreChanged
hiromaily/go-crypto-wallet.cursor/rules/typescript.mdc · 126Cursor rulesgobun+5setupbuildtestlint-format+6100/1003 days ago
TechSquidTV/Hermes.cursor/rules/10-hermes-api.mdc · 45Cursor rulestypescriptpytest+15testlint-formatstylearch+5100/1003 days ago
markstev/mark-starter.cursor/rules/frontend.mdc · 0Cursor rulestypescriptturborepo+14setuptestlint-formatstyle+699/1003 days ago
Allymahmoud/case-intake-platform.cursor/rules/frontend.mdc · 0Cursor rulestypescriptturborepo+13setuptestlint-formatstyle+799/1003 days ago
dodgecfr/combatfilms-webapp.cursor/rules/frontend.mdc · 0Cursor rulestypescriptturborepo+15setuptestlint-formatstyle+799/1003 days ago
deifos/clipmira-subtitles.cursor/rules/frontend.mdc · 1Cursor rulestypescriptnextjs+5setuptestlint-formatstyle+799/1003 days ago
langflow-ai/langflow.cursor/rules/docs_development.mdc · 153kCursor rulespythonnode+16setupbuildtestlint-format+797/1003 days ago
TechSquidTV/Hermes.cursor/rules/20-hermes-api-tests.mdc · 45Cursor rulestypescriptpytest+15teststyletesting-strategysecurity+397/1003 days ago
RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack

RuleStack

Built by

Kynth Studio

Directory

Configs
Stacks
Compare formats
Diff two configs
Best AGENTS.md examples

Formats

AGENTS.md
CLAUDE.md
Cursor rules
Copilot instructions

Reference

Read API
Corpus health
Privacy Policy
Terms

RuleStack