Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/zgiai/zgi --skill file-reader명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | file-reader |
| description | Read text content from files the current user can access. |
| when_to_use | Use this skill when the user asks to inspect, quote, summarize, compare, translate, or answer from an uploaded file, historical file reference, or a file shown in the console files page. |
| provider_type | builtin |
| provider_id | files |
| runtime_type | tool |
| tools | ["list_visible_files","read_file"] |
| max_calls_per_turn | 10 |
| timeout_seconds | 120 |
| tool_governance | {"list_visible_files":{"tool_id":"file.list_visible","skill_id":"file-reader","domain":"files","effect":"read","asset_type":"file","risk_level":"low","requires_asset_resolution":false,"reversible":false,"bulk_sensitive":false,"external_side_effect":false,"permission_scopes":["file:read"],"default_approval_policy":"auto_by_permission_tier","allowed_permission_tiers":["basic","advanced","full"],"audit_required":true,"idempotency_required":false},"read_file":{"tool_id":"file.read","skill_id":"file-reader","domain":"files","effect":"read","asset_type":"file","risk_level":"low","requires_asset_resolution":true,"reversible":false,"bulk_sensitive":false,"external_side_effect":false,"permission_scopes":["file:read"],"default_approval_policy":"auto_by_permission_tier","allowed_permission_tiers":["basic","advanced","full"],"audit_required":true,"idempotency_required":false}} |
| display | {"icon":"file-text","category":"document_processing","scenarios":["document_handling","office_collaboration","knowledge_research"],"label":{"en_US":"File Reader","zh_Hans":"文件读取"},"description":{"en_US":"Designed for understanding uploaded, historical, or console files; locates accessible files and reads their text for answering, summarizing, comparing, or translating.","zh_Hans":"适用于理解上传文件、历史文件或控制台文件,可定位并读取有权限访问的文本,用于问答、总结、对比或翻译。"},"when_to_use":{"en_US":"Use when an answer needs content from a specific file available to the current user."},"tags":{"en_US":["File","Reading"]}} |
| supported_callers | ["aichat"] |
Use this skill to list visible file context or read content from a file that has already been resolved for the current assistant turn.
list_visible_files when that context is missing, ambiguous, stale, or needs an authoritative refresh. Do not use read_file for a list-only request unless the user asks for file contents.read_file with file_id. Set max_chars only when you need more or less returned content.content_status before answering:
content_status is extracted, answer from content.content_status is empty, say the file has no extractable text content.content_status is error, explain that the file could not be read and include the short error reason when useful.content returned by read_file is not durable across history reloads, approvals, navigation, refresh, or later tool phases. If later steps will use the file body, a summary, theme, topic, quote, title, prompt, config value, generated asset, or final answer derived from this file, call submit_turn_state before leaving the file-reading phase. Record a concise reusable fact with kind=working_fact, visibility=model_only, source=file-reader/read_file, and a meaningful key such as source_file_summary, source_file_theme, or exact_short_text. When the summary is useful for the user to verify, use kind=user_deliverable, visibility=user_visible, and a short title/content instead.content_truncated is true and the missing tail matters, ask for a narrower question or retry with a higher up to the tool limit.max_charsfile-manager when it is available in the current files-page context. If file-manager is not available, explain that the current chat can read files but cannot perform that file-management operation from this surface.read_file accepts:
file_id: required file ID from resolved context.max_chars: optional maximum returned content characters. Defaults to 4000 and is capped at 12000.content_status. Use content only when content_status=extracted. If content_status=empty, report that no extractable text was found. If content_status=error, report the actual read failure instead of summarizing from filename or page metadata.content_lifetime=current_tool_result_only and content_redacted_in_history=true, do not assume the raw content will be available after continuation boundaries. If handoff_recommended=true and later steps depend on this content or a derived summary, call submit_turn_state before continuing to those steps.list_visible_files accepts the current page query when available: page, page_size, keyword, sort, extension, processing_status, category, folder_id, workspace_id, and optional selected_ids. It returns:
source=backend_api: confirms the list came from the authoritative backend query.count: number of files in the returned page.selected_count: number of selected files.files: ordered files with ID, name, extension, MIME type, optional workspace ID, and verified selection state.files list and count as the current visible-file state. Do not infer file contents from this list-only result.read_file result is required.file_id or max_chars when the tool result indicates a recoverable issue.