スキル一覧に戻る
minami110

gdscript-file-manager

by minami110

Godot 4 plugin that extends GDScript's Signal and Callable.

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

SKILL.md


name: GDScript File Manager description: Move, rename, or delete GDScript files with their .uid files for Godot projects. Use when reorganizing code, renaming scripts, or removing unused GDScript files.

GDScript File Manager

Manage GDScript files (.gd) along with their corresponding .uid files.

Core Principle

Godot Engine auto-generates a .uid file for each resource. Always handle .gd and .uid files together.

Operations

Move Files

# 1. Verify destination
ls <destination-dir>

# 2. Move both files
mv <source>.gd <destination>.gd && mv <source>.gd.uid <destination>.gd.uid

# 3. Verify
ls <destination-dir> && ls <source-dir>

Rename Files

# 1. Rename both files
mv <old-name>.gd <new-name>.gd && mv <old-name>.gd.uid <new-name>.gd.uid

# 2. Verify
ls -la <directory>

Delete Files

# 1. Verify target
ls -la <directory>

# 2. Delete both files
rm <filename>.gd && rm <filename>.gd.uid

# 3. Verify
ls -la <directory>

Important Notes

  • Never manually create or edit .uid files - Godot manages them automatically
  • Always process both files together to avoid breaking project references
  • Verify files before operations using ls commands

See examples.md for detailed examples and troubleshooting.

スコア

総合スコア

65/100

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

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

+5

レビュー

💬

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