call-claude

📁 dotneet/claude-code-marketplace 📅 Jan 21, 2026
21
总安装量
12
周安装量
#17475
全站排名
安装命令
npx skills add https://github.com/dotneet/claude-code-marketplace --skill call-claude

Agent 安装分布

claude-code 10
opencode 9
antigravity 8
codex 8
windsurf 5

Skill 文档

Call claude to perform a task

Call claude to perform a task.

Checking for the Existence of claude

# Check if claude is installed. Exit code 0 means success, 1 means failure.
# If not installed, skip the subsequent steps of the skill.
which claude
if [ $? -ne 0 ]; then
  echo "claude is not installed"
fi

Requesting a Task to claude

This task may take a long time. If the timeout value of the Bash tool can be set, please specify the maximum timeout value.

claude -p --dangerously-skip-permissions <<EOT
{task_description}
EOT