devrites 4.4.1 → 4.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
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.2](https://github.com/ViktorsBaikers/DevRites/compare/v4.4.1...v4.4.2) (2026-08-27)
6
+
7
+ ### Fixed
8
+
9
+ * **scripts:** resolve codex skill path without dead fallback ([#43](https://github.com/ViktorsBaikers/DevRites/issues/43)) ([4d80520](https://github.com/ViktorsBaikers/DevRites/commit/4d805201a123ef123b3581a38fbb1c812297a024))
10
+
5
11
  ## [4.4.1](https://github.com/ViktorsBaikers/DevRites/compare/v4.4.0...v4.4.1) (2026-08-26)
6
12
 
7
13
  ### Fixed
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.4.1`](https://github.com/ViktorsBaikers/DevRites/releases/tag/v4.4.1): see [`CHANGELOG.md`](CHANGELOG.md) for release notes.
31
+ **Status:** [`v4.4.2`](https://github.com/ViktorsBaikers/DevRites/releases/tag/v4.4.2): 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
 
@@ -19,12 +19,11 @@ When they ask how phases connect, load [`reference/menu.md`](reference/menu.md).
19
19
 
20
20
  ## Dispatch
21
21
 
22
- If `$ARGUMENTS` starts with a verb in this table, **load the matching skill and execute its workflow** with the remainder of `$ARGUMENTS` as that skill's argument. Try post-install path first, fall back to pre-install:
22
+ If `$ARGUMENTS` starts with a verb in this table, **load the matching skill and execute its workflow** with the remainder of `$ARGUMENTS` as that skill's argument. Resolve the installed skill path:
23
23
 
24
24
  ```bash
25
25
  V=<verb>; ARGS="<remaining args>"
26
26
  F=.agents/skills/rite-$V/SKILL.md
27
- [ -f "$F" ] || F=.agents/skills/rite-$V/SKILL.md
28
27
  # Then Read "$F" and follow its workflow with $ARGS as that skill's $ARGUMENTS.
29
28
  ```
30
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devrites",
3
- "version": "4.4.1",
3
+ "version": "4.4.2",
4
4
  "description": "DevRites: a disciplined senior-engineer workflow pack for Claude Code and Codex",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "homepage": "https://github.com/ViktorsBaikers/DevRites#readme",
@@ -8,6 +8,8 @@ gen_codex_markdown_file() {
8
8
  local _src="$1" _out="$2"
9
9
  mkdir -p "$(dirname "$_out")"
10
10
  sed -E \
11
+ -e 's#Try post-install path first, fall back to pre-install:#Resolve the installed skill path:#g' \
12
+ -e '/^\[ -f "\$F" \] \|\| F=[^ ].*SKILL\.md$/d' \
11
13
  -e 's#(pack/)?\.claude/agents/devrites-\{security-auditor,performance-reviewer,simplifier-reviewer\}\.md#.codex/agents/devrites-security-auditor.toml`, `.codex/agents/devrites-performance-reviewer.toml`, or `.codex/agents/devrites-simplifier-reviewer.toml#g' \
12
14
  -e 's#(\.\./)+agents/devrites-\{security-auditor,performance-reviewer,simplifier-reviewer\}\.md#.codex/agents/devrites-security-auditor.toml`, `.codex/agents/devrites-performance-reviewer.toml`, or `.codex/agents/devrites-simplifier-reviewer.toml#g' \
13
15
  -e 's#pack/\.claude/skills/devrites-lib/scripts/#.agents/skills/devrites-lib/scripts/#g' \