with one click
with one click
| name | me-thinktanks-weekly-update |
| description | 중동 싱크탱크 대시보드 주간 자동 업데이트 (매주 월요일 오전 9시) |
You are updating an existing interactive HTML dashboard that tracks Middle East / Saudi Arabia think tanks, their recent reports, and X (Twitter) feeds. This task runs weekly to keep the dashboard fresh.
Research new reports and activities from the 14 tracked institutions over the past 7 days and merge them into the dashboard, then save both copies of the HTML file.
/sessions/upbeat-practical-turing/mnt/outputs/middle-east-think-tanks-dashboard.html (main dashboard)/sessions/upbeat-practical-turing/mnt/outputs/me-thinktanks-deploy/index.html (deployable copy)| # | Name (KR / EN) | Country | Website | X handle |
|---|---|---|---|---|
| 1 | KFCRIS (킹 파이살 연구·이슬람학 센터) | SA | kfcris.com/en | @kfcris_en |
| 2 | KAPSARC (킹 압둘라 석유연구센터) | SA | kapsarc.org | @KAPSARC |
| 3 | Rasanah (국제이란연구소) | SA | rasanah-iiis.org | @rasanahiiis |
| 4 | Prince Saud Al-Faisal Institute for Diplomatic Studies | SA | — | — |
| 5 | KACND (King Abdulaziz Center for National Dialogue) | SA | — | — |
| 6 | ECSSR (에미리츠 전략연구센터) | AE | ecssr.ae/en | @TheECSSR |
| 7 | AGDA (안와르 가르가시 외교 아카데미) | AE | agda.ac.ae | @AGDAUAE |
| 8 | ME Council (중동국제문제위원회) | QA | mecouncil.org | @ME_Council |
| 9 | AJCS (알자지라 연구센터) | QA | studies.aljazeera.net/en | @ajstudies |
| 10 | Derasat (바레인 전략·국제·에너지연구센터) | BH | derasat.org.bh | @DerasatBH |
| 11 | INSS (이스라엘 국가안보연구소) | IL | inss.org.il | @INSSIsrael |
| 12 | Brookings Doha Center | QA | brookings.edu/centers/center-for-middle-east-policy | — |
| 13 | GRC (Gulf Research Center) | SA | grc.net | @Gulf_Research |
| 14 | IMCTC (Islamic Military Counter Terrorism Coalition) | SA | — | — |
Use WebSearch to find NEW publications/reports from these institutions published in the past week. Priority targets (most active publishers):
Search queries to try (use today's date context):
"Middle East Council" situation assessment [current month year]INSS Insight [current month year]Rasanah Iran Case File [current month year]KAPSARC publications [current month year]"Al Jazeera Centre for Studies" reports [current month year]Read /sessions/upbeat-practical-turing/mnt/outputs/middle-east-think-tanks-dashboard.html. The report data lives in a JavaScript array called allReports (search for const allReports = [). Each entry has this format:
{ title: "...", org: "...", orgId: N, country: "SA|AE|QA|BH|IL", cat: ["geo"|"energy"|"culture"], date: "YYYY-MM-DD", dateLabel: "M월 D일", yearLabel: "YYYY", url: "...", tags: ["NEW"|"HOT"|] }
The X feed samples live in an array called xAccounts (search for const xAccounts = [). Each entry has samplePosts: [...].
allReports. Mark reports from the last 7 days with tags: ["NEW"]. Mark notable/viral reports with tags: ["NEW","HOT"].samplePosts in xAccounts if you found notable recent activity from a specific account (use the report titles as proxy for posts if actual X content isn't accessible).<div class="num">38+</div> (or whatever current number) to reflect the new total count.중동·사우디 싱크탱크 및 연구기관 인터랙티브 대시보드 | YYYY년 M월 기준 — replace with current month.Use the Edit tool to modify the main file:
/sessions/upbeat-practical-turing/mnt/outputs/middle-east-think-tanks-dashboard.html
Then copy it to the deploy folder using Bash:
cp /sessions/upbeat-practical-turing/mnt/outputs/middle-east-think-tanks-dashboard.html /sessions/upbeat-practical-turing/mnt/outputs/me-thinktanks-deploy/index.html
Send a concise summary message (in Korean) listing:
computer:///sessions/upbeat-practical-turing/mnt/outputs/me-thinktanks-deploy/index.htmlallReports.sort((a, b) => b.date.localeCompare(a.date)) runs at the bottom, so new entries can be inserted anywhere in the array.middle-east-think-tanks-dashboard.html and me-thinktanks-deploy/index.html) are updated with identical content.[HINT] Download the complete skill directory including SKILL.md and all related files