원클릭으로
file-read-skill
Read file contents with line numbers and pagination support.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Read file contents with line numbers and pagination support.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use this skill to generate well-branded interfaces and assets for OpenCompany (zeenie.ai), either for production or throwaway prototypes/mocks/etc. Contains essential design guidelines, colors, type, fonts, assets, and UI kit components for prototyping.
Launch Android applications by package name. Open any installed app programmatically.
Get list of installed Android applications with package names, versions, and metadata.
Control Android audio - get/set volume, mute/unmute for media, ringtone, notification, and call volumes.
Monitor Android device battery status, level, charging state, temperature, and health.
Control Android Bluetooth - enable, disable, get status, and list paired devices.
| name | file-read-skill |
| description | Read file contents with line numbers and pagination support. |
| allowed-tools | file_read |
| metadata | {"author":"opencompany","version":"1.0","category":"filesystem"} |
Read file contents with line-numbered output and pagination. Uses deepagents filesystem backend.
Path sandbox: all paths resolve inside the per-workflow workspace root. Use workspace-relative paths (e.g. reports/data.csv); .. and ~ segments are rejected, and absolute paths are remapped into the workspace. Use fs_search with mode: "ls" to discover what exists.
| Field | Type | Required | Description |
|---|---|---|---|
| file_path | string | Yes | Path to the file to read |
| offset | int | No | Line number to start from, 0-indexed (default: 0) |
| limit | int | No | Maximum lines to read (default: 100, max: 10000) |
Read a file:
{"file_path": "/path/to/file.py"}
Read with pagination:
{"file_path": "/path/to/large_file.py", "offset": 100, "limit": 50}
{
"content": "1\tline one\n2\tline two\n...",
"file_path": "/path/to/file.py",
"encoding": "utf-8"
}