Datasets:
File size: 3,031 Bytes
934aad3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | id: cb-033
title: "Cross-platform project sync: GitHub milestones to Linear projects to Notion"
difficulty: hard
category: composite
description: |
Synchronize project tracking across three platforms. First, list all open
GitHub milestones in "acme-corp/web-platform". For each milestone, find or
create the corresponding Linear project (matching by name). Update the
Linear project's target date to match the milestone's due date. Finally,
create a Notion page under "Project Tracking" that shows a unified view
of all projects with their GitHub milestone progress (open/closed issue
counts) and Linear project status.
tools_provided:
- gh
- linear
- notion
initial_state:
gh:
repos:
acme-corp/web-platform:
milestones:
- title: "v3.0 Release"
state: open
due_date: "2026-04-01"
open_issues: 12
closed_issues: 28
description: "Major version release with new auth system"
- title: "Security Hardening"
state: open
due_date: "2026-03-20"
open_issues: 5
closed_issues: 15
description: "Address all findings from Q4 security audit"
- title: "Performance Sprint"
state: open
due_date: "2026-03-25"
open_issues: 8
closed_issues: 4
description: "P95 latency reduction targets"
- title: "v2.9 Release"
state: closed
due_date: "2026-02-28"
open_issues: 0
closed_issues: 35
linear:
projects:
- name: "v3.0 Release"
status: in_progress
lead: sarah@acme.com
target_date: "2026-03-28"
teams: ["Platform"]
- name: "Security Hardening"
status: in_progress
lead: bob@acme.com
target_date: "2026-03-15"
teams: ["Platform", "Security"]
notion:
databases:
- id: db-003
title: "Project Tracking"
pages:
- id: pg-030
title: "Archived Projects"
parent: "Project Tracking"
expected_state:
gh:
command_history:
- pattern: "gh api.*milestones"
linear:
projects:
- name: "v3.0 Release"
target_date: "2026-04-01"
- name: "Security Hardening"
target_date: "2026-03-20"
- name: "Performance Sprint"
status: planned
command_history:
- pattern: "linear project update.*v3.0.*--target-date"
- pattern: "linear project (update|create).*Security Hardening"
- pattern: "linear project create.*Performance Sprint"
notion:
pages:
- title_contains: "Project Sync"
parent: "Project Tracking"
content_contains: "v3.0 Release"
content_contains_2: "Security Hardening"
content_contains_3: "Performance Sprint"
command_history:
- pattern: "notion page create.*--parent.*Project Tracking"
scoring:
outcome: 0.6
efficiency: 0.2
recovery: 0.2
max_turns: 15
optimal_commands: 8
timeout_seconds: 120
|