auto: docs sync 2026-07-14T00:00:14+00:00

Files changed: engine/lint-report.md engine/sweep.sh vault/.obsidian/workspace.json vault/docs/software/central.md
This commit is contained in:
echo6-autocommit 2026-07-14 00:00:14 +00:00
commit 4e96ac856e
4 changed files with 20 additions and 19 deletions

View file

@ -1,6 +1,6 @@
# Vault Lint Report
Generated: 2026-07-13T12:00:23Z | Docs scanned: 105 | Elapsed: 0.0s
Generated: 2026-07-13T18:00:33Z | Docs scanned: 105 | Elapsed: 0.0s
## Summary

View file

@ -133,7 +133,7 @@ if [ "$OPT_ALL" -eq 1 ] || [ ! -f "$LAST_SWEEP" ]; then
fi
while IFS= read -r -d '' f; do
# Skip archive
if [[ "$f" == *"/archive/"* ]]; then
if [[ "$f" == *"/archive/"* || "$f" == *"/.trash/"* ]]; then
continue
fi
DOC_LIST+=("$f")
@ -143,7 +143,7 @@ else
echo " Mode: incremental — docs modified since ${LAST_TS}"
# Compare file mtime to .last-sweep mtime (not contents)
while IFS= read -r -d '' f; do
if [[ "$f" == *"/archive/"* ]]; then
if [[ "$f" == *"/archive/"* || "$f" == *"/.trash/"* ]]; then
continue
fi
DOC_LIST+=("$f")
@ -204,10 +204,10 @@ if [ "$OPT_DRY" -eq 0 ]; then
date -u +%Y-%m-%dT%H:%M:%SZ > "$LAST_SWEEP"
{
printf "\n## %s — sweep run\n" "$SWEEP_START"
printf "- end: %s\n" "$SWEEP_END"
printf "- mode: %s\n" "$([ "$OPT_ALL" -eq 1 ] && echo "--all" || echo "incremental")"
printf "- docs selected: %d\n" "$TOTAL"
printf "- processed: %d | written: %d | flagged: %d | errors: %d\n" \
printf -- "- end: %s\n" "$SWEEP_END"
printf -- "- mode: %s\n" "$([ "$OPT_ALL" -eq 1 ] && echo "--all" || echo "incremental")"
printf -- "- docs selected: %d\n" "$TOTAL"
printf -- "- processed: %d | written: %d | flagged: %d | errors: %d\n" \
"$N_PROCESSED" "$N_WRITTEN" "$N_FLAGGED" "$N_ERRORS"
} >> "$CHANGELOG"
echo " .last-sweep updated. Changelog appended."