p-backlog 0.2.2 → 0.2.3

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 CHANGED
@@ -1,6 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ## 0.2.2
3
+ ## 0.2.3
4
+
5
+ - README: screenshots of the task list, a task card and statistics (English UI in README.md, Russian UI in README.ru.md), generated from fictional demo data with `npm run screenshots`. No code changes.
6
+
7
+ ## 0.2.2 (not published to npm; its changes ship in 0.2.3)
4
8
 
5
9
  - README: npm, CI, Node and license badges; a section on using p-backlog together with code-review-graph (re-check by symbol). No code changes.
6
10
 
package/README.md CHANGED
@@ -13,6 +13,23 @@ triages them in a local web app.
13
13
  - **Backlog hygiene** — the agent re-checks tasks whose code changed and closes the ones no longer needed;
14
14
  closed tasks are deleted after 7 days.
15
15
 
16
+ ## Screenshots
17
+
18
+ ![Task list across three projects: the sidebar with project checkboxes and task counts, status, priority and type filters, and open tasks with tags, status, priority and creation date](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/en/tasks.png)
19
+
20
+ ![Task card of a bug in progress: status, priority, category and epic fields, the source file:line, a description with a half-done checklist, the task that blocked it and a related task](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/en/task.png)
21
+
22
+ <details>
23
+ <summary>Statistics: overview, effect, code</summary>
24
+
25
+ ![Statistics overview: alerts about stale urgent and low-priority tasks, tasks created and closed today and this week, debt by week and tasks created by day](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/en/stats.png)
26
+
27
+ ![Effect tab: lines deferred to the backlog next to lines in pull requests, week by week, with the share of unrelated edits kept out of pull requests](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/en/effect.png)
28
+
29
+ ![Code tab of one project: open debt in frequently changed folders ranked by commits times task weight, and debt density per 1000 lines](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/en/code.png)
30
+
31
+ </details>
32
+
16
33
  ## Getting started
17
34
 
18
35
  1. **Install** (needs Node.js 22.13 or newer):
@@ -238,6 +255,7 @@ npx playwright install chromium # once, before the first e2e run
238
255
  npm run test:e2e # Playwright: live list update
239
256
 
240
257
  npm run test:package # the tarball install path end to end on this OS (slow)
258
+ npm run screenshots # README screenshots on demo data, into docs/screenshots
241
259
  ```
242
260
 
243
261
  To try a build the way a published package would install, without publishing it:
package/README.ru.md CHANGED
@@ -13,6 +13,23 @@
13
13
  - **Порядок в беклоге** — агент перепроверяет задачи, чей код изменился, и закрывает ненужные; закрытые
14
14
  задачи удаляются через 7 дней.
15
15
 
16
+ ## Скриншоты
17
+
18
+ ![Список задач трёх проектов: боковая панель с галочками проектов и числом задач, фильтры по статусу, приоритету и типу, открытые задачи с тегами, статусом, приоритетом и датой создания](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/ru/tasks.png)
19
+
20
+ ![Карточка бага в работе: поля статуса, приоритета, категории и эпика, источник файл:строка, описание с наполовину выполненным чеклистом, задача-блокер и связанная задача](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/ru/task.png)
21
+
22
+ <details>
23
+ <summary>Статистика: обзор, эффект, код</summary>
24
+
25
+ ![Обзор статистики: тревоги о застоявшихся срочных и низкоприоритетных задачах, задачи за сегодня и за неделю, долг по неделям и созданные задачи по дням](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/ru/stats.png)
26
+
27
+ ![Вкладка «Эффект»: строки, вынесенные в беклог, рядом со строками в пулреквестах по неделям и доля посторонних правок, не попавших в пулреквесты](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/ru/effect.png)
28
+
29
+ ![Вкладка «Код» одного проекта: открытый долг в часто меняемых папках, ранжированный по коммитам и весу задач, и плотность долга на 1000 строк](https://raw.githubusercontent.com/expatriate/p-backlog/main/docs/screenshots/ru/code.png)
30
+
31
+ </details>
32
+
16
33
  ## Как начать
17
34
 
18
35
  1. **Установка** (нужен Node.js 22.13 или новее):
@@ -233,6 +250,7 @@ npx playwright install chromium # один раз, перед первым з
233
250
  npm run test:e2e # Playwright: живое обновление списка
234
251
 
235
252
  npm run test:package # весь путь установки из tarball на этой ОС (медленный)
253
+ npm run screenshots # скриншоты для README на демо-данных, в docs/screenshots
236
254
  ```
237
255
 
238
256
  Чтобы попробовать сборку так, будто это опубликованный пакет, без публикации:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "p-backlog",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Personal developer backlog for Claude Code: tasks as Markdown files, CLI, Stop hook and a local web UI",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -50,6 +50,7 @@
50
50
  "start": "npm run build && node dist/server.js",
51
51
  "dev": "concurrently -k -n server,web \"tsx watch src/server/main.ts\" \"vite\"",
52
52
  "test:e2e": "playwright test",
53
+ "screenshots": "npm run build && tsx scripts/screenshots/make.ts",
53
54
  "test:package": "vitest run --config vitest.package.config.ts",
54
55
  "prepare": "npm run build",
55
56
  "test:coverage": "vitest run --coverage",
@@ -88,6 +89,7 @@
88
89
  "react-router": "^8.4.0",
89
90
  "recharts": "^3.10.1",
90
91
  "remark-gfm": "^4.0.1",
92
+ "sharp": "^0.35.4",
91
93
  "tsx": "^4.23.15",
92
94
  "typescript": "~6.0.3",
93
95
  "typescript-eslint": "^8.70.0",