devrites 4.3.0 → 4.4.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/CHANGELOG.md +12 -494
- package/README.md +4 -4
- package/docs/cli.md +22 -7
- package/docs/command-map.md +1 -1
- package/docs/engine/commands.md +24 -9
- package/docs/engine/workspace-schema.md +5 -5
- package/engine/commands.go +1 -1
- package/engine/internal/gate/gate.go +9 -0
- package/engine/internal/gate/gate_test.go +110 -0
- package/engine/internal/gate/readiness_binding.go +9 -0
- package/engine/internal/gate/readiness_binding_test.go +2 -2
- package/engine/internal/lib/observe_summary.go +22 -22
- package/engine/internal/lib/open_visual.go +254 -0
- package/engine/internal/lib/open_visual_test.go +280 -0
- package/engine/internal/lib/taskgraph.go +4 -143
- package/engine/internal/lib/taskgraph_test.go +203 -0
- package/engine/internal/lib/visual_outline.go +163 -0
- package/engine/internal/lib/visual_outline_test.go +161 -0
- package/engine/internal/state/taskgraph.go +213 -0
- package/engine/internal/testutil/testutil.go +3 -0
- package/engine/main.go +6 -2
- package/engine/root_routing_test.go +49 -14
- package/engine/testdata/visual/open-visual-smoke.html +675 -0
- package/engine/testdata/visual/open-visual-smoke.outline.md +54 -0
- package/engine/tests/adr_0027_readiness_binding_test.go +1 -1
- package/engine/tests/gate_test.go +4 -2
- package/pack/.claude/skills/devrites-lib/SKILL.md +2 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/code.md +46 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/comparison.md +44 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/diagram.md +53 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/index.md +57 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/input.md +47 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/outline-template.md +106 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/plan.md +49 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/slides.md +42 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/table.md +44 -0
- package/pack/.claude/skills/devrites-lib/reference/workspace-artifact-schema.md +24 -9
- package/pack/.claude/skills/rite-define/SKILL.md +10 -1
- package/pack/.claude/skills/rite-explain/SKILL.md +23 -7
- package/pack/.claude/skills/rite-explain/reference/intake.md +11 -2
- package/pack/.claude/skills/rite-plan/reference/dependency-graph.md +4 -1
- package/pack/.claude/skills/rite-spec/reference/spec-template.md +5 -2
- package/pack/.claude/skills/rite-spec/reference/state-workspace.md +26 -3
- package/pack/generated/claude/skills/devrites-lib/SKILL.md +2 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/code.md +46 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/comparison.md +44 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/diagram.md +53 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/index.md +57 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/input.md +47 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/outline-template.md +106 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/plan.md +49 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/slides.md +42 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/table.md +44 -0
- package/pack/generated/claude/skills/devrites-lib/reference/workspace-artifact-schema.md +24 -9
- package/pack/generated/claude/skills/rite-define/SKILL.md +10 -1
- package/pack/generated/claude/skills/rite-explain/SKILL.md +23 -7
- package/pack/generated/claude/skills/rite-explain/reference/intake.md +11 -2
- package/pack/generated/claude/skills/rite-plan/reference/dependency-graph.md +4 -1
- package/pack/generated/claude/skills/rite-spec/reference/spec-template.md +5 -2
- package/pack/generated/claude/skills/rite-spec/reference/state-workspace.md +26 -3
- package/pack/generated/codex/skills/devrites-lib/SKILL.md +2 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/code.md +46 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/comparison.md +44 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/diagram.md +53 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/index.md +57 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/input.md +47 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/outline-template.md +106 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/plan.md +49 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/slides.md +42 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/table.md +44 -0
- package/pack/generated/codex/skills/devrites-lib/reference/workspace-artifact-schema.md +24 -9
- package/pack/generated/codex/skills/rite-define/SKILL.md +10 -1
- package/pack/generated/codex/skills/rite-explain/SKILL.md +23 -7
- package/pack/generated/codex/skills/rite-explain/reference/intake.md +11 -2
- package/pack/generated/codex/skills/rite-plan/reference/dependency-graph.md +4 -1
- package/pack/generated/codex/skills/rite-spec/reference/spec-template.md +5 -2
- package/pack/generated/codex/skills/rite-spec/reference/state-workspace.md +26 -3
- package/package.json +1 -1
- package/scripts/install-lib.sh +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to DevRites are documented here. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and DevRites adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Releases are generated automatically by [semantic-release](https://semantic-release.gitbook.io/) from Conventional Commits on `main`.
|
|
4
4
|
|
|
5
|
+
## [4.4.1](https://github.com/ViktorsBaikers/DevRites/compare/v4.4.0...v4.4.1) (2026-08-26)
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
* **rite:** enforce task-graph integrity and restore 4.3.0 identity ([#40](https://github.com/ViktorsBaikers/DevRites/issues/40)) ([54b0727](https://github.com/ViktorsBaikers/DevRites/commit/54b07277ffb249d92d09130379040b6191b480b6)), closes [#39](https://github.com/ViktorsBaikers/DevRites/issues/39)
|
|
10
|
+
|
|
11
|
+
## [4.4.0](https://github.com/ViktorsBaikers/DevRites/compare/v4.3.0...v4.4.0) (2026-08-26)
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
* **devrites:** add local visual HTML artifacts and open-visual ([#42](https://github.com/ViktorsBaikers/DevRites/issues/42)) ([577389e](https://github.com/ViktorsBaikers/DevRites/commit/577389ec3016312e51bbdcad918179b161386aed))
|
|
16
|
+
|
|
5
17
|
## [4.3.0](https://github.com/ViktorsBaikers/DevRites/compare/v4.2.0...v4.3.0) (2026-08-25)
|
|
6
18
|
|
|
7
19
|
### Added
|
|
@@ -290,497 +302,3 @@ All notable changes to DevRites are documented here. The format follows [Keep a
|
|
|
290
302
|
|
|
291
303
|
* **ci:** govern temporary npm audit exceptions ([c2219e0](https://github.com/ViktorsBaikers/DevRites/commit/c2219e0ff11f11ee3f2e2ffa7c5d35b480c5eb76))
|
|
292
304
|
* **rite:** repair doctor compatibility ([811f339](https://github.com/ViktorsBaikers/DevRites/commit/811f339d22d3ec079549a5d50838d7596c72c7da))
|
|
293
|
-
|
|
294
|
-
## [3.2.0](https://github.com/ViktorsBaikers/DevRites/compare/v3.1.0...v3.2.0) (2026-07-24)
|
|
295
|
-
|
|
296
|
-
### Added
|
|
297
|
-
|
|
298
|
-
* **rite:** add semantic workspace upgrades ([3a7e51d](https://github.com/ViktorsBaikers/DevRites/commit/3a7e51d478fe9ed19c4de1ee4988e43d63ecf9a2))
|
|
299
|
-
|
|
300
|
-
## [3.1.0](https://github.com/ViktorsBaikers/DevRites/compare/v3.0.7...v3.1.0) (2026-07-24)
|
|
301
|
-
|
|
302
|
-
### Added
|
|
303
|
-
|
|
304
|
-
* **devrites:** harden planning and agent orchestration ([50be03b](https://github.com/ViktorsBaikers/DevRites/commit/50be03b90f1d5004ea010cf68ff07b74bab491c6))
|
|
305
|
-
|
|
306
|
-
### Fixed
|
|
307
|
-
|
|
308
|
-
* **ci:** correct invocation and eval discovery gates ([0a0d7d2](https://github.com/ViktorsBaikers/DevRites/commit/0a0d7d27546b90a7f5a2dd72bc9326f29416cc54))
|
|
309
|
-
* **devrites:** clear security and Windows mode gates ([59fcfc6](https://github.com/ViktorsBaikers/DevRites/commit/59fcfc6c1806975e36a69cde4e8a2c504657161a))
|
|
310
|
-
* **devrites:** restore static and Windows engine gates ([8aeb479](https://github.com/ViktorsBaikers/DevRites/commit/8aeb4793adf0ce57ba4dba7ddcb7e56f9f612f40))
|
|
311
|
-
|
|
312
|
-
## [3.0.7](https://github.com/ViktorsBaikers/DevRites/compare/v3.0.6...v3.0.7) (2026-07-22)
|
|
313
|
-
|
|
314
|
-
### Fixed
|
|
315
|
-
|
|
316
|
-
* **installer:** harden binary acquisition ([7534198](https://github.com/ViktorsBaikers/DevRites/commit/7534198dd3f6a29f065fe715e763e02bdc8a71c0))
|
|
317
|
-
|
|
318
|
-
## [3.0.6](https://github.com/ViktorsBaikers/DevRites/compare/v3.0.5...v3.0.6) (2026-07-22)
|
|
319
|
-
|
|
320
|
-
### Fixed
|
|
321
|
-
|
|
322
|
-
* **ci:** reject invalid workflow names ([8535414](https://github.com/ViktorsBaikers/DevRites/commit/853541455fcc79e28ca4d7044024da219683d700))
|
|
323
|
-
* **devrites:** align compliance matrix wording ([0bb1f28](https://github.com/ViktorsBaikers/DevRites/commit/0bb1f287c1ae2874a73669c1c35b081083f389af))
|
|
324
|
-
* **devrites:** isolate reconcile snapshot objects ([c02b1f1](https://github.com/ViktorsBaikers/DevRites/commit/c02b1f19a4717454f9e0194bf015fcc170dd37fc))
|
|
325
|
-
* **docs:** repair rite-ship standard link ([49db43c](https://github.com/ViktorsBaikers/DevRites/commit/49db43cdd6b42f15c7a7aaec3c47bcf7e9ceaa8d))
|
|
326
|
-
|
|
327
|
-
### Documentation
|
|
328
|
-
|
|
329
|
-
* **repo:** humanize repository documentation ([a5de735](https://github.com/ViktorsBaikers/DevRites/commit/a5de735db9cd3958a544df9802c6d1c7981470e8))
|
|
330
|
-
* **repo:** refresh README banner ([45b48c9](https://github.com/ViktorsBaikers/DevRites/commit/45b48c92f181e7c37b616993c2a98606b8984ee1))
|
|
331
|
-
* **repo:** streamline README guide ([932588f](https://github.com/ViktorsBaikers/DevRites/commit/932588f3fd1749d81e358f2be96873e59bdac8c1))
|
|
332
|
-
|
|
333
|
-
## [3.0.5](https://github.com/ViktorsBaikers/DevRites/compare/v3.0.4...v3.0.5) (2026-07-21)
|
|
334
|
-
|
|
335
|
-
### Fixed
|
|
336
|
-
|
|
337
|
-
* **deps:** update fast-uri ([1e14101](https://github.com/ViktorsBaikers/DevRites/commit/1e14101284496277f56d4560d5a59d87297f7daf))
|
|
338
|
-
* **devrites:** normalize Git root centrally ([a89ec40](https://github.com/ViktorsBaikers/DevRites/commit/a89ec408b6133629db3547dcb7960f29bec6a723))
|
|
339
|
-
* **devrites:** normalize Git root path ([38dccf0](https://github.com/ViktorsBaikers/DevRites/commit/38dccf0bac0bdf58f5fdcf171cac231c296af171))
|
|
340
|
-
* **devrites:** resolve packages by source ([ae21d9b](https://github.com/ViktorsBaikers/DevRites/commit/ae21d9b50b0b631fb4352e5820f1176213614b78))
|
|
341
|
-
* **release:** reconnect v3.0.4 lineage ([7b6f853](https://github.com/ViktorsBaikers/DevRites/commit/7b6f853a73bcd3bc6ea72fd4b6b10c024c69a468))
|
|
342
|
-
* **skills:** format human gate decisions clearly ([0781d99](https://github.com/ViktorsBaikers/DevRites/commit/0781d99ce081f76f5e69237396e99e78e1b027f9))
|
|
343
|
-
|
|
344
|
-
### Documentation
|
|
345
|
-
|
|
346
|
-
* **repo:** sync current behavior ([9555fbb](https://github.com/ViktorsBaikers/DevRites/commit/9555fbbe26ce896a5c99723e46a8c04b7fba06f4))
|
|
347
|
-
|
|
348
|
-
## [3.0.4](https://github.com/ViktorsBaikers/DevRites/compare/v3.0.3...v3.0.4) (2026-07-21)
|
|
349
|
-
|
|
350
|
-
### Fixed
|
|
351
|
-
|
|
352
|
-
* **ci:** harden supply chain checks ([d902574](https://github.com/ViktorsBaikers/DevRites/commit/d902574a7d30168fcef94aa4a3dae7707191fe8d))
|
|
353
|
-
* **deps:** update fast-uri ([1e14101](https://github.com/ViktorsBaikers/DevRites/commit/1e14101284496277f56d4560d5a59d87297f7daf))
|
|
354
|
-
* **devrites:** normalize canonical workspace files ([e70221f](https://github.com/ViktorsBaikers/DevRites/commit/e70221f5dd9fbda0f3a73c500a493497bc023a91))
|
|
355
|
-
* **devrites:** normalize Git root centrally ([a89ec40](https://github.com/ViktorsBaikers/DevRites/commit/a89ec408b6133629db3547dcb7960f29bec6a723))
|
|
356
|
-
* **devrites:** normalize Git root path ([38dccf0](https://github.com/ViktorsBaikers/DevRites/commit/38dccf0bac0bdf58f5fdcf171cac231c296af171))
|
|
357
|
-
* **devrites:** resolve packages by source ([ae21d9b](https://github.com/ViktorsBaikers/DevRites/commit/ae21d9b50b0b631fb4352e5820f1176213614b78))
|
|
358
|
-
* **skills:** format human gate decisions clearly ([0781d99](https://github.com/ViktorsBaikers/DevRites/commit/0781d99ce081f76f5e69237396e99e78e1b027f9))
|
|
359
|
-
|
|
360
|
-
### Documentation
|
|
361
|
-
|
|
362
|
-
* **repo:** sync current behavior ([9555fbb](https://github.com/ViktorsBaikers/DevRites/commit/9555fbbe26ce896a5c99723e46a8c04b7fba06f4))
|
|
363
|
-
|
|
364
|
-
## [3.0.3](https://github.com/ViktorsBaikers/DevRites/compare/v3.0.2...v3.0.3) (2026-07-20)
|
|
365
|
-
|
|
366
|
-
### Fixed
|
|
367
|
-
|
|
368
|
-
* **rite:** centralize workflow schema ([58bd55e](https://github.com/ViktorsBaikers/DevRites/commit/58bd55e8472a98be1073bcfa5fe7593e7bf0c5d1))
|
|
369
|
-
|
|
370
|
-
## [3.0.2](https://github.com/ViktorsBaikers/DevRites/compare/v3.0.1...v3.0.2) (2026-07-20)
|
|
371
|
-
|
|
372
|
-
### Fixed
|
|
373
|
-
|
|
374
|
-
* **rite:** read canonical workspace cursor state ([e2fd60c](https://github.com/ViktorsBaikers/DevRites/commit/e2fd60c13aa53637e1af02a792f36f3efe32e1c9))
|
|
375
|
-
|
|
376
|
-
## [3.0.1](https://github.com/ViktorsBaikers/DevRites/compare/v3.0.0...v3.0.1) (2026-07-20)
|
|
377
|
-
|
|
378
|
-
### Fixed
|
|
379
|
-
|
|
380
|
-
* **rite:** run analysis after task definition ([6373227](https://github.com/ViktorsBaikers/DevRites/commit/6373227521b5e1e6b22bfe48e98799e709f5dc7a))
|
|
381
|
-
|
|
382
|
-
## [3.0.0](https://github.com/ViktorsBaikers/DevRites/compare/v2.6.1...v3.0.0) (2026-07-17)
|
|
383
|
-
|
|
384
|
-
### ⚠ BREAKING CHANGES
|
|
385
|
-
|
|
386
|
-
* **release:** DevRites v3 removes legacy shell helper runtime paths.
|
|
387
|
-
|
|
388
|
-
Constraint: Release version must become v3.0.0.
|
|
389
|
-
Rejected: Commit local agent instruction files | user excluded them.
|
|
390
|
-
Rejected: Reintroduce shell helper wrappers | engine subcommands are canonical.
|
|
391
|
-
Confidence: high
|
|
392
|
-
Scope-risk: broad
|
|
393
|
-
Directive: Keep runtime entry points routed through devrites-engine.
|
|
394
|
-
Tested: bash tests/cli-smoke.sh; bash tests/npx-pack-smoke.sh
|
|
395
|
-
Tested: bash tests/mcp-test.sh; bash tests/hooks-parity-test.sh
|
|
396
|
-
Tested: bash scripts/validate.sh; go test ./...
|
|
397
|
-
Not-tested: live model-backed Codex exec and custom-subagent smoke are opt-in.
|
|
398
|
-
|
|
399
|
-
### Added
|
|
400
|
-
|
|
401
|
-
* **devrites:** add adoption workflow support ([cfb3f9e](https://github.com/ViktorsBaikers/DevRites/commit/cfb3f9e6fcbb9dd7834c3a125e192708ba9cb409))
|
|
402
|
-
* **devrites:** add engine parity golden fixtures ([f120773](https://github.com/ViktorsBaikers/DevRites/commit/f120773ff8287348b42b2be05fd27bd4e6ea3aaf))
|
|
403
|
-
* **devrites:** add profile and dogfood skills ([1f04ab7](https://github.com/ViktorsBaikers/DevRites/commit/1f04ab747c9d4c48c15d6f11b07032b7afd5c46b))
|
|
404
|
-
* **devrites:** add reconcile and integrity checks ([b37b69a](https://github.com/ViktorsBaikers/DevRites/commit/b37b69a47025e5f7ace79bc18bc9a07ca8702e2b))
|
|
405
|
-
* **devrites:** add reviewer surface validation ([14fd7db](https://github.com/ViktorsBaikers/DevRites/commit/14fd7dbc2edc9146e8daf8603f4414a7f229d6ee))
|
|
406
|
-
* **devrites:** harden validation and migration tests ([d44b0c0](https://github.com/ViktorsBaikers/DevRites/commit/d44b0c0c1a55c6fd7ff767ce9aa6e112712f32aa))
|
|
407
|
-
* **devrites:** improve hooks and doctor tooling ([77cf0fa](https://github.com/ViktorsBaikers/DevRites/commit/77cf0faf9bdbb56d1860a2056e66517d72063aa4))
|
|
408
|
-
* **devrites:** persist workflow evidence signals ([cc269a1](https://github.com/ViktorsBaikers/DevRites/commit/cc269a102e534f275b870cf77f5d3b6d596c17b8))
|
|
409
|
-
* **devrites:** port reviewer-readonly + subagent-orient hooks ([b388790](https://github.com/ViktorsBaikers/DevRites/commit/b388790e4f76cd96561dbcfbd0ced5946a7e9b18))
|
|
410
|
-
* **devrites:** port spec-validate/check-acceptance to Go engine ([a1d2791](https://github.com/ViktorsBaikers/DevRites/commit/a1d2791b832d9dd42a47e3092a3d1e34fdb1c56c))
|
|
411
|
-
* **devrites:** refine install and runtime helpers ([dba1e99](https://github.com/ViktorsBaikers/DevRites/commit/dba1e9988dbde6eaa5101026944e1c137c93a1d7))
|
|
412
|
-
* **devrites:** refresh agents and skill references ([ba33d0b](https://github.com/ViktorsBaikers/DevRites/commit/ba33d0bf89384454530fe0f79a0ab21964379094))
|
|
413
|
-
* **devrites:** refresh code review and plan guidance ([f4fb255](https://github.com/ViktorsBaikers/DevRites/commit/f4fb2553b8bfae8f6fbf629f14b70e3a439af282))
|
|
414
|
-
* **devrites:** refresh evals and skill outputs ([ab9dc94](https://github.com/ViktorsBaikers/DevRites/commit/ab9dc9447b858bc9492ceffe4c4657ff79661b8e))
|
|
415
|
-
* **devrites:** refresh explain and customize docs ([d57bdff](https://github.com/ViktorsBaikers/DevRites/commit/d57bdffd832eab3c76b83f031a853ac520e4de95))
|
|
416
|
-
* **devrites:** refresh frontend guidance and proof docs ([d26bb09](https://github.com/ViktorsBaikers/DevRites/commit/d26bb09ed8ebd6a8f779738e32b3daff0da19bd7))
|
|
417
|
-
* **devrites:** refresh plan and source-driven guidance ([63fce26](https://github.com/ViktorsBaikers/DevRites/commit/63fce26d1776010006c176ac9fe57bd359f3bacf))
|
|
418
|
-
* **devrites:** refresh prose craft and detection ([e95b757](https://github.com/ViktorsBaikers/DevRites/commit/e95b757acbaa66db1ee7fc968d07eae779e7ada0))
|
|
419
|
-
* **devrites:** refresh skill docs and validation tooling ([2ad1317](https://github.com/ViktorsBaikers/DevRites/commit/2ad1317a11f94bcae0a5911d48c8cd7f80911c41))
|
|
420
|
-
* **devrites:** refresh ux shape and spec intake ([f547fe6](https://github.com/ViktorsBaikers/DevRites/commit/f547fe6b0a676d27b56022771ece324593e256a4))
|
|
421
|
-
* **devrites:** refresh workflow and skill surfaces ([8b8d065](https://github.com/ViktorsBaikers/DevRites/commit/8b8d065a1f052ddf209fbaa1ddf375bc95932ffc))
|
|
422
|
-
* **devrites:** refresh workflow docs and checks ([c6e481d](https://github.com/ViktorsBaikers/DevRites/commit/c6e481d9b24eda43039d66b908551e37eb15d9a4))
|
|
423
|
-
* **devrites:** tighten engine reply contracts ([19ec4b0](https://github.com/ViktorsBaikers/DevRites/commit/19ec4b00411bf72428ce7b84f2f178fe9ff8f89d))
|
|
424
|
-
* **devrites:** update CI workflow ([2e7214a](https://github.com/ViktorsBaikers/DevRites/commit/2e7214acd6f7a13e16352b0948608b3a0323c147))
|
|
425
|
-
* **devrites:** update docs and engine behavior ([8a2dd35](https://github.com/ViktorsBaikers/DevRites/commit/8a2dd3573af3afe9c7bbc76aae8fa17aebed031e))
|
|
426
|
-
* **devrites:** update docs and eval tooling ([e51f3b3](https://github.com/ViktorsBaikers/DevRites/commit/e51f3b34cad8efc9c2e0eda0dc57717eccea4d42))
|
|
427
|
-
* **devrites:** update docs and release checks ([1d09f35](https://github.com/ViktorsBaikers/DevRites/commit/1d09f359faec7b65fdfa5ed9bed94311cf26e698))
|
|
428
|
-
* **devrites:** update engine gating and commands ([878ed2c](https://github.com/ViktorsBaikers/DevRites/commit/878ed2c3666fcc7d87af4de4c1a7db03a4c78d07))
|
|
429
|
-
* **devrites:** update engine internals and validation ([b4d6d92](https://github.com/ViktorsBaikers/DevRites/commit/b4d6d92bc0b29085fa123f433c57230b0610497f))
|
|
430
|
-
* **devrites:** update engine state and skills ([732c97e](https://github.com/ViktorsBaikers/DevRites/commit/732c97e3b7b9e37443f3168e824a6d108b9085c4))
|
|
431
|
-
* **devrites:** update hooks and guidance surfaces ([6e79143](https://github.com/ViktorsBaikers/DevRites/commit/6e7914339283ad557849e568eeffb213c0bfb342))
|
|
432
|
-
* **devrites:** update rite workflow docs and engine ([c8ff41e](https://github.com/ViktorsBaikers/DevRites/commit/c8ff41eb67b0b94af0b7cea728092e534b1e812b))
|
|
433
|
-
* **devrites:** update spec and workspace docs ([1f2888a](https://github.com/ViktorsBaikers/DevRites/commit/1f2888ace17e854c212cf58b4f62a1cc42bf741f))
|
|
434
|
-
* **installer:** make host installs engine-owned ([c70491c](https://github.com/ViktorsBaikers/DevRites/commit/c70491cb8d856d3c3ef6b9d017766e6b710bb6fc))
|
|
435
|
-
* **release:** ship v3.0.0 engine control plane ([da6ca62](https://github.com/ViktorsBaikers/DevRites/commit/da6ca6239d0321d0ab9bf3e36a7ffe46a80b6db3))
|
|
436
|
-
|
|
437
|
-
### Changed
|
|
438
|
-
|
|
439
|
-
* **repo:** reduce duplicate maintenance surfaces ([0e645d4](https://github.com/ViktorsBaikers/DevRites/commit/0e645d45fdf4f75cbb367016ace88ae79c40870c))
|
|
440
|
-
|
|
441
|
-
### Fixed
|
|
442
|
-
|
|
443
|
-
* **ci:** generate artifacts before validation ([0d3afa3](https://github.com/ViktorsBaikers/DevRites/commit/0d3afa3d4dd72e2b31b31467e759e42becfb0c8a))
|
|
444
|
-
* **ci:** make engine tests cross-platform ([1631450](https://github.com/ViktorsBaikers/DevRites/commit/163145057575d9833b1c28d0d1f00516e025f363))
|
|
445
|
-
* **ci:** normalize remaining Windows output ([8da9a61](https://github.com/ViktorsBaikers/DevRites/commit/8da9a6106188655f612cd3be7f32374a4a25435f))
|
|
446
|
-
* **installer:** keep Claude hooks complete in existing settings ([d9f57af](https://github.com/ViktorsBaikers/DevRites/commit/d9f57afd2d7fc60a44e6141887b0b7c6a9a23a1d))
|
|
447
|
-
* **tests:** normalize Windows golden files ([7d0a07c](https://github.com/ViktorsBaikers/DevRites/commit/7d0a07c5c4838237572d4807b17a475f1fd1ed71))
|
|
448
|
-
|
|
449
|
-
### Documentation
|
|
450
|
-
|
|
451
|
-
* **skills:** keep skill guidance compact ([6afebfe](https://github.com/ViktorsBaikers/DevRites/commit/6afebfeccf152669c44e96a99cd6610200945dc6))
|
|
452
|
-
|
|
453
|
-
## [2.6.1](https://github.com/ViktorsBaikers/DevRites/compare/v2.6.0...v2.6.1) (2026-07-05)
|
|
454
|
-
|
|
455
|
-
### Fixed
|
|
456
|
-
|
|
457
|
-
* **installer:** emit valid Codex hooks config ([5a23d0a](https://github.com/ViktorsBaikers/DevRites/commit/5a23d0a0d4f1d990cf206f258a0b6866b46cf341))
|
|
458
|
-
|
|
459
|
-
## [2.6.0](https://github.com/ViktorsBaikers/DevRites/compare/v2.5.2...v2.6.0) (2026-07-05)
|
|
460
|
-
|
|
461
|
-
### Added
|
|
462
|
-
|
|
463
|
-
* **installer:** add Codex support ([cd19c70](https://github.com/ViktorsBaikers/DevRites/commit/cd19c70e6c6df5a38a3524c4cb3f8e9885ffedc3))
|
|
464
|
-
|
|
465
|
-
## [2.5.2](https://github.com/ViktorsBaikers/DevRites/compare/v2.5.1...v2.5.2) (2026-06-28)
|
|
466
|
-
|
|
467
|
-
### Changed
|
|
468
|
-
|
|
469
|
-
* **skills:** swap browser-harness for Playwright MCP ([9c13e72](https://github.com/ViktorsBaikers/DevRites/commit/9c13e72c94e81f7df6dc7d07bf23acdfd4d18ddd))
|
|
470
|
-
|
|
471
|
-
## [2.5.1](https://github.com/ViktorsBaikers/DevRites/compare/v2.5.0...v2.5.1) (2026-06-28)
|
|
472
|
-
|
|
473
|
-
### Fixed
|
|
474
|
-
|
|
475
|
-
* **rite:** ask HITL build gaps inline instead of deferring to resolve ([33266f1](https://github.com/ViktorsBaikers/DevRites/commit/33266f19d9ad30f53fc8ef267f486a5562be61c7))
|
|
476
|
-
|
|
477
|
-
## [2.5.0](https://github.com/ViktorsBaikers/DevRites/compare/v2.4.0...v2.5.0) (2026-06-28)
|
|
478
|
-
|
|
479
|
-
### Added
|
|
480
|
-
|
|
481
|
-
* **installer:** prune files dropped from the pack on update ([830352a](https://github.com/ViktorsBaikers/DevRites/commit/830352ae19b2726cadd627ab7ca4f12b1b85c7fc))
|
|
482
|
-
|
|
483
|
-
### Fixed
|
|
484
|
-
|
|
485
|
-
* **devrites:** close skill-pack SSOT drift + consolidate review dispatch ([649db40](https://github.com/ViktorsBaikers/DevRites/commit/649db4040a120d04c35e91b8f69d51f610df9a5f))
|
|
486
|
-
|
|
487
|
-
## [2.4.0](https://github.com/ViktorsBaikers/DevRites/compare/v2.3.0...v2.4.0) (2026-06-28)
|
|
488
|
-
|
|
489
|
-
### Added
|
|
490
|
-
|
|
491
|
-
* **devrites:** enforce the doubt gate from invocation through seal ([6ff29d0](https://github.com/ViktorsBaikers/DevRites/commit/6ff29d0caa3384d6ba85f480369d0fb01d80fad1))
|
|
492
|
-
|
|
493
|
-
### Fixed
|
|
494
|
-
|
|
495
|
-
* **devrites:** calibrate doubt-coverage and close per-slice skip ([5bc09eb](https://github.com/ViktorsBaikers/DevRites/commit/5bc09eb94062f728bd855a2a581784e4e1197522))
|
|
496
|
-
|
|
497
|
-
## [2.3.0](https://github.com/ViktorsBaikers/DevRites/compare/v2.2.0...v2.3.0) (2026-06-23)
|
|
498
|
-
|
|
499
|
-
### Added
|
|
500
|
-
|
|
501
|
-
* **agents:** auto-firing devex-reviewer + retrospector ([425c582](https://github.com/ViktorsBaikers/DevRites/commit/425c582802b5efb18a463a31174420dfb96838fe))
|
|
502
|
-
* **rules:** add project invariants as a trusted gating layer ([e569d7e](https://github.com/ViktorsBaikers/DevRites/commit/e569d7e065d1baf4e974c274d921431cc3c6e26e))
|
|
503
|
-
* **skills:** add spec-grammar validator + scenario hooks ([765430c](https://github.com/ViktorsBaikers/DevRites/commit/765430c3f21bd9f139d9de9ecc4d73e292970505))
|
|
504
|
-
* **skills:** competitive forge builds + structured visual verdict ([c509519](https://github.com/ViktorsBaikers/DevRites/commit/c50951957525a5cbf673ee52d3fa573838092959))
|
|
505
|
-
* **tests:** behavioral evals for gating-skill discipline ([9cfde94](https://github.com/ViktorsBaikers/DevRites/commit/9cfde942cd6fa12d2f08d0cb4f8e3c11354b9355))
|
|
506
|
-
|
|
507
|
-
### Fixed
|
|
508
|
-
|
|
509
|
-
* **scripts:** allow forge-report.md as a runtime workspace artifact ([e01bd50](https://github.com/ViktorsBaikers/DevRites/commit/e01bd50dcc2d5767d8abd3a1f527ec762dc83583))
|
|
510
|
-
|
|
511
|
-
### Documentation
|
|
512
|
-
|
|
513
|
-
* **skills:** sync skill/agent/rule counts + catalogue with current pack ([57ea677](https://github.com/ViktorsBaikers/DevRites/commit/57ea6771b2040382b80848cd5c866952b46355c9))
|
|
514
|
-
|
|
515
|
-
## [2.2.0](https://github.com/ViktorsBaikers/DevRites/compare/v2.1.0...v2.2.0) (2026-06-23)
|
|
516
|
-
|
|
517
|
-
### Added
|
|
518
|
-
|
|
519
|
-
* **rules:** add observability + deprecation rules, OWASP LLM Top 10 ([0c29760](https://github.com/ViktorsBaikers/DevRites/commit/0c29760e504c22c18d7ca2c5e1986746ba95a07d))
|
|
520
|
-
|
|
521
|
-
### Fixed
|
|
522
|
-
|
|
523
|
-
* **release:** drop duplicate 2.1.0 changelog block ([0a7b510](https://github.com/ViktorsBaikers/DevRites/commit/0a7b5101ecd05e4c0b4d3812cefc68c0f92f1626))
|
|
524
|
-
|
|
525
|
-
## [2.1.0](https://github.com/ViktorsBaikers/DevRites/compare/v2.0.0...v2.1.0) (2026-06-23)
|
|
526
|
-
|
|
527
|
-
### Added
|
|
528
|
-
|
|
529
|
-
* **agents:** code reviewer gets structural-depth lenses ([b37c9d2](https://github.com/ViktorsBaikers/DevRites/commit/b37c9d259b99613b971269fac2943977dedbea6d))
|
|
530
|
-
* **agents:** perf reviewer gets Source/Measured CWV modes ([be82b20](https://github.com/ViktorsBaikers/DevRites/commit/be82b20b37252a9f55d77e0f71659ec58a213ca6))
|
|
531
|
-
|
|
532
|
-
## [2.0.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.18.0...v2.0.0) (2026-06-23)
|
|
533
|
-
|
|
534
|
-
### ⚠ BREAKING CHANGES
|
|
535
|
-
|
|
536
|
-
* **installer:** drop the Claude Code plugin install path
|
|
537
|
-
|
|
538
|
-
### Added
|
|
539
|
-
|
|
540
|
-
* **installer:** add npx devrites full-pack installer + npm publishing ([316a0d3](https://github.com/ViktorsBaikers/DevRites/commit/316a0d372dad1afe2fade08f0045370fd5b3d801))
|
|
541
|
-
|
|
542
|
-
### Changed
|
|
543
|
-
|
|
544
|
-
* **release:** group changelog by Added/Changed/Removed ([ea5772a](https://github.com/ViktorsBaikers/DevRites/commit/ea5772abca3d44ee1da496f3d904bcbe3b9ccc21))
|
|
545
|
-
|
|
546
|
-
### Removed
|
|
547
|
-
|
|
548
|
-
* **installer:** drop the Claude Code plugin install path ([beb825f](https://github.com/ViktorsBaikers/DevRites/commit/beb825fcb0738d4b03b32dce056871c80616ab49))
|
|
549
|
-
|
|
550
|
-
## [1.18.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.17.0...v1.18.0) (2026-06-22)
|
|
551
|
-
|
|
552
|
-
### Features
|
|
553
|
-
|
|
554
|
-
* **skills:** add rite-frame goal-reframe + failure-mode self-audit ([ca181ee](https://github.com/ViktorsBaikers/DevRites/commit/ca181eee47c4c47c19ea8069cb650e38a7a26c87))
|
|
555
|
-
|
|
556
|
-
## [1.17.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.16.0...v1.17.0) (2026-06-22)
|
|
557
|
-
|
|
558
|
-
### Features
|
|
559
|
-
|
|
560
|
-
* **skills:** auto-refresh code-intelligence indexes after edits ([6cdfa6c](https://github.com/ViktorsBaikers/DevRites/commit/6cdfa6cc5291955f5c6362970bcbda15589bc050))
|
|
561
|
-
|
|
562
|
-
## [1.16.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.15.0...v1.16.0) (2026-06-21)
|
|
563
|
-
|
|
564
|
-
### Features
|
|
565
|
-
|
|
566
|
-
* **skills:** make code-intelligence tools optional and add context7 ([d8f95f7](https://github.com/ViktorsBaikers/DevRites/commit/d8f95f7333dd0c35fa75d4e190a05db86e82ba92))
|
|
567
|
-
|
|
568
|
-
## [1.15.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.14.0...v1.15.0) (2026-06-21)
|
|
569
|
-
|
|
570
|
-
### Features
|
|
571
|
-
|
|
572
|
-
* **skills:** make code-intelligence tools optional and add context7 ([d8f95f7](https://github.com/ViktorsBaikers/DevRites/commit/d8f95f7333dd0c35fa75d4e190a05db86e82ba92))
|
|
573
|
-
* **skills:** test-integrity gates, enforcement hooks, learning loop ([32d5102](https://github.com/ViktorsBaikers/DevRites/commit/32d5102f1e82313d939632a416a5df3b00a2a675))
|
|
574
|
-
|
|
575
|
-
### Bug Fixes
|
|
576
|
-
|
|
577
|
-
* **ci:** allowlist new runtime artifacts; mark defensive deny-list ([eec1440](https://github.com/ViktorsBaikers/DevRites/commit/eec14403a827d98283c0641ae1c71087b24fe311))
|
|
578
|
-
|
|
579
|
-
## [1.15.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.14.0...v1.15.0) (2026-06-21)
|
|
580
|
-
|
|
581
|
-
### Features
|
|
582
|
-
|
|
583
|
-
* **skills:** test-integrity gates, enforcement hooks, learning loop ([32d5102](https://github.com/ViktorsBaikers/DevRites/commit/32d5102f1e82313d939632a416a5df3b00a2a675))
|
|
584
|
-
|
|
585
|
-
### Bug Fixes
|
|
586
|
-
|
|
587
|
-
* **ci:** allowlist new runtime artifacts; mark defensive deny-list ([eec1440](https://github.com/ViktorsBaikers/DevRites/commit/eec14403a827d98283c0641ae1c71087b24fe311))
|
|
588
|
-
|
|
589
|
-
## [1.15.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.14.0...v1.15.0) (2026-06-21)
|
|
590
|
-
|
|
591
|
-
### Features
|
|
592
|
-
|
|
593
|
-
* **skills:** test-integrity gates, enforcement hooks, learning loop ([32d5102](https://github.com/ViktorsBaikers/DevRites/commit/32d5102f1e82313d939632a416a5df3b00a2a675))
|
|
594
|
-
|
|
595
|
-
## [1.14.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.13.0...v1.14.0) (2026-06-21)
|
|
596
|
-
|
|
597
|
-
### Features
|
|
598
|
-
|
|
599
|
-
* **skills:** add prose-craft skill and sharpen anti-slop code charter ([8a9e7e1](https://github.com/ViktorsBaikers/DevRites/commit/8a9e7e159487a53c89b46975a54f84ed875e409d))
|
|
600
|
-
|
|
601
|
-
## [1.13.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.12.0...v1.13.0) (2026-06-21)
|
|
602
|
-
|
|
603
|
-
### Features
|
|
604
|
-
|
|
605
|
-
* **skills:** add ui-taste enrichments + optional design-memory rollup ([316e7aa](https://github.com/ViktorsBaikers/DevRites/commit/316e7aa042d86ae173b7fa061437ced5af931b1f))
|
|
606
|
-
|
|
607
|
-
## [1.12.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.11.0...v1.12.0) (2026-06-21)
|
|
608
|
-
|
|
609
|
-
### Features
|
|
610
|
-
|
|
611
|
-
* **agents:** add prompt-injection-resistance baseline ([f260fc7](https://github.com/ViktorsBaikers/DevRites/commit/f260fc7b719c8049cb5ecd42b70649f17204080a)), closes [#14](https://github.com/ViktorsBaikers/DevRites/issues/14)
|
|
612
|
-
* **ci:** blocking pack security scan — injection + hidden unicode ([89a8838](https://github.com/ViktorsBaikers/DevRites/commit/89a88383150afd6803ba405198ffc732e1e8a323)), closes [#13](https://github.com/ViktorsBaikers/DevRites/issues/13)
|
|
613
|
-
* **ci:** supply-chain IOC scanner for npm lockfile ([ac9d079](https://github.com/ViktorsBaikers/DevRites/commit/ac9d07976707c45cb8503531b297f9049f314ea2)), closes [#16](https://github.com/ViktorsBaikers/DevRites/issues/16)
|
|
614
|
-
* **ci:** workflow-security validator + pin third-party actions ([4c060c9](https://github.com/ViktorsBaikers/DevRites/commit/4c060c9f3d293b4b43919e7583dfc1f058fab21e)), closes [#15](https://github.com/ViktorsBaikers/DevRites/issues/15)
|
|
615
|
-
* **skills:** add fan-out footprint at seal ([093b366](https://github.com/ViktorsBaikers/DevRites/commit/093b366b22f89a4e6851237c1aa458638a5aa910)), closes [#19](https://github.com/ViktorsBaikers/DevRites/issues/19)
|
|
616
|
-
* **skills:** add rite-adopt brownfield on-ramp skill ([c86b770](https://github.com/ViktorsBaikers/DevRites/commit/c86b7702bf4c8c77736689d369b49375e677a927)), closes [#21](https://github.com/ViktorsBaikers/DevRites/issues/21)
|
|
617
|
-
* **skills:** add rite-doctor health check (two-tier) ([71d2c7b](https://github.com/ViktorsBaikers/DevRites/commit/71d2c7b99fb48cc97de4dfeddf9469af521f180f)), closes [#18](https://github.com/ViktorsBaikers/DevRites/issues/18)
|
|
618
|
-
* **skills:** conventions ledger with write-at-seal ([5de1464](https://github.com/ViktorsBaikers/DevRites/commit/5de1464a5a1d1a0a453aee84d5a515d616a929db)), closes [#17](https://github.com/ViktorsBaikers/DevRites/issues/17)
|
|
619
|
-
* **skills:** ledger read-at-orient with fresh-observation-wins ([2abe806](https://github.com/ViktorsBaikers/DevRites/commit/2abe806f69cdbae78bd90b2431e6009fd6121aa0)), closes [#20](https://github.com/ViktorsBaikers/DevRites/issues/20)
|
|
620
|
-
|
|
621
|
-
## [1.11.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.10.0...v1.11.0) (2026-06-19)
|
|
622
|
-
|
|
623
|
-
### Features
|
|
624
|
-
|
|
625
|
-
* **skills:** add A1 pre-block hook, observe by default ([b7e76d5](https://github.com/ViktorsBaikers/DevRites/commit/b7e76d58f214076a7bd860b7fc3588c2476f5ed5))
|
|
626
|
-
|
|
627
|
-
## [1.10.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.9.0...v1.10.0) (2026-06-19)
|
|
628
|
-
|
|
629
|
-
### Features
|
|
630
|
-
|
|
631
|
-
* **installer:** auto-approve read-only scripts + orient hooks ([3807883](https://github.com/ViktorsBaikers/DevRites/commit/38078838d2f4eeb9303c35c42812bbcb9bd9f5fc))
|
|
632
|
-
* **skills:** gate orchestrator out of source edits (A1) ([c64a4a0](https://github.com/ViktorsBaikers/DevRites/commit/c64a4a0f2722089fa938b5291de64eca9e4648c7))
|
|
633
|
-
|
|
634
|
-
### Bug Fixes
|
|
635
|
-
|
|
636
|
-
* **skills:** resolve skills-audit findings across pack, evals, and CI ([1499ce2](https://github.com/ViktorsBaikers/DevRites/commit/1499ce274f714544f4983c8e6fc6a11ebe36ee25))
|
|
637
|
-
* **tests:** tolerate preserved settings.json in uninstall smoke ([1d1b3d5](https://github.com/ViktorsBaikers/DevRites/commit/1d1b3d56a0b348d8181fa9fae55e70b4f9e51fd9))
|
|
638
|
-
|
|
639
|
-
### Refactors
|
|
640
|
-
|
|
641
|
-
* **skills:** fold attempts, drop lanes note, signpost quick ([02180b5](https://github.com/ViktorsBaikers/DevRites/commit/02180b52dfa9254597b3ae0040690f556f40f5f2))
|
|
642
|
-
|
|
643
|
-
## [1.9.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.8.0...v1.9.0) (2026-06-19)
|
|
644
|
-
|
|
645
|
-
### Features
|
|
646
|
-
|
|
647
|
-
* **skills:** enforce test completeness + assertion strength ([4f825a1](https://github.com/ViktorsBaikers/DevRites/commit/4f825a1d1956138a6db778f8b54d7dcafb3876a8))
|
|
648
|
-
* **skills:** present gaps as ranked option sets with inline resolve ([db70a21](https://github.com/ViktorsBaikers/DevRites/commit/db70a21511ad3ebc17b32e32afed8b02dcd47a22))
|
|
649
|
-
* **skills:** research-driven workflow improvements ([83cb2e0](https://github.com/ViktorsBaikers/DevRites/commit/83cb2e00fb95cdbf974440f098e397ae7c9cde76))
|
|
650
|
-
|
|
651
|
-
## [1.8.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.7.0...v1.8.0) (2026-06-19)
|
|
652
|
-
|
|
653
|
-
### Features
|
|
654
|
-
|
|
655
|
-
* **skills:** add progress footer to all rite-* lifecycle commands ([6b5eda0](https://github.com/ViktorsBaikers/DevRites/commit/6b5eda051ddc86c0a4d67a42d147cf4e9b7fbd17))
|
|
656
|
-
|
|
657
|
-
## [1.7.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.6.0...v1.7.0) (2026-06-18)
|
|
658
|
-
|
|
659
|
-
### Features
|
|
660
|
-
|
|
661
|
-
* **scripts:** add outcome grader and MCP server ([6b7263c](https://github.com/ViktorsBaikers/DevRites/commit/6b7263cf220508dcb567a7db6f79f619ea185249))
|
|
662
|
-
* **skills:** add state gates, devrites CLI, and Gotchas sections ([25eaa49](https://github.com/ViktorsBaikers/DevRites/commit/25eaa49e55fce2b22734e8c977dd3a59db73c0d1))
|
|
663
|
-
|
|
664
|
-
### Documentation
|
|
665
|
-
|
|
666
|
-
* **docs:** sync README, CONTRIBUTING, SECURITY with changes ([cc89594](https://github.com/ViktorsBaikers/DevRites/commit/cc895942a2a12bcff056ca44c957bf39349f00ca))
|
|
667
|
-
|
|
668
|
-
## [1.6.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.5.1...v1.6.0) (2026-06-18)
|
|
669
|
-
|
|
670
|
-
### Features
|
|
671
|
-
|
|
672
|
-
* **skills:** add shared devrites-lib orientation preamble ([fd8c8fc](https://github.com/ViktorsBaikers/DevRites/commit/fd8c8fc97fb879c3d81190152ad6f31d971a3bde))
|
|
673
|
-
|
|
674
|
-
### Documentation
|
|
675
|
-
|
|
676
|
-
* **skills:** document the orientation preamble and devrites-lib ([4cd0d65](https://github.com/ViktorsBaikers/DevRites/commit/4cd0d6575f69a4b20dae6c5ffe01b9e4c232f93a))
|
|
677
|
-
|
|
678
|
-
## [1.5.1](https://github.com/ViktorsBaikers/DevRites/compare/v1.5.0...v1.5.1) (2026-06-17)
|
|
679
|
-
|
|
680
|
-
### Refactors
|
|
681
|
-
|
|
682
|
-
* **skills:** vet every plan at scaled depth, never skip ([ba61859](https://github.com/ViktorsBaikers/DevRites/commit/ba61859dc84871ebe9951dd1dfc68037e58fcb4f))
|
|
683
|
-
|
|
684
|
-
## [1.5.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.4.0...v1.5.0) (2026-06-17)
|
|
685
|
-
|
|
686
|
-
### Features
|
|
687
|
-
|
|
688
|
-
* **skills:** add /rite-vet engineering plan review before build ([8c22b6a](https://github.com/ViktorsBaikers/DevRites/commit/8c22b6af4558540f70853e2d56688f49d528dffa))
|
|
689
|
-
|
|
690
|
-
## [1.4.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.3.0...v1.4.0) (2026-06-17)
|
|
691
|
-
|
|
692
|
-
### Features
|
|
693
|
-
|
|
694
|
-
* **skills:** add /rite-temper strategic spec review ([aa95d4d](https://github.com/ViktorsBaikers/DevRites/commit/aa95d4d27735c654a5bea8daf31fb6bc2dfa1767))
|
|
695
|
-
|
|
696
|
-
## [1.3.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.2.0...v1.3.0) (2026-06-17)
|
|
697
|
-
|
|
698
|
-
### Features
|
|
699
|
-
|
|
700
|
-
* **agents:** add devrites-slice-wright write-capable executor ([66a7c14](https://github.com/ViktorsBaikers/DevRites/commit/66a7c1418b727da181f8294e3bf6fdd632fa5711))
|
|
701
|
-
|
|
702
|
-
## [1.2.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.1.1...v1.2.0) (2026-06-17)
|
|
703
|
-
|
|
704
|
-
### Features
|
|
705
|
-
|
|
706
|
-
* **skills:** plan UX/UI before code via devrites-ux-shape ([e4a45f2](https://github.com/ViktorsBaikers/DevRites/commit/e4a45f27346dc4ab22c5fb7acf215105e947e0a7))
|
|
707
|
-
|
|
708
|
-
## [1.1.1](https://github.com/ViktorsBaikers/DevRites/compare/v1.1.0...v1.1.1) (2026-06-17)
|
|
709
|
-
|
|
710
|
-
### Bug Fixes
|
|
711
|
-
|
|
712
|
-
* **skills:** slice count is always derived, never user-forced ([07eb724](https://github.com/ViktorsBaikers/DevRites/commit/07eb724a785793dd3d38ab4889b202d22d4ca2ef))
|
|
713
|
-
|
|
714
|
-
### Documentation
|
|
715
|
-
|
|
716
|
-
* **docs:** /rite-ship in manifest descriptions + autocomplete example ([7d3dfce](https://github.com/ViktorsBaikers/DevRites/commit/7d3dfcee6a9ae99f6ac8d05a6573501c7c8713da))
|
|
717
|
-
* **docs:** list /rite-autocomplete in README table, fix /ship alias ([b5613fa](https://github.com/ViktorsBaikers/DevRites/commit/b5613fa922d2c51cc03149d840d316cc12770a76))
|
|
718
|
-
|
|
719
|
-
## [1.1.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.5...v1.1.0) (2026-06-17)
|
|
720
|
-
|
|
721
|
-
### Features
|
|
722
|
-
|
|
723
|
-
* **skills:** add /rite-autocomplete — unattended full lifecycle ([acad7e5](https://github.com/ViktorsBaikers/DevRites/commit/acad7e555c4f188665c9a7a5db4dd3dbb4264375))
|
|
724
|
-
* **skills:** add /rite-ship — execute the ship + close the task ([cc7db95](https://github.com/ViktorsBaikers/DevRites/commit/cc7db95f079de8da824187a482451a34aa02b852))
|
|
725
|
-
* **skills:** sharpen the rite-spec interview loop + coverage gate ([72994ea](https://github.com/ViktorsBaikers/DevRites/commit/72994eab298661b39724af955d5988f47035df03))
|
|
726
|
-
|
|
727
|
-
### Refactors
|
|
728
|
-
|
|
729
|
-
* **skills:** seal decides only; git ladder moves to /rite-ship ([80f0fbf](https://github.com/ViktorsBaikers/DevRites/commit/80f0fbfae0a77417283ed35efa4f3c8eae921aa7))
|
|
730
|
-
|
|
731
|
-
### Documentation
|
|
732
|
-
|
|
733
|
-
* **docs:** reflect ship/autocomplete + seal-decides split ([e9d4a7e](https://github.com/ViktorsBaikers/DevRites/commit/e9d4a7e64ed8cc4b8b0c742dea055e647d112c57))
|
|
734
|
-
* **repo:** fix stale skill count + phantom devrites-rules refs ([3793e1b](https://github.com/ViktorsBaikers/DevRites/commit/3793e1bdf2fecd0c21999c003f5ff09d5b48aef0))
|
|
735
|
-
|
|
736
|
-
## [1.0.5](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.4...v1.0.5) (2026-06-16)
|
|
737
|
-
|
|
738
|
-
### Bug Fixes
|
|
739
|
-
|
|
740
|
-
* **installer:** round-trip rules-only flags, cover update.sh ([0e82a76](https://github.com/ViktorsBaikers/DevRites/commit/0e82a76389ad9787c8f7a776fabffb01de6c49f8))
|
|
741
|
-
* **rules:** per-skill core load, dedupe table, validating-gate teeth ([007096e](https://github.com/ViktorsBaikers/DevRites/commit/007096e1f001ac80e1ca6e990afd134d4a8a80cd))
|
|
742
|
-
* **scripts:** correct gate tally, add AFK cap + qid scripts ([f2e46e5](https://github.com/ViktorsBaikers/DevRites/commit/f2e46e5155f7ac43dabf28f6db0a34bca84f0b2c))
|
|
743
|
-
* **skills:** workspace state, AFK budget, evidence + reviewer scope ([a8e9e75](https://github.com/ViktorsBaikers/DevRites/commit/a8e9e7567ae12b8a5cece961786c196323c1847b))
|
|
744
|
-
|
|
745
|
-
### Documentation
|
|
746
|
-
|
|
747
|
-
* **docs:** reconcile counts, fix phantom names and loading model ([f29241e](https://github.com/ViktorsBaikers/DevRites/commit/f29241e9aebd026afdd570d88bba500e9aee8b29))
|
|
748
|
-
|
|
749
|
-
## [1.0.4](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.3...v1.0.4) (2026-05-28)
|
|
750
|
-
|
|
751
|
-
### Bug Fixes
|
|
752
|
-
|
|
753
|
-
* **docs:** quote inside mermaid edge label broke flow.md diagram ([5112ba3](https://github.com/ViktorsBaikers/DevRites/commit/5112ba3be1cfb9f47195e98a5b7d50927662b64f))
|
|
754
|
-
|
|
755
|
-
## [1.0.3](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.2...v1.0.3) (2026-05-28)
|
|
756
|
-
|
|
757
|
-
### Bug Fixes
|
|
758
|
-
|
|
759
|
-
* **installer:** list agents as file array, validate manifest sync ([97d5004](https://github.com/ViktorsBaikers/DevRites/commit/97d50049cdaf4877272e8f555b92b87d1be26887))
|
|
760
|
-
|
|
761
|
-
### Documentation
|
|
762
|
-
|
|
763
|
-
* **docs:** bash install is recommended, plugin path is partial ([e729d18](https://github.com/ViktorsBaikers/DevRites/commit/e729d1851498ccda5be7496ffff72d88fd2b4ce7))
|
|
764
|
-
|
|
765
|
-
## [1.0.2](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.1...v1.0.2) (2026-05-28)
|
|
766
|
-
|
|
767
|
-
### Bug Fixes
|
|
768
|
-
|
|
769
|
-
* **installer:** plugin.json must use string repo and ./-prefixed paths ([cb50c01](https://github.com/ViktorsBaikers/DevRites/commit/cb50c01efcd45f813cc9fa7aeee7f25795bfd503))
|
|
770
|
-
|
|
771
|
-
## [1.0.1](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.0...v1.0.1) (2026-05-28)
|
|
772
|
-
|
|
773
|
-
### Bug Fixes
|
|
774
|
-
|
|
775
|
-
* **ci:** repair dependabot, sync README on release, use bot author ([d928765](https://github.com/ViktorsBaikers/DevRites/commit/d928765a965e4c49d1618cf07842e907f28deb0a))
|
|
776
|
-
|
|
777
|
-
## 1.0.0 (2026-05-28)
|
|
778
|
-
|
|
779
|
-
### Features
|
|
780
|
-
|
|
781
|
-
* **repo:** ship DevRites skills pack ([0915d40](https://github.com/ViktorsBaikers/DevRites/commit/0915d40f0c88e81dc9c122f5c755c7975957fdd4))
|
|
782
|
-
|
|
783
|
-
### Bug Fixes
|
|
784
|
-
|
|
785
|
-
* **ci:** bypass commitlint on semantic-release commits, tidy README ([0cf52a3](https://github.com/ViktorsBaikers/DevRites/commit/0cf52a3f27216ab5edb8197ec22628d03f2e5e31))
|
|
786
|
-
* **ci:** sync lockfile and reject multiline descriptions without PyYAML ([0efa85f](https://github.com/ViktorsBaikers/DevRites/commit/0efa85f052612b94926cf3382f88510059e5a8e8))
|
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ project-conventional push, tag, or PR action, and archive the workspace.
|
|
|
28
28
|
Unattended runs may create local WIP checkpoint commits along the way, but they
|
|
29
29
|
remain local unless Ship's disclosed plan includes an approved remote action.
|
|
30
30
|
|
|
31
|
-
**Status:** [`v4.
|
|
31
|
+
**Status:** [`v4.4.1`](https://github.com/ViktorsBaikers/DevRites/releases/tag/v4.4.1): see [`CHANGELOG.md`](CHANGELOG.md) for release notes.
|
|
32
32
|
|
|
33
33
|
This is the latest published release; `main` may contain unreleased work.
|
|
34
34
|
|
|
@@ -51,7 +51,7 @@ DevRites scales the process to the change. Start with the least ceremony that
|
|
|
51
51
|
still protects the work:
|
|
52
52
|
|
|
53
53
|
| Need | Claude Code | Codex |
|
|
54
|
-
|
|
54
|
+
| --- | --- | --- |
|
|
55
55
|
| Small, reversible change | `/rite-quick fix the CSV header typo` | `$rite-quick fix the CSV header typo` |
|
|
56
56
|
| New feature or risky behavior | `/rite-spec add-csv-export` | `$rite-spec add-csv-export` |
|
|
57
57
|
| Resume an active feature | `/rite-status` | `$rite-status` |
|
|
@@ -77,7 +77,7 @@ forms with `$`: `$rite <verb>` and `$rite-<verb>`. The menu and direct forms run
|
|
|
77
77
|
the same skill.
|
|
78
78
|
|
|
79
79
|
| # | Stage | Direct command | What happens |
|
|
80
|
-
|
|
80
|
+
| ---: | --- | --- | --- |
|
|
81
81
|
| 1 | Spec | [`/rite-spec <feature>`](pack/.claude/skills/rite-spec/SKILL.md) | Inspects the request and codebase, asks about product gaps, and writes a lossless `spec.md` with an explicit capability impact. |
|
|
82
82
|
| 2 | Clarify | [`/rite-clarify`](pack/.claude/skills/rite-clarify/SKILL.md) | Checks the whole feature for missing decisions before planning. It asks no questions when everything is clear. |
|
|
83
83
|
| 3 | Temper | [`/rite-temper`](pack/.claude/skills/rite-temper/SKILL.md) | Challenges scope and failure modes before Define. It is optional for small work and always runs in `/rite-autocomplete`. |
|
|
@@ -266,7 +266,7 @@ devrites-engine update --check
|
|
|
266
266
|
Useful install flags:
|
|
267
267
|
|
|
268
268
|
| Flag | Effect |
|
|
269
|
-
|
|
269
|
+
| --- | --- |
|
|
270
270
|
| `--target DIR` | Use another project directory. |
|
|
271
271
|
| `--dry-run` | Show planned file operations without changing anything. |
|
|
272
272
|
| `--force` | Replace or remove foreign or customized managed files. The installer still rejects symlinks and path escapes. |
|
package/docs/cli.md
CHANGED
|
@@ -24,6 +24,7 @@ devrites-engine state resolve <qid> "<answer>"
|
|
|
24
24
|
devrites-engine state close <slug>
|
|
25
25
|
|
|
26
26
|
devrites-engine secret-scan [--staged] [--stdin] [slug]
|
|
27
|
+
devrites-engine open-visual <path-or-name> [--slug <slug>] [--no-open]
|
|
27
28
|
devrites-engine version
|
|
28
29
|
```
|
|
29
30
|
|
|
@@ -69,20 +70,22 @@ with the self-contained updater.
|
|
|
69
70
|
|
|
70
71
|
- `check candidate <slug>` validates the strict `touched-files.md` manifest and
|
|
71
72
|
hashes its exact path/state/type/mode/content identity. A pass prints:
|
|
73
|
+
|
|
72
74
|
```text
|
|
73
75
|
candidate-sha256: <64 lowercase hex>
|
|
74
76
|
candidate-files: <manifest row count>
|
|
75
77
|
```
|
|
78
|
+
|
|
76
79
|
- `check readiness <slug>` verifies the files required to leave the workspace's
|
|
77
|
-
current phase
|
|
78
|
-
Build-input binding.
|
|
80
|
+
current phase, the `tasks.md` slice graph once that artifact is required, and,
|
|
81
|
+
once `eng-review.md` is required, its exact stable Build-input binding.
|
|
79
82
|
- `check readiness --emit-binding <slug>` renders the exact stable Build-input
|
|
80
83
|
binding for Vet to record after semantic review.
|
|
81
|
-
- `check seal <slug>` checks final required files
|
|
82
|
-
those files are complete, it verifies the stable
|
|
83
|
-
after that aggregate check passes does it verify that
|
|
84
|
-
`review.md`, `seal.md`, and optional `browser-evidence.md`
|
|
85
|
-
binding to the current candidate digest.
|
|
84
|
+
- `check seal <slug>` checks final required files, open human gates, and the
|
|
85
|
+
`tasks.md` slice graph. Once those files are complete, it verifies the stable
|
|
86
|
+
readiness binding; only after that aggregate check passes does it verify that
|
|
87
|
+
`evidence.md`, `review.md`, `seal.md`, and optional `browser-evidence.md`
|
|
88
|
+
contain exactly one binding to the current candidate digest.
|
|
86
89
|
|
|
87
90
|
Semantic readiness, traceability, acceptance interpretation, evidence quality,
|
|
88
91
|
doubt, test quality, reviewer reconciliation, and capability interpretation
|
|
@@ -118,6 +121,18 @@ secret bytes. It accepts at most 4,096 entries, 64 MiB total captured input, and
|
|
|
118
121
|
Findings include only severity, a redacted or escaped source label, category,
|
|
119
122
|
and zero-based byte offset. HIGH findings exit `3`.
|
|
120
123
|
|
|
124
|
+
## Open visual
|
|
125
|
+
|
|
126
|
+
`open-visual` resolves a portable HTML visualization under the active or
|
|
127
|
+
`--slug` workspace `visual/` directory, or an absolute/relative `.html` path.
|
|
128
|
+
Unless `--no-open` is set, it launches the OS default browser for that local
|
|
129
|
+
file only. A missing sibling `.outline.md` prints a stderr warning and still
|
|
130
|
+
succeeds. When the outline exists, inventory ids missing from HTML also warn
|
|
131
|
+
(non-fatal; HTML-only decorative ids are ignored). Stdout prints compact agent
|
|
132
|
+
tips: absolute HTML path, outline path (or missing), the playbook index hint,
|
|
133
|
+
and `ids=ok` / `ids=mismatch` when an inventory is present. The command never
|
|
134
|
+
fetches remote hosts.
|
|
135
|
+
|
|
121
136
|
## Output and exits
|
|
122
137
|
|
|
123
138
|
Lifecycle checks print stable line-oriented fields. `reason: DRV-...` identifies
|
package/docs/command-map.md
CHANGED
|
@@ -40,7 +40,7 @@ The Go surface is intentionally closed and deterministic:
|
|
|
40
40
|
|
|
41
41
|
| Lane | Commands | Owner |
|
|
42
42
|
|---|---|---|
|
|
43
|
-
| Candidate and deterministic checks | `check candidate`, `check readiness [--emit-binding]`, `check seal` | Candidate validates/hashes the strict project manifest; readiness checks phase files or emits the vetted Build-input binding; seal checks final files/open gates, that binding, then exact candidate bindings. |
|
|
43
|
+
| Candidate and deterministic checks | `check candidate`, `check readiness [--emit-binding]`, `check seal`, `check task-graph`, `check path-disjoint`, `check skill-trust` | Candidate validates/hashes the strict project manifest; readiness checks phase files, the required `tasks.md` slice graph, or emits the vetted Build-input binding; seal checks final files/open gates, that graph and binding, then exact candidate bindings. |
|
|
44
44
|
| Atomic workspace state | `state resolve`, `state close` | Go owns answer/drop/batch resolution and transactional close. |
|
|
45
45
|
| Security | `secret-scan` | `/rite-ship`, safe hooks, or an operator scans staged blobs, stdin, or touched files. |
|
|
46
46
|
| Install/operator | `install`, `update`, `uninstall`, `version` | Direct update acquires latest; npm/bootstrap may supply local candidates; the engine performs manifest-owned local changes. |
|