スキル一覧に戻る
clay07g

gtnh-skill

by clay07g

Claude skill for answering questions about the GregTech: New Horizons modpack for Minecraft, based on data mining the installation.

1🍴 0📅 2025年12月18日
GitHubで見るManusで実行

SKILL.md


name: gtnh-skill description: This skill provides accurate data about GT New Horizons based on official data dumps. Use when answering questions about GTNH (GregTech New Horizons).

GTNH Skill

To gain the proper context about GTNH, we can use the various resources at:

  • ./beginner-faq.md - A basic set of information about GTNH, focusing on beginner-information.
  • ./quest-structure.md - A detailed description of the quest system in GTNH with progression tiers. Good information to have before querying the database.

We can also use the "gtnh-skill.jar" CLI tool to query information. Quests often contain various tutorials and game information as the game progresses, which is largely structured through the quest system itself. By reading quest information and understanding the progression, we can have accurate context about the game.

CLI Tool Usage

java -jar gtnh-skill.jar info  # Show tables and row counts
java -jar gtnh-skill.jar query "SQL_QUERY (SQLite syntax)"

Key Tables

  • quests_fts - Full-text search (use MATCH 'term')
  • quest_lines - Quest categories (46 total)
  • quests - All quests (3,684 total)
  • quest_prerequisites - Quest dependencies
  • task_items - Items required by quests
  • reward_items - Quest rewards

Examples

# Search for quests mentioning "quantum"
java -jar gtnh-skill.jar query "SELECT name FROM quests_fts WHERE quests_fts MATCH 'quantum'"

# List all quest lines in order
java -jar gtnh-skill.jar query "SELECT name FROM quest_lines ORDER BY display_order"

# Find quests in Tier 5
java -jar gtnh-skill.jar query "SELECT q.name FROM quests q JOIN quest_line_entries e ON q.id = e.quest_id JOIN quest_lines l ON e.quest_line_id = l.id WHERE l.name LIKE '%Tier 5%' LIMIT 20"

# Get prerequisites for a quest
java -jar gtnh-skill.jar query "SELECT p.name FROM quest_prerequisites qp JOIN quests q ON qp.quest_id = q.id JOIN quests p ON qp.prerequisite_quest_id = p.id WHERE q.name LIKE '%Quantum Storage%'"

General Quest Structure

To help find relevant results, here is the general structure of quest progression:

Non-database information

Not all questions can be answered with just the CLI tool / database.

Other accurate sources:

  • GT New Horizons Wiki - Provides basic information and some tutorials. Links will need to be followed from this main page.
  • GT New Horizons Github - rarely useful, but could contain useful information
  • Pre-known knowledge about the installed mods in GTNH and minecraft - can be useful as a possibility, but very often inaccurate due to a high chance of hallucinations or outdated information.

If you cannot support your answer with the CLI tool or the wiki, it's still okay to present as a "possible" answer.

Answering questions

Once you have the proper context, you can form an answer. Try to rely on CLI/database data, then wiki content, and finally other sources. Make sure to mention where the information comes from so that the user can understand how to treat the information.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です