Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

project-sharing项目分享

Agent Skill

project-sharing 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

710

周安装

29

GitHub Stars

12

下载量

230
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:project-sharing(项目分享)
来源仓库:https://github.com/delphine-l/claude_global
仓库路径:skills/project-sharing
安装命令:
npx skills add https://github.com/delphine-l/claude_global --skill project-sharing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/delphine-l/claude_global --skill project-sharing

简介

项目共享的关键原则:

  • 选择合适的级别 - 将分享深度与受众需求相匹配
  • 复制,不要移动 - 保留您的工作目录
  • 彻底清理 - 删除调试代码,清除输出
  • 记录一切 - README + MANIFEST 最低限度
  • 检查敏感性 - 根据需要匿名或排除
  • 分享前测试 - 在干净的环境中运行
  • 正确打包 - 压缩并记录内容
  • 在主目录中工作 - 创建共享包后,所有未来的工作都发生在原始项目目录中,而不是在共享文件夹中
  • 请记住:良好的分享实践对合作者和未来的你都有好处!
  • 对克劳德的重要提醒
  • 创建任意共享包后:
  • 始终返回到主项目目录
  • 切勿在共享-*/ 中工作
  • 目录 - 这些是只读快照
  • 所有未来的编辑、分析和开发都发生在原始工作目录中
  • 共享文件夹仅用于分发,不用于主动开发
  • 如果用户要求修改文件,请始终检查当前目录并确保您正在主项目位置而不是共享包中工作。
  • 每周安装量
  • 29
  • 存储库
  • delphine-l/claude_global
  • GitHub 之星
  • 12
  • 第一次看到
  • 2026 年 1 月 24 日
  • 安全审计
  • Gen Agent Trust Hub 通行证
  • 套接字通行证
  • 斯尼克通行证

SKILL.md

Project Sharing and Output Preparation

Expert guidance for preparing project outputs for sharing with collaborators, reviewers, or repositories. Creates organized packages at different sharing levels while preserving your working directory.

Supporting files in this directory:

When to Use This Skill

  • Sharing analysis results with collaborators
  • Preparing supplementary materials for publications
  • Creating reproducible research packages
  • Archiving completed projects
  • Handoff to other researchers
  • Submitting to data repositories

Core Principles

  1. Work on copies - Never modify the working directory
  2. Choose appropriate level - Match sharing depth to audience needs
  3. Document everything - Include clear guides and metadata
  4. Clean before sharing - Remove debug code, clear outputs, anonymize if needed
  5. Make it reproducible - Include dependencies and instructions
  6. CRITICAL: After creating sharing folder, all future work happens in the main project directory, NOT in the sharing folder - Sharing folders are read-only snapshots

Three Sharing Levels

Level 1: Summary Only

Purpose: Quick sharing for presentations, reports, or high-level review

What to include:

  • PDF export of final notebook(s)
  • Final data/results (CSV, Excel, figures) - optional
  • Brief README

Use when:

  • Sharing results with non-technical stakeholders
  • Presentations or talks
  • Quick review without reproduction needs
  • Space/time constraints

Structure:

shared-summary/
├── README.md                          # Brief overview
├── analysis-YYYY-MM-DD.pdf           # Notebook as PDF
└── results/
    ├── figures/
    │   ├── fig1-main-result.png
    │   └── fig2-comparison.png
    └── tables/
        └── summary-statistics.csv

Level 2: Reproducible

Purpose: Enable others to reproduce your analysis from processed data

What to include:

  • Analysis notebooks (.ipynb) - cleaned
  • Scripts for figure generation
  • Processed/analysis-ready data
  • Requirements file (requirements.txt or environment.yml)
  • Detailed README with instructions

Use when:

  • Sharing with collaborating researchers
  • Peer review / manuscript supplementary materials
  • Teaching or tutorials
  • Standard collaboration needs

Structure:

For standard project structures, see the folder-organization skill. Reproducible packages should include:

  • Processed data (in data/processed/)
  • Cleaned notebooks (in notebooks/) with outputs cleared
  • Scripts (in scripts/)
  • Environment specification (environment.yml or requirements.txt)
  • Documentation (README.md, MANIFEST.md)
