Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计提醒

claude-collaborationClaude collaboration 搜索

Agent Skill

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

总安装

1,126

周安装

46

GitHub Stars

12

下载量

364
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/delphine-l/claude_global --skill claude-collaboration

简介

集中化技能管理框架,确保团队间知识共享与版本一致。

  • 适用于 Codex、Claude、Cursor 等多宿主环境的技能治理。
  • 通过 $CLAUDE_METADATA 实现单一事实源与 Git 版本控制。
  • 禁止直接在项目目录创建技能,必须通过中央仓库管理。
  • 需定期更新技能库以维持其有效性。claude-collaboration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Claude Code Collaboration Best Practices

This skill provides guidance on effectively using Claude Code in team environments, managing shared knowledge through skills, and maximizing value from AI-assisted development.

Core Principles

  1. Skills are living documentation - They evolve as you learn
  2. Capture knowledge explicitly - Claude doesn't auto-update skills
  3. All skills live in $CLAUDE_METADATA - No local skills or commands in projects
  4. Share knowledge across the team - Centralized repo ensures consistency
  5. Version control your skills - Track changes and improvements
  6. Be intentional about updates - Not everything learned needs to be captured

Critical: No Local Skills or Commands

ALL skills and commands MUST be in the $CLAUDE_METADATA repository, never in individual project directories.

Never do this:

# Creating local skill in project
echo "---" > .claude/skills/my-local-skill/SKILL.md

Always do this:

# Create skill in central repo
mkdir -p $CLAUDE_METADATA/skills/project-name
echo "---" > $CLAUDE_METADATA/skills/project-name/SKILL.md

# Then symlink to project
ln -s $CLAUDE_METADATA/skills/project-name .claude/skills/project-name

Why centralization is mandatory:

  • Version control: All skills tracked in one git repo
  • Team sharing: Everyone uses the same knowledge
  • Consistency: No divergence between projects
  • Maintenance: Update once, applies everywhere
  • Discovery: Team can see all available skills

Even project-specific skills go in the central repo under $CLAUDE_METADATA/skills/project-name/.


Understanding How Skills Work

What Happens During a Session

At session start:

  • Claude reads all .claude/skills/ files in your directory
  • Skills provide context and guidelines for the session
  • Knowledge from skills is "loaded" into Claude's working context

During the session:

  • Claude learns from your conversation (temporary, in-context learning)
  • Solutions discovered apply only to this conversation
  • Skills remain unchanged unless you explicitly update them

At session end:

  • All temporary learning is lost
  • Skills remain exactly as they were at the start
  • Next session starts fresh, reading skills again

What This Means

  • Skills persist across sessions - They're files on disk
  • Session learnings don't persist - They exist only in conversation context
  • You must explicitly update skills - Claude won't do it automatically

When to Update Skills

Always Update Skills For:

  1. Repeated problems with known solutions

- "We keep hitting this error, here's how to fix it" - Add to troubleshooting section

  1. New best practices discovered

- "Using --quiet saves 85% tokens, use it by default" - Add to optimization guidelines

  1. Common workflows that need standardization

- "Our team always does X before Y" - Add to standard procedures

  1. Configuration patterns that work

- "This cron job setup works best for our HPC" - Add as recommended configuration

  1. Important architectural decisions

- "We decided to use symlinks for global skills because..." - Document rationale for future reference

Don't Update Skills For:

  1. One-time issues - Specific to a particular run or environment
  2. Experimental approaches - Wait until proven effective
  3. User-specific preferences - Unless they should be team defaults
  4. Obvious information - Already well-documented elsewhere
  5. Temporary workarounds - Not worth making permanent

Example: When to Update

Scenario 1: New error pattern discovered

Session: "WF8 fails when Hi-C files are missing R2 reads"
Action: ADD to troubleshooting - this will happen again
Rationale: Common issue with known solution

Scenario 2: One-off configuration issue

Session: "My personal laptop has Python 3.7, need 3.8"
Action: DON'T ADD to skill - personal environment issue
Rationale: Not relevant to others, not a recurring pattern

Scenario 3: Token optimization discovered

Session: "Using --quiet mode saves 15K to 2K tokens!"
Action: ADD to token efficiency skill
Rationale: Valuable for entire team, significant impact

How to Update Skills

Method 1: Explicit Request (Recommended)

User: "We just solved the issue with workflow timeouts in HPC environments.
       Add this to the VGP skill under troubleshooting."

Claude: [Reads current skill, adds new troubleshooting entry, saves file]

Method 2: Ask Claude to Suggest Updates

User: "Based on our work today, what should we add to the VGP skill?"
Claude: [Reviews conversation, suggests additions]
User: "Yes, add those three things."
Claude: [Updates skill file]

