Professional ClickUp task automation with state sync.
Project description
ClickFlow-Sync 🚀
ClickFlow-Sync is an idempotent Python library that bridges external data sources (scanners, logs, pipelines) with ClickUp and Slack. It ensures tasks are never duplicated and allows team members to claim tickets directly from Slack.
🛠 Step 1: Installation
From PyPI (Recommended)
pip install clickflow-sync
From Source (Development)
git clone https://github.com/jenilmistryhq/ClickFlow-Sync.git
cd ClickFlow-Sync
pip install -r requirements.txt
⚙️ Step 2: Configuration
ClickFlow-Sync looks for environment variables to authenticate. Create a .env file in your project root:
# ClickUp Configuration
CLICKUP_API_KEY=pk_your_personal_api_key_here
CLICKUP_TEAM_ID=1234567
CLICKUP_LIST_ID=901234567890
# Slack Configuration (Optional)
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/T0000/B0000/XXXX
SLACK_BOT_TOKEN=xoxb-your-bot-token-here
# Default Assignment (Optional)
DEFAULT_ASSIGNEE_EMAIL=your_email@usedforclickup.com
🚀 Step 3: Usage in Your Project
Once installed, you can import ClickFlow-Sync into any script.
- Pushing a Task to ClickUp & Slack
from clickflow_sync import ClickFlowEngine, ClickUpTask, SlackPlugin
# Initialize
engine = ClickFlowEngine()
slack = SlackPlugin()
# Define the task
task = ClickUpTask(
internal_id="SEC-101", # Unique ID prevents duplicates
title="Critical Vulnerability Found",
description="Found SQLi on /api/login",
priority=1,
tags=["security", "automated"]
)
# Sync: Creates task in ClickUp and sends Slack message with "Claim" button
engine.upsert_task(task, callback=slack.send_notification)
🤖 Step 4: Setting up the "Claim Task" Bot
To make the Claim Task button work, you must run a small listener script (the Interaction Bot).
- Create
app.py. Copy this sample code into a file namedapp.py. This script listens for Slack button clicks.
import os
import json
import requests
import threading
import time
from datetime import datetime
from flask import Flask, request, make_response
from src.engine import ClickFlowEngine
from dotenv import load_dotenv
load_dotenv()
app = Flask(__name__)
engine = ClickFlowEngine()
SLACK_TOKEN = os.getenv("SLACK_BOT_TOKEN")
def background_worker(payload, slack_user_id, clickup_task_id, response_url):
try:
# 1. Fetch User Data
user_info = requests.get(
f"https://slack.com/api/users.info?user={slack_user_id}",
headers={"Authorization": f"Bearer {SLACK_TOKEN}"}
).json()
user_profile = user_info.get("user", {})
slack_email = user_profile.get("profile", {}).get("email", "").lower()
slack_display_name = user_profile.get("real_name") or user_profile.get("name") or "Team Member"
if not engine.members:
engine.members = engine._fetch_members()
target_member_id = engine.members.get(slack_email, {}).get('id')
if not target_member_id:
# Fallback name search
for email, info in engine.members.items():
if slack_display_name.lower() in info.get('username', '').lower():
target_member_id = info['id']
break
assignment_successful = False
if target_member_id:
clean_task_id = str(clickup_task_id).strip()
assign_url = f"https://api.clickup.com/api/v2/task/{clean_task_id}/assignee/{target_member_id}"
# STEP 1: Perform the assignment
res = requests.post(assign_url, headers=engine.headers)
if res.status_code in [200, 201]:
time.sleep(1.5)
check_res = requests.get(f"https://api.clickup.com/api/v2/task/{clean_task_id}", headers=engine.headers).json()
assignees = [str(a['id']) for a in check_res.get('assignees', [])]
if str(target_member_id) in assignees:
print(f"✅ VERIFIED: {slack_display_name} is in ClickUp.")
assignment_successful = True
else:
print(f"❌ ClickUp Rejected: {res.text}")
updated_blocks = payload.get("message", {}).get("blocks", [])
current_time = datetime.now().strftime("%I:%M %p")
# Only show the Green Check if we VERIFIED the assignment
status_text = f"✅ {slack_display_name}" if assignment_successful else f"⚠️ Syncing... (Click again in 2s)"
for block in updated_blocks:
if block.get("type") == "section" and "fields" in block:
for field in block["fields"]:
if "*Assignees:*" in field.get("text", ""):
field["text"] = f"*Assignees:*\n{status_text}"
if block.get("type") == "actions":
# Only hide button if verified
if assignment_successful:
block["elements"] = [btn for btn in block["elements"] if "url" in btn]
updated_blocks = [b for b in updated_blocks if b.get("type") != "context"]
updated_blocks.append({
"type": "context",
"elements": [{
"type": "mrkdwn",
"text": f":stopwatch: *Claimed at:* {current_time} | :user: *By:* {slack_display_name}"
}]
})
requests.post(response_url, json={"replace_original": "true", "blocks": updated_blocks})
except Exception as e:
print(f"🔥 Worker Error: {e}")
@app.route("/slack/interactive", methods=["POST"])
def handle_interaction():
payload = json.loads(request.form.get("payload"))
try:
action = payload["actions"][0]
# Using .get to prevent the KeyError you saw in the logs
task_id = action.get("value") or action.get("action_id")
thread = threading.Thread(
target=background_worker,
args=(payload, payload["user"]["id"], task_id, payload.get("response_url"))
)
thread.start()
except Exception as e:
print(f"🔥 Payload Error: {e}")
return make_response("", 200)
if __name__ == "__main__":
app.run(host='0.0.0.0', port=8000)
- Connect Slack to your Computer (Local Testing) Since Slack cannot "see" your laptop, use a tunnel:
- Run your app:
python app.py - Open a tunnel:
ssh -R 80:localhost:8000 nokey@localhost.run - Update Slack: Copy the
.lhr.lifeURL provided and paste it into your Slack App Settings > Interactivity > Request URL, adding/slack/interactiveat the end.
📝 Data Model (ClickUpTask)
Field | Type | Required | Description
--------------|------|----------|----------------------------------------------------
internal_id | str | Yes | Unique reference (e.g., Jira ID, CVE ID).
title | str | Yes | The name of the task in ClickUp.
description | str | No | Detailed content (supports Markdown).
priority | int | No | 1 (Urgent), 2 (High), 3 (Normal), 4 (Low).
tags | list | No | List of strings (e.g., ["bug", "api"]).
🏗 Key Features for Developers
- Idempotency: The library tracks internal_id in sync_state.json. Running the same script twice will update the existing task instead of creating a new one.
- Thread Safety: The Slack interaction handler uses background threading to ensure the Slack UI never times out (503 error).
- Verification: Before showing a "Success" checkmark in Slack, the library re-queries the ClickUp API to verify the assignee was saved.
🤝 Contributing
- Fork the repo
- Create your feature branch
git checkout -b AmazingFeature - Commit your changes
git commit -m 'Add AmazingFeature' - Push to the branch
git push origin AmazingFeature - Open a Pull Request
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file clickflow_sync-1.3.3.tar.gz.
File metadata
- Download URL: clickflow_sync-1.3.3.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff1fa439fe9a27c011aaaaace198abc218450f623e71fb857f9413ef17c84b5f
|
|
| MD5 |
40be786f43c21f1c662dcb9f4821bf3e
|
|
| BLAKE2b-256 |
05da277d2d333c8a2d644dae440a97a86496fd9f20a5caedc47ba93bfc31db82
|
Provenance
The following attestation bundles were made for clickflow_sync-1.3.3.tar.gz:
Publisher:
publish.yml on jenilmistryhq/ClickFlow-Sync
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
clickflow_sync-1.3.3.tar.gz -
Subject digest:
ff1fa439fe9a27c011aaaaace198abc218450f623e71fb857f9413ef17c84b5f - Sigstore transparency entry: 795993476
- Sigstore integration time:
-
Permalink:
jenilmistryhq/ClickFlow-Sync@c914f243d8b5ca607b929a86636a46bb33c73823 -
Branch / Tag:
refs/tags/1.3.3 - Owner: https://github.com/jenilmistryhq
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c914f243d8b5ca607b929a86636a46bb33c73823 -
Trigger Event:
release
-
Statement type:
File details
Details for the file clickflow_sync-1.3.3-py3-none-any.whl.
File metadata
- Download URL: clickflow_sync-1.3.3-py3-none-any.whl
- Upload date:
- Size: 8.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91115cd9967a6f5588c229c55fb46830a0700d314b7817b8483c85dc26bee107
|
|
| MD5 |
ddb5bcf69bb18e8f8b744b671bdc6e5a
|
|
| BLAKE2b-256 |
ba1c2f61b2f86f5c3e2aa4d24fafda44caea576036cd04071ffbd42cc20a3f30
|
Provenance
The following attestation bundles were made for clickflow_sync-1.3.3-py3-none-any.whl:
Publisher:
publish.yml on jenilmistryhq/ClickFlow-Sync
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
clickflow_sync-1.3.3-py3-none-any.whl -
Subject digest:
91115cd9967a6f5588c229c55fb46830a0700d314b7817b8483c85dc26bee107 - Sigstore transparency entry: 795993543
- Sigstore integration time:
-
Permalink:
jenilmistryhq/ClickFlow-Sync@c914f243d8b5ca607b929a86636a46bb33c73823 -
Branch / Tag:
refs/tags/1.3.3 - Owner: https://github.com/jenilmistryhq
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@c914f243d8b5ca607b929a86636a46bb33c73823 -
Trigger Event:
release
-
Statement type: