AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL unreviewed Apache-2.0 Self-run

Magic Workspace Init

skill-votee-ai-magic-data-agent-skills-magic-workspace-init · by Votee-AI

Initialize a MAGIC data processing workspace: directory scaffolding, Python environment verification, dependency installation, and LLM configuration. Use when starting a new data project or setting up the MAGIC environment for the first time.

No reviews yet
0 installs
40 views
0.0% view→install

Install

$ agentstack add skill-votee-ai-magic-data-agent-skills-magic-workspace-init

Open-source listing, not yet scanned by AgentStack. Follow the source repository for install instructions.

Security review

⚠ Flagged

1 finding(s); flagged for manual review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures
  • high Dangerous shell/eval execution.

What it can access

  • Network access No
  • Filesystem access Used
  • Shell / process execution Used
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Reliability & compatibility

Not yet reviewed
0 installs to date
no reviews yet
Archived

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Magic Workspace Init? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

When to Use

  • Starting a new data processing project
  • Setting up environment for MAGIC data skills for the first time
  • User asks to "set up", "initialize", "bootstrap", or "install" the data workspace
  • User needs help installing Python packages or DataDesigner
  • Need to verify the environment is ready for data processing

When NOT to Use: Workspace already exists and is initialized. Tier 1 quick tasks (e.g., "clean these nulls") do not need full workspace scaffolding.

Domain Knowledge

What This Skill Does

This skill helps agents set up a complete data processing environment:

  1. Workspace scaffolding — create the standard directory structure
  2. Environment verification — check Python, required packages, optional tools
  3. Dependency installation — install missing packages interactively
  4. LLM configuration — set up API keys for synthesis workflows (optional)
  5. DataDesigner setup — install and configure for LLM-based data generation (optional)

Project Types and Workspace Shape

| Project Type | Workspace Shape | Notes | |-------------|----------------|-------| | One-off analysis | data/ + reports/ | Minimal — don't over-scaffold | | ETL pipeline | Add staging/ + archive/ | For intermediate and archival storage | | Multi-dataset | Per-dataset subdirs under data/input/ | Keeps sources separate | | Existing pipeline (dbt/Airflow) | Use magic-workspace/ subdirectory | Coexist without conflict |

Environment Setup

Preferred method (uv — fast, no system pollution):

uv venv .venv --python 3.12
source .venv/bin/activate
uv pip install -r requirements.txt

Alternative (standard venv):

python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Alternative (conda):

conda create -n magic python=3.12 -y
conda activate magic
pip install -r requirements.txt

Important: Always use a virtual environment. Never install into system Python. The workspace venv at .venv/ is the standard location — all MAGIC skills expect this path.

Required vs Optional Dependencies

| Package | Required By | Purpose | Tier | |---------|-----------|---------|------| | pandas>=2.0 | All skills | DataFrame operations | Required | | numpy>=1.24 | All skills | Numeric computation | Required | | scipy>=1.10 | statistical-analysis | Statistical tests | Required | | matplotlib>=3.7 | visualization | Static charts | Required | | seaborn>=0.12 | visualization | Statistical plots | Required | | chardet>=5.0 | loading | Encoding detection | Required | | openpyxl>=3.1 | loading | Excel file support | Required | | pyarrow>=14.0 | loading | Parquet file support | Required | | pyyaml>=6.0 | config | Config parsing | Required | | plotly>=5.0 | visualization | Interactive charts | Recommended | | pandera>=0.18 | validation | Schema validation | Recommended | | jinja2>=3.1 | report-generation | Report templating | Recommended | | tabulate>=0.9 | report-generation | Table formatting | Recommended | | data-designer | synthesis | LLM-based generation via DataDesigner | Optional | | tiktoken>=0.7 | synthesis | Token counting for cost estimation | Optional | | rapidfuzz>=3.0 | cleaning, validation | Fuzzy column name suggestions | Optional | | psutil>=5.9 | testing | Memory monitoring for deep evals | Optional |

Rules

  • Environment verification before scaffolding: Always verify Python environment before creating directories. A workspace with missing dependencies is worse than no workspace.
  • Idempotent, non-destructive: Re-running init never overwrites existing content. Create only missing directories.
  • PAUSE before replacing existing environments: If a virtual environment (.venv, conda env) already exists, show what will be removed (Python version, installed packages count) and ask for explicit confirmation before deleting. Never silently replace an existing environment — the user may have custom packages installed.
  • Never create .env files automatically: Only the user creates these (contains API keys). Guide them to the right location.
  • Never init inside another MAGIC workspace: Nested workspaces create ambiguous checkpoint paths. Init at the same level or in a sibling directory.
  • Use relative paths only: Absolute paths break when workspace is moved or shared.
  • Match workspace complexity to task scope: Quick one-off tasks don't need full scaffolding.

