بنقرة واحدة
excel
Read and write Excel/CSV files. Supports .xlsx, .xls, and .csv formats.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Read and write Excel/CSV files. Supports .xlsx, .xls, and .csv formats.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Introduce Sophon and list available capabilities. Use ONLY when the user explicitly asks who you are, what you can do, what your capabilities are, or what skills you have. Do NOT call for greetings, small talk, or when the user has not asked about your identity or capabilities.
Deep research on a topic. Decomposes question into sub-questions, searches and fetches web sources in parallel, synthesizes a structured report with inline citations and a source list. Use when user asks for in-depth research, comprehensive analysis, or a structured report.
Process xlsx workbooks; fill columns from web via key column (URL→crawl, else search), LLM extract per batch. Tools: list_sheets, read_structure, read_sample, fill_by_column. Cross-sheet copy via copy_columns / copy_column_map.
System anomalies, errors, latency diagnosis. Logs, traces, metrics. Orchestrates log-analyze, trace, metrics primitives. Fetches data, frontend renders charts.
Web scraping via Playwright. Use when user wants to fetch page content or scrape a URL.
Memory recall and history exploration. Use for any question about past conversations, previous topics, what the user asked before, or recent activity. Replaces the memory skill.
| name | excel |
| description | Read and write Excel/CSV files. Supports .xlsx, .xls, and .csv formats. |
| metadata | {"type":"primitive","dependencies":""} |
All file paths are relative to the workspace root.
Read data from Excel or CSV file.
| Parameter | Type | Required | Description |
|---|---|---|---|
| file | string | Yes | File path relative to workspace |
| sheet | string/int | No | Sheet name or index (default: 0, first sheet) |
| limit | int | No | Maximum rows to read (default: all) |
| offset | int | No | Starting row (0-based, default: 0) |
Returns: {headers: [...], data: [{col1: val1, ...}], total_rows: N}
Write data to Excel or CSV file. Overwrites existing file.
| Parameter | Type | Required | Description |
|---|---|---|---|
| file | string | Yes | File path relative to workspace |
| data | array | Yes | Array of objects (first row is headers if dict keys used) |
| sheet | string | No | Sheet name (default: "Sheet1") |
Returns: {written: N, file: path}
List all sheet names in an Excel file.
| Parameter | Type | Required | Description |
|---|---|---|---|
| file | string | Yes | File path relative to workspace |
Returns: {sheets: ["Sheet1", "Sheet2", ...]}
{
"headers": ["Company Name", "Website", "Country"],
"data": [
{"Company Name": "Nexa Labs", "Website": "nexa.farm", "Country": "US"},
{"Company Name": "Stronic", "Website": "stronic.com", "Country": "IN"}
],
"total_rows": 100
}
{
"written": 50,
"file": "output.xlsx"
}