← スキル一覧に戻る

add
by methuz
Claude Code plugin that provides grammar corrections and refined versions of your prompts
⭐ 1🍴 0📅 2026年1月16日
SKILL.md
name: add description: "Add a new task to ClickUp directly (no AI processing)" category: integration complexity: basic mcp-servers: [] personas: []
/clickup:add - Add New Task
Purpose
Create a new task in ClickUp directly. No AI processing - just sends the data straight to ClickUp.
Usage
/clickup:add <title> <tag> [description]
Parameters
title(required): Task titletag(required): Tag name (bug, story, task, etc.)description(optional): Task description
Examples
/clickup:add "Fix login button" bug
/clickup:add "User profile page" story "Add ability to edit profile picture and bio"
/clickup:add "Update README" task
/clickup:add "Payment integration" feature "Integrate Stripe for subscription payments"
Behavioral Flow
-
Parse Arguments:
- Extract title (required)
- Extract tag (required)
- Extract description (optional)
-
Create Task (direct API call, no AI):
curl -X POST "https://api.clickup.com/api/v2/list/${CLICKUP_LIST_ID}/task" \ -H "Authorization: ${CLICKUP_TOKEN}" \ -H "Content-Type: application/json" \ -d '{ "name": "{title}", "tags": ["{tag}"], "description": "{description}" // only if provided }' -
Output Result:
✅ Task created! 📋 Title: Fix login button 🏷️ Tag: bug 🆔 ID: 86ew3xxxx 🔗 View: https://app.clickup.com/t/86ew3xxxx
API Endpoint
Create Task:
POST https://api.clickup.com/api/v2/list/{list_id}/task
Request Body (with description):
{
"name": "Task title",
"tags": ["bug"],
"description": "Optional description",
"status": "to do"
}
Request Body (without description):
{
"name": "Task title",
"tags": ["story"],
"status": "to do"
}
Error Handling
- Missing title: "Error: Title is required. Usage: /clickup:add [description]"
- Missing tag: "Error: Tag is required. Usage: /clickup:add [description]"
- API error: Show ClickUp error message
- Invalid tag: Task created, tag may not appear if it doesn't exist in space
Notes
- Task is created with status "to do" by default
- No AI processing - data goes directly to ClickUp as provided
- Tags are case-insensitive in ClickUp
ARGUMENTS: $ARGUMENTS
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です