shadok-ai 0.3.88 → 0.3.89

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,8 +5,8 @@ description: Schedule recurring prompts (monitoring, reporting, watching) for th
5
5
 
6
6
  # shadok-scheduler
7
7
 
8
- Turn a natural-language request like *"surveille le budget Google Ads chaque matin
9
- et alerte-moi si un plafond est dépassé"* into a token-efficient scheduled job on
8
+ Turn a natural-language request like *"watch the Google Ads budget every morning
9
+ and alert me when a cap is exceeded"* into a token-efficient scheduled job on
10
10
  **this channel**.
11
11
 
12
12
  Only works inside a shadok-ai channel — it needs `SHADOK_SESSION_ID` and
@@ -84,14 +84,14 @@ An interval (`every:30m`) is a duration, so it has no timezone.
84
84
  node scripts/schedule.mjs add \
85
85
  --schedule daily:09:00 \
86
86
  --check "python3 $HOME/.claude/skills/google-ads/scripts/check_budget.py" \
87
- --prompt "Le monitoring a détecté une anomalie budget Google Ads. Rédige une alerte claire et actionnable pour l'équipe."
87
+ --prompt "The monitoring detected a Google Ads budget anomaly. Write a clear, actionable alert for the team."
88
88
  ```
89
89
 
90
90
  ### Example — plain recurring report (runs every time)
91
91
 
92
92
  ```
93
93
  node scripts/schedule.mjs add --schedule daily:18:00 \
94
- --prompt "Fais le point de la journée sur le compte et poste un court résumé."
94
+ --prompt "Review the day on the account and post a short summary."
95
95
  ```
96
96
 
97
97
  After creating a schedule, confirm to the user in plain language: what it watches,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shadok-ai",
3
- "version": "0.3.88",
3
+ "version": "0.3.89",
4
4
  "main": "dist/session.js",
5
5
  "scripts": {
6
6
  "test": "node --import tsx --test test/*.ts .claude/skills/shadok-ai-agents/test/*.test.mjs context/*/test/*.test.mjs",