Go to file
mirivlad 0b26f7e5b3 refactor: implement template-driven node tree and human-readable vault layout
Unified Node model: added template_id, fs_path, archived, sort_order fields.
Template registry: system templates embedded as JSON (folder/project/client/
document/recipe), with Registry for enabled/disabled/filtered access.
SafeDisplayNameToPathSegment: human-readable path segments with Cyrillic
support, illegal char replacement, uniqueness via numeric suffixes.
Sidebar refactored: system views (Today/Inbox/Activity) separate from
workspace tree. Creation menu built dynamically from enabled templates.
Create/Rename/Move: physical folder operations with fs_path update,
recursive descendant path updates.
DB migration 012: adds template_id, fs_path, archived columns.
Vault migration command: rebuilds fs_path for existing nodes.
Tests: safename, registry, node model, repository integration.
Docs: VAULT_LAYOUT.md, TEMPLATES.md, PLAN.md updated.
i18n: nav.system, nav.workspace, template.*, common.rename/archive,
migrate.* keys added to ru.json and en.json.
2026-06-02 12:47:06 +08:00
build gui: add Wails v3 desktop app skeleton 2026-05-31 15:45:52 +08:00
cmd refactor: implement template-driven node tree and human-readable vault layout 2026-06-02 12:47:06 +08:00
contrib/plugins/importer-dokuwiki step 10: plugins system (Lua + templates) + DokuWiki as optional plugin 2026-05-31 11:20:45 +08:00
docs refactor: implement template-driven node tree and human-readable vault layout 2026-06-02 12:47:06 +08:00
frontend refactor: implement template-driven node tree and human-readable vault layout 2026-06-02 12:47:06 +08:00
internal refactor: implement template-driven node tree and human-readable vault layout 2026-06-02 12:47:06 +08:00
migrations steps 4-6 + doc overhaul: files, notes, GUI, plugins docs 2026-05-30 20:35:04 +08:00
scripts refactor: implement template-driven node tree and human-readable vault layout 2026-06-02 12:47:06 +08:00
.gitignore fix(sync): add ClientSequence and LastSeenServerSeq to Op struct and Push 2026-06-02 08:02:03 +08:00
README.md steps 4-6 + doc overhaul: files, notes, GUI, plugins docs 2026-05-30 20:35:04 +08:00
build.sh refactor(gui): разделить app.go на binding-файлы по доменам, вынести sync apply 2026-06-02 10:47:38 +08:00
go.mod sync: overhaul sync system — device pairing, server_sequence, auto-sync, dashboards 2026-06-02 02:26:05 +08:00
go.sum gui: add Wails v2 app skeleton 2026-05-31 19:11:20 +08:00
test_smoke_sync.sh test: update smoke test for user auth flow 2026-06-01 23:36:38 +08:00

README.md

Верстак

Верстак — локальная программа, где по каждому клиенту или проекту лежат все его файлы, заметки, документы, ссылки, действия и история работ.

Это не замечатель, не CRM, не таск-трекер. Нишевая аудитория — люди, у которых работа организована через дела, а не через задачи:

дело → файлы → заметки → документы → действия → история → вернуться через месяц

Для кого

Один продукт — разные входные двери:

Кто Как видит Верстак
Фрилансер / дизайнер клиентские проекты, файлы, правки, история работ
Мастер по ПК клиенты, устройства, серийники, фото, журнал
Разработчик локальный workspace: заметки, репы, команды, файлы
Писатель / мейкер мастерская проектов: материалы, заметки, версии, история

Универсальные сущности

Базовая модель предельно проста — плагины добавляют функционал:

  • Дело — контекст для всего остального
  • Заметка — Markdown внутри vault
  • Файл / Документ — любой файл, привязанный к делу
  • Действие — кнопка запуска: URL, файл, папка, команда
  • Журнал — записи о затраченном времени

Плагины (шаблоны дел, календарь, канбан, импортёры) расширяют эти сущности без перекомпиляции программы.

Стек

Go + SQLite + Lua (плагины) + Wails + Bubble Tea.

Документация