devrites 1.19.0
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/.claude-plugin/marketplace.json +24 -0
- package/.claude-plugin/plugin.json +43 -0
- package/CHANGELOG.md +391 -0
- package/LICENSE +56 -0
- package/NOTICE.md +18 -0
- package/README.md +582 -0
- package/SECURITY.md +193 -0
- package/bin/devrites.mjs +100 -0
- package/docs/architecture.md +272 -0
- package/docs/cli-mcp.md +57 -0
- package/docs/command-map.md +143 -0
- package/docs/flow.md +360 -0
- package/docs/release.md +29 -0
- package/docs/skills.md +214 -0
- package/docs/usage.md +325 -0
- package/install.sh +359 -0
- package/mcp/devrites-mcp.mjs +103 -0
- package/pack/.claude/agents/devrites-code-reviewer.md +50 -0
- package/pack/.claude/agents/devrites-doubt-reviewer.md +55 -0
- package/pack/.claude/agents/devrites-frontend-reviewer.md +52 -0
- package/pack/.claude/agents/devrites-performance-reviewer.md +47 -0
- package/pack/.claude/agents/devrites-plan-reviewer.md +79 -0
- package/pack/.claude/agents/devrites-security-auditor.md +53 -0
- package/pack/.claude/agents/devrites-simplifier-reviewer.md +75 -0
- package/pack/.claude/agents/devrites-slice-wright.md +181 -0
- package/pack/.claude/agents/devrites-spec-reviewer.md +72 -0
- package/pack/.claude/agents/devrites-strategy-reviewer.md +62 -0
- package/pack/.claude/agents/devrites-test-analyst.md +47 -0
- package/pack/.claude/hooks/devrites-a1-guard.sh +81 -0
- package/pack/.claude/hooks/devrites-allow.sh +44 -0
- package/pack/.claude/hooks/devrites-cursor.sh +28 -0
- package/pack/.claude/hooks/devrites-orient.sh +53 -0
- package/pack/.claude/hooks/devrites-redwatch.sh +39 -0
- package/pack/.claude/hooks/devrites-refresh-indexes.sh +127 -0
- package/pack/.claude/hooks/devrites-reviewer-readonly.sh +28 -0
- package/pack/.claude/hooks/devrites-statusline.sh +18 -0
- package/pack/.claude/hooks/devrites-stop-gate.sh +45 -0
- package/pack/.claude/hooks/devrites-wright-scope.sh +35 -0
- package/pack/.claude/hooks/hooks.json +52 -0
- package/pack/.claude/rules/README.md +48 -0
- package/pack/.claude/rules/afk-hitl.md +245 -0
- package/pack/.claude/rules/agents.md +98 -0
- package/pack/.claude/rules/anti-patterns.md +48 -0
- package/pack/.claude/rules/code-review.md +38 -0
- package/pack/.claude/rules/coding-style.md +55 -0
- package/pack/.claude/rules/context-hygiene.md +97 -0
- package/pack/.claude/rules/core.md +119 -0
- package/pack/.claude/rules/development-workflow.md +40 -0
- package/pack/.claude/rules/documentation.md +27 -0
- package/pack/.claude/rules/error-handling.md +33 -0
- package/pack/.claude/rules/git-workflow.md +35 -0
- package/pack/.claude/rules/hooks.md +38 -0
- package/pack/.claude/rules/patterns.md +45 -0
- package/pack/.claude/rules/performance.md +27 -0
- package/pack/.claude/rules/prose-style.md +101 -0
- package/pack/.claude/rules/security.md +63 -0
- package/pack/.claude/rules/testing.md +88 -0
- package/pack/.claude/rules/tooling.md +72 -0
- package/pack/.claude/settings.json +53 -0
- package/pack/.claude/skills/devrites-api-interface/SKILL.md +45 -0
- package/pack/.claude/skills/devrites-audit/SKILL.md +73 -0
- package/pack/.claude/skills/devrites-browser-proof/SKILL.md +38 -0
- package/pack/.claude/skills/devrites-debug-recovery/SKILL.md +50 -0
- package/pack/.claude/skills/devrites-debug-recovery/reference/build-the-loop.md +47 -0
- package/pack/.claude/skills/devrites-debug-recovery/reference/cleanup-and-classify.md +17 -0
- package/pack/.claude/skills/devrites-debug-recovery/reference/hypotheses.md +17 -0
- package/pack/.claude/skills/devrites-debug-recovery/reference/instrumentation.md +21 -0
- package/pack/.claude/skills/devrites-debug-recovery/reference/regression-test.md +31 -0
- package/pack/.claude/skills/devrites-doubt/SKILL.md +75 -0
- package/pack/.claude/skills/devrites-frontend-craft/SKILL.md +96 -0
- package/pack/.claude/skills/devrites-frontend-craft/reference/craft.md +59 -0
- package/pack/.claude/skills/devrites-frontend-craft/reference/design-references.md +116 -0
- package/pack/.claude/skills/devrites-frontend-craft/reference/fullstack.md +45 -0
- package/pack/.claude/skills/devrites-frontend-craft/reference/quality-standards.md +215 -0
- package/pack/.claude/skills/devrites-frontend-craft/reference/reuse-first.md +59 -0
- package/pack/.claude/skills/devrites-frontend-craft/reference/shape.md +60 -0
- package/pack/.claude/skills/devrites-interview/SKILL.md +81 -0
- package/pack/.claude/skills/devrites-lib/SKILL.md +76 -0
- package/pack/.claude/skills/devrites-lib/scripts/analyze.sh +78 -0
- package/pack/.claude/skills/devrites-lib/scripts/check-acceptance.sh +75 -0
- package/pack/.claude/skills/devrites-lib/scripts/close-out.sh +47 -0
- package/pack/.claude/skills/devrites-lib/scripts/conventions.py +273 -0
- package/pack/.claude/skills/devrites-lib/scripts/coverage.sh +51 -0
- package/pack/.claude/skills/devrites-lib/scripts/devrites.sh +69 -0
- package/pack/.claude/skills/devrites-lib/scripts/doctor.sh +92 -0
- package/pack/.claude/skills/devrites-lib/scripts/evidence-fresh.sh +63 -0
- package/pack/.claude/skills/devrites-lib/scripts/footprint.sh +45 -0
- package/pack/.claude/skills/devrites-lib/scripts/learnings.sh +74 -0
- package/pack/.claude/skills/devrites-lib/scripts/mutation-gate.sh +52 -0
- package/pack/.claude/skills/devrites-lib/scripts/package-existence.sh +68 -0
- package/pack/.claude/skills/devrites-lib/scripts/preamble.sh +76 -0
- package/pack/.claude/skills/devrites-lib/scripts/progress.sh +103 -0
- package/pack/.claude/skills/devrites-lib/scripts/readiness.sh +62 -0
- package/pack/.claude/skills/devrites-lib/scripts/reconcile.sh +123 -0
- package/pack/.claude/skills/devrites-lib/scripts/resolve.sh +279 -0
- package/pack/.claude/skills/devrites-lib/scripts/stuck.sh +67 -0
- package/pack/.claude/skills/devrites-lib/scripts/test-integrity.sh +87 -0
- package/pack/.claude/skills/devrites-lib/scripts/tick-afk.sh +52 -0
- package/pack/.claude/skills/devrites-prose-craft/SKILL.md +105 -0
- package/pack/.claude/skills/devrites-prose-craft/reference/banned-phrases.md +95 -0
- package/pack/.claude/skills/devrites-prose-craft/reference/examples.md +88 -0
- package/pack/.claude/skills/devrites-prose-craft/reference/structures.md +134 -0
- package/pack/.claude/skills/devrites-refresh-indexes/SKILL.md +54 -0
- package/pack/.claude/skills/devrites-source-driven/SKILL.md +36 -0
- package/pack/.claude/skills/devrites-ux-shape/SKILL.md +121 -0
- package/pack/.claude/skills/devrites-ux-shape/reference/brief-template.md +93 -0
- package/pack/.claude/skills/devrites-ux-shape/reference/visual-direction-probe.md +48 -0
- package/pack/.claude/skills/rite/SKILL.md +135 -0
- package/pack/.claude/skills/rite/reference/menu.md +32 -0
- package/pack/.claude/skills/rite-adopt/SKILL.md +83 -0
- package/pack/.claude/skills/rite-adopt/reference/adoption.md +58 -0
- package/pack/.claude/skills/rite-adopt/reference/anti-patterns.md +19 -0
- package/pack/.claude/skills/rite-autocomplete/SKILL.md +96 -0
- package/pack/.claude/skills/rite-autocomplete/reference/decision-policy.md +35 -0
- package/pack/.claude/skills/rite-autocomplete/reference/loop.md +54 -0
- package/pack/.claude/skills/rite-autocomplete/reference/stop-conditions.md +59 -0
- package/pack/.claude/skills/rite-build/SKILL.md +261 -0
- package/pack/.claude/skills/rite-build/reference/afk-discipline.md +145 -0
- package/pack/.claude/skills/rite-build/reference/anti-patterns.md +25 -0
- package/pack/.claude/skills/rite-build/reference/checkpoint-protocol.md +149 -0
- package/pack/.claude/skills/rite-build/reference/evidence-standard.md +32 -0
- package/pack/.claude/skills/rite-build/reference/frontend-trigger.md +39 -0
- package/pack/.claude/skills/rite-build/reference/one-slice-cycle.md +38 -0
- package/pack/.claude/skills/rite-build/reference/spec-drift-guard.md +43 -0
- package/pack/.claude/skills/rite-build/reference/tdd.md +26 -0
- package/pack/.claude/skills/rite-build/reference/wright-dispatch.md +115 -0
- package/pack/.claude/skills/rite-define/SKILL.md +157 -0
- package/pack/.claude/skills/rite-define/reference/anti-patterns.md +25 -0
- package/pack/.claude/skills/rite-define/reference/gates.md +152 -0
- package/pack/.claude/skills/rite-define/reference/plan-template.md +65 -0
- package/pack/.claude/skills/rite-doctor/SKILL.md +50 -0
- package/pack/.claude/skills/rite-frame/SKILL.md +116 -0
- package/pack/.claude/skills/rite-frame/reference/failure-modes.md +68 -0
- package/pack/.claude/skills/rite-handoff/SKILL.md +95 -0
- package/pack/.claude/skills/rite-handoff/reference/handoff-template.md +34 -0
- package/pack/.claude/skills/rite-learn/SKILL.md +82 -0
- package/pack/.claude/skills/rite-plan/SKILL.md +82 -0
- package/pack/.claude/skills/rite-plan/reference/anti-patterns.md +24 -0
- package/pack/.claude/skills/rite-plan/reference/dependency-graph.md +33 -0
- package/pack/.claude/skills/rite-plan/reference/replan-and-repair.md +42 -0
- package/pack/.claude/skills/rite-plan/reference/slicing.md +52 -0
- package/pack/.claude/skills/rite-plan/reference/task-breakdown.md +34 -0
- package/pack/.claude/skills/rite-polish/SKILL.md +90 -0
- package/pack/.claude/skills/rite-polish/reference/anti-ai-slop.md +177 -0
- package/pack/.claude/skills/rite-polish/reference/anti-patterns.md +27 -0
- package/pack/.claude/skills/rite-polish/reference/backend-polish.md +80 -0
- package/pack/.claude/skills/rite-polish/reference/browser-polish-evidence.md +31 -0
- package/pack/.claude/skills/rite-polish/reference/code.md +85 -0
- package/pack/.claude/skills/rite-polish/reference/design-system-discovery.md +35 -0
- package/pack/.claude/skills/rite-polish/reference/harden-checklist.md +109 -0
- package/pack/.claude/skills/rite-polish/reference/ui.md +136 -0
- package/pack/.claude/skills/rite-pressure-test/SKILL.md +43 -0
- package/pack/.claude/skills/rite-prototype/SKILL.md +87 -0
- package/pack/.claude/skills/rite-prove/SKILL.md +120 -0
- package/pack/.claude/skills/rite-prove/reference/anti-patterns.md +25 -0
- package/pack/.claude/skills/rite-prove/reference/browser-proof.md +26 -0
- package/pack/.claude/skills/rite-prove/reference/failure-triage.md +25 -0
- package/pack/.claude/skills/rite-prove/reference/proof-ladder.md +26 -0
- package/pack/.claude/skills/rite-prove/reference/test-command-discovery.md +30 -0
- package/pack/.claude/skills/rite-quick/SKILL.md +81 -0
- package/pack/.claude/skills/rite-resolve/SKILL.md +113 -0
- package/pack/.claude/skills/rite-resolve/reference/answer-protocol.md +114 -0
- package/pack/.claude/skills/rite-review/SKILL.md +170 -0
- package/pack/.claude/skills/rite-review/reference/anti-patterns.md +32 -0
- package/pack/.claude/skills/rite-review/reference/cognitive-load.md +90 -0
- package/pack/.claude/skills/rite-review/reference/feature-scoped-review.md +26 -0
- package/pack/.claude/skills/rite-review/reference/five-axis-review.md +46 -0
- package/pack/.claude/skills/rite-review/reference/nielsen-heuristics.md +130 -0
- package/pack/.claude/skills/rite-review/reference/parallel-dispatch.md +62 -0
- package/pack/.claude/skills/rite-review/reference/performance-review.md +28 -0
- package/pack/.claude/skills/rite-review/reference/security-review.md +32 -0
- package/pack/.claude/skills/rite-seal/SKILL.md +183 -0
- package/pack/.claude/skills/rite-seal/reference/anti-patterns.md +27 -0
- package/pack/.claude/skills/rite-seal/reference/conventions-ledger.md +63 -0
- package/pack/.claude/skills/rite-seal/reference/final-evidence.md +72 -0
- package/pack/.claude/skills/rite-seal/reference/go-no-go.md +37 -0
- package/pack/.claude/skills/rite-seal/reference/parallel-dispatch.md +69 -0
- package/pack/.claude/skills/rite-seal/reference/risk-and-rollback.md +30 -0
- package/pack/.claude/skills/rite-seal/reference/seal-template.md +36 -0
- package/pack/.claude/skills/rite-ship/SKILL.md +120 -0
- package/pack/.claude/skills/rite-ship/reference/anti-patterns.md +25 -0
- package/pack/.claude/skills/rite-ship/reference/close-out.md +31 -0
- package/pack/.claude/skills/rite-ship/reference/design-memory.md +120 -0
- package/pack/.claude/skills/rite-ship/reference/git-ship.md +42 -0
- package/pack/.claude/skills/rite-ship/reference/ship-template.md +33 -0
- package/pack/.claude/skills/rite-spec/SKILL.md +126 -0
- package/pack/.claude/skills/rite-spec/reference/acceptance-criteria.md +31 -0
- package/pack/.claude/skills/rite-spec/reference/anti-patterns.md +25 -0
- package/pack/.claude/skills/rite-spec/reference/interview-patterns.md +56 -0
- package/pack/.claude/skills/rite-spec/reference/investigation.md +64 -0
- package/pack/.claude/skills/rite-spec/reference/question-protocol.md +61 -0
- package/pack/.claude/skills/rite-spec/reference/references-intake.md +57 -0
- package/pack/.claude/skills/rite-spec/reference/spec-checklists.md +73 -0
- package/pack/.claude/skills/rite-spec/reference/spec-template.md +124 -0
- package/pack/.claude/skills/rite-spec/reference/state-workspace.md +159 -0
- package/pack/.claude/skills/rite-status/SKILL.md +101 -0
- package/pack/.claude/skills/rite-temper/SKILL.md +119 -0
- package/pack/.claude/skills/rite-temper/reference/anti-patterns.md +29 -0
- package/pack/.claude/skills/rite-temper/reference/review-dimensions.md +65 -0
- package/pack/.claude/skills/rite-temper/reference/scope-modes.md +53 -0
- package/pack/.claude/skills/rite-temper/reference/significance.md +46 -0
- package/pack/.claude/skills/rite-temper/reference/strategy-template.md +90 -0
- package/pack/.claude/skills/rite-vet/SKILL.md +155 -0
- package/pack/.claude/skills/rite-vet/reference/anti-patterns.md +29 -0
- package/pack/.claude/skills/rite-vet/reference/artifacts.md +135 -0
- package/pack/.claude/skills/rite-vet/reference/cross-model.md +41 -0
- package/pack/.claude/skills/rite-vet/reference/depth.md +53 -0
- package/pack/.claude/skills/rite-vet/reference/eng-lenses.md +48 -0
- package/pack/.claude/skills/rite-vet/reference/review-axes.md +167 -0
- package/pack/.claude/skills/rite-zoom-out/SKILL.md +75 -0
- package/package.json +68 -0
- package/scripts/build-release-tarball.sh +74 -0
- package/scripts/check-cross-refs.py +121 -0
- package/scripts/check-no-global-writes.sh +44 -0
- package/scripts/check-rule-uniqueness.sh +73 -0
- package/scripts/devrites-detect.sh +175 -0
- package/scripts/eval-runner.py +273 -0
- package/scripts/grade-feature.sh +104 -0
- package/scripts/install-lib.sh +83 -0
- package/scripts/pin.sh +166 -0
- package/scripts/render-eval-summary.py +48 -0
- package/scripts/run-evals.sh +149 -0
- package/scripts/run-outcome-evals.sh +49 -0
- package/scripts/scan-pack-security.py +209 -0
- package/scripts/scan-supply-chain-iocs.py +127 -0
- package/scripts/supply-chain-iocs.json +11 -0
- package/scripts/sync-version.sh +56 -0
- package/scripts/validate-frontmatter.py +149 -0
- package/scripts/validate-workflow-security.py +86 -0
- package/scripts/validate.sh +234 -0
- package/uninstall.sh +137 -0
- package/update.sh +196 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "devrites-marketplace",
|
|
3
|
+
"description": "DevRites — disciplined senior-engineer workflow skills pack for Claude Code.",
|
|
4
|
+
"owner": {
|
|
5
|
+
"name": "Viktors Baikers",
|
|
6
|
+
"url": "https://github.com/ViktorsBaikers"
|
|
7
|
+
},
|
|
8
|
+
"plugins": [
|
|
9
|
+
{
|
|
10
|
+
"name": "devrites",
|
|
11
|
+
"source": "./",
|
|
12
|
+
"description": "Spec → plan → build → prove → polish → review → seal → ship workflow with persistent state, drift guard, browser-proof ladder, and anti-AI-slop guardrails.",
|
|
13
|
+
"version": "1.19.0",
|
|
14
|
+
"license": "personal-use-or-by-approval",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"workflow",
|
|
17
|
+
"skills",
|
|
18
|
+
"senior-engineer",
|
|
19
|
+
"spec-driven",
|
|
20
|
+
"anti-slop"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
]
|
|
24
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "devrites",
|
|
3
|
+
"version": "1.19.0",
|
|
4
|
+
"description": "Disciplined senior-engineer workflow skills pack — spec/plan/build/prove/polish/review/seal/ship with persistent .devrites/ Markdown state, Spec Drift Guard, browser-proof ladder, fullstack contract-first slicing, and anti-AI-slop guardrails.",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Viktors Baikers",
|
|
7
|
+
"url": "https://github.com/ViktorsBaikers"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/ViktorsBaikers/DevRites",
|
|
10
|
+
"repository": "https://github.com/ViktorsBaikers/DevRites",
|
|
11
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
12
|
+
"keywords": [
|
|
13
|
+
"claude-code",
|
|
14
|
+
"skills",
|
|
15
|
+
"agent-skills",
|
|
16
|
+
"workflow",
|
|
17
|
+
"senior-engineer",
|
|
18
|
+
"spec-driven",
|
|
19
|
+
"tdd",
|
|
20
|
+
"code-review",
|
|
21
|
+
"polish",
|
|
22
|
+
"frontend",
|
|
23
|
+
"fullstack",
|
|
24
|
+
"anti-slop",
|
|
25
|
+
"design-system",
|
|
26
|
+
"devrites"
|
|
27
|
+
],
|
|
28
|
+
"skills": "./pack/.claude/skills",
|
|
29
|
+
"hooks": "./pack/.claude/hooks/hooks.json",
|
|
30
|
+
"agents": [
|
|
31
|
+
"./pack/.claude/agents/devrites-code-reviewer.md",
|
|
32
|
+
"./pack/.claude/agents/devrites-doubt-reviewer.md",
|
|
33
|
+
"./pack/.claude/agents/devrites-frontend-reviewer.md",
|
|
34
|
+
"./pack/.claude/agents/devrites-performance-reviewer.md",
|
|
35
|
+
"./pack/.claude/agents/devrites-plan-reviewer.md",
|
|
36
|
+
"./pack/.claude/agents/devrites-security-auditor.md",
|
|
37
|
+
"./pack/.claude/agents/devrites-simplifier-reviewer.md",
|
|
38
|
+
"./pack/.claude/agents/devrites-slice-wright.md",
|
|
39
|
+
"./pack/.claude/agents/devrites-spec-reviewer.md",
|
|
40
|
+
"./pack/.claude/agents/devrites-strategy-reviewer.md",
|
|
41
|
+
"./pack/.claude/agents/devrites-test-analyst.md"
|
|
42
|
+
]
|
|
43
|
+
}
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,391 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
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
|
+
|
|
5
|
+
## [1.19.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.18.0...v1.19.0) (2026-06-22)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **installer:** add npx devrites full-pack installer + npm publishing ([316a0d3](https://github.com/ViktorsBaikers/DevRites/commit/316a0d372dad1afe2fade08f0045370fd5b3d801))
|
|
10
|
+
|
|
11
|
+
## [1.18.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.17.0...v1.18.0) (2026-06-22)
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **skills:** add rite-frame goal-reframe + failure-mode self-audit ([ca181ee](https://github.com/ViktorsBaikers/DevRites/commit/ca181eee47c4c47c19ea8069cb650e38a7a26c87))
|
|
16
|
+
|
|
17
|
+
## [1.17.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.16.0...v1.17.0) (2026-06-22)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* **skills:** auto-refresh code-intelligence indexes after edits ([6cdfa6c](https://github.com/ViktorsBaikers/DevRites/commit/6cdfa6cc5291955f5c6362970bcbda15589bc050))
|
|
22
|
+
|
|
23
|
+
## [1.16.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.15.0...v1.16.0) (2026-06-21)
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **skills:** make code-intelligence tools optional and add context7 ([d8f95f7](https://github.com/ViktorsBaikers/DevRites/commit/d8f95f7333dd0c35fa75d4e190a05db86e82ba92))
|
|
28
|
+
|
|
29
|
+
## [1.15.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.14.0...v1.15.0) (2026-06-21)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **skills:** make code-intelligence tools optional and add context7 ([d8f95f7](https://github.com/ViktorsBaikers/DevRites/commit/d8f95f7333dd0c35fa75d4e190a05db86e82ba92))
|
|
34
|
+
* **skills:** test-integrity gates, enforcement hooks, learning loop ([32d5102](https://github.com/ViktorsBaikers/DevRites/commit/32d5102f1e82313d939632a416a5df3b00a2a675))
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
* **ci:** allowlist new runtime artifacts; mark defensive deny-list ([eec1440](https://github.com/ViktorsBaikers/DevRites/commit/eec14403a827d98283c0641ae1c71087b24fe311))
|
|
39
|
+
|
|
40
|
+
## [1.15.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.14.0...v1.15.0) (2026-06-21)
|
|
41
|
+
|
|
42
|
+
### Features
|
|
43
|
+
|
|
44
|
+
* **skills:** test-integrity gates, enforcement hooks, learning loop ([32d5102](https://github.com/ViktorsBaikers/DevRites/commit/32d5102f1e82313d939632a416a5df3b00a2a675))
|
|
45
|
+
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
* **ci:** allowlist new runtime artifacts; mark defensive deny-list ([eec1440](https://github.com/ViktorsBaikers/DevRites/commit/eec14403a827d98283c0641ae1c71087b24fe311))
|
|
49
|
+
|
|
50
|
+
## [1.15.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.14.0...v1.15.0) (2026-06-21)
|
|
51
|
+
|
|
52
|
+
### Features
|
|
53
|
+
|
|
54
|
+
* **skills:** test-integrity gates, enforcement hooks, learning loop ([32d5102](https://github.com/ViktorsBaikers/DevRites/commit/32d5102f1e82313d939632a416a5df3b00a2a675))
|
|
55
|
+
|
|
56
|
+
## [1.14.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.13.0...v1.14.0) (2026-06-21)
|
|
57
|
+
|
|
58
|
+
### Features
|
|
59
|
+
|
|
60
|
+
* **skills:** add prose-craft skill and sharpen anti-slop code charter ([8a9e7e1](https://github.com/ViktorsBaikers/DevRites/commit/8a9e7e159487a53c89b46975a54f84ed875e409d))
|
|
61
|
+
|
|
62
|
+
## [1.13.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.12.0...v1.13.0) (2026-06-21)
|
|
63
|
+
|
|
64
|
+
### Features
|
|
65
|
+
|
|
66
|
+
* **skills:** add ui-taste enrichments + optional design-memory rollup ([316e7aa](https://github.com/ViktorsBaikers/DevRites/commit/316e7aa042d86ae173b7fa061437ced5af931b1f))
|
|
67
|
+
|
|
68
|
+
## [1.12.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.11.0...v1.12.0) (2026-06-21)
|
|
69
|
+
|
|
70
|
+
### Features
|
|
71
|
+
|
|
72
|
+
* **agents:** add prompt-injection-resistance baseline ([f260fc7](https://github.com/ViktorsBaikers/DevRites/commit/f260fc7b719c8049cb5ecd42b70649f17204080a)), closes [#14](https://github.com/ViktorsBaikers/DevRites/issues/14)
|
|
73
|
+
* **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)
|
|
74
|
+
* **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)
|
|
75
|
+
* **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)
|
|
76
|
+
* **skills:** add fan-out footprint at seal ([093b366](https://github.com/ViktorsBaikers/DevRites/commit/093b366b22f89a4e6851237c1aa458638a5aa910)), closes [#19](https://github.com/ViktorsBaikers/DevRites/issues/19)
|
|
77
|
+
* **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)
|
|
78
|
+
* **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)
|
|
79
|
+
* **skills:** conventions ledger with write-at-seal ([5de1464](https://github.com/ViktorsBaikers/DevRites/commit/5de1464a5a1d1a0a453aee84d5a515d616a929db)), closes [#17](https://github.com/ViktorsBaikers/DevRites/issues/17)
|
|
80
|
+
* **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)
|
|
81
|
+
|
|
82
|
+
## [1.11.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.10.0...v1.11.0) (2026-06-19)
|
|
83
|
+
|
|
84
|
+
### Features
|
|
85
|
+
|
|
86
|
+
* **skills:** add A1 pre-block hook, observe by default ([b7e76d5](https://github.com/ViktorsBaikers/DevRites/commit/b7e76d58f214076a7bd860b7fc3588c2476f5ed5))
|
|
87
|
+
|
|
88
|
+
## [1.10.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.9.0...v1.10.0) (2026-06-19)
|
|
89
|
+
|
|
90
|
+
### Features
|
|
91
|
+
|
|
92
|
+
* **installer:** auto-approve read-only scripts + orient hooks ([3807883](https://github.com/ViktorsBaikers/DevRites/commit/38078838d2f4eeb9303c35c42812bbcb9bd9f5fc))
|
|
93
|
+
* **skills:** gate orchestrator out of source edits (A1) ([c64a4a0](https://github.com/ViktorsBaikers/DevRites/commit/c64a4a0f2722089fa938b5291de64eca9e4648c7))
|
|
94
|
+
|
|
95
|
+
### Bug Fixes
|
|
96
|
+
|
|
97
|
+
* **skills:** resolve skills-audit findings across pack, evals, and CI ([1499ce2](https://github.com/ViktorsBaikers/DevRites/commit/1499ce274f714544f4983c8e6fc6a11ebe36ee25))
|
|
98
|
+
* **tests:** tolerate preserved settings.json in uninstall smoke ([1d1b3d5](https://github.com/ViktorsBaikers/DevRites/commit/1d1b3d56a0b348d8181fa9fae55e70b4f9e51fd9))
|
|
99
|
+
|
|
100
|
+
### Refactors
|
|
101
|
+
|
|
102
|
+
* **skills:** fold attempts, drop lanes note, signpost quick ([02180b5](https://github.com/ViktorsBaikers/DevRites/commit/02180b52dfa9254597b3ae0040690f556f40f5f2))
|
|
103
|
+
|
|
104
|
+
## [1.9.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.8.0...v1.9.0) (2026-06-19)
|
|
105
|
+
|
|
106
|
+
### Features
|
|
107
|
+
|
|
108
|
+
* **skills:** enforce test completeness + assertion strength ([4f825a1](https://github.com/ViktorsBaikers/DevRites/commit/4f825a1d1956138a6db778f8b54d7dcafb3876a8))
|
|
109
|
+
* **skills:** present gaps as ranked option sets with inline resolve ([db70a21](https://github.com/ViktorsBaikers/DevRites/commit/db70a21511ad3ebc17b32e32afed8b02dcd47a22))
|
|
110
|
+
* **skills:** research-driven workflow improvements ([83cb2e0](https://github.com/ViktorsBaikers/DevRites/commit/83cb2e00fb95cdbf974440f098e397ae7c9cde76))
|
|
111
|
+
|
|
112
|
+
## [1.8.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.7.0...v1.8.0) (2026-06-19)
|
|
113
|
+
|
|
114
|
+
### Features
|
|
115
|
+
|
|
116
|
+
* **skills:** add progress footer to all rite-* lifecycle commands ([6b5eda0](https://github.com/ViktorsBaikers/DevRites/commit/6b5eda051ddc86c0a4d67a42d147cf4e9b7fbd17))
|
|
117
|
+
|
|
118
|
+
## [1.7.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.6.0...v1.7.0) (2026-06-18)
|
|
119
|
+
|
|
120
|
+
### Features
|
|
121
|
+
|
|
122
|
+
* **scripts:** add outcome grader and MCP server ([6b7263c](https://github.com/ViktorsBaikers/DevRites/commit/6b7263cf220508dcb567a7db6f79f619ea185249))
|
|
123
|
+
* **skills:** add state gates, devrites CLI, and Gotchas sections ([25eaa49](https://github.com/ViktorsBaikers/DevRites/commit/25eaa49e55fce2b22734e8c977dd3a59db73c0d1))
|
|
124
|
+
|
|
125
|
+
### Documentation
|
|
126
|
+
|
|
127
|
+
* **docs:** sync README, CONTRIBUTING, SECURITY with changes ([cc89594](https://github.com/ViktorsBaikers/DevRites/commit/cc895942a2a12bcff056ca44c957bf39349f00ca))
|
|
128
|
+
|
|
129
|
+
## [1.6.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.5.1...v1.6.0) (2026-06-18)
|
|
130
|
+
|
|
131
|
+
### Features
|
|
132
|
+
|
|
133
|
+
* **skills:** add shared devrites-lib orientation preamble ([fd8c8fc](https://github.com/ViktorsBaikers/DevRites/commit/fd8c8fc97fb879c3d81190152ad6f31d971a3bde))
|
|
134
|
+
|
|
135
|
+
### Documentation
|
|
136
|
+
|
|
137
|
+
* **skills:** document the orientation preamble and devrites-lib ([4cd0d65](https://github.com/ViktorsBaikers/DevRites/commit/4cd0d6575f69a4b20dae6c5ffe01b9e4c232f93a))
|
|
138
|
+
|
|
139
|
+
## [1.5.1](https://github.com/ViktorsBaikers/DevRites/compare/v1.5.0...v1.5.1) (2026-06-17)
|
|
140
|
+
|
|
141
|
+
### Refactors
|
|
142
|
+
|
|
143
|
+
* **skills:** vet every plan at scaled depth, never skip ([ba61859](https://github.com/ViktorsBaikers/DevRites/commit/ba61859dc84871ebe9951dd1dfc68037e58fcb4f))
|
|
144
|
+
|
|
145
|
+
## [1.5.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.4.0...v1.5.0) (2026-06-17)
|
|
146
|
+
|
|
147
|
+
### Features
|
|
148
|
+
|
|
149
|
+
* **skills:** add /rite-vet engineering plan review before build ([8c22b6a](https://github.com/ViktorsBaikers/DevRites/commit/8c22b6af4558540f70853e2d56688f49d528dffa))
|
|
150
|
+
|
|
151
|
+
## [1.4.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.3.0...v1.4.0) (2026-06-17)
|
|
152
|
+
|
|
153
|
+
### Features
|
|
154
|
+
|
|
155
|
+
* **skills:** add /rite-temper strategic spec review ([aa95d4d](https://github.com/ViktorsBaikers/DevRites/commit/aa95d4d27735c654a5bea8daf31fb6bc2dfa1767))
|
|
156
|
+
|
|
157
|
+
## [1.3.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.2.0...v1.3.0) (2026-06-17)
|
|
158
|
+
|
|
159
|
+
### Features
|
|
160
|
+
|
|
161
|
+
* **agents:** add devrites-slice-wright write-capable executor ([66a7c14](https://github.com/ViktorsBaikers/DevRites/commit/66a7c1418b727da181f8294e3bf6fdd632fa5711))
|
|
162
|
+
|
|
163
|
+
## [1.2.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.1.1...v1.2.0) (2026-06-17)
|
|
164
|
+
|
|
165
|
+
### Features
|
|
166
|
+
|
|
167
|
+
* **skills:** plan UX/UI before code via devrites-ux-shape ([e4a45f2](https://github.com/ViktorsBaikers/DevRites/commit/e4a45f27346dc4ab22c5fb7acf215105e947e0a7))
|
|
168
|
+
|
|
169
|
+
## [1.1.1](https://github.com/ViktorsBaikers/DevRites/compare/v1.1.0...v1.1.1) (2026-06-17)
|
|
170
|
+
|
|
171
|
+
### Bug Fixes
|
|
172
|
+
|
|
173
|
+
* **skills:** slice count is always derived, never user-forced ([07eb724](https://github.com/ViktorsBaikers/DevRites/commit/07eb724a785793dd3d38ab4889b202d22d4ca2ef))
|
|
174
|
+
|
|
175
|
+
### Documentation
|
|
176
|
+
|
|
177
|
+
* **docs:** /rite-ship in manifest descriptions + autocomplete example ([7d3dfce](https://github.com/ViktorsBaikers/DevRites/commit/7d3dfcee6a9ae99f6ac8d05a6573501c7c8713da))
|
|
178
|
+
* **docs:** list /rite-autocomplete in README table, fix /ship alias ([b5613fa](https://github.com/ViktorsBaikers/DevRites/commit/b5613fa922d2c51cc03149d840d316cc12770a76))
|
|
179
|
+
|
|
180
|
+
## [1.1.0](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.5...v1.1.0) (2026-06-17)
|
|
181
|
+
|
|
182
|
+
### Features
|
|
183
|
+
|
|
184
|
+
* **skills:** add /rite-autocomplete — unattended full lifecycle ([acad7e5](https://github.com/ViktorsBaikers/DevRites/commit/acad7e555c4f188665c9a7a5db4dd3dbb4264375))
|
|
185
|
+
* **skills:** add /rite-ship — execute the ship + close the task ([cc7db95](https://github.com/ViktorsBaikers/DevRites/commit/cc7db95f079de8da824187a482451a34aa02b852))
|
|
186
|
+
* **skills:** sharpen the rite-spec interview loop + coverage gate ([72994ea](https://github.com/ViktorsBaikers/DevRites/commit/72994eab298661b39724af955d5988f47035df03))
|
|
187
|
+
|
|
188
|
+
### Refactors
|
|
189
|
+
|
|
190
|
+
* **skills:** seal decides only; git ladder moves to /rite-ship ([80f0fbf](https://github.com/ViktorsBaikers/DevRites/commit/80f0fbfae0a77417283ed35efa4f3c8eae921aa7))
|
|
191
|
+
|
|
192
|
+
### Documentation
|
|
193
|
+
|
|
194
|
+
* **docs:** reflect ship/autocomplete + seal-decides split ([e9d4a7e](https://github.com/ViktorsBaikers/DevRites/commit/e9d4a7e64ed8cc4b8b0c742dea055e647d112c57))
|
|
195
|
+
* **repo:** fix stale skill count + phantom devrites-rules refs ([3793e1b](https://github.com/ViktorsBaikers/DevRites/commit/3793e1bdf2fecd0c21999c003f5ff09d5b48aef0))
|
|
196
|
+
|
|
197
|
+
## [1.0.5](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.4...v1.0.5) (2026-06-16)
|
|
198
|
+
|
|
199
|
+
### Bug Fixes
|
|
200
|
+
|
|
201
|
+
* **installer:** round-trip rules-only flags, cover update.sh ([0e82a76](https://github.com/ViktorsBaikers/DevRites/commit/0e82a76389ad9787c8f7a776fabffb01de6c49f8))
|
|
202
|
+
* **rules:** per-skill core load, dedupe table, validating-gate teeth ([007096e](https://github.com/ViktorsBaikers/DevRites/commit/007096e1f001ac80e1ca6e990afd134d4a8a80cd))
|
|
203
|
+
* **scripts:** correct gate tally, add AFK cap + qid scripts ([f2e46e5](https://github.com/ViktorsBaikers/DevRites/commit/f2e46e5155f7ac43dabf28f6db0a34bca84f0b2c))
|
|
204
|
+
* **skills:** workspace state, AFK budget, evidence + reviewer scope ([a8e9e75](https://github.com/ViktorsBaikers/DevRites/commit/a8e9e7567ae12b8a5cece961786c196323c1847b))
|
|
205
|
+
|
|
206
|
+
### Documentation
|
|
207
|
+
|
|
208
|
+
* **docs:** reconcile counts, fix phantom names and loading model ([f29241e](https://github.com/ViktorsBaikers/DevRites/commit/f29241e9aebd026afdd570d88bba500e9aee8b29))
|
|
209
|
+
|
|
210
|
+
## [1.0.4](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.3...v1.0.4) (2026-05-28)
|
|
211
|
+
|
|
212
|
+
### Bug Fixes
|
|
213
|
+
|
|
214
|
+
* **docs:** quote inside mermaid edge label broke flow.md diagram ([5112ba3](https://github.com/ViktorsBaikers/DevRites/commit/5112ba3be1cfb9f47195e98a5b7d50927662b64f))
|
|
215
|
+
|
|
216
|
+
## [1.0.3](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.2...v1.0.3) (2026-05-28)
|
|
217
|
+
|
|
218
|
+
### Bug Fixes
|
|
219
|
+
|
|
220
|
+
* **installer:** list agents as file array, validate manifest sync ([97d5004](https://github.com/ViktorsBaikers/DevRites/commit/97d50049cdaf4877272e8f555b92b87d1be26887))
|
|
221
|
+
|
|
222
|
+
### Documentation
|
|
223
|
+
|
|
224
|
+
* **docs:** bash install is recommended, plugin path is partial ([e729d18](https://github.com/ViktorsBaikers/DevRites/commit/e729d1851498ccda5be7496ffff72d88fd2b4ce7))
|
|
225
|
+
|
|
226
|
+
## [1.0.2](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.1...v1.0.2) (2026-05-28)
|
|
227
|
+
|
|
228
|
+
### Bug Fixes
|
|
229
|
+
|
|
230
|
+
* **installer:** plugin.json must use string repo and ./-prefixed paths ([cb50c01](https://github.com/ViktorsBaikers/DevRites/commit/cb50c01efcd45f813cc9fa7aeee7f25795bfd503))
|
|
231
|
+
|
|
232
|
+
## [1.0.1](https://github.com/ViktorsBaikers/DevRites/compare/v1.0.0...v1.0.1) (2026-05-28)
|
|
233
|
+
|
|
234
|
+
### Bug Fixes
|
|
235
|
+
|
|
236
|
+
* **ci:** repair dependabot, sync README on release, use bot author ([d928765](https://github.com/ViktorsBaikers/DevRites/commit/d928765a965e4c49d1618cf07842e907f28deb0a))
|
|
237
|
+
|
|
238
|
+
## 1.0.0 (2026-05-28)
|
|
239
|
+
|
|
240
|
+
### Features
|
|
241
|
+
|
|
242
|
+
* **repo:** ship DevRites skills pack ([0915d40](https://github.com/ViktorsBaikers/DevRites/commit/0915d40f0c88e81dc9c122f5c755c7975957fdd4))
|
|
243
|
+
|
|
244
|
+
### Bug Fixes
|
|
245
|
+
|
|
246
|
+
* **ci:** bypass commitlint on semantic-release commits, tidy README ([0cf52a3](https://github.com/ViktorsBaikers/DevRites/commit/0cf52a3f27216ab5edb8197ec22628d03f2e5e31))
|
|
247
|
+
* **ci:** sync lockfile and reject multiline descriptions without PyYAML ([0efa85f](https://github.com/ViktorsBaikers/DevRites/commit/0efa85f052612b94926cf3382f88510059e5a8e8))
|
|
248
|
+
|
|
249
|
+
# Changelog
|
|
250
|
+
|
|
251
|
+
All notable changes to DevRites are documented here. The format is based on
|
|
252
|
+
[Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and DevRites adheres
|
|
253
|
+
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
254
|
+
|
|
255
|
+
## [Unreleased]
|
|
256
|
+
|
|
257
|
+
### Added
|
|
258
|
+
|
|
259
|
+
- **AFK & HITL run modes — full pause/resume contract.**
|
|
260
|
+
- `pack/.claude/skills/rite-resolve/` — new public skill (`SKILL.md`,
|
|
261
|
+
`scripts/resolve.sh`, `reference/answer-protocol.md`). Canonical writer
|
|
262
|
+
for `questions.md` `status: open → answered` and `state.md` `Awaiting
|
|
263
|
+
human` clearance. Three input shapes: single `<qid> "<answer>"`,
|
|
264
|
+
`--drop <qid>`, `--batch <file>`.
|
|
265
|
+
- `pack/.claude/rules/afk-hitl.md` — master contract: `.devrites/AFK`
|
|
266
|
+
sentinel format, four-gate taxonomy (`advisory` / `validating` /
|
|
267
|
+
`blocking` / `escalating`) with SLAs (`none` / `4h` / `15m` / `24h`),
|
|
268
|
+
irreversible-risk list (destructive migration, auth/authz boundary,
|
|
269
|
+
public API break, external contract, fs destruction, red tests/types/
|
|
270
|
+
lint) that always pauses regardless of `allow_gates`.
|
|
271
|
+
- `pack/.claude/skills/rite-define/reference/gates.md` — gate decision tree
|
|
272
|
+
+ per-gate behavior matrix + AFK interaction table.
|
|
273
|
+
- `pack/.claude/skills/rite-build/reference/checkpoint-protocol.md` —
|
|
274
|
+
pre-action render contract + workspace mutations + `notify:` hook env
|
|
275
|
+
contract.
|
|
276
|
+
- `pack/.claude/skills/rite-build/reference/afk-discipline.md` — iteration
|
|
277
|
+
cap, fail-on-red, irreversible-risk list, notify-hook seam.
|
|
278
|
+
- `.devrites/AFK` sentinel (project-root, gitignore by default) toggles
|
|
279
|
+
session-level AFK mode. Optional YAML: `max_slices`, `notify`,
|
|
280
|
+
`allow_gates`. Empty file = AFK with safe defaults
|
|
281
|
+
(`allow_gates: [advisory]`).
|
|
282
|
+
- **Schema extensions** (`pack/.claude/skills/rite-spec/reference/state-workspace.md`):
|
|
283
|
+
`state.md` gains `Run mode`, `Status`, `Slice mode`, and an `Awaiting
|
|
284
|
+
human` block when paused. `tasks.md` slice format extended with `Gate`,
|
|
285
|
+
`SLA`, `Checkpoint` (required when `Mode: HITL`). `questions.md` entries
|
|
286
|
+
carry `qid`, `gate`, `status`, `proposed`, `raised_at`, `answered_at`,
|
|
287
|
+
`answer`.
|
|
288
|
+
- `/rite-build` workflow updated with:
|
|
289
|
+
- Step 0 — awaiting check (stop and route to `/rite-resolve` when
|
|
290
|
+
`Status: awaiting_human`).
|
|
291
|
+
- Step 2a — HITL pre-action checkpoint (renders gate, persists
|
|
292
|
+
`Awaiting human`, fires `notify:` hook, stops).
|
|
293
|
+
- Step 10 — fail-on-red (red tests/types/lint never marks the slice
|
|
294
|
+
`built`; raises a blocking question).
|
|
295
|
+
- Step 11 — sentinel decrement (`max_slices` ticks down per built slice;
|
|
296
|
+
0 forces HITL stop).
|
|
297
|
+
- `/rite-status` surfaces `Run mode`, `Status`, the `Awaiting human` block,
|
|
298
|
+
and open questions broken down by gate (`blocking · validating · advisory
|
|
299
|
+
· escalating`). `scripts/load-state.sh` parses `.devrites/AFK` + tallies
|
|
300
|
+
questions by gate.
|
|
301
|
+
- `devrites-doubt` AFK exception: findings at or below the slice's gate
|
|
302
|
+
ceiling downgrade to advisory entries in `questions.md`; irreversible-risk
|
|
303
|
+
findings always pause regardless of AFK config.
|
|
304
|
+
- README "Modes — HITL & AFK" section + top-of-doc 2-mode callout + Contents
|
|
305
|
+
link + phase-table `RESUME` row pointing at `/rite-resolve`.
|
|
306
|
+
- `docs/usage.md` — new sections "9) HITL gate — pre-code pause and resume"
|
|
307
|
+
and "10) AFK overnight run"; `.devrites/AFK` sentinel row in the workspace
|
|
308
|
+
table.
|
|
309
|
+
- `docs/flow.md` — feature lifecycle diagram now shows the `Awaiting human`
|
|
310
|
+
↔ `/rite-resolve` loop; workspace state-model ER diagram extended with
|
|
311
|
+
`AFK_SENTINEL`, `state.run_mode`/`status`/`awaiting_human`, and
|
|
312
|
+
`questions.qid`/`status`/`gate`; new section 9 "AFK & HITL state
|
|
313
|
+
machine".
|
|
314
|
+
- `docs/architecture.md` — new "Run modes — HITL & AFK" subsection +
|
|
315
|
+
Surface bullet updated with `rite-resolve`.
|
|
316
|
+
- `docs/command-map.md` — `/rite-resolve` row + updated `/rite-status` row
|
|
317
|
+
(reports run mode + status + question gate breakdown).
|
|
318
|
+
- `.claude-plugin/plugin.json` + `.claude-plugin/marketplace.json` for
|
|
319
|
+
installation via `claude plugin install devrites@devrites-marketplace`.
|
|
320
|
+
- `SECURITY.md` with private vulnerability-reporting channel, supported
|
|
321
|
+
versions, disclosure window, and documented security model.
|
|
322
|
+
- `CODE_OF_CONDUCT.md` (Contributor Covenant 2.1).
|
|
323
|
+
- `CODEOWNERS` mandating review on `pack/`, `scripts/`, `install.sh`,
|
|
324
|
+
`uninstall.sh`, `.claude-plugin/`.
|
|
325
|
+
- Engineering rules ship under `pack/.claude/rules/` (16 rule files +
|
|
326
|
+
`README.md` index) and are autoloaded natively by Claude Code from
|
|
327
|
+
`.claude/rules/core.md`; on-demand files are read by the phase that needs
|
|
328
|
+
them. No carrier skill — `core.md` is always-on, the rest progressive-disclosure.
|
|
329
|
+
- `pack/.claude/agents/devrites-simplifier-reviewer.md` (new) to complete
|
|
330
|
+
the audit-skill subagent set; existing
|
|
331
|
+
`devrites-security-auditor.md` + `devrites-performance-reviewer.md`
|
|
332
|
+
reused for security + performance audits.
|
|
333
|
+
- `## Common Rationalizations` (4-6 rite-specific excuse/rebuttal rows) and
|
|
334
|
+
`## Red Flags` (3-5 bullets) sections on `rite-spec` and `rite-define`
|
|
335
|
+
SKILL.md (rollout continues — remaining `rite-*` skills carry the universal
|
|
336
|
+
anti-pattern table at `pack/.claude/rules/anti-patterns.md` plus
|
|
337
|
+
per-phase `reference/anti-patterns.md`).
|
|
338
|
+
- Universal anti-rationalization table + red-flags list in
|
|
339
|
+
`pack/.claude/rules/anti-patterns.md`; minimal always-on subset in
|
|
340
|
+
`pack/.claude/rules/core.md`.
|
|
341
|
+
- Trigger evals under `evals/<skill>.json` (20 should/should-not-trigger
|
|
342
|
+
queries per public `rite-*` skill) and `scripts/run-evals.sh`.
|
|
343
|
+
- `scripts/devrites-detect.sh` — deterministic anti-slop regex detector
|
|
344
|
+
(25-30 rules across UI + code anti-slop).
|
|
345
|
+
- `.github/workflows/ci.yml` running `validate.sh`, install/uninstall
|
|
346
|
+
smoke, fixture install, commitlint, eval suite on every PR.
|
|
347
|
+
- UI numerical bar — OKLCH-only, 4pt scale, 100/300/500 motion durations
|
|
348
|
+
+ 75 % exit, three-axis dark-mode compensation, fluid-vs-fixed type
|
|
349
|
+
scale, container queries, semantic z-index — extended into
|
|
350
|
+
`pack/.claude/skills/devrites-frontend-craft/reference/quality-standards.md`.
|
|
351
|
+
- Extended anti-AI-slop list (side-stripe borders, em-dash overuse, pure
|
|
352
|
+
`#000` / `#fff`, all-CAPS body, extended reflex-font reject list) in
|
|
353
|
+
`pack/.claude/skills/rite-polish/reference/anti-ai-slop.md`.
|
|
354
|
+
- `NEVER` lists on the UI discipline references (`shape.md`, `craft.md`,
|
|
355
|
+
`design-references.md`).
|
|
356
|
+
- `docs/architecture.md`, `docs/command-map.md`, `docs/usage.md` now ship
|
|
357
|
+
with the repo (`docs/` un-gitignored; `docs/internal/` is the new home
|
|
358
|
+
for the previously-local research / development notes).
|
|
359
|
+
- Interactive **type-GO** confirmation in `/rite-seal` before irreversible
|
|
360
|
+
git actions (commit, push, tag) — keeps auto-trigger UX while preventing
|
|
361
|
+
accidental side effects.
|
|
362
|
+
|
|
363
|
+
### Changed
|
|
364
|
+
|
|
365
|
+
- `/rite-review` output now uses the explicit
|
|
366
|
+
`Critical / Important / Suggestion / Nit / FYI` severity vocabulary.
|
|
367
|
+
- `/rite-seal` gate logic: `Critical == 0` proceeds, `Critical > 0` blocks,
|
|
368
|
+
`Important > 0` triggers an interactive `y/N` confirmation. No numeric
|
|
369
|
+
composite score (avoids Goodhart on a self-scoring agent).
|
|
370
|
+
- Audit skills consolidated into a single `devrites-audit` skill that
|
|
371
|
+
dispatches the security / perf / simplify reviewer subagent on an axis
|
|
372
|
+
argument — replaces the earlier per-axis skills. Migration from
|
|
373
|
+
`context: fork` to `Task`-tool subagent dispatch closes Anthropic bug
|
|
374
|
+
[#49559](https://github.com/anthropics/claude-code/issues/49559)
|
|
375
|
+
(`context: fork` silently inline under plugin install) and matches the
|
|
376
|
+
`devrites-doubt` → `devrites-doubt-reviewer.md` pattern already in use.
|
|
377
|
+
- Public `rite-*` skill descriptions rewritten with explicit
|
|
378
|
+
user-language trigger phrases + `Not for…` negative-scope clauses.
|
|
379
|
+
- README install section now documents the plugin path alongside the bash
|
|
380
|
+
installer. Added a "Security model" section pointing at `SECURITY.md`.
|
|
381
|
+
- License clarified: personal use and plugin-marketplace **listing** are
|
|
382
|
+
permitted without approval; redistribution / mirroring / commercial
|
|
383
|
+
/ organizational use still requires approval.
|
|
384
|
+
|
|
385
|
+
## [0.1.0] — unreleased
|
|
386
|
+
|
|
387
|
+
Initial public release line. Tag will be cut once the items above land on
|
|
388
|
+
`main`.
|
|
389
|
+
|
|
390
|
+
[Unreleased]: https://github.com/ViktorsBaikers/DevRites/compare/v0.1.0...HEAD
|
|
391
|
+
[0.1.0]: https://github.com/ViktorsBaikers/DevRites/releases/tag/v0.1.0
|
package/LICENSE
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
DevRites License
|
|
2
|
+
Copyright (c) 2026 Viktors Baikers.
|
|
3
|
+
|
|
4
|
+
DevRites is free to use and its source is available. Some uses require permission, as set
|
|
5
|
+
out below. This is a source-available license; because it restricts modification and
|
|
6
|
+
redistribution, it is not an OSI-approved open-source license.
|
|
7
|
+
|
|
8
|
+
1. Definitions
|
|
9
|
+
"Software" means DevRites — the skills, review subagents, engineering rules, scripts,
|
|
10
|
+
and documentation in this repository.
|
|
11
|
+
"You" means the person or entity exercising rights under this License.
|
|
12
|
+
"Personal Use" means use by an individual, acting on their own behalf, for private,
|
|
13
|
+
non-commercial purposes (personal projects and learning that are not undertaken for,
|
|
14
|
+
and do not generate, commercial advantage or monetary compensation).
|
|
15
|
+
|
|
16
|
+
2. Use — free
|
|
17
|
+
You may use and run the Software, for any purpose, at no charge.
|
|
18
|
+
|
|
19
|
+
3. Modification — for personal use
|
|
20
|
+
You may modify the Software for Your own Personal Use, at no charge. Modifying the
|
|
21
|
+
Software for any non-personal purpose, or distributing any modified version, requires
|
|
22
|
+
prior written approval (Section 5).
|
|
23
|
+
|
|
24
|
+
4. Other use — by approval on request
|
|
25
|
+
Any other use requires prior written approval, including without limitation:
|
|
26
|
+
distributing or publishing the Software or any derivative; sublicensing, selling, or
|
|
27
|
+
renting it; offering it (or a service based on it) to third parties; and any
|
|
28
|
+
commercial or organizational use beyond Personal Use.
|
|
29
|
+
|
|
30
|
+
5. Requesting approval
|
|
31
|
+
Approvals are granted in writing by the copyright holder. Request one via the project
|
|
32
|
+
repository: https://github.com/ViktorsBaikers/DevRites (open an issue or contact the
|
|
33
|
+
owner). Approval, if granted, may be subject to terms agreed in writing.
|
|
34
|
+
|
|
35
|
+
6. Conditions
|
|
36
|
+
Retain this License and the copyright notice in copies or substantial portions of the
|
|
37
|
+
Software that You are permitted to make. Do not remove or alter attribution.
|
|
38
|
+
|
|
39
|
+
7. No trademark rights
|
|
40
|
+
This License grants no rights to the names, logos, or trademarks of the copyright
|
|
41
|
+
holder.
|
|
42
|
+
|
|
43
|
+
8. Disclaimer of warranty
|
|
44
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
45
|
+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
|
|
46
|
+
PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
47
|
+
|
|
48
|
+
9. Limitation of liability
|
|
49
|
+
IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
|
|
50
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF,
|
|
51
|
+
OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
52
|
+
|
|
53
|
+
10. Termination
|
|
54
|
+
Use outside the scope of this License terminates the rights granted in Sections 2–3
|
|
55
|
+
automatically. On termination You must stop the disallowed use; permitted Personal
|
|
56
|
+
Use may continue.
|
package/NOTICE.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# NOTICE
|
|
2
|
+
|
|
3
|
+
DevRites is an original work. It vendors **no third-party code** — its skills, review
|
|
4
|
+
subagents, and engineering rules are written for DevRites.
|
|
5
|
+
|
|
6
|
+
The Nielsen heuristics 0–4 scoring rubric in
|
|
7
|
+
`rite-review/reference/nielsen-heuristics.md` references the heuristics themselves
|
|
8
|
+
(Jakob Nielsen, 1994 / 2020 — public usability canon).
|
|
9
|
+
|
|
10
|
+
## License
|
|
11
|
+
Free to use. Modification is permitted **for personal use**; any other use —
|
|
12
|
+
distributing it, distributing modified versions, or commercial/organizational use —
|
|
13
|
+
requires **approval on request**. See [`LICENSE`](LICENSE).
|
|
14
|
+
|
|
15
|
+
## Claude Code
|
|
16
|
+
DevRites is a skills pack for **Claude Code** and follows its skills, subagents, and
|
|
17
|
+
rules conventions. "Claude" and "Claude Code" are products of Anthropic; DevRites is
|
|
18
|
+
independent and unaffiliated.
|