一键导入
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.