shared-reproducible/
├── README.md                          # Setup and reproduction instructions
├── MANIFEST.md                        # File descriptions
├── environment.yml                    # Conda environment OR requirements.txt
├── notebooks/                         # Cleaned notebooks
├── scripts/                           # Standalone scripts
└── data/
    └── processed/                     # Analysis-ready data

Level 3: Full Traceability

Purpose: Complete transparency from raw data through all processing steps

What to include:

  • Starting/raw data
  • All processing scripts and notebooks
  • All intermediate files
  • Final results
  • Complete documentation
  • Full dependency specification

Use when:

  • Archiving for future reference
  • Regulatory compliance
  • High-stakes reproducibility (clinical, policy)
  • Data repository submission (Zenodo, Dryad, etc.)
  • Complete project handoff

Structure:

For standard project structures, see the folder-organization skill. Full traceability packages should include complete data hierarchy:

shared-complete/
├── README.md                          # Complete project guide
├── MANIFEST.md                        # Comprehensive file listing
├── environment.yml
├── data/
│   ├── raw/                          # Original, unmodified data
│   ├── intermediate/                 # Processing steps
│   └── processed/                    # Final analysis-ready
├── scripts/                           # All processing scripts
├── notebooks/                         # All notebooks (exploratory + final)
├── results/                           # All outputs
│   ├── figures/
│   ├── tables/
│   └── supplementary/
└── documentation/                     # Complete documentation
    ├── methods.md
    ├── changelog.md
    └── data-dictionary.md

Preparation Workflow

Step 1: Ask User for Sharing Level

Questions to determine level:

Which sharing level do you need?

1. Summary Only - PDF + final results (quick sharing)
2. Reproducible - Notebooks + scripts + data (standard sharing)
3. Full Traceability - Everything from raw data (archival/compliance)

Additional questions:
- Who is the audience? (colleagues, reviewers, public)
- Are there size constraints?
- Any sensitive data to handle?
- Timeline for sharing?

Step 2: Identify Files to Include

Level 1 - Summary:

  • Main analysis notebook(s)
  • Key figures (publication-quality)
  • Summary tables/statistics

Level 2 - Reproducible:

  • All analysis notebooks (not exploratory)
  • Figure generation scripts
  • Processed/cleaned data
  • Environment specification
  • Any utility functions/modules

Level 3 - Full:

  • Raw data (or links if too large)
  • All processing scripts
  • All notebooks (including exploratory)
  • All intermediate files
  • Complete documentation

Step 3: Create Sharing Directory

# Create dated directory
SHARE_DIR="shared-$(date +%Y%m%d)-[level]"
mkdir -p "$SHARE_DIR"

Step 4: Copy and Clean Files

For notebooks (.ipynb):

import nbformat
from nbconvert.preprocessors import ClearOutputPreprocessor

def clean_notebook(input_path, output_path):
    """Clean notebook: clear outputs, remove debug cells."""
    with open(input_path, 'r') as f:
        nb = nbformat.read(f, as_version=4)

    clear_output = ClearOutputPreprocessor()
    nb, _ = clear_output.preprocess(nb, {})

    nb.cells = [cell for cell in nb.cells
                if 'debug' not in cell.metadata.get('tags', [])
                and 'remove' not in cell.metadata.get('tags', [])]

    with open(output_path, 'w') as f:
        nbformat.write(nb, f)

For data files: Copy as-is for small files; compress large files; check for sensitive information.

For scripts: Remove debugging code; add docstrings if missing; ensure paths are relative.

For notebook streamlining and the abridge option, see notebook-streamlining.md.

Step 4.5: Verify and Fix File Paths

Problem: Notebooks and scripts with broken file paths will fail when shared.

For complete path verification procedures, automated checking scripts, and correction patterns, see the folder-organization skill.

Breaks when sharedWorks when shared
/Users/yourname/project/data.csvdata/data.csv
C:\Users\yourname\project\fig.pngfigures/fig.png
/absolute/path/to/results/results/

Quick check commands:

# Check for absolute paths in notebooks
grep -l "/Users/" *.ipynb
grep -l "C:\\\\" *.ipynb

Step 5: Generate Documentation

README.md Template

