Use Work Category field for ClickUp skill mapping
The real workspace uses "Work Category" (not "Task Type") to identify task types like Press Release. Also update field_mapping to use "Client" instead of "Company" to match actual custom field names. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>cora-start
parent
121d38a6c4
commit
019bf0ee3c
|
|
@ -42,7 +42,7 @@ class ClickUpConfig:
|
||||||
poll_statuses: list[str] = field(default_factory=lambda: ["to do"])
|
poll_statuses: list[str] = field(default_factory=lambda: ["to do"])
|
||||||
review_status: str = "review"
|
review_status: str = "review"
|
||||||
in_progress_status: str = "in progress"
|
in_progress_status: str = "in progress"
|
||||||
task_type_field_name: str = "Task Type"
|
task_type_field_name: str = "Work Category"
|
||||||
default_auto_execute: bool = False
|
default_auto_execute: bool = False
|
||||||
skill_map: dict = field(default_factory=dict)
|
skill_map: dict = field(default_factory=dict)
|
||||||
enabled: bool = False
|
enabled: bool = False
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ clickup:
|
||||||
poll_statuses: ["to do"]
|
poll_statuses: ["to do"]
|
||||||
review_status: "review"
|
review_status: "review"
|
||||||
in_progress_status: "in progress"
|
in_progress_status: "in progress"
|
||||||
task_type_field_name: "Task Type"
|
task_type_field_name: "Work Category"
|
||||||
default_auto_execute: false
|
default_auto_execute: false
|
||||||
skill_map:
|
skill_map:
|
||||||
"Press Release":
|
"Press Release":
|
||||||
|
|
@ -48,4 +48,4 @@ clickup:
|
||||||
auto_execute: true
|
auto_execute: true
|
||||||
field_mapping:
|
field_mapping:
|
||||||
topic: "task_name"
|
topic: "task_name"
|
||||||
company_name: "Company"
|
company_name: "Client"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue