@windyroad/retrospective 0.1.3 → 0.1.4-preview.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -12,7 +12,7 @@ The retrospective plugin:
12
12
 
13
13
  - **Reminds** you to run a retro when a session ends
14
14
  - **Updates** `docs/BRIEFING.md` with session learnings so future sessions start with context
15
- - **Creates problem tickets** (via [`@windyroad/problem`](../problem/)) for failures and friction encountered during the session
15
+ - **Creates problem tickets** (via [`@windyroad/itil`](../itil/)) for failures and friction encountered during the session
16
16
 
17
17
  ## Install
18
18
 
@@ -22,7 +22,7 @@ npx @windyroad/retrospective
22
22
 
23
23
  Restart Claude Code after installing.
24
24
 
25
- > **Requires:** [`@windyroad/problem`](../problem/) and [`@windyroad/risk-scorer`](../risk-scorer/). The installer warns if they're missing.
25
+ > **Requires:** [`@windyroad/itil`](../itil/) and [`@windyroad/risk-scorer`](../risk-scorer/). The installer warns if they're missing.
26
26
 
27
27
  ## Usage
28
28
 
@@ -40,7 +40,7 @@ The plugin also triggers a reminder via a `Stop` hook when a session ends natura
40
40
 
41
41
  | Hook | Trigger | What it does |
42
42
  |------|---------|-------------|
43
- | `check-deps.sh` | Session start | Verifies that `wr-problem` and `wr-risk-scorer` are installed |
43
+ | `check-deps.sh` | Session start | Verifies that `wr-itil` and `wr-risk-scorer` are installed |
44
44
  | `retrospective-reminder.sh` | Session end | Reminds you to run a retrospective |
45
45
 
46
46
  ## Updating and Uninstalling
package/bin/install.mjs CHANGED
@@ -7,7 +7,7 @@ const __dirname = dirname(fileURLToPath(import.meta.url));
7
7
  const utils = await import(resolve(__dirname, "../lib/install-utils.mjs"));
8
8
 
9
9
  const PLUGIN = "wr-retrospective";
10
- const DEPS = ["wr-problem", "wr-risk-scorer"];
10
+ const DEPS = ["wr-itil", "wr-risk-scorer"];
11
11
 
12
12
  const flags = utils.parseStandardArgs(process.argv);
13
13
 
package/hooks/hooks.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "hooks": {
3
3
  "SessionStart": [
4
- { "hooks": [{ "type": "command", "command": "${CLAUDE_PLUGIN_ROOT}/bin/check-deps.sh wr-retrospective wr-problem wr-risk-scorer" }] }
4
+ { "hooks": [{ "type": "command", "command": "${CLAUDE_PLUGIN_ROOT}/bin/check-deps.sh wr-retrospective wr-itil wr-risk-scorer" }] }
5
5
  ],
6
6
  "Stop": [
7
7
  { "hooks": [{ "type": "command", "command": "${CLAUDE_PLUGIN_ROOT}/hooks/retrospective-reminder.sh" }] }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windyroad/retrospective",
3
- "version": "0.1.3",
3
+ "version": "0.1.4-preview.62",
4
4
  "description": "Session retrospectives that update briefings and create problem tickets",
5
5
  "bin": {
6
6
  "windyroad-retrospective": "./bin/install.mjs"