Skip to main content

read-temp-file

Reads the content of a file located in the temporary directory (temp/) which is otherwise ignored by git.

الانتقال إلى التثبيت

معلومات المصدر

المستودع
blockscout/mcp-server
آخر نشاط في المصدر
١٥ مايو ٢٠٢٦ في ٢٢:٢٨
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٤٦
التفرعات
٢٥

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

مستكشف الملفات
2 ملفات

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
name
read-temp-file
description
Reads the content of a file located in the temporary directory (temp/) which is otherwise ignored by git.
# Read Temp File Skill This skill allows you to safely read files from the project's temporary directory `temp/`, bypassing standard git-ignore restrictions. ## Instructions When you need to read a file from the `temp/` directory (e.g., to verify the content of a generated issue description): 1. **Do NOT use the `read_file` tool.** It will fail for ignored files. 2. Instead, use the `run_shell_command` tool to execute the helper script. 3. Command format: `python3 .gemini/skills/read-temp-file/scripts/read_temp_file.py <file_path>` ### Example To read `temp/gh_issues/issue_description.md`: ```bash python3 .gemini/skills/read-temp-file/scripts/read_temp_file.py temp/gh_issues/issue_description.md ``` ### Constraints * The file **must** be inside the `temp/` directory. * The file **must not** be binary. * The file **must not** exceed 2000 lines.
عرض على GitHub