@grifhinz/logics-manager 2.8.0 → 2.8.1
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/README.md +22 -7
- package/VERSION +1 -1
- package/clients/viewer/browser-host.js +421 -33
- package/clients/viewer/index.html +1 -0
- package/clients/viewer/viewer.css +251 -0
- package/logics_manager/cli.py +17 -17
- package/logics_manager/viewer.py +251 -22
- package/package.json +2 -1
- package/pyproject.toml +1 -1
package/README.md
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://github.com/AlexAgo83/logics-manager/actions/workflows/ci.yml)
|
|
4
4
|
[](LICENSE)
|
|
5
|
-

|
|
6
6
|

|
|
7
7
|

|
|
8
|
-

|
|
9
9
|
|
|
10
10
|
`logics-manager` is a local workflow runtime for projects that keep their delivery memory in Markdown.
|
|
11
11
|
|
|
@@ -151,6 +151,16 @@ logics-manager view --open
|
|
|
151
151
|
|
|
152
152
|
The viewer starts a localhost-only browser UI on `127.0.0.1:8765` by default. It shows the same workflow board/list experience as the extension, with search, filters, document previews, corpus insights, lint/audit health, Mermaid rendering, auto-refresh, and an edit shortcut that opens the selected Markdown file in the system editor.
|
|
153
153
|
|
|
154
|
+
Viewer preferences are stored locally in the browser profile. Auto-refresh
|
|
155
|
+
restores the interval chosen in the viewer unless the launch command explicitly
|
|
156
|
+
sets `--refresh-interval`, in which case that launch value controls only the
|
|
157
|
+
current session. The CDX status table has compact controls for column visibility
|
|
158
|
+
and provider filtering; `BLOCK` and `CR` are hidden by default, and provider
|
|
159
|
+
filtering defaults to all providers so newly discovered providers remain visible.
|
|
160
|
+
When workspace inspection is available, the topbar shows an `Explorer` view
|
|
161
|
+
before `Git`; it provides a read-only file tree and bounded previews for text,
|
|
162
|
+
directories, images, oversized files, and unsupported binary files.
|
|
163
|
+
|
|
154
164
|
The CDX missions panel includes guarded workflows for audits, release reviews,
|
|
155
165
|
turning a free-form wish into a structured Logics request, preparing a corpus
|
|
156
166
|
plan, and preparing a guarded pre-release from an editable `vX.X.X` version.
|
|
@@ -588,20 +598,25 @@ If the current plugin version is already published, `logics-manager assist next-
|
|
|
588
598
|
- Logics docs lint: `npm run lint:logics`
|
|
589
599
|
- Logics workflow audit + docs lint: `npm run audit:logics`
|
|
590
600
|
- Strict Logics governance audit: `npm run audit:logics:strict`
|
|
601
|
+
- README metadata drift check: `npm run docs:check`
|
|
591
602
|
- Local browser viewer smoke: `logics-manager view --port 0 --open`
|
|
592
603
|
- Fast extension-focused local check: `npm run ci:fast`
|
|
593
604
|
- Full CI-equivalent local check: `npm run ci:check`
|
|
594
605
|
- Security audit policy gate: `npm run audit:ci`
|
|
595
606
|
|
|
596
|
-
`npm run audit:logics` uses the default active-work profile. It blocks correctness and traceability failures, but reports early companion-doc polish such as missing overview Mermaid diagrams as warnings so drafting and agent handoffs can continue.
|
|
607
|
+
`npm run audit:logics` uses the default active-work profile. It blocks correctness and traceability failures with a nonzero process exit, but reports early companion-doc polish such as missing overview Mermaid diagrams as warnings so drafting and agent handoffs can continue.
|
|
608
|
+
|
|
609
|
+
`npm run audit:logics:strict` uses the strict governance profile. Use it before release or governance review when companion docs must be complete and warning-class findings should be resolved. Strict governance findings are advisory to active implementation until you choose the strict command; the standard audit remains the mandatory day-to-day gate.
|
|
610
|
+
|
|
611
|
+
`logics-manager audit --format json` and `logics-manager lint --format json` expose `issue_count`, `warning_count`, `strict_count`, `finding_count`, `can_continue`, and `release_ready`. Agents should treat `issue_count > 0` or `can_continue: false` as blocking active work. Treat `release_ready: false` as a signal that cleanup remains before release-grade validation, not as a standard-audit process failure when there are warnings only.
|
|
597
612
|
|
|
598
|
-
`npm run
|
|
613
|
+
`npm run ci:check` mirrors the blocking repository CI contract, including Logics strict-status lint, request auto-close sync verification, workflow audit, README badge drift detection, Python tests, CLI smoke checks, TypeScript validation, extension tests, local viewer smoke, and VSIX packaging.
|
|
599
614
|
|
|
600
|
-
`
|
|
615
|
+
`npm run audit:ci` enforces the repository audit policy locally. It runs `npm audit --json` against the configured npm registry, blocks new actionable vulnerabilities, and only allows the explicitly documented temporary exceptions tracked in the backlog. If the registry is unreachable, the command fails as `registry unavailable` rather than reporting a clean advisory state. `npm run package:ci` is local-only package validation and does not require registry access after dependencies are installed.
|
|
601
616
|
|
|
602
|
-
`npm run
|
|
617
|
+
`npm run test:viewer-smoke` writes `artifacts/local-viewer-smoke/summary.json`. A localhost socket bind denial is recorded as an explicit skipped result. CI still has non-skipped coverage for the viewer path: Linux/macOS-capable environments exercise Chrome or the JSDOM fallback, while Windows CI runs a server/API smoke that proves the shell and `/api/items` path without launching a browser.
|
|
603
618
|
|
|
604
|
-
`
|
|
619
|
+
Oversized runtime, viewer, and test files are tracked through `logics/architecture/adr_020_split_the_oversized_plugin_and_workflow_surfaces_into_focused_modules.md`. The decomposition rule is correctness-first: extract pure helpers and API contracts before cosmetic file-size work, keep entrypoints thin, and cover each seam with targeted Python, Vitest, or smoke tests before moving on.
|
|
605
620
|
|
|
606
621
|
CI runs compile, lint, tests, Logics docs lint, and VSIX packaging validation on every `push` and `pull_request` via `.github/workflows/ci.yml`.
|
|
607
622
|
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.8.
|
|
1
|
+
2.8.1
|