원클릭으로
debug-matomo-ui
Test and discover Matomo web UI URLs. Use this skill to find correct category/subcategory values for UI links. (project)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Test and discover Matomo web UI URLs. Use this skill to find correct category/subcategory values for UI links. (project)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Query Zendesk support tickets and comments for Emplois de l'Inclusion (read-only). (project)
Indicateurs du Réseau pour l'emploi (France Travail) — accès/présence en emploi, formation, recrutement, RSA, par territoire et par mois. Données agrégées, nationales, couvrant tout le réseau (pas seulement nos services). À distinguer d'autometa_tables_db.
Lire et écrire dans Notion — interroger une base de données ou une page, et publier des rapports. À utiliser dès qu'une demande référence une page/base Notion (URL app.notion.com, ou ancien notion.so).
Create a new dashboard (TDB) — scaffolds files and inserts a row in the dashboards table. Use this skill instead of writing files directly.
Update a dashboard's metadata (title, description, tags, flags, archive). MUST be invoked whenever the user wants to modify an existing dashboard — guarantees the right slug is targeted and reloads coding conventions.
Composer un system prompt riche en contexte métier et lancer un run autometa-jobs à partir de l'intention de l'utilisateur. À utiliser quand l'utilisateur veut une analyse autonome et longue (minutes à heures), trop lourde ou trop lente pour le chat interactif — par ex. « lance un job qui analyse tous les services Dora ».
| name | debug_matomo_ui |
| description | Test and discover Matomo web UI URLs. Use this skill to find correct category/subcategory values for UI links. (project) |
Use this skill when:
.matomo_cookie (gitignored):
MATOMO_SESSID=xxx; cf_clearance=yyy
from scripts.ui_tester import discover_categories, print_categories
# Discover valid categories for a site (uses API, no cookie needed)
categories = discover_categories(site_id=117)
# Print them nicely
print_categories(site_id=117)
# Output:
# General_Actions:
# Events_Events (Events)
# General_Pages (Pages)
# Actions_SubmenuPagesEntry (Entry pages)
# ...
The discover_categories() function uses API.getWidgetMetadata to get the real category/subcategory IDs - much more reliable than scraping HTML.
The cookie will expire (403 errors). When this happens:
.matomo_cookieAfter testing, update _UI_MAPPING in skills/querying/scripts/matomo.py.