A collection of Claude Code agent skills
npm install tsheep-skillsA collection of Claude Code agent skills for various development tasks.
清理已推全的 A/B 实验代码,生成影响面分析和回测报告
功能特性:
- 自动识别和清理已推全的 A/B 实验代码
- 生成详细的影响面分析报告
- 提供回测验证支持
- 支持多种实验框架
Install a specific skill using npx (no installation required):
``bashGlobal install to ~/.claude/skills (default)
npx tsheep-skills add ab-experiment-cleanup
Installation Options:
-
-l, --local: Install to project-local directory (./.claude/skills or ./.cursor/skills)
- -c, --cursor: Use .cursor directory instead of .claude
- -g, --global: Install to global directory (default: ~/.claude/skills)List all available skills:
`bash
npx tsheep-skills list
`$3
Install using the Claude Code CLI:
`bash
claude skill install https://github.com/luo29/tsheep-skills.git/ab-experiment-cleanup
`$3
1. Clone this repository:
`bash
git clone https://github.com/luo29/tsheep-skills.git
`2. Create a symlink to the skill you want to use:
`bash
ln -s /path/to/tsheep-skills/ab-experiment-cleanup ~/.claude/skills/ab-experiment-cleanup
`3. Restart Claude Code or reload skills
Usage
Once installed, you can invoke the skill in Claude Code:
`
/ab-experiment-cleanup
`Or simply describe what you want to do, and Claude will automatically use the appropriate skill.
Contributing
Feel free to contribute new skills or improvements to existing ones. Please follow the skill structure:
`
skill-name/
├── SKILL.md # The skill prompt/instructions
├── README.md # User-facing documentation
└── EXAMPLE.md # (Optional) Usage examples
``MIT