@nomad-e/bluma-cli 0.9.1 → 0.10.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/dist/config/skills/pdf/SKILL.md +13 -0
- package/dist/main.js +9690 -8784
- package/package.json +2 -2
|
@@ -48,6 +48,19 @@ the user will share externally.
|
|
|
48
48
|
|---------------|-----------------|-------|
|
|
49
49
|
| Relatório executivo, board, entrega formal | `executive_report` | Capa + sumário; quebras só em capítulos densos |
|
|
50
50
|
| Inventário hardware, specs, sistema | `technical` | Fluxo contínuo; tabelas com texto resumido (não IPv6 novel) |
|
|
51
|
+
|
|
52
|
+
### Inventário hardware — specs fornecidas pelo utilizador (sandbox)
|
|
53
|
+
|
|
54
|
+
When the user or envelope includes machine specs JSON (`hostname`, `fabricante`,
|
|
55
|
+
`cpu_modelo`, `ram_gb`, `os`, …) or a block `<dados_da_maquina_do_utilizador>`:
|
|
56
|
+
|
|
57
|
+
1. **Use only that data** in the PDF — it describes the **user's machine**, not the sandbox.
|
|
58
|
+
2. **Do not** run `hostname`, `lscpu`, `uname`, `dmidecode`, `inxi`, or similar to
|
|
59
|
+
"discover" hardware; that reads the **container/VM** and produces wrong reports.
|
|
60
|
+
3. Save the provided object to `.bluma/artifacts/machine.json` (UTF-8), map fields to
|
|
61
|
+
`sections[]` / `table` rows in your report JSON, then `create_report.py --from-json`.
|
|
62
|
+
4. Missing fields → omit or note "não fornecido" — **never** fill gaps from sandbox
|
|
63
|
+
`<environment>` or shell output.
|
|
51
64
|
| Carta, proposta, documento com marca | `letterhead` | Preencher `letterhead.organization`, morada, `logo_path` opcional |
|
|
52
65
|
| Nota curta | `memo` | Sem sumário |
|
|
53
66
|
| Artigo técnico, MCP, whitepaper | `article` | Sem capítulos numerados excessivos |
|