adb-ready 0.1.0 → 0.1.2
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/CHANGELOG.md +30 -1
- package/README.md +1 -1
- package/dist/cli.js +146 -32
- package/dist/cli.js.map +11 -10
- package/docs/automation.md +1 -1
- package/docs/logs-and-context.md +4 -0
- package/package.json +1 -1
package/docs/automation.md
CHANGED
|
@@ -16,7 +16,7 @@ adb-ready logs --format ndjson --non-interactive
|
|
|
16
16
|
| `human` | TTY-aware panels, progress, and actionable diagnostics |
|
|
17
17
|
| `plain` | deterministic line-oriented human text without terminal control |
|
|
18
18
|
| `json` | one complete versioned result envelope |
|
|
19
|
-
| `ndjson` | one versioned event per line, followed by the command result where applicable |
|
|
19
|
+
| `ndjson` | one versioned event per line, followed by the command result where applicable; saved timelines end with an event-count summary instead of duplicating the full event array |
|
|
20
20
|
| `markdown` | bounded diagnostic context; only valid for `context` |
|
|
21
21
|
|
|
22
22
|
Machine data is written to `stdout`. Human progress and diagnostics are written
|
package/docs/logs-and-context.md
CHANGED
|
@@ -16,6 +16,10 @@ adb-ready logs --exclude-tag Choreographer --tail 200
|
|
|
16
16
|
adb-ready logs --buffer main --buffer system --buffer crash
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
+
A live stream starts at the current end of the device buffer, so a new session
|
|
20
|
+
does not report stale crashes from an earlier run. Use `--tail`, `--since`, or
|
|
21
|
+
`--dump` when historical records are intentional.
|
|
22
|
+
|
|
19
23
|
Use `--dump` for a bounded snapshot that exits:
|
|
20
24
|
|
|
21
25
|
```bash
|