sync: 2026-03-16 18:00 — 21 files from Alexandria
Some checks failed
Lint & Format / detect (push) Has been cancelled
Lint & Format / js-lint (push) Has been cancelled
Lint & Format / py-lint (push) Has been cancelled
Lint & Format / sh-lint (push) Has been cancelled
Lint & Format / go-lint (push) Has been cancelled
Monorepo Lint / lint-shell (push) Has been cancelled
Monorepo Lint / lint-js (push) Has been cancelled

RoadChain-SHA2048: c316572452cf6246
RoadChain-Identity: alexa@sovereign
RoadChain-Full: c316572452cf6246294a9bf089ca177403d4187333252430e919cc2f55176f80722ae82807051dbc5772fa50a393bfc6ba5f1dc464d9ae0a435082d60da68a8f61c7521bc0fbc0509bf9e043035456b80763949d1e1e30cca278c3b264e78a417b62be8636feeda64580bd6eac8adede7fcb7c095eadc922a1057710484f98d08f347104bf31434f66ced3da243d480c58a4dfa0cc068ddfda54acadde593e3964f2a6ee69283eb62557638056c9e69be5cf70d8d9698b4c07f76c3f2d91e713cff5568eef41c51991648e8e28e2e0523cf04269cb5be393cae9250b285c968b97e330f5ddf91836d3f67555a147108c594274f1878fe4dc8f47ec4b2291b82f
This commit is contained in:
2026-03-16 18:00:02 -05:00
parent 24ed26bbc7
commit 6777292f6e
21 changed files with 346 additions and 142 deletions

8
operator/memory/memory-planner.sh Normal file → Executable file
View File

@@ -57,7 +57,7 @@ cmd_plan() {
local title cadence status progress
title=$(jq -r '.title' "$project_file")
cadence=$(jq -r '.cadence' "$project_file")
cadence=$(jq -r '.timescale' "$project_file")
status=$(jq -r '.status' "$project_file")
progress=$(jq -r '.progress' "$project_file")
@@ -121,7 +121,7 @@ cmd_next() {
pending_count=$(jq '[.todos[] | select(.status == "pending")] | length' "$f")
[[ "$pending_count" -eq 0 ]] && continue
cadence=$(jq -r '.cadence' "$f")
cadence=$(jq -r '.timescale' "$f")
pid=$(jq -r '.project_id' "$f")
title=$(jq -r '.title' "$f")
@@ -251,7 +251,7 @@ cmd_roadmap() {
for f in "$PROJECTS_DIR"/*.json; do
[[ ! -f "$f" ]] && continue
local fc
fc=$(jq -r '.cadence' "$f")
fc=$(jq -r '.timescale' "$f")
[[ "$fc" != "$cadence" ]] && continue
if [[ "$found" -eq 0 ]]; then
@@ -340,7 +340,7 @@ cmd_suggest() {
pid=$(jq -r '.project_id' "$f")
progress=$(jq -r '.progress' "$f")
pending=$(jq '[.todos[] | select(.status == "pending")] | length' "$f")
cadence=$(jq -r '.cadence' "$f")
cadence=$(jq -r '.timescale' "$f")
title=$(jq -r '.title' "$f")
[[ "$pending" -eq 0 ]] && continue