openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > Data Management Plan Creator

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

开发与 DevOps

作者:AIpoch @AIPOCH-AI

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v0.1.1

统计:⭐ 0 · 45 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :可疑 · OpenClaw :可疑

Package:aipoch-ai/data-management-plan-creator

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :可疑

OpenClaw 评估

The skill appears to implement an NIH DMSP generator and mostly matches its description, but small inconsistencies and the presence of a non-reviewed script file mean you should inspect/run it in a sandbox before trusting it with real data.

目的

Name/description (NIH DMSP, FAIR) align with the provided code and docs: the repository contains a DMSP template, README, SKILL.md, and a Python script that generates plan text. Requested capabilities (none: no env vars, no binaries) are appropriate for this task.

说明范围

SKILL.md instructs running scripts/main.py (CLI, interactive, or as module), which is consistent with generating DMSPs. The documentation claims 'No external API calls' and 'uses standard library only', which appears plausible from visible imports; however SKILL.md also includes a pip install -r requirements.txt step (requirements.txt lists 'dataclasses'), an inconsistency worth noting. The script reads/writes workspace files (expected for thi…

安装机制

There is no install specification in the registry (instruction-only), which is low-risk. SKILL.md still instructs 'pip install -r requirements.txt' even though it claims to use only the standard library; requirements.txt contains only 'dataclasses' (a stdlib type in Python 3.8+), so the pip step is unnecessary for the declared Python version — minor inconsistency but not itself malicious.

证书

The skill declares no required environment variables, no credentials, and no config paths. The code shown imports only standard modules (json, os, re, pathlib, etc.). This is proportionate to the described purpose.

持久

Flags show always: false and normal model invocation behavior. The skill does not request permanent agent presence or elevated privileges in the registry metadata.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Data Management Plan Creator」。简介:Automatically generate NIH 2023-compliant Data Management and Sharing Plan (DMS…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/aipoch-ai/data-management-plan-creator/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: data-management-plan-creator
description: Automatically generate NIH 2023-compliant Data Management and Sharing
  Plan (DMSP) drafts following FAIR principles
version: 1.0.0
category: Grant
tags:
- NIH
- DMP
- DMSP
- FAIR
- research-data
- compliance
author: AIPOCH
license: MIT
status: Draft
risk_level: Medium
skill_type: Tool/Script
owner: AIPOCH
reviewer: ''
last_updated: '2026-02-06'
---

# 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

```bash
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

```bash
python scripts/main.py --interactive
```

### As a Module

```python
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

| Parameter | Type | Default | Required | Description |
|-----------|------|---------|----------|-------------|
| `--project-title` | string | - | Yes | Title of the research project |
| `--pi-name` | string | - | Yes | Name of the Principal Investigator |
| `--institution` | string | - | Yes | Research institution or organization |
| `--data-types` | string | - | Yes | Comma-separated list of data types (e.g., "genomic,imaging,clinical") |
| `--estimated-size` | float | - | No | Estimated data size in GB |
| `--repository` | string | - | Yes | Comma-separated list of target repositories |
| `--sharing-timeline` | string | No later than the end of the award period | No | When data will be shared |
| `--access-restrictions` | string | - | No | Any access restrictions (e.g., "controlled-access for sensitive data") |
| `--format-standards` | string | - | No | Data format standards to be used |
| `--output` | string | dmsp_[timestamp].md | No | Output file path |
| `--interactive` | flag | - | No | Run in interactive mode |

## NIH DMSP Required Elements

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

1. **Data Type** - Types and estimated amount of scientific data
2. **Related Tools, Software and/or Code** - Tools needed to access/manipulate data
3. **Standards** - Standards for data/metadata to be applied
4. **Data Preservation, Access, and Associated Timelines** - Repository selection and sharing timeline
5. **Access, Distribution, or Reuse Considerations** - Factors affecting subsequent access
6. **Oversight of Data Management and Sharing** - Plans for compliance monitoring

## FAIR Principles Implementation

### Findable
- Persistent identifiers (DOIs)
- Rich metadata with standard vocabularies
- Registration in searchable repositories

### Accessible
- Standardized communication protocols
- Metadata available even if data is no longer available
- Access procedures clearly documented

### Interoperable
- Standard data formats
- Standard terminologies and vocabularies
- Qualified references to other data

### Reusable
- Detailed provenance information
- Clear usage licenses
- Domain-relevant community standards

## Example Output

The generated DMSP includes:
- Executive summary
- NIH-compliant section headers
- Specific language for data type descriptions
- FAIR-aligned metadata standards
- Repository recommendations
- Timeline for data sharing
- Access control procedures
- Roles and responsibilities

## References

- [NIH Data Management and Sharing Policy](https://sharing.nih.gov/data-management-and-sharing-policy)
- [NIH DMSP Template](references/nih_dmp_template.md)
- [FAIR Principles](https://www.go-fair.org/fair-principles/)

## License

MIT License - See project root for details.

## Risk Assessment

| Risk Indicator | Assessment | Level |
|----------------|------------|-------|
| Code Execution | Python/R scripts executed locally | Medium |
| Network Access | No external API calls | Low |
| File System Access | Read input files, write output files | Medium |
| Instruction Tampering | Standard prompt guidelines | Low |
| Data Exposure | Output files saved to workspace | Low |

## Security Checklist

- [ ] No hardcoded credentials or API keys
- [ ] No unauthorized file system access (../)
- [ ] Output does not expose sensitive information
- [ ] Prompt injection protections in place
- [ ] Input file paths validated (no ../ traversal)
- [ ] Output directory restricted to workspace
- [ ] Script execution in sandboxed environment
- [ ] Error messages sanitized (no stack traces exposed)
- [ ] Dependencies audited
## Prerequisites

```bash
# Python dependencies
pip install -r requirements.txt
```

## Evaluation Criteria

### Success Metrics
- [ ] Successfully executes main functionality
- [ ] Output meets quality standards
- [ ] Handles edge cases gracefully
- [ ] Performance is acceptable

### Test Cases
1. **Basic Functionality**: Standard input → Expected output
2. **Edge Case**: Invalid input → Graceful error handling
3. **Performance**: Large dataset → Acceptable processing time

## Lifecycle Status

- **Current Stage**: Draft
- **Next Review Date**: 2026-03-06
- **Known Issues**: None
- **Planned Improvements**: 
  - Performance optimization
  - Additional feature support