Refactored commands to extract reusable skills following the Commands → Skills separation pattern. Each command is now <50 lines and references skill files for detailed knowledge. Plugins refactored: - claude-config-maintainer: 5 commands → 7 skills - code-sentinel: 3 commands → 2 skills - contract-validator: 5 commands → 6 skills - data-platform: 10 commands → 6 skills - doc-guardian: 5 commands → 6 skills (replaced nested dir) - git-flow: 8 commands → 7 skills Skills contain: workflows, validation rules, conventions, reference data, tool documentation Commands now contain: YAML frontmatter, agent assignment, skills list, brief workflow steps, parameters Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
906 B
906 B
/ingest - Data Ingestion
Skills to Load
- skills/mcp-tools-reference.md
- skills/visual-header.md
Visual Output
Display header: DATA-PLATFORM - Ingest
Usage
/ingest [source]
Workflow
-
Identify source:
- File path: determine format (CSV, Parquet, JSON)
- SQL query or table name: query PostgreSQL
-
Load data:
- Files:
read_csv,read_parquet,read_json - Database:
pg_query
- Files:
-
Validate: Check row count against 100k limit
-
Report: data_ref, row count, columns, memory usage, preview
Examples
/ingest data/sales.csv
/ingest data/customers.parquet
/ingest "SELECT * FROM orders WHERE created_at > '2024-01-01'"
Required MCP Tools
read_csv- Load CSV filesread_parquet- Load Parquet filesread_json- Load JSON/JSONL filespg_query- Query PostgreSQL databaselist_data- List loaded DataFrames