返回 Skill 列表
extension
分类: 开发与工程无需 API Key

Claude Delegate

将各种编码任务委托给 Claude Code。当您需要代码生成、缺陷修复、功能实现、代码审查等方面的帮助时,可使用此技能。

person作者: numbpill3dhubclawhub

Claude Delegate

Use this skill to delegate coding tasks to Claude Code. It simplifies the process by providing the correct command structure for non-interactive execution.

Usage

To delegate a task to Claude Code, use the exec tool with the bash command, specifying the working directory and the task as a string. Claude Code will run with --print --permission-mode bypassPermissions automatically.

bash workdir:/path/to/project command:"claude --permission-mode bypassPermissions --print 'your coding task here'"

Examples

  • build a feature:

    bash workdir:~/projects/my-app command:"claude --permission-mode bypassPermissions --print 'build a user authentication module'"
    
  • refactor a module:

    bash workdir:~/projects/my-lib command:"claude --permission-mode bypassPermissions --print 'refactor the data processing module for better performance'"
    
  • review a pull request:

    bash workdir:/tmp/pr-review command:"claude --permission-mode bypassPermissions --print 'review the changes in pull request #123 and provide feedback'"