BREAKING CHANGE: ~/.config/mosaic/bin/ is removed entirely. The mosaic npm CLI is now the only executable. ## What changed - **bin/ → deleted**: All scripts moved to tools/_scripts/ (internal) - **mosaic-launch → deleted**: Launcher logic is native TypeScript in packages/cli/src/commands/launch.ts - **mosaic.ps1 → deleted**: PowerShell launcher removed - **Framework install.sh**: Complete rewrite with migration system - **Version tracking**: .framework-version file (schema v2) - **Migration v1→v2**: Auto-removes bin/, cleans old PATH entries from shell profiles ## Native TypeScript launcher (commands/launch.ts) All runtime launch logic ported from bash: - Runtime prompt builder (AGENTS.md + RUNTIME.md + USER.md + TOOLS.md) - Mission context injection (reads .mosaic/orchestrator/mission.json) - PRD status injection (scans docs/PRD.md) - Pre-flight checks (MOSAIC_HOME, AGENTS.md, SOUL.md, runtime binary) - Session lock management with signal cleanup - Per-runtime launch: Claude, Codex, OpenCode, Pi - Yolo mode flags per runtime - Pi skill discovery + extension loading - Framework management (init, doctor, sync, bootstrap) delegates to tools/_scripts/ bash implementations ## Installer - tools/install.sh: detects framework by .framework-version or AGENTS.md - Framework install.sh: migration system with schema versioning - Forward-compatible: add migrations as numbered blocks - No PATH manipulation for framework (npm bin is the only PATH entry)
89 lines
2.2 KiB
Bash
Executable File
89 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
MOSAIC_HOME="${MOSAIC_HOME:-$HOME/.config/mosaic}"
|
|
APPLY=0
|
|
|
|
usage() {
|
|
cat <<USAGE
|
|
Usage: $(basename "$0") [--apply]
|
|
|
|
Migrate runtime-local skill directories (e.g. ~/.claude/skills/jarvis) to Mosaic-managed
|
|
skills by replacing local directories with symlinks to ~/.config/mosaic/skills-local.
|
|
|
|
Default mode is dry-run.
|
|
USAGE
|
|
}
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
case "$1" in
|
|
--apply)
|
|
APPLY=1
|
|
shift
|
|
;;
|
|
-h|--help)
|
|
usage
|
|
exit 0
|
|
;;
|
|
*)
|
|
echo "Unknown argument: $1" >&2
|
|
usage >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
skill_roots=(
|
|
"$HOME/.claude/skills"
|
|
"$HOME/.codex/skills"
|
|
"$HOME/.config/opencode/skills"
|
|
"$HOME/.pi/agent/skills"
|
|
)
|
|
|
|
if [[ ! -d "$MOSAIC_HOME/skills-local" ]]; then
|
|
echo "[mosaic-local-skills] Missing local skills dir: $MOSAIC_HOME/skills-local" >&2
|
|
exit 1
|
|
fi
|
|
|
|
count=0
|
|
|
|
while IFS= read -r -d '' local_skill; do
|
|
name="$(basename "$local_skill")"
|
|
src="$MOSAIC_HOME/skills-local/$name"
|
|
[[ -d "$src" ]] || continue
|
|
|
|
for root in "${skill_roots[@]}"; do
|
|
[[ -d "$root" ]] || continue
|
|
target="$root/$name"
|
|
|
|
# Already linked correctly.
|
|
if [[ -L "$target" ]]; then
|
|
target_real="$(readlink -f "$target" 2>/dev/null || true)"
|
|
src_real="$(readlink -f "$src" 2>/dev/null || true)"
|
|
if [[ -n "$target_real" && -n "$src_real" && "$target_real" == "$src_real" ]]; then
|
|
continue
|
|
fi
|
|
fi
|
|
|
|
# Only migrate local directories containing SKILL.md
|
|
if [[ -d "$target" && -f "$target/SKILL.md" && ! -L "$target" ]]; then
|
|
count=$((count + 1))
|
|
if [[ $APPLY -eq 1 ]]; then
|
|
stamp="$(date +%Y%m%d%H%M%S)"
|
|
mv "$target" "${target}.mosaic-bak-${stamp}"
|
|
ln -s "$src" "$target"
|
|
echo "[mosaic-local-skills] migrated: $target -> $src"
|
|
else
|
|
echo "[mosaic-local-skills] would migrate: $target -> $src"
|
|
fi
|
|
fi
|
|
done
|
|
done < <(find "$MOSAIC_HOME/skills-local" -mindepth 1 -maxdepth 1 \( -type d -o -type l \) -print0)
|
|
|
|
if [[ $APPLY -eq 1 ]]; then
|
|
echo "[mosaic-local-skills] complete: migrated=$count"
|
|
else
|
|
echo "[mosaic-local-skills] dry-run: migratable=$count"
|
|
echo "[mosaic-local-skills] re-run with --apply to migrate"
|
|
fi
|