huskies: rename project from storkit to huskies

Rename all references from storkit to huskies across the codebase:
- .storkit/ directory → .huskies/
- Binary name, Cargo package name, Docker image references
- Server code, frontend code, config files, scripts
- Fix script/test to build frontend before cargo clippy/test
  so merge worktrees have frontend/dist available for RustEmbed

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Timmy
2026-04-03 16:12:52 +01:00
parent a7035b6ba7
commit 2d8ccb3eb6
572 changed files with 1340 additions and 1220 deletions
+8 -8
View File
@@ -3,8 +3,8 @@ set -euo pipefail
# ── Configuration ──────────────────────────────────────────────
GITEA_URL="https://code.crashlabs.io"
REPO="dave/storkit"
BINARY_NAME="storkit"
REPO="dave/huskies"
BINARY_NAME="huskies"
# ── Load .env if present ───────────────────────────────────────
SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
@@ -112,9 +112,9 @@ else
fi
# Extract completed stories/bugs/refactors from merge commits.
# Matches both the current "storkit:" prefix and the legacy "story-kit:" prefix.
# Matches the current "huskies:" prefix and legacy "storkit:" / "story-kit:" prefixes for backwards-compatible history parsing.
# Deduplicate (a story may have been merged more than once after reverts).
MERGE_RE="^(storkit|story-kit): merge "
MERGE_RE="^(huskies|storkit|story-kit): merge "
if [ -n "$LOG_RANGE" ]; then
MERGED_RAW=$(git log "$LOG_RANGE" --pretty=format:"%s" --no-merges \
| grep -E "$MERGE_RE" | sed -E "s/$MERGE_RE//" | sort -u || true)
@@ -143,14 +143,14 @@ done <<< "$MERGED_RAW"
# Collect non-automation manual commits (direct fixes, version bumps, etc).
if [ -n "$LOG_RANGE" ]; then
MANUAL=$(git log "$LOG_RANGE" --pretty=format:"%s" --no-merges \
| grep -Ev "^(storkit|story-kit): " \
| grep -Ev "^Revert \"(storkit|story-kit): " \
| grep -Ev "^(huskies|storkit|story-kit): " \
| grep -Ev "^Revert \"(huskies|storkit|story-kit): " \
| grep -v "^Bump version" \
| sed 's/^/- /' || true)
else
MANUAL=$(git log --pretty=format:"%s" --no-merges \
| grep -Ev "^(storkit|story-kit): " \
| grep -Ev "^Revert \"(storkit|story-kit): " \
| grep -Ev "^(huskies|storkit|story-kit): " \
| grep -Ev "^Revert \"(huskies|storkit|story-kit): " \
| grep -v "^Bump version" \
| sed 's/^/- /' || true)
fi