ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

data-management-plan-creator

Automatically generate NIH 2023-compliant Data Management and Sharing Plan (DMSP) drafts following FAIR principles

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/aipoch-ai/data-management-plan-creator
Or

Data Management Plan (DMP) Creator

Automatically generate draft Data Management and Sharing Plans (DMSP) compliant with NIH 2023 policy requirements and FAIR principles.

Overview

This Skill generates comprehensive Data Management and Sharing Plans (DMSP) that meet NIH's 2023 Final Policy for Data Management and Sharing. The output follows FAIR principles (Findable, Accessible, Interoperable, Reusable) to ensure research data is properly managed and shared.

Requirements

  • Python 3.8+
  • No external dependencies required (uses standard library only)

Usage

Command Line

python scripts/main.py \
    --project-title "Your Research Project Title" \
    --pi-name "Principal Investigator Name" \
    --data-types "genomic,imaging,clinical" \
    --repository "GEO,Figshare" \
    --output dmsp_draft.md

Interactive Mode

python scripts/main.py --interactive

As a Module

from scripts.main import DMSPCreator

creator = DMSPCreator(
    project_title="Cancer Genomics Study",
    pi_name="Dr. Jane Smith",
    institution="National Cancer Institute",
    data_types=["genomic sequencing", "clinical metadata"],
    estimated_size_gb=500,
    repositories=["dbGaP", "GEO"],
    sharing_timeline="6 months after study completion"
)

dmsp = creator.generate_plan()
creator.save_to_file("dmsp_output.md")

Parameters

ParameterTypeDefaultRequiredDescription
--project-titlestring-YesTitle of the research project
--pi-namestring-YesName of the Principal Investigator
--institutionstring-YesResearch institution or organization
--data-typesstring-YesComma-separated list of data types (e.g., "genomic,imaging,clinical")
--estimated-sizefloat-NoEstimated data size in GB
--repositorystring-YesComma-separated list of target repositories
--sharing-timelinestringNo later than the end of the award periodNoWhen data will be shared
--access-restrictionsstring-NoAny access restrictions (e.g., "controlled-access for sensitive data")
--format-standardsstring-NoData format standards to be used
--outputstringdmsp_[timestamp].mdNoOutput file path
--interactiveflag-NoRun in interactive mode

NIH DMSP Required Elements

The generated plan addresses all six required elements per NIH policy:

Metadata

Author@aipoch-ai
Stars3917
Views0
Updated2026-04-08
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-aipoch-ai-data-management-plan-creator": {
      "enabled": true,
      "auto_update": true
    }
  }
}

Tags

#nih#dmp#dmsp#fair#research-data#compliance
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.