# Data Processor

> Data processor skill that installs Python dependencies in sandbox and runs numerical analysis

- Skill: `openjiuwen-ai/data-processor` (Agent Skill)
- Install (CLI): `npx skillmds@latest add openjiuwen-ai/data-processor`
- Raw SKILL.md: https://api.skillmd.com/api/skills/openjiuwen-ai/data-processor/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: openJiuwen-ai (https://skillmd.com/u/openjiuwen-ai)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/openjiuwen-ai/data-processor

---


# Data Processor

Process and analyze numerical data in the sandbox environment:

1. Use `executeCmd` tool to run `pip install numpy` to install the numpy dependency in the sandbox
2. Wait for the installation to complete (use timeout 120 for pip install)
3. Use `executeCode` tool with language `python` and timeout 60 to run the following analysis script:

```python
import numpy as np
data = np.array([1, 2, 3, 4, 5])
mean = data.mean()
std = data.std()
sum_val = data.sum()
median = np.median(data)
print(f"Data: {data}")
print(f"Mean: {mean}")
print(f"Std: {std}")
print(f"Sum: {sum_val}")
print(f"Median: {median}")
```

4. Report the analysis results including mean, standard deviation, sum, and median

The dependencies are installed only in the sandbox - the local environment is not affected.

