trdr-ds-install 1.9.0 → 1.11.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "trdr-ds-install",
3
- "version": "1.9.0",
3
+ "version": "1.11.0",
4
4
  "description": "Installs the TRDR Design System skill for Claude Code",
5
5
  "bin": {
6
6
  "trdr-ds-install": "./bin/install.js"
@@ -2,11 +2,11 @@
2
2
  name: trdr-ds
3
3
  description: Applies the TRDR Design System to any project. Runs a multi-phase workflow - first analyzes the project and saves DS_ANALYSIS.md, then executes implementation in 4 checkpointed sub-phases (Foundation → Violations → Components → Final), each saving progress to DS_PROGRESS.md and resumable at any time. Trigger when developer mentions "apply design system", "implement TRDR DS", "add TRDR tokens", "design system setup", "migrar design system", "aplicar design system", or invokes /trdr-ds.
4
4
  user-invocable: true
5
- argument-hint: "[analyze|apply|foundation|violations|components|final|resume|status|sync|batch N|rollback]"
5
+ argument-hint: "[analyze|apply|foundation|violations|components|final|resume|status|sync|batch N|rollback|report]"
6
6
  allowed-tools: [Read, Glob, Grep, Edit, Write, Bash, WebFetch]
7
7
  ---
8
8
 
9
- **Skill version:** 1.9.0
9
+ **Skill version:** 1.11.0
10
10
  **npm package:** trdr-ds-install
11
11
 
12
12
  You are implementing the **TRDR Design System** in a developer's project. The Design Hub is the single source of truth and lives at **https://trdr.mrocontent.com.br**.
@@ -37,6 +37,7 @@ Execute in multiple checkpointed phases: **PHASE 1: ANALYZE (saves DS_ANALYSIS.m
37
37
  | `batch [N]` | Override default violation batch size (default: 5 files/batch) |
38
38
  | `sync` | Re-fetch `https://trdr.mrocontent.com.br/components.json` and `https://trdr.mrocontent.com.br/tokens.css`, overwrite `data/components.json` and `references/tokens.css` in the skill directory, report the diff. No project changes. |
39
39
  | `rollback` | Read `DS_PROGRESS.md` to find the backup branch, reset working branch to that state, remove DS artifacts. Requires `DS_PROGRESS.md` with a `Backup branch:` entry |
40
+ | `report` | Generate a bug report (DS_BUG_REPORT.md) with project context, errors encountered, and current migration state. Sends via email to the skill maintainer (mrocontent@gmail.com). Can also be triggered automatically when a sub-phase encounters critical failures |
40
41
  | `--latest` *(modifier on `analyze` or `apply`)* | Same as `sync` first, then continue normally |
41
42
 
42
43
  ---
@@ -60,7 +61,7 @@ Compare the result with the **Skill version** constant at the top of this file.
60
61
  - If registry version == local version: skip silently, continue.
61
62
  - If registry version > local version:
62
63
  ```
63
- 🔄 Nova versão da skill disponível: trdr-ds-install@[registry-version] (instalada: 1.9.0)
64
+ 🔄 Nova versão da skill disponível: trdr-ds-install@[registry-version] (instalada: 1.11.0)
64
65
 
65
66
  Responda:
66
67
  - `"atualizar"` / `"update"` — instalar a nova versão agora (requer reiniciar /trdr-ds após)
@@ -1034,8 +1035,38 @@ Install order: [topological — atomics first, then compounds by dependency]
1034
1035
 
1035
1036
  ## Padrões Sem Token (revisão manual)
1036
1037
  [empty — filled during execution]
1038
+
1039
+ ## Execution Log
1040
+ [Each action appends a row here — this is the canonical audit trail for the report]
1037
1041
  ```
1038
1042
 
1043
+ **Execution Log rule (applies to ALL sub-phases):**
1044
+
1045
+ After every file creation or modification by the skill, append a row to the `## Execution Log` section of `DS_PROGRESS.md`:
1046
+
1047
+ ```
1048
+ | [ISO datetime] | [sub-phase] | [action] | [file path] | [details] |
1049
+ ```
1050
+
1051
+ Actions: `CREATE`, `MODIFY`, `SKIP`, `FAIL`
1052
+
1053
+ Examples:
1054
+ ```
1055
+ | 2026-05-14T10:23:01 | A | CREATE | src/styles/tokens.css | 292 CSS variables (dark+light) |
1056
+ | 2026-05-14T10:23:02 | A | CREATE | src/styles/components.css | 25 component classes + typography |
1057
+ | 2026-05-14T10:23:03 | A | MODIFY | src/styles/globals.css | @import tokens.css + components.css |
1058
+ | 2026-05-14T10:23:04 | A | CREATE | CLAUDE.md | DS context for Claude Code |
1059
+ | 2026-05-14T10:25:11 | B | MODIFY | src/components/Header.tsx | 5 violations fixed: A(3), C(2) |
1060
+ | 2026-05-14T10:25:12 | B | MODIFY | src/components/Card.css | 3 violations fixed: A(1), B(2) |
1061
+ | 2026-05-14T10:25:13 | B | SKIP | src/legacy/old.css | 0 violations — already compliant |
1062
+ | 2026-05-14T10:30:01 | C | MODIFY | src/components/Button.tsx | simple swap → .trdr-btn |
1063
+ | 2026-05-14T10:30:02 | C | FAIL | src/components/Modal.tsx | stub — not yet implemented in DS |
1064
+ | 2026-05-14T10:35:01 | D | MODIFY | public/logo.svg | replaced with logo-trdr.svg |
1065
+ | 2026-05-14T10:35:02 | D | CREATE | DS_MIGRATION.md | manual checklist generated |
1066
+ ```
1067
+
1068
+ This log is cumulative — never clear it. Each `/trdr-ds resume` session appends to the existing log.
1069
+
1039
1070
  ### Step 0.5 — Git backup (safety net)
1040
1071
 
1041
1072
  Before modifying any project file, create a git backup so the entire migration can be rolled back.
@@ -1154,7 +1185,7 @@ If `references/tokens.css` is missing in the skill directory:
1154
1185
 
1155
1186
  Update `DS_PROGRESS.md`:
1156
1187
  ```
1157
- - [x] tokens.css — [path]/tokens.css
1188
+ - [x] tokens.css — [path]/tokens.css ([ISO datetime])
1158
1189
  ```
1159
1190
 
1160
1191
  ### Step 2 — Create components.css
@@ -1201,7 +1232,7 @@ After all component CSS blocks, append the text style utility classes:
1201
1232
 
1202
1233
  Update `DS_PROGRESS.md`:
1203
1234
  ```
1204
- - [x] components.css — [path]/components.css
1235
+ - [x] components.css — [path]/components.css ([ISO datetime])
1205
1236
  ```
1206
1237
 
1207
1238
  ### Step 3 — Update global CSS
@@ -1219,7 +1250,7 @@ If the project already imports a different design system's variables and there a
1219
1250
 
1220
1251
  Update `DS_PROGRESS.md`:
1221
1252
  ```
1222
- - [x] @import — [global-css-file]
1253
+ - [x] @import — [global-css-file] ([ISO datetime])
1223
1254
  ```
1224
1255
 
1225
1256
  ### Step 4 — Create CLAUDE.md
@@ -1320,7 +1351,7 @@ This project uses Material UI with TRDR DS tokens integrated via the theme.
1320
1351
 
1321
1352
  Update `DS_PROGRESS.md`:
1322
1353
  ```
1323
- - [x] CLAUDE.md — CLAUDE.md
1354
+ - [x] CLAUDE.md — CLAUDE.md ([ISO datetime])
1324
1355
  ```
1325
1356
 
1326
1357
  ### Step 5 — Generate/update MUI theme with DS tokens (only when `stylingMode === 'mui'`)
@@ -1486,9 +1517,11 @@ Próximo: Sub-fase B — Violations ([total_files_with_violations] arquivos em [
1486
1517
  Responda:
1487
1518
  - "continuar" / "continue" — iniciar Sub-fase B
1488
1519
  - "parar" / "stop" — salvar progresso e parar aqui
1520
+ - "não funcionou" / "report" — reportar problema ao maintainer
1489
1521
  ```
1490
1522
 
1491
1523
  **STOP HERE. Wait for developer reply before starting Sub-fase B.**
1524
+ If the developer indicates the implementation didn't work (see DEVELOPER DISSATISFACTION DETECTION below), trigger REPORT MODE.
1492
1525
 
1493
1526
  ---
1494
1527
 
@@ -1508,10 +1541,16 @@ For each batch listed as PENDING in `DS_PROGRESS.md` § Sub-fase B:
1508
1541
  2. For each file in the batch:
1509
1542
  - Apply all applicable violation fixes (see mapping tables below)
1510
1543
  - Count violations fixed
1511
- 3. Update `DS_PROGRESS.md` — change batch status to `COMPLETED`:
1544
+ 3. Update `DS_PROGRESS.md` — change batch status to `COMPLETED` with per-file detail:
1512
1545
  ```
1513
1546
  ### Lote [N] — [folder/] ([N] arquivos) — COMPLETED
1547
+ Completed: [ISO datetime]
1514
1548
  Violações corrigidas: [N] | Arquivos: [N]/[N]
1549
+
1550
+ | Arquivo | Violações | Categorias | Tokens aplicados |
1551
+ |---------|-----------|------------|------------------|
1552
+ | src/components/Header.tsx | 5 | A(3), C(2) | --content-brand, --spacing-md, --bg-primary |
1553
+ | src/components/Card.css | 3 | A(1), B(2) | --surface-secondary, --font-primary, --font-secondary |
1515
1554
  ```
1516
1555
  Add any unfixable patterns to the "Padrões Sem Token" section of `DS_PROGRESS.md`.
1517
1556
  4. Output batch summary:
@@ -1529,12 +1568,14 @@ For each batch listed as PENDING in `DS_PROGRESS.md` § Sub-fase B:
1529
1568
  - "pular [pasta]" — skip this folder and go to the next batch
1530
1569
  - "parar" / "stop" — save progress and stop here (resume later with `/trdr-ds resume`)
1531
1570
  - "tudo" / "all" — process all remaining batches without pausing
1571
+ - "não funcionou" / "report" — reportar problema ao maintainer
1532
1572
  ```
1533
1573
  **Wait for developer reply.**
1534
1574
 
1535
1575
  If reply is `"tudo"` / `"all"`: process all remaining batches without pausing (update DS_PROGRESS.md after each).
1536
1576
  If reply is `"pular [pasta]"`: mark that batch as SKIPPED in DS_PROGRESS.md and move to the next.
1537
1577
  If reply is `"parar"`: set `Status: PAUSED` in DS_PROGRESS.md. STOP. Do not proceed to Step 6 or 7.
1578
+ If the developer indicates the implementation didn't work (see DEVELOPER DISSATISFACTION DETECTION below), trigger REPORT MODE.
1538
1579
 
1539
1580
  6. After ALL batches are COMPLETED (or skipped):
1540
1581
 
@@ -1548,9 +1589,11 @@ For each batch listed as PENDING in `DS_PROGRESS.md` § Sub-fase B:
1548
1589
  Responda:
1549
1590
  - "continuar" / "continue" — iniciar Sub-fase C
1550
1591
  - "parar" / "stop" — salvar progresso e parar aqui
1592
+ - "não funcionou" / "report" — reportar problema ao maintainer
1551
1593
  ```
1552
1594
 
1553
1595
  **STOP HERE. Wait for developer reply before starting Sub-fase C.**
1596
+ If the developer indicates the implementation didn't work (see DEVELOPER DISSATISFACTION DETECTION below), trigger REPORT MODE.
1554
1597
 
1555
1598
  ---
1556
1599
 
@@ -2050,9 +2093,11 @@ Próximo: Sub-fase D — Final (logos, ícones, DS_MIGRATION.md)
2050
2093
  Responda:
2051
2094
  - "continuar" / "continue" — iniciar Sub-fase D
2052
2095
  - "parar" / "stop" — salvar progresso e parar aqui
2096
+ - "não funcionou" / "report" — reportar problema ao maintainer
2053
2097
  ```
2054
2098
 
2055
2099
  **STOP HERE. Wait for developer reply before starting Sub-fase D.**
2100
+ If the developer indicates the implementation didn't work (see DEVELOPER DISSATISFACTION DETECTION below), trigger REPORT MODE.
2056
2101
 
2057
2102
  ---
2058
2103
 
@@ -2362,9 +2407,11 @@ Próximo: Sub-fase D — Final (logos + ícones + DS_MIGRATION.md)
2362
2407
  Responda:
2363
2408
  - "continuar" / "continue" — finalizar migração
2364
2409
  - "parar" / "stop" — salvar progresso e parar aqui
2410
+ - "não funcionou" / "report" — reportar problema ao maintainer
2365
2411
  ```
2366
2412
 
2367
2413
  **STOP HERE. Wait for developer reply before starting Sub-fase D.**
2414
+ If the developer indicates the implementation didn't work (see DEVELOPER DISSATISFACTION DETECTION below), trigger REPORT MODE.
2368
2415
 
2369
2416
  ---
2370
2417
 
@@ -2839,6 +2886,7 @@ Hub: https://trdr.mrocontent.com.br
2839
2886
  → Stubs not yet canonical: see MISSING_COMPONENTS.md
2840
2887
  → Backup branch: `trdr-ds/backup-{timestamp}` — para desfazer: `/trdr-ds rollback`
2841
2888
  → Para remover o backup após validar: `git branch -D trdr-ds/backup-{timestamp}`
2889
+ → Algo deu errado? `/trdr-ds report` para enviar um bug report ao maintainer
2842
2890
  ```
2843
2891
 
2844
2892
  ---
@@ -2994,6 +3042,275 @@ If either fetch fails, report which one and exit. Do NOT touch the snapshot if t
2994
3042
 
2995
3043
  ---
2996
3044
 
3045
+ ## REPORT MODE (when invoked as `/trdr-ds report` or triggered automatically)
3046
+
3047
+ This mode generates a structured bug report and sends it to the skill maintainer via email.
3048
+
3049
+ **Maintainer email:** `mrocontent@gmail.com`
3050
+
3051
+ ### When it triggers automatically
3052
+
3053
+ After each sub-phase (A, B, C, D) completes — or fails to complete — evaluate these conditions:
3054
+
3055
+ | Condition | Severity | Auto-report? |
3056
+ |-----------|----------|--------------|
3057
+ | Sub-phase crashed or could not complete (e.g., missing files, parse errors, Hub unreachable after local snapshot also missing) | CRITICAL | ✅ Yes |
3058
+ | Build fails after sub-phase changes (if detectable via `npm run build` or framework equivalent) | CRITICAL | ✅ Yes |
3059
+ | More than 30% of violations in a batch could not be mapped to any DS token (flagged as "no match") | HIGH | ✅ Yes |
3060
+ | Component replacement produced malformed JSX/HTML (unclosed tags, syntax errors caught by grep) | CRITICAL | ✅ Yes |
3061
+ | Rollback was invoked (indicates the migration went wrong enough to revert) | HIGH | ✅ Yes |
3062
+
3063
+ When auto-report triggers, inform the developer:
3064
+ ```
3065
+ ⚠️ A skill detectou problemas críticos nesta migração.
3066
+ Um bug report será gerado e enviado ao maintainer (mrocontent@gmail.com).
3067
+
3068
+ Deseja incluir observações adicionais no report?
3069
+ - Escreva seu comentário e pressione Enter
3070
+ - "pular" / "skip" — enviar sem comentários extras
3071
+ ```
3072
+ **Wait for reply.** Save the developer's comment (if any) as `developerNotes` for inclusion in the report.
3073
+
3074
+ ### Manual invocation (`/trdr-ds report`)
3075
+
3076
+ When invoked manually, the developer may optionally describe the problem:
3077
+ - `/trdr-ds report` — generates report from current state
3078
+ - `/trdr-ds report Violações não foram aplicadas nos arquivos .vue` — includes the description
3079
+
3080
+ Ask the developer:
3081
+ ```
3082
+ 📝 Bug report — descreva o problema que encontrou com a skill:
3083
+ (Se já descreveu no comando, pressione Enter para confirmar)
3084
+ ```
3085
+ **Wait for reply.** Save as `developerNotes`.
3086
+
3087
+ ### Step R1 — Collect project context
3088
+
3089
+ Gather the following data silently (no output to the developer):
3090
+
3091
+ 1. **Project info:**
3092
+ - `package.json` → name, framework, framework version, stylingMode detected
3093
+ - Node.js version: `node --version`
3094
+ - OS: read from environment (platform)
3095
+ - Skill version: read from top of this file
3096
+
3097
+ 2. **Migration state:**
3098
+ - Read `DS_ANALYSIS.md` (if exists) — extract: total violations, categories breakdown, total files
3099
+ - Read `DS_PROGRESS.md` (if exists) — extract: current status, which sub-phases completed, which pending, and the full `## Execution Log` section (per-file audit trail with timestamps)
3100
+ - Read `SPRINT_PLAN.md` (if exists) — extract: sprint progress
3101
+ - Read `DS_MIGRATION.md` (if exists) — extract: manual items count
3102
+
3103
+ 3. **Error context:**
3104
+ - If auto-triggered: capture the specific error/condition that triggered the report
3105
+ - If manual: use `developerNotes`
3106
+ - Last 3 files modified by the skill (from `DS_PROGRESS.md` batch logs)
3107
+ - If build failed: capture the first 50 lines of build error output
3108
+
3109
+ 4. **Snapshot versions:**
3110
+ - `data/components.json` → `generatedAt` and count of implemented components
3111
+ - `references/tokens.css` → count of CSS variables (grep `--` in `:root`)
3112
+
3113
+ ### Step R2 — Generate DS_BUG_REPORT.md
3114
+
3115
+ Write `DS_BUG_REPORT.md` at the project root:
3116
+
3117
+ ```markdown
3118
+ # TRDR DS — Bug Report
3119
+
3120
+ **Date:** [ISO datetime]
3121
+ **Skill version:** [version from SKILL.md]
3122
+ **Report type:** [AUTOMATIC | MANUAL]
3123
+ **Severity:** [CRITICAL | HIGH | MEDIUM]
3124
+
3125
+ ---
3126
+
3127
+ ## Problem Description
3128
+
3129
+ [developerNotes — or auto-trigger condition description]
3130
+
3131
+ ## Project Context
3132
+
3133
+ | Field | Value |
3134
+ |-------|-------|
3135
+ | Project | [package.json name] |
3136
+ | Framework | [framework] [version] |
3137
+ | Styling mode | [stylingMode] |
3138
+ | Node.js | [version] |
3139
+ | OS | [platform] |
3140
+
3141
+ ## Migration State
3142
+
3143
+ | Sub-phase | Status |
3144
+ |-----------|--------|
3145
+ | Analysis | [✅ COMPLETE / ⏳ PENDING / ❌ FAILED] |
3146
+ | A — Foundation | [status] |
3147
+ | B — Violations | [status — N/M batches done] |
3148
+ | C — Components | [status — N/M candidates done] |
3149
+ | D — Final | [status] |
3150
+
3151
+ **Overall status:** [from DS_PROGRESS.md]
3152
+ **Backup branch:** [branch name or N/A]
3153
+
3154
+ ## Violation Summary
3155
+
3156
+ | Category | Found | Fixed | Unfixable |
3157
+ |----------|-------|-------|-----------|
3158
+ | A — Hardcoded colors | [n] | [n] | [n] |
3159
+ | B — Hardcoded fonts | [n] | [n] | [n] |
3160
+ | C — Hardcoded spacing | [n] | [n] | [n] |
3161
+ | ... | ... | ... | ... |
3162
+
3163
+ ## Error Details
3164
+
3165
+ [If build failed: first 50 lines of error output]
3166
+ [If unmapped violations: list of values that had no token match]
3167
+ [If component replacement failed: file path + what went wrong]
3168
+
3169
+ ## Files Affected
3170
+
3171
+ [List of last files modified by the skill, from DS_PROGRESS.md]
3172
+
3173
+ ## Snapshot Info
3174
+
3175
+ - Components catalog: [generatedAt] — [N] implemented / [M] total
3176
+ - Tokens CSS: [N] variables
3177
+
3178
+ ## Execution Log
3179
+
3180
+ [Copy the entire `## Execution Log` section from DS_PROGRESS.md here — this is the full audit trail of every file the skill created, modified, skipped, or failed on, with timestamps]
3181
+
3182
+ | Timestamp | Phase | Action | File | Details |
3183
+ |-----------|-------|--------|------|---------|
3184
+ | ... | ... | ... | ... | ... |
3185
+
3186
+ ## Developer Notes
3187
+
3188
+ > [Raw text from the developer, if provided]
3189
+ ```
3190
+
3191
+ ### Step R3 — Send via email (Resend API)
3192
+
3193
+ Execute via Bash:
3194
+
3195
+ ```bash
3196
+ node -e "
3197
+ const https = require('https');
3198
+
3199
+ const report = require('fs').readFileSync('DS_BUG_REPORT.md', 'utf8');
3200
+ const projectName = '[project-name-from-package.json]';
3201
+ const severity = '[CRITICAL|HIGH|MEDIUM]';
3202
+ const skillVersion = '[version]';
3203
+
3204
+ const data = JSON.stringify({
3205
+ from: 'TRDR DS Skill <onboarding@resend.dev>',
3206
+ to: ['mrocontent@gmail.com'],
3207
+ subject: '[TRDR DS ' + severity + '] Bug report — ' + projectName + ' (v' + skillVersion + ')',
3208
+ text: report
3209
+ });
3210
+
3211
+ const req = https.request({
3212
+ hostname: 'api.resend.com',
3213
+ path: '/emails',
3214
+ method: 'POST',
3215
+ headers: {
3216
+ 'Authorization': 'Bearer ' + process.env.RESEND_API_KEY,
3217
+ 'Content-Type': 'application/json',
3218
+ 'Content-Length': Buffer.byteLength(data)
3219
+ }
3220
+ }, (res) => {
3221
+ let body = '';
3222
+ res.on('data', c => body += c);
3223
+ res.on('end', () => {
3224
+ if (res.statusCode >= 200 && res.statusCode < 300) {
3225
+ console.log('OK: ' + body);
3226
+ } else {
3227
+ console.log('FAIL (' + res.statusCode + '): ' + body);
3228
+ }
3229
+ });
3230
+ });
3231
+ req.write(data);
3232
+ req.end();
3233
+ "
3234
+ ```
3235
+
3236
+ **If `RESEND_API_KEY` is not set in the environment:**
3237
+ ```
3238
+ ⚠️ RESEND_API_KEY não encontrada no ambiente.
3239
+ O report foi salvo em DS_BUG_REPORT.md mas não pôde ser enviado por email.
3240
+
3241
+ Para configurar:
3242
+ 1. Obtenha sua API key em https://resend.com/api-keys
3243
+ 2. Adicione ao ambiente: export RESEND_API_KEY="re_xxxxxxxx"
3244
+ 3. Ou adicione no .env do projeto e execute novamente /trdr-ds report
3245
+ ```
3246
+
3247
+ **If the email send fails (non-2xx response):**
3248
+ ```
3249
+ ⚠️ Falha ao enviar email (HTTP [status]): [response body]
3250
+ O report foi salvo localmente em DS_BUG_REPORT.md.
3251
+ Envie manualmente para mrocontent@gmail.com.
3252
+ ```
3253
+
3254
+ ### Step R4 — Output to developer
3255
+
3256
+ ```
3257
+ [If email sent successfully:]
3258
+ ✅ Bug report gerado e enviado.
3259
+
3260
+ 📄 DS_BUG_REPORT.md (salvo no projeto)
3261
+ 📧 Email enviado para mrocontent@gmail.com
3262
+ 🏷️ Severidade: [CRITICAL|HIGH|MEDIUM]
3263
+
3264
+ O maintainer será notificado e entrará em contato.
3265
+
3266
+ [If email failed:]
3267
+ 📄 Bug report salvo em DS_BUG_REPORT.md
3268
+ ⚠️ Email não enviado — veja instruções acima.
3269
+
3270
+ [In both cases:]
3271
+ → Para continuar a migração: /trdr-ds resume
3272
+ → Para reverter: /trdr-ds rollback
3273
+ ```
3274
+
3275
+ ### DEVELOPER DISSATISFACTION DETECTION
3276
+
3277
+ At every STOP checkpoint and at any point during the conversation, if the developer expresses that the implementation didn't work correctly, trigger REPORT MODE automatically. Match any of these patterns (case-insensitive, partial match):
3278
+
3279
+ | Pattern (PT) | Pattern (EN) |
3280
+ |--------------|--------------|
3281
+ | "não funcionou" | "didn't work" |
3282
+ | "não deu certo" | "it's broken" |
3283
+ | "deu errado" | "went wrong" |
3284
+ | "ficou errado" | "messed up" |
3285
+ | "quebrou" | "broke" |
3286
+ | "não aplicou" | "didn't apply" |
3287
+ | "não tá certo" | "not right" |
3288
+ | "tá errado" | "it's wrong" |
3289
+ | "report" | "bug report" |
3290
+
3291
+ When detected:
3292
+ 1. Acknowledge the developer's feedback
3293
+ 2. Execute REPORT MODE (Steps R1–R4) with `reportType: MANUAL` and `severity: HIGH`
3294
+ 3. Use the developer's message as `developerNotes` — ask for additional details if the message is too vague (less than 10 characters)
3295
+ 4. After sending the report, offer the developer options to continue:
3296
+ ```
3297
+ Responda:
3298
+ - "rollback" — reverter todas as mudanças
3299
+ - "continuar" — tentar prosseguir mesmo assim
3300
+ - "parar" — salvar progresso e parar aqui
3301
+ ```
3302
+
3303
+ ### Auto-report integration points
3304
+
3305
+ When auto-report is triggered during a sub-phase, execute Steps R1–R4 **after** saving progress to `DS_PROGRESS.md` but **before** the STOP checkpoint. The sub-phase continues normally after the report — the developer can still choose to continue, stop, or rollback.
3306
+
3307
+ Add to `DS_PROGRESS.md` when a report is sent:
3308
+ ```
3309
+ Bug report: DS_BUG_REPORT.md (sent [ISO datetime] — [AUTOMATIC|MANUAL] — [severity])
3310
+ ```
3311
+
3312
+ ---
3313
+
2997
3314
  ## LIVE HUB REFERENCE (canonical fallback)
2998
3315
 
2999
3316
  When the developer asks about a component, token, or rule that is not in the local snapshot, fetch from the Hub: