wayfind 2.0.0 → 2.0.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/doctor.sh CHANGED
@@ -235,8 +235,8 @@ check_team_versions() {
235
235
 
236
236
  # Check min_version from check-version command output
237
237
  local CHECK_OUTPUT=""
238
- if [ -f "$HOME/repos/greg/meridian/bin/team-context.js" ]; then
239
- CHECK_OUTPUT=$(node "$HOME/repos/greg/meridian/bin/team-context.js" check-version 2>&1 || true)
238
+ if [ -f "$HOME/repos/greg/wayfind/bin/team-context.js" ]; then
239
+ CHECK_OUTPUT=$(node "$HOME/repos/greg/wayfind/bin/team-context.js" check-version 2>&1 || true)
240
240
  elif command -v wayfind >/dev/null 2>&1; then
241
241
  CHECK_OUTPUT=$(wayfind check-version 2>&1 || true)
242
242
  fi
package/install.sh CHANGED
@@ -1,13 +1,13 @@
1
1
  #!/usr/bin/env bash
2
2
  # Wayfind — Installer
3
3
  # Usage:
4
- # curl -fsSL https://raw.githubusercontent.com/leizerowicz/meridian/main/install.sh | bash
4
+ # curl -fsSL https://raw.githubusercontent.com/leizerowicz/wayfind/main/install.sh | bash
5
5
  # WAYFIND_VERSION=v1.1.0 bash install.sh # Install specific version
6
6
  # bash install.sh --force # Force reinstall even if same version
7
7
 
8
8
  set -euo pipefail
9
9
 
10
- REPO="leizerowicz/meridian"
10
+ REPO="leizerowicz/wayfind"
11
11
  VERSION="${WAYFIND_VERSION:-main}"
12
12
  TMP_DIR="$(mktemp -d)"
13
13
  FORCE=false
@@ -41,10 +41,10 @@ echo ""
41
41
  # Download
42
42
  if [ "$VERSION" = "main" ]; then
43
43
  DOWNLOAD_URL="https://github.com/$REPO/archive/refs/heads/main.tar.gz"
44
- ARCHIVE_NAME="meridian-main"
44
+ ARCHIVE_NAME="wayfind-main"
45
45
  else
46
46
  DOWNLOAD_URL="https://github.com/$REPO/archive/refs/tags/${VERSION}.tar.gz"
47
- ARCHIVE_NAME="meridian-${VERSION#v}"
47
+ ARCHIVE_NAME="wayfind-${VERSION#v}"
48
48
  fi
49
49
 
50
50
  ARCHIVE="$TMP_DIR/kit.tar.gz"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wayfind",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
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"
@@ -34,12 +34,12 @@ bash ~/.claude/team-context/journal-summary.sh --dir ~/.ai-memory/memory/journal
34
34
 
35
35
  Run setup.sh with `--update` to install it:
36
36
  ```bash
37
- bash ~/repos/greg/meridian/setup.sh --tool claude-code --update
37
+ bash ~/repos/greg/wayfind/setup.sh --tool claude-code --update
38
38
  ```
39
39
 
40
40
  Or install manually:
41
41
  ```bash
42
- cp ~/repos/greg/meridian/journal-summary.sh ~/.claude/team-context/journal-summary.sh
42
+ cp ~/repos/greg/wayfind/journal-summary.sh ~/.claude/team-context/journal-summary.sh
43
43
  chmod +x ~/.claude/team-context/journal-summary.sh
44
44
  ```
45
45
 
@@ -10,7 +10,7 @@
10
10
  set -euo pipefail
11
11
 
12
12
  # Use local wayfind checkout if available, otherwise try npx
13
- WAYFIND_BIN="$HOME/repos/greg/meridian/bin/team-context.js"
13
+ WAYFIND_BIN="$HOME/repos/greg/wayfind/bin/team-context.js"
14
14
  if [ -f "$WAYFIND_BIN" ]; then
15
15
  node "$WAYFIND_BIN" status --write --quiet 2>/dev/null || true
16
16
  node "$WAYFIND_BIN" check-version 2>/dev/null || true
@@ -9,7 +9,7 @@ set -euo pipefail
9
9
  # Skip export for worker agents in multi-agent swarms.
10
10
  # Set TEAM_CONTEXT_SKIP_EXPORT=1 when spawning worker agents so only the
11
11
  # orchestrator's decisions flow into the journal.
12
- if [ "${TEAM_CONTEXT_SKIP_EXPORT:-}" = "1" ]; then
12
+ if [ "${TEAM_CONTEXT_SKIP_EXPORT:-${MERIDIAN_SKIP_EXPORT:-}}" = "1" ]; then
13
13
  exit 0
14
14
  fi
15
15
 
@@ -3,7 +3,7 @@
3
3
  # No Docker container needed — runs directly via npx.
4
4
  #
5
5
  # Setup:
6
- # 1. Copy this file to .github/workflows/meridian-digest.yml in your team-context repo
6
+ # 1. Copy this file to .github/workflows/wayfind-digest.yml in your team-context repo
7
7
  # 2. Add these secrets to the repo (Settings → Secrets → Actions):
8
8
  # - ANTHROPIC_API_KEY: Your Anthropic API key
9
9
  # - SLACK_WEBHOOK_URL: Slack incoming webhook URL (optional — digests are also committed to the repo)
package/uninstall.sh CHANGED
@@ -102,4 +102,4 @@ info "Your memory files are preserved:"
102
102
  info " ~/.claude/global-state.md"
103
103
  info " ~/.claude/memory/"
104
104
  info ""
105
- info "To reinstall: curl -fsSL https://raw.githubusercontent.com/leizerowicz/meridian/main/install.sh | bash"
105
+ info "To reinstall: curl -fsSL https://raw.githubusercontent.com/leizerowicz/wayfind/main/install.sh | bash"