feat(agents-vault): scaffold the vault and link project memory
Creates the vault repo on demand, reusing the AGENTS version bumper and hook shims, then links the current project's live memory directory into its slug-keyed entry and commits. Because the live directory becomes a symlink into the vault, backup and restore are the same operation: a cloned vault relinks itself on the next run in each project, with no manifest and no batch restore step. Also fixes _agents_repo_install_tools' progress messages, which hardcoded the literal "AGENTS/.agents-tools/" even for callers writing elsewhere: they now name repo_dir's own basename, so agents-vault reports its own directory instead of a false AGENTS/ path.
This commit is contained in:
@@ -10,8 +10,10 @@
|
||||
# refreshing them when the shipped agents-tools-version: marker is newer
|
||||
# than the installed copy. Files are made executable. Idempotent: prints
|
||||
# nothing when the installed tooling is already current, or a short summary
|
||||
# line when it installed or updated the tooling. Shared by agents-init and
|
||||
# agents-vault.
|
||||
# line when it installed or updated the tooling, naming <repo_dir>'s own
|
||||
# basename rather than a hardcoded caller (e.g. "AGENTS/.agents-tools/" for
|
||||
# agents-init, "agent-vault/.agents-tools/" for agents-vault). Shared by
|
||||
# agents-init and agents-vault.
|
||||
#
|
||||
# ARGUMENTS
|
||||
# repo_dir Absolute path to the git repo root to install tooling into
|
||||
@@ -41,9 +43,10 @@ function _agents_repo_install_tools --argument-names repo_dir
|
||||
command cp "$src/hooks/prepare-commit-msg" "$dest/hooks/prepare-commit-msg"; or return 1
|
||||
chmod +x "$dest/version-bump" "$dest/hooks/pre-commit" "$dest/hooks/prepare-commit-msg"; or return 1
|
||||
|
||||
set -l label (path basename -- "$repo_dir")
|
||||
if test -z "$have"
|
||||
echo "→ Installed AGENTS/.agents-tools/ (version-bump v$want)"
|
||||
echo "→ Installed $label/.agents-tools/ (version-bump v$want)"
|
||||
else
|
||||
echo "→ Updated AGENTS/.agents-tools/ (v$have → v$want)"
|
||||
echo "→ Updated $label/.agents-tools/ (v$have → v$want)"
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user