wayfind 2.0.56 → 2.0.57

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/bin/distill.js CHANGED
@@ -154,7 +154,7 @@ Format: A compact markdown summary, max 500 words.`,
154
154
  * @returns {Promise<{content: string, title: string}>}
155
155
  */
156
156
  async function mergeEntries(entries, llmConfig, tier) {
157
- const storePath = contentStore.DEFAULT_STORE_PATH;
157
+ const storePath = contentStore.resolveStorePath();
158
158
  const journalDir = contentStore.DEFAULT_JOURNAL_DIR;
159
159
  const signalsDir = contentStore.DEFAULT_SIGNALS_DIR;
160
160
 
@@ -195,7 +195,7 @@ async function mergeEntries(entries, llmConfig, tier) {
195
195
  async function distillEntries(options = {}) {
196
196
  const tierName = options.tier || 'daily';
197
197
  const dryRun = options.dryRun || false;
198
- const storePath = options.storePath || contentStore.DEFAULT_STORE_PATH;
198
+ const storePath = options.storePath || contentStore.resolveStorePath();
199
199
 
200
200
  const tiersToRun = tierName === 'all'
201
201
  ? ['daily', 'weekly', 'archive']
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wayfind",
3
- "version": "2.0.56",
3
+ "version": "2.0.57",
4
4
  "description": "Team decision trail for AI-assisted development. The connective tissue between product, engineering, and strategy.",
5
5
  "bin": {
6
6
  "wayfind": "./bin/team-context.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wayfind",
3
- "version": "2.0.56",
3
+ "version": "2.0.57",
4
4
  "description": "Team decision trail for AI-assisted development. Session memory, decision journals, and team digests.",
5
5
  "author": {
6
6
  "name": "Wayfind",
@@ -24,6 +24,12 @@ on:
24
24
  - 'journals/**'
25
25
  workflow_dispatch:
26
26
 
27
+ # Serialize runs — cancel in-progress when a newer push comes in.
28
+ # Safe because each run indexes all current journals; the latest run is always authoritative.
29
+ concurrency:
30
+ group: wayfind-distill
31
+ cancel-in-progress: true
32
+
27
33
  jobs:
28
34
  distill:
29
35
  runs-on: ubuntu-latest