Method 3: End-of-Session Summary

User: "Summarize today's learnings and update the relevant skills."
Claude: [Creates summary, updates multiple skills if needed]

Method 4: Periodic Review

User: "We've been working on VGP for a month.
       Review our conversation history and suggest skill improvements."
Claude: [Analyzes patterns, suggests updates]

Skill Organization Patterns

Pattern 1: Project-Specific Skills (In Central Repo)

Use for: Project-specific knowledge (VGP workflows, Galaxy APIs)

Location: $CLAUDE_METADATA/skills/project-name/ (NOT in project directory)

$CLAUDE_METADATA/
└── skills/
    ├── my-project/              # Project-specific skill
    │   └── SKILL.md
    └── another-project/
        └── SKILL.md

my-project/
└── .claude/
    └── skills/
        └── my-project -> $CLAUDE_METADATA/skills/my-project  # Symlink only!

Pattern 2: General Skills (Cross-Project)

Use for: General development practices, tool-agnostic optimizations, team-wide standards

Location: $CLAUDE_METADATA/skills/

Pattern 3: Symlinking Skills to Projects

This is THE standard pattern - all projects use symlinks, no exceptions.

# In each project
cd /path/to/project
mkdir -p .claude/skills .claude/commands

# Symlink skills from central repo
ln -s $CLAUDE_METADATA/skills/token-efficiency .claude/skills/token-efficiency
ln -s $CLAUDE_METADATA/skills/my-project .claude/skills/my-project

# Symlink commands from central repo
ln -s $CLAUDE_METADATA/commands/global/*.md .claude/commands/

Critical rule: Projects contain ONLY symlinks, never actual skill/command files.

Pattern 4: Skills with Supporting Documentation

skills/skill-name/
├── SKILL.md              # Core concepts and quick reference
├── reference.md          # Detailed technical documentation
├── troubleshooting.md    # Common issues and solutions
├── examples/             # Code examples
└── templates/            # Template files

When to use:

  • SKILL.md is getting too long (>500 lines)
  • Detailed reference material available
  • Multiple categories of information (guides, troubleshooting, examples)

Best practice:

  • Keep SKILL.md under 500 lines
  • Move detailed guides to supporting files
  • Reference supporting files at end of SKILL.md
  • Use descriptive filenames (troubleshooting.md, not tips.md)

Quick Reference

Daily Workflow

1. Start session -> Claude reads skills
2. Work on task -> Learn new patterns
3. End session -> "What should we add to skills?"
4. Claude suggests -> You approve/modify
5. Git commit -> Share with team

Weekly Maintenance

1. Review week's commits
2. Identify patterns across sessions
3. Consolidate related updates
4. Remove outdated info
5. Share changelog with team

Monthly Review

1. Audit all skills for conflicts
2. Measure token savings
3. Collect team feedback
4. Major refactoring if needed
5. Update skill documentation

Summary

Key Principles:

  1. Skills are permanent, sessions are temporary
  2. Update skills explicitly - Claude won't auto-update
  3. ALL skills in $CLAUDE_METADATA - No local skills or commands ever
  4. Version control your skills with git in central repo
  5. Share skills across team - Centralization ensures consistency
  6. Regular reviews keep skills valuable

Critical Architectural Rule:

  • NEVER create skills or commands directly in project directories
  • ALWAYS create in $CLAUDE_METADATA and symlink to projects

Even project-specific skills must live in the central repository. This ensures:

  • Single source of truth - No duplicates, no divergence
  • Version control - All skills tracked in one git repo
  • Team sharing - Everyone can discover and use all skills
  • Easy maintenance - Update once, applies everywhere

Remember: Claude is a powerful assistant, but skills are how you make that power consistent, shareable, and permanent. The centralized architecture ensures your team's knowledge remains organized, discoverable, and maintainable. Invest in your skills, and they'll pay dividends for your entire team.


Supporting Documentation

This skill includes detailed reference documentation in the same directory:

  • centralized-repository.md - Centralized skill repository setup, migration patterns, team workflow, and directory structure examples
  • version-control-and-sharing.md - Git setup for skills, team collaboration workflows, and four methods for sharing skills (git repo, network drive, copy-based, zip archive)
  • maintenance-and-effectiveness.md - Best practices for skill maintenance, measuring effectiveness, metrics to track, and common pitfalls with solutions
  • advanced-patterns.md - Tiered/conditional/role-based skill patterns and documentation for session interruptions (resume documentation templates)

These files provide deep technical details that complement the core concepts above.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

27.57%
按下载量换算100

windsurf

22.32%
按下载量换算81

OpenCode

15.87%
按下载量换算58

Codex

11.71%
按下载量换算43

Antigravity

7.24%
按下载量换算26

Gemini CLI

3.81%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills