npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

deskill-de

v2.3.1

Published

Data Engineering Project Roadmap — end-to-end framework: lifecycle commands, implementation patterns, AI agent personas, and YAML templates for building production data pipelines

Downloads

1,338

Readme


Why DESKILL?

Building a data pipeline usually falls into two traps:

  • Trap 1: Jumping straight into tool selection, forgetting the business problem
  • Trap 2: Having methodology but no idea how to implement it in code

DESKILL solves both: process methodology (thinking framework, ordering, feedback loops) combined with production code patterns (Airflow, dbt, Spark, Great Expectations) in a unified framework.


Installation

# Option 1: npm (recommended)
npx deskill-de install

# Option 2: Clone repo
git clone https://github.com/anomalyco/DESKILL.git

Quick Start — 14 Sequential Skills

Each skill produces one deliverable and suggests the next skill to run:

  /problem → /sources → /arch → /schema → /env → /ingest → /transform
  → /test → /dq → /contract-check → /dag → /serve → /ci → /docs

| Skill | Output | |-------|--------| | /problem | docs/business_problem.md | | /sources | contracts/source-*.yaml | | /arch | docs/architecture.md | | /schema | docs/dw_schema.md | | /env | docker-compose.yml | | /ingest | ingestion/<source>/ingest.py | | /transform | Silver + Gold models | | /test | tests/ all passing | | /dq | quality/dq_checks.py | | /contract-check | Contract validation report | | /dag | dags/<project>_pipeline.py | | /serve | serving/app.py | | /ci | .github/workflows/ci.yml | | /docs | README.md + lineage + cost |


Repository Structure

DESKILL/
├── SKILL.md                        # Entry point — principles, skill flow, phase map
├── plugin.json                     # Plugin manifest
├── package.json                    # npm package + CLI installer
├── commands/                       # Orchestrator commands
├── skills/                         # 14 atomic skills (one deliverable each)
│   ├── problem/                    #   Business problem definition
│   ├── sources/                    #   Source evaluation & data contracts
│   ├── arch/                       #   Pipeline architecture design
│   ├── schema/                     #   DW schema (Fact & Dimension tables)
│   ├── env/                        #   Development environment setup
│   ├── ingest/                     #   Bronze ingestion layer
│   ├── transform/                  #   Silver & Gold transformations
│   ├── test/                       #   Test suite (schema & logic)
│   ├── dq/                         #   Runtime data quality checks
│   ├── contract-check/             #   Data vs contract validation
│   ├── dag/                        #   Orchestration DAG
│   ├── serve/                      #   Serving layer (dashboard / API)
│   ├── ci/                         #   CI/CD (GitHub Actions)
│   └── docs/                       #   Documentation
├── phases/                         # Deep-dive methodology (10 phases)
├── implementation/                 # Code patterns: Airflow, dbt, Spark, GE
└── agents/                         # AI agent personas

Key Features

  • Domain-agnostic — Weather, e-commerce, finance, IoT, logistics: works everywhere
  • Tool-agnostic — No mandated stack; guidance for choosing tools by scale and goals
  • Iterative — Feedback loops between phases; later discoveries can revise earlier decisions
  • AI-native — Designed to be used with an AI pair-engineer at every phase
  • Production patterns — Real code examples from Airflow, dbt, Spark, Great Expectations
  • Sequential by design — Each skill suggests the next, guiding you end-to-end

Comparison with Other Frameworks

| | DESKILL | wshobson/agents | vaquarkhan/agent-skills | |---|---|---|---| | Methodology | 10-phase roadmap + 14 sequential skills | — | — (isolated skills only) | | Code patterns | Airflow, dbt, Spark, GE | Airflow, dbt, Spark, GE | — | | AI agent personas | data-engineer + backend-architect | data-engineer + backend-architect | — | | Skill graph | 14 skills, each suggests the next | — | — | | Anti-patterns | ~30 common mistakes cataloged | — | Yes (across 73 skills) | | Templates | 14 skill assets | — | 8 YAML | | Packaging | npm + CLI + CI/CD + plugin | Plugin-only | Full IDE integration |


Credits

  • Process methodology: Inspired by Fundamentals of Data Engineering (Reis & Housley)
  • Implementation patterns: Adapted from wshobson/agents (MIT)
  • Packaging pattern: Inspired by BMAD-METHOD

License

MIT © DESKILL