🎯

claude-collaboration

🎯Skill

from delphine-l/claude_global

VibeIndex|
What it does

Facilitates team collaboration by providing best practices, communication protocols, and shared documentation strategies for Claude Code projects.

claude-collaboration

Installation

Install skill:
npx skills add https://github.com/delphine-l/claude_global --skill claude-collaboration
0
AddedJan 25, 2026

Skill Details

SKILL.md

Overview

# Centralized Claude Code Skills & Commands

Reusable Claude Code skills and commands for all projects via symlinks.

πŸ“‹ Quick Start: See [QUICK_REFERENCE.md](QUICK_REFERENCE.md) for copy-paste setup prompts and commands.

Directory Structure

```

$CLAUDE_METADATA/

β”œβ”€β”€ skills/ # All reusable skills (organized by category)

β”‚ β”œβ”€β”€ claude-meta/ # Claude Code usage & optimization

β”‚ β”œβ”€β”€ project-management/ # Project setup & organization

β”‚ β”œβ”€β”€ packaging/ # Package development

β”‚ β”œβ”€β”€ galaxy/ # Galaxy platform

β”‚ β”œβ”€β”€ bioinformatics/ # Domain-specific bio skills

β”‚ β”œβ”€β”€ analysis/ # Data analysis & notebooks

β”‚ β”œβ”€β”€ collaboration/ # Sharing & collaboration

β”‚ └── INDEX.md # Comprehensive skills catalog

β”œβ”€β”€ commands/ # Slash commands

β”‚ β”œβ”€β”€ global/ # All projects

β”‚ └── vgp-pipeline/ # Project-specific

└── templates/ # Templates for new skills/commands

```

How It Works

Claude Code discovers skills from:

  • ~/.claude/skills/ (global)
  • .claude/skills/ (per-project)

Skills load progressively - Claude sees descriptions first, full content only when activated.

Available Skills

πŸ“š See [skills/INDEX.md](skills/INDEX.md) for the complete catalog with detailed descriptions, use cases, and dependencies.

Essential Skills (Always Include)

  • claude-meta/token-efficiency - Automatic token optimization (80-90% savings)
  • claude-meta/collaboration - Team collaboration best practices
  • project-management/managing-environments - Development environment management (venv/conda)
  • project-management/folder-organization - Project structure and organization

Skills by Category

  • Claude Meta (3 skills) - Claude Code usage, collaboration, optimization
  • Project Management (2 skills) - Project setup, folder organization, environment management
  • Packaging (1 skill) - Bioconda recipe development
  • Galaxy (3 skills) - Galaxy platform development & automation
  • Bioinformatics (2 skills) - Genome assembly, sequencing analysis
  • Analysis (1 skill) - Jupyter notebooks, statistical analysis
  • Collaboration (2 skills) - Project sharing, collaborative documentation

Browse the full catalog: [skills/INDEX.md](skills/INDEX.md)

Global Commands (commands/global/)

  • /setup-project - Initialize new project with essential skills
  • /setup-environment - Plan and set up Python environment (venv or conda)
  • /sync-skills - Sync with $CLAUDE_METADATA, detect new skills
  • /list-skills - Show all available skills
  • /update-skills - Review session and update skills
  • /cleanup-project - Remove working docs, condense verbose READMEs

Setting Up a New Project

Quick Start:

```bash

/setup-project # Auto-detects project type and sets up skills

```

Manual Setup:

```bash

mkdir -p .claude/skills .claude/commands

# Essential skills (always include)

ln -s $CLAUDE_METADATA/skills/claude-meta/token-efficiency .claude/skills/

ln -s $CLAUDE_METADATA/skills/claude-meta/collaboration .claude/skills/

ln -s $CLAUDE_METADATA/skills/project-management/managing-environments .claude/skills/

ln -s $CLAUDE_METADATA/skills/project-management/folder-organization .claude/skills/

# Global commands (always include)

ln -s $CLAUDE_METADATA/commands/global/*.md .claude/commands/

# Project-specific skills (add as needed)

ln -s $CLAUDE_METADATA/skills/galaxy/automation .claude/skills/ # For Galaxy projects

ln -s $CLAUDE_METADATA/skills/bioinformatics/vgp-pipeline .claude/skills/ # For VGP projects

ln -s $CLAUDE_METADATA/skills/category/your-skill .claude/skills/

```

See QUICK_REFERENCE.md for detailed prompts and workflows.

Adding New Skills/Commands

Using templates (recommended):

```bash

./templates/create-skill.sh my-skill "Description"

./templates/create-command.sh category cmd-name "Description"

```

**Manual

More from this repository10

🎯
token-efficiency🎯Skill

Optimizes Claude's token usage by automatically reducing context length and minimizing redundant text, achieving 80-90% token savings during code generation and interaction.

🎯
jupyter-notebook-analysis🎯Skill

Analyzes and processes Jupyter notebooks, providing statistical insights, data visualization, and automated reporting capabilities for research and data science workflows.

🎯
managing-environments🎯Skill

Manages Python development environments by automating virtual environment creation, activation, and configuration using venv or conda.

🎯
bioinformatics-fundamentals🎯Skill

Provides foundational bioinformatics techniques and protocols for genome analysis, sequence processing, and basic computational biology workflows.

🎯
galaxy-automation🎯Skill

Automates workflow creation, tool integration, and deployment processes within the Galaxy bioinformatics platform to streamline scientific data analysis and computational research.

🎯
folder-organization🎯Skill

Organizes project directory structures, recommending optimal folder layouts, naming conventions, and hierarchical arrangements for improved project management and clarity.

🎯
galaxy-workflow-development🎯Skill

Develops and automates Galaxy workflow creation, configuration, and management for bioinformatics research pipelines.

🎯
galaxy-tool-wrapping🎯Skill

Automates the process of converting bioinformatics tools and workflows into standardized Galaxy tool XML wrappers for seamless integration with the Galaxy platform.

🎯
claude-skill-management🎯Skill

Manages and organizes Claude Code skills by providing centralized discovery, loading, and categorization mechanisms for reusable skills across different projects.

🎯
conda-recipe🎯Skill

Automates the creation and validation of Bioconda recipe files for packaging bioinformatics software and dependencies.