一键导入
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"
}