Code Patterns

Environment Verification

import importlib
import subprocess
import sys

REQUIRED_PACKAGES = {
    "pandas": "pandas",
    "numpy": "numpy",
    "chardet": "chardet",
    "openpyxl": "openpyxl",
    "pyarrow": "pyarrow",
    "scipy": "scipy",
    "matplotlib": "matplotlib",
    "seaborn": "seaborn",
}

OPTIONAL_PACKAGES = {
    "plotly": "plotly",
    "pandera": "pandera",
    "jinja2": "Jinja2",
    "tabulate": "tabulate",
    "data_designer": "data-designer",
    "rapidfuzz": "rapidfuzz>=3.0.0,` (default)
- `conda install ` (if conda environment detected)
- `uv pip install ` (if uv detected)

**PAUSE**: Show missing packages and ask user to confirm installation method.

**Step 2 — Install missing required packages**

```bash
pip install pandas numpy chardet openpyxl pyarrow scipy matplotlib seaborn

Step 3 — Install recommended optional packages

pip install plotly pandera jinja2 tabulate

PAUSE: Ask if user wants optional packages. Explain what each enables.

Step 4 — DataDesigner setup (if user needs synthesis)

pip install data-designer

Then verify:

python -c "from data_designer import DataDesigner; print('DataDesigner ready')"

Step 5 — LLM API key configuration (if user needs synthesis)

Guide user to set up API keys:

# For Gemini (recommended — fast and cost-effective)
export GOOGLE_API_KEY="your-key-here"

# Or for OpenAI
export OPENAI_API_KEY="your-key-here"

Suggest adding to shell profile (~/.zshrc, ~/.bashrc) for persistence.

Step 6 — Create workspace

workspace = init_workspace("./workspace")

Step 7 — Verify everything works

Run a quick smoke test:

import pandas as pd
df = pd.DataFrame({"test": [1, 2, 3]})
df.to_csv("workspace/data/input/test.csv", index=False)
loaded = pd.read_csv("workspace/data/input/test.csv")
assert len(loaded) == 3
print("Environment ready!")

Quick Workspace Init (Existing Environment)

For users who already have packages installed:

  1. Run verify_environment() — confirm all required packages present
  2. Run init_workspace() with appropriate project type
  3. Report status to user

Adding DataDesigner Later

If user starts with basic skills and later wants synthesis:

  1. pip install data-designer
  2. Set GOOGLE_API_KEY or OPENAI_API_KEY
  3. Verify: data-designer validate on a template
  4. Synthesis skill is now available

Workspace Directory Convention

workspace/                          <- Root (user-configurable)
├── data/
│   ├── input/                      <- Original input files
│   ├── checkpoints/                <- Intermediate results (ckpt_NN_*.csv)
│   └── output/                     <- Final processed data
├── logs/                           <- Profiling results, validation reports
├── reports/                        <- Generated reports (markdown)
├── charts/                         <- Generated visualizations (PNG, SVG)
└── configs/                        <- Agent configs, synthesis configs (if needed)

Default Output Paths by Skill

| Skill | Default Output Path | |-------|-------------------| | magic-data-loading | data/input/ (loaded files) | | magic-data-profiling | logs/ (quality scores, distributions) | | magic-data-cleaning | data/checkpoints/ (cleaned data) | | magic-data-transformation | data/checkpoints/ (transformed data) | | magic-data-validation | logs/ (validation reports) | | magic-data-exploration | logs/ (pattern detection results) | | magic-statistical-analysis | logs/ (stats results) | | magic-data-synthesis | data/output/ (synthesized data) | | magic-data-visualization | charts/ (PNG, SVG) | | magic-report-generation | reports/ (markdown reports) |

Self-Healing

| Error | Likely Cause | Fix | |-------|-------------|-----| | ModuleNotFoundError: pandas | Required packages not installed | pip install pandas numpy chardet openpyxl pyarrow scipy matplotlib seaborn | | ModuleNotFoundError: data_designer | DataDesigner not installed | pip install data-designer (only needed for synthesis) | | Permission denied | Directory not writable | Check permissions on target path | | Nested workspace detected | Init inside another workspace | Move to sibling directory or parent level | | GOOGLE_API_KEY not set | LLM not configured | Set API key in shell profile or .env |

Reference Guides

| Topic | File | Load When | |-------|------|-----------| | Project patterns | references/project_patterns.md | Setting up workspace for a specific project type |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.