# Project: [Project Name]

**Date:** YYYY-MM-DD
**Author:** [Your Name]
**Sharing Level:** [Summary/Reproducible/Full]

## Overview
Brief description of the project and analysis.

## Contents
See MANIFEST.md for detailed file descriptions.

## Requirements
[For Reproducible/Full levels]
- Python 3.X
- See environment.yml for dependencies

## Setup
\`\`\`bash
conda env create -f environment.yml
conda activate project-name
\`\`\`

## Reproduction Steps
[For Reproducible/Full levels]
1. [Description of first step]

## Data Sources
[For Full level]
- Dataset A: [Source, download date, version]

## Contact
[Your email or preferred contact]

## License
[If applicable - e.g., CC BY 4.0, MIT]

MANIFEST.md Template

# File Manifest
Generated: YYYY-MM-DD

## File Descriptions

### Notebooks
- \`notebooks/01-data-processing.ipynb\` - Initial data loading and cleaning
- \`notebooks/02-analysis.ipynb\` - Main statistical analysis

### Data
- \`data/processed/cleaned_data.csv\` - Quality-controlled dataset (N=XXX samples)

### Scripts
- \`scripts/generate_figures.py\` - Automated figure generation

### Results
- \`results/figures/fig1-main.png\` - Main result showing [description]

Step 6: Handle Sensitive Data

Check for: PII, access credentials, proprietary data, institutional restrictions, patient/subject identifiers.

Strategies:

  1. Anonymize - Remove or hash identifiers
  2. Exclude - Don't include sensitive files
  3. Aggregate - Share summary statistics only
  4. Document restrictions - Note what's excluded and why

Step 7: Package and Compress

# For smaller packages (<100MB)
zip -r shared-YYYYMMDD.zip shared-YYYYMMDD/

# For larger packages
tar -czf shared-YYYYMMDD.tar.gz shared-YYYYMMDD/

Step 8: Return to Working Directory

IMPORTANT: After creating the sharing package, always work in the main project directory.

The sharing folder is a snapshot for distribution only. Any future development, analysis, or modifications should happen in your original working directory.

cd /path/to/main/project  # Return to working directory
pwd                        # Verify location
# Continue work here, NOT in shared-YYYYMMDD/

Integration with Other Skills

Works well with:

  • folder-organization - Ensures source project is well-organized before sharing
  • jupyter-notebook-analysis - Creates notebooks that are share-ready
  • managing-environments - Documents dependencies properly

Before using this skill:

  1. Organize working directory (folder-organization)
  2. Finalize analysis (jupyter-notebook-analysis)
  3. Document environment (managing-environments)

After using this skill:

  1. Test package in clean environment
  2. Share via appropriate channel (email, repository, cloud storage)
  3. Keep archived copy for reference

For quality assurance procedures and checklists, see quality-assurance.md. For common sharing scenarios and example scripts, see common-scenarios.md. For handling cleanup mistakes and notebook deprecation, see cleanup-and-deprecation.md.


Summary

Key principles for project sharing:

  1. Choose the right level - Match sharing depth to audience needs
  2. Copy, don't move - Preserve your working directory
  3. Clean thoroughly - Remove debug code, clear outputs
  4. Document everything - README + MANIFEST minimum
  5. Check sensitivity - Anonymize or exclude as needed
  6. Test before sharing - Run in clean environment
  7. Package properly - Compress and document contents
  8. Work in main directory - After creating sharing package, ALL future work happens in the original project directory, NOT in the sharing folder

Remember: Good sharing practices benefit both collaborators and your future self!


CRITICAL Reminder for Claude

After creating any sharing package:

  1. Always return to the main project directory
  2. **Never work in shared-*/ directories** - These are read-only snapshots
  3. All future edits, analysis, and development happen in the original working directory
  4. Sharing folders are for distribution only, not active development

If the user asks to modify files, always check the current directory and ensure you're working in the main project location, not in a sharing package.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.49%
按下载量换算61

windsurf

22.37%
按下载量换算51

OpenCode

17.29%
按下载量换算40

Codex

11.82%
按下载量换算27

Antigravity

7.16%
按下载量换算16

Gemini CLI

3.07%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills