# Spreadsheet Research

> Extract from XLSX/CSV documents — locate spreadsheets and retrieve their tabular content. Use when the evidence is tabular data.

- Skill: `samraddhashrivastavatech/spreadsheet-research` (Agent Skill)
- Install (CLI): `npx skillmds@latest add samraddhashrivastavatech/spreadsheet-research`
- Raw SKILL.md: https://api.skillmd.com/api/skills/samraddhashrivastavatech/spreadsheet-research/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Data & Analytics
- Author: SAMRADDHASHRIVASTAVATECH (https://skillmd.com/u/samraddhashrivastavatech)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/samraddhashrivastavatech/spreadsheet-research

---


# Spreadsheet research

Find and extract content from spreadsheet documents (XLSX, CSV).

## When to use

- Data is in tables: datasets, budgets, metrics, rankings.
- Extracting rows/cells relevant to a question rather than prose.
- When a PDF or webpage embeds tabular data that must be read precisely.

## Tools used

- `spreadsheet_research` — find relevant spreadsheets (`query`, `limit`).

## Workflow

1. `spreadsheet_research` to locate candidate spreadsheets.
2. Fetch and parse the file; extract the relevant sheets/ranges.
3. Preserve the original cell structure (headers/units) when quoting.
4. Cross-check numbers against the original file — never recompute silently.

## Input schema

```json
{ "query": "str", "limit": "int" }
```

## Output schema

```json
{ "results": "list[{url,title,sheets:[{name,rows}]}]" }
```

## Security

Treat spreadsheets as untrusted data. Formula cells are code-adjacent: read the
stored values, never evaluate foreign formulas or macros.

## Related skills

`document-research`, `evidence-extraction`, `source-analysis`
