Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3cdc2069db | |||
| cc53877328 | |||
| c42b237d30 | |||
| b7197e88b0 | |||
| 2985d9ade8 | |||
| bff810c1eb | |||
| 904fe85249 | |||
| cda488c565 | |||
| 9ab9a28458 | |||
| d175b31207 |
@@ -565,16 +565,19 @@ jobs:
|
|||||||
needs:
|
needs:
|
||||||
- base-decide
|
- base-decide
|
||||||
- build-variant
|
- build-variant
|
||||||
# Skip on cache-hit base builds: when need_build=false, base-latest
|
# Run on every tag release (and on promote_latest=true dispatches).
|
||||||
# already points at the same digest as base-<hash>, so the retag is
|
# The job-level gate deliberately does NOT key off need_build anymore:
|
||||||
# a tautology and any transient failure of it is purely cosmetic.
|
# the actual no-op optimization moved INTO the step as a digest compare
|
||||||
# Manual workflow_dispatch with promote_latest=true overrides this
|
# (see below). Keying the gate on need_build was wrong because a prior
|
||||||
# gate as an escape hatch (e.g., if base-latest got hand-deleted).
|
# dry-run dispatch (promote_latest=false) can pre-build+push base-<hash>,
|
||||||
|
# making need_build=false on the subsequent tag run even though
|
||||||
|
# base-latest is still stale — the old gate then skipped promotion and
|
||||||
|
# left base-latest pointing at the PREVIOUS base. (Observed 2026-06-27,
|
||||||
|
# v1.2.3: dry-run-first release left base-latest one base behind.)
|
||||||
if: |
|
if: |
|
||||||
always() &&
|
always() &&
|
||||||
needs.build-variant.result == 'success' &&
|
needs.build-variant.result == 'success' &&
|
||||||
(inputs.promote_latest == 'true' ||
|
(inputs.promote_latest == 'true' || github.ref_type == 'tag')
|
||||||
(github.ref_type == 'tag' && needs.base-decide.outputs.need_build == 'true'))
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: catthehacker/ubuntu:act-latest
|
image: catthehacker/ubuntu:act-latest
|
||||||
@@ -596,11 +599,31 @@ jobs:
|
|||||||
crane auth login docker.io \
|
crane auth login docker.io \
|
||||||
-u ${{ vars.DOCKERHUB_USERNAME }} \
|
-u ${{ vars.DOCKERHUB_USERNAME }} \
|
||||||
-p "${{ secrets.DOCKERHUB_TOKEN }}"
|
-p "${{ secrets.DOCKERHUB_TOKEN }}"
|
||||||
- name: Re-tag base-<hash> as base-latest
|
- name: Re-tag base-<hash> as base-latest (only if stale)
|
||||||
|
env:
|
||||||
|
BASE_HASH_REF: ${{ env.IMAGE }}:${{ needs.base-decide.outputs.base_tag }}
|
||||||
|
BASE_LATEST_REF: ${{ env.IMAGE }}:base-latest
|
||||||
run: |
|
run: |
|
||||||
crane copy \
|
set -euo pipefail
|
||||||
${{ env.IMAGE }}:${{ needs.base-decide.outputs.base_tag }} \
|
# Correctness invariant: after a release, base-latest must resolve to
|
||||||
${{ env.IMAGE }}:base-latest
|
# the SAME digest as the base-<hash> the just-built variants were
|
||||||
|
# FROM. Compare digests rather than trusting need_build — a prior
|
||||||
|
# dry-run dispatch can pre-build base-<hash>, so need_build=false on
|
||||||
|
# the tag run does NOT imply base-latest is already current. When the
|
||||||
|
# digests already match (genuine cache-hit release) this is a no-op,
|
||||||
|
# so we skip the crane copy entirely — preserving the original
|
||||||
|
# "don't do a tautological retag" intent and avoiding any cosmetic
|
||||||
|
# transient-failure exposure on releases that change nothing.
|
||||||
|
want=$(crane digest "${BASE_HASH_REF}")
|
||||||
|
have=$(crane digest "${BASE_LATEST_REF}" 2>/dev/null || echo "")
|
||||||
|
echo "base-<hash> digest: ${want}"
|
||||||
|
echo "base-latest digest: ${have:-<absent>}"
|
||||||
|
if [ "${want}" = "${have}" ]; then
|
||||||
|
echo "base-latest already current; nothing to promote."
|
||||||
|
else
|
||||||
|
echo "Promoting base-latest -> ${BASE_HASH_REF}"
|
||||||
|
crane copy "${BASE_HASH_REF}" "${BASE_LATEST_REF}"
|
||||||
|
fi
|
||||||
|
|
||||||
# ── Phase 6: update Hub description (only on real release runs) ────
|
# ── Phase 6: update Hub description (only on real release runs) ────
|
||||||
update-description:
|
update-description:
|
||||||
|
|||||||
+144
@@ -11,6 +11,150 @@ Pre-v1.0.0 tags followed the pi npm version (`v{pi_version}[letter]`).
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## v1.2.4 — 2026-06-29
|
||||||
|
|
||||||
|
Patch release. Headline: **pi `0.80.2` → `0.80.3`** (npm `latest`). Also ships a
|
||||||
|
global gitignore baked into the image, secrets-via-`env_file`-only compose
|
||||||
|
hardening, and a CI fix so `promote-base-latest` re-points `base-latest`
|
||||||
|
reliably after a dry-run-first release. The mempalace pin stays `3.5.0`. The
|
||||||
|
base image rebuilds because `Dockerfile.base` changed (the gitignore seed +
|
||||||
|
`entrypoint-user.sh` wiring).
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- **Global gitignore baked into the image.** A `~/.gitignore_global`
|
||||||
|
(`*.bak`, `*.bak.*`, `*~`, `*.orig`, `*.swp`, `*.tmp`) is seeded into the home
|
||||||
|
dir from `/etc/skel-devbox/` on first boot (seed-if-absent, like
|
||||||
|
`.bash_aliases`/`.inputrc`, so user edits survive recreate) and wired via
|
||||||
|
`git config --global core.excludesFile`. Personal/tooling backup artifacts are
|
||||||
|
now ignored across all repos in the container without per-repo `.gitignore`
|
||||||
|
entries. The `core.excludesFile` wiring is skipped if the user already set one.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **Secrets are now delivered to the container via `env_file: .env` only; the
|
||||||
|
`environment:` block no longer re-declares `GITEA_ACCESS_TOKEN`,
|
||||||
|
`GITEA_HOST`, or `GITHUB_PERSONAL_ACCESS_TOKEN`.** An `environment:` entry
|
||||||
|
both overrides `env_file:` and is interpolated from the host shell, so a
|
||||||
|
stale shell export (e.g. one auto-loaded by an opencode/dotenv hook) would
|
||||||
|
silently shadow the value in your `.env` — an updated token in `.env` never
|
||||||
|
reached the container. Delivering secrets via `env_file` only decouples the
|
||||||
|
container from whatever the host shell happens to export. No action needed:
|
||||||
|
`.env.example` already documents every supported variable. Affects
|
||||||
|
`docker-compose.yml` and the README “basic shape” snippet.
|
||||||
|
|
||||||
|
### Fixed (CI)
|
||||||
|
|
||||||
|
- **`promote-base-latest` now re-points `base-latest` reliably after a
|
||||||
|
dry-run-first release.** The job's gate previously required
|
||||||
|
`need_build == 'true'`, on the assumption that `need_build == false`
|
||||||
|
implied `base-latest` was already current. That assumption breaks when a
|
||||||
|
`workflow_dispatch` dry-run (`promote_latest=false`) pre-builds and pushes
|
||||||
|
`base-<hash>` first: the subsequent tag run then sees `need_build == false`
|
||||||
|
(probe hit) and **skipped** promotion, leaving `base-latest` pointing at the
|
||||||
|
*previous* base. (Observed 2026-06-27 releasing v1.2.3 via dry-run-then-tag
|
||||||
|
— `base-latest` ended up one base behind, lacking the mempalace self-heal.)
|
||||||
|
Now the gate runs on every tag release (or `promote_latest=true` dispatch),
|
||||||
|
and the no-op optimization moved **into** the step as a `crane digest`
|
||||||
|
compare: it re-tags only when `base-latest` actually differs from the
|
||||||
|
released `base-<hash>`, so genuine cache-hit releases stay a no-op while
|
||||||
|
stale aliases get corrected. No image-content change; base hash unaffected.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v1.2.3 — 2026-06-27
|
||||||
|
|
||||||
|
Patch release. Headline: **mempalace-mcp now self-heals** instead of latching
|
||||||
|
`available=false` permanently after a slow cold-open. Also folds in the `yq`
|
||||||
|
and mempalace-skill changes that were sitting unreleased. **No pi/mempalace
|
||||||
|
version change** — pi npm `latest` is still `0.80.2` (= v1.2.2) and the
|
||||||
|
mempalace pin stays `3.5.0`; the base image rebuilds purely because the
|
||||||
|
`mempalace-toolkit` ref advances to pick up the self-heal extension.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- **mempalace-mcp self-heal — no more permanent `available=false` latch.**
|
||||||
|
The `mempalace.ts` pi extension (from `mempalace-toolkit`, bumped to
|
||||||
|
[`e12b624`](https://gitea.jordbo.se/joakimp/mempalace-toolkit/commit/e12b624))
|
||||||
|
previously tripped its per-request timeout on a slow virtiofs cold-open of
|
||||||
|
the palace, killed the child, and set `available=false` **forever** (no
|
||||||
|
respawn) — a pi restart was the only recovery.
|
||||||
|
- **Bounded respawn with capped exponential backoff** via `ensureAlive()`
|
||||||
|
(`MEMPALACE_MCP_MAX_RESPAWNS=2`, `MEMPALACE_MCP_RESPAWN_BACKOFF_MS=1000`;
|
||||||
|
set max to `0` to disable). Both `execute()` and initial startup route
|
||||||
|
through it. The respawn budget **resets on any successful JSON-RPC
|
||||||
|
response** (`onStdout`), so a healthy session can't slowly exhaust it.
|
||||||
|
- **Scoped init timeout** raised `120000 → 300000` ms (`MEMPALACE_MCP_INIT_TIMEOUT_MS`),
|
||||||
|
affecting **init only** — the per-call timeout stays `60000`
|
||||||
|
(`MEMPALACE_MCP_TIMEOUT_MS`) — so a genuine cold HNSW deserialize isn't
|
||||||
|
killed mid-open.
|
||||||
|
- **Concurrency hardening:** a generation counter prevents a late-exiting
|
||||||
|
killed process from clobbering a fresh respawn, and an explicit `healthy`
|
||||||
|
flag replaces the racy `proc != null` check.
|
||||||
|
- Note: the build-time `smoke-test.sh` verifies the extension is present and
|
||||||
|
deployed but does **not** exercise respawn behaviour — first live
|
||||||
|
validation is on a running container.
|
||||||
|
- **`yq` is now mikefarah's Go yq, not Debian's Python `yq`.** The base image
|
||||||
|
previously apt-installed `yq`, which on Debian/Ubuntu is the unrelated
|
||||||
|
kislyuk/`yq` (a jq wrapper, v3.x) — incompatible with the mikefarah v4 syntax
|
||||||
|
the `cloud-init` repo's `provision.sh`/`deploy.sh` expect. Dropped the apt
|
||||||
|
package and install the mikefarah binary instead (multi-arch amd64/arm64,
|
||||||
|
following the repo's `latest` convention like `tealdeer`/`uv`; pin a tag
|
||||||
|
with `--build-arg YQ_VERSION=vX.Y.Z`). The build-time `smoke-test.sh` gate
|
||||||
|
asserts `yq --version` reports `mikefarah` **and** major **v4**, so both a
|
||||||
|
regression to the Python package and a surprise future yq v5 fail CI.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **Baked `mempalace` skill now teaches temporal grounding.** Added a
|
||||||
|
*Temporal grounding* rule to the image-baked
|
||||||
|
`skills/mempalace/SKILL.md` (Phase 1 wake-up + a matching anti-pattern):
|
||||||
|
before using relative time terms ("yesterday", "last week"), establish the
|
||||||
|
current date/time and compute the delta against the actual diary/drawer
|
||||||
|
timestamp. Explicitly calls out that a **container recreate or fresh session
|
||||||
|
is not a day boundary** — pi-devbox restarts several times a day, so two
|
||||||
|
entries minutes apart can straddle a recreate. Fixes agents mislabelling
|
||||||
|
same-day sessions as "yesterday".
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v1.2.2 — 2026-06-24
|
||||||
|
|
||||||
|
Patch release: pick up **pi `0.80.2`** (npm `latest`) and **mempalace `3.5.0`**,
|
||||||
|
and drop the now-obsolete `diary_write` schema workaround — the upstream fix
|
||||||
|
shipped.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **mempalace pin `3.4.0` → `3.5.0`.** mempalace 3.5.0 carries the upstream
|
||||||
|
fix for the top-level-`anyOf` `diary_write` schema
|
||||||
|
([issue #1728](https://github.com/MemPalace/mempalace/issues/1728) /
|
||||||
|
[PR #1717](https://github.com/MemPalace/mempalace/pull/1717), merged
|
||||||
|
2026-06-14). The advertised schema is now `"required": ["agent_name"]` with
|
||||||
|
`entry`/`content` enforced at dispatch instead of via a root-level `anyOf`,
|
||||||
|
which Anthropic's tools API accepts. Verified against the published 3.5.0
|
||||||
|
wheel's `mcp_server.py` before removing the workaround.
|
||||||
|
- **pi `0.79.10` → `0.80.2`**, auto-resolved from npm `latest` at build time
|
||||||
|
(no pin in the repo; CI's `resolve-versions` job fetches it).
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
- **The `diary_write` top-level-`anyOf` workaround in `Dockerfile.base`.** The
|
||||||
|
`perl` patch that rewrote the installed `mcp_server.py` (needed while
|
||||||
|
mempalace 3.3.x/3.4.0 advertised a top-level `anyOf` that Anthropic rejects,
|
||||||
|
failing tool registration at session start) is gone, since 3.5.0 fixes it at
|
||||||
|
the source. Keep `MEMPALACE_VERSION` in lockstep with opencode-devbox.
|
||||||
|
|
||||||
|
### Notes
|
||||||
|
|
||||||
|
- Unrelated to this release: a *stalled* `mempalace-mcp` (e.g. a slow virtiofs
|
||||||
|
cold-open of `chroma.sqlite3`) surfaces as `mempalace-mcp not available`
|
||||||
|
because the `mempalace.ts` extension's per-request timeout kills the child
|
||||||
|
and flips `available=false` until pi is restarted — this is the 2026-06-13
|
||||||
|
stall-protection behaving as designed, not the `anyOf` bug.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## v1.2.1 — 2026-06-22
|
## v1.2.1 — 2026-06-22
|
||||||
|
|
||||||
Patch release: close the fork/recall + mempalace **under-utilisation gap** in
|
Patch release: close the fork/recall + mempalace **under-utilisation gap** in
|
||||||
|
|||||||
+50
-48
@@ -51,7 +51,8 @@ ENV DEBIAN_FRONTEND=noninteractive
|
|||||||
# See the bundled `dot-watch` helper for live .dot -> PNG
|
# See the bundled `dot-watch` helper for live .dot -> PNG
|
||||||
# re-render (handy with pi-studio's image preview).
|
# re-render (handy with pi-studio's image preview).
|
||||||
# imagemagick — image conversion / resizing for thumbnails, etc. ~50 MB.
|
# imagemagick — image conversion / resizing for thumbnails, etc. ~50 MB.
|
||||||
# yq — YAML-aware companion to jq.
|
# (yq is NOT apt-installed: Debian's `yq` is the unrelated Python tool;
|
||||||
|
# mikefarah's Go yq is installed as a pinned binary further down.)
|
||||||
# socat — TCP relay. Powers `studio-expose`, which bridges
|
# socat — TCP relay. Powers `studio-expose`, which bridges
|
||||||
# pi-studio's container-loopback server to the container's
|
# pi-studio's container-loopback server to the container's
|
||||||
# external interface so a published port can reach it.
|
# external interface so a published port can reach it.
|
||||||
@@ -66,7 +67,6 @@ RUN apt-get update && \
|
|||||||
openssh-client \
|
openssh-client \
|
||||||
gnupg \
|
gnupg \
|
||||||
jq \
|
jq \
|
||||||
yq \
|
|
||||||
ripgrep \
|
ripgrep \
|
||||||
fd-find \
|
fd-find \
|
||||||
tree \
|
tree \
|
||||||
@@ -289,21 +289,34 @@ RUN ARCH=$(case "${TARGETARCH}" in amd64) echo "x86_64" ;; arm64) echo "aarch64"
|
|||||||
# Always installed in the base. Set INSTALL_MEMPALACE=false at base-build
|
# Always installed in the base. Set INSTALL_MEMPALACE=false at base-build
|
||||||
# time to shave ~300 MB.
|
# time to shave ~300 MB.
|
||||||
#
|
#
|
||||||
# Stall protection (fixed 2026-06-13): mempalace-mcp is launched by the
|
# Stall protection (fixed 2026-06-13; self-heal added 2026-06-25):
|
||||||
# `mempalace.ts` pi extension from mempalace-toolkit (cloned below). That
|
# mempalace-mcp is launched by the `mempalace.ts` pi extension from
|
||||||
# extension now applies a per-REQUEST timeout in its JSON-RPC client and
|
# mempalace-toolkit (cloned below). That extension applies a per-REQUEST
|
||||||
# kills the child on stall, so a virtiofs cold-open of chroma.sqlite3 /
|
# timeout in its JSON-RPC client and kills the child on stall, so a virtiofs
|
||||||
# HNSW load can no longer hang the pi TUI uninterruptibly. Tunables:
|
# cold-open of chroma.sqlite3 / HNSW load can no longer hang the pi TUI
|
||||||
|
# uninterruptibly. A stall-kill is no longer a permanent latch either: the
|
||||||
|
# next tool call respawns the server with capped exponential backoff (the
|
||||||
|
# budget resets on any successful response). Tunables:
|
||||||
# MEMPALACE_MCP_TIMEOUT_MS (default 60000), MEMPALACE_MCP_INIT_TIMEOUT_MS
|
# MEMPALACE_MCP_TIMEOUT_MS (default 60000), MEMPALACE_MCP_INIT_TIMEOUT_MS
|
||||||
# (default 120000); 0 disables. A standalone stdio-watchdog shim is NOT
|
# (default 300000 — generous so a genuine first cold-open isn't killed),
|
||||||
# needed — the extension already owns request/response correlation. See
|
# MEMPALACE_MCP_MAX_RESPAWNS (default 2; 0 disables self-heal),
|
||||||
# CHANGELOG.md "Unreleased > Fixed".
|
# MEMPALACE_MCP_RESPAWN_BACKOFF_MS (default 1000); timeouts of 0 disable.
|
||||||
|
# Defaults live in the extension, so no ENV is needed here. A standalone
|
||||||
|
# stdio-watchdog shim is NOT needed — the extension already owns
|
||||||
|
# request/response correlation. See CHANGELOG.md "Unreleased > Fixed".
|
||||||
ARG INSTALL_MEMPALACE=true
|
ARG INSTALL_MEMPALACE=true
|
||||||
# Pin to a known-good version. Bump deliberately, not implicitly: an
|
# Pin to a known-good version. Bump deliberately, not implicitly: an
|
||||||
# unpinned install silently swept in mempalace 3.3.x/3.4.0 with a broken
|
# unpinned install silently swept in mempalace 3.3.x/3.4.0 with a broken
|
||||||
# diary_write schema (see workaround RUN below + issue #1728). Pinning
|
# diary_write schema. Pinning makes mempalace upgrades a reviewable diff
|
||||||
# makes mempalace upgrades a reviewable diff rather than a surprise.
|
# rather than a surprise.
|
||||||
ARG MEMPALACE_VERSION=3.4.0
|
#
|
||||||
|
# 3.5.0 (2026-06) ships the upstream fix for the top-level-anyOf diary_write
|
||||||
|
# schema (issue #1728 / PR #1717, merged 2026-06-14): the advertised schema
|
||||||
|
# is now `"required": ["agent_name"]` with entry/content enforced at dispatch,
|
||||||
|
# which Anthropic's tools API accepts — so the old mcp_server.py perl
|
||||||
|
# workaround that used to live below is gone. Keep in lockstep with
|
||||||
|
# opencode-devbox when bumping.
|
||||||
|
ARG MEMPALACE_VERSION=3.5.0
|
||||||
ENV UV_TOOL_DIR=/opt/uv-tools
|
ENV UV_TOOL_DIR=/opt/uv-tools
|
||||||
ENV UV_TOOL_BIN_DIR=/usr/local/bin
|
ENV UV_TOOL_BIN_DIR=/usr/local/bin
|
||||||
RUN if [ "${INSTALL_MEMPALACE}" = "true" ]; then \
|
RUN if [ "${INSTALL_MEMPALACE}" = "true" ]; then \
|
||||||
@@ -312,41 +325,9 @@ RUN if [ "${INSTALL_MEMPALACE}" = "true" ]; then \
|
|||||||
/opt/uv-tools/mempalace/bin/python -c "import mempalace; print('mempalace', mempalace.__version__ if hasattr(mempalace, '__version__') else 'installed')" ; \
|
/opt/uv-tools/mempalace/bin/python -c "import mempalace; print('mempalace', mempalace.__version__ if hasattr(mempalace, '__version__') else 'installed')" ; \
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# ── workaround: strip top-level anyOf from mempalace_diary_write schema ──
|
# (The mempalace diary_write top-level-anyOf workaround that patched
|
||||||
# Mempalace 3.3.x/3.4.0 advertise diary_write's input_schema with a
|
# mcp_server.py here was removed in v1.2.2 — fixed upstream in mempalace
|
||||||
# top-level `anyOf: [{required:[entry]}, {required:[content]}]` to express
|
# 3.5.0 via issue #1728 / PR #1717 (merged 2026-06-14). See CHANGELOG.md.)
|
||||||
# "either entry or content must be supplied". Anthropic's tools API rejects
|
|
||||||
# top-level anyOf/oneOf/allOf, so pi/Claude fail at session start with
|
|
||||||
# `tools.<n>.custom.input_schema: input_schema does not support oneOf,
|
|
||||||
# allOf, or anyOf at the top level`.
|
|
||||||
#
|
|
||||||
# Patch the advertised schema to require ["agent_name", "entry"] and remove
|
|
||||||
# the anyOf block. The handler keeps accepting `content` server-side as a
|
|
||||||
# kwarg alias so existing callers still work.
|
|
||||||
#
|
|
||||||
# Idempotent and self-deactivating: once upstream releases the fix the
|
|
||||||
# regex no longer matches (and the WARN below fires) — that's the signal
|
|
||||||
# to delete this RUN.
|
|
||||||
# Upstream status (last checked 2026-06-14):
|
|
||||||
# issue #1728 — STILL OPEN (root-level anyOf rejected by Anthropic/Codex)
|
|
||||||
# PR #1735 — CLOSED UNMERGED 2026-06-11; do NOT watch it (dead)
|
|
||||||
# PR #1717 — open; the current live fix candidate to watch
|
|
||||||
# mempalace PyPI latest = 3.4.0 (== our pin) → no release contains the fix yet
|
|
||||||
# https://github.com/MemPalace/mempalace/issues/1728
|
|
||||||
# https://github.com/MemPalace/mempalace/pull/1717
|
|
||||||
# TODO: remove this RUN once a mempalace release > 3.4.0 that actually strips
|
|
||||||
# the root-level anyOf ships on PyPI and is installed by the line above.
|
|
||||||
# Keep MEMPALACE_VERSION in lockstep with opencode-devbox when bumping.
|
|
||||||
RUN if [ "${INSTALL_MEMPALACE}" = "true" ]; then \
|
|
||||||
MP_FILE="$(find /opt/uv-tools/mempalace -path '*/mempalace/mcp_server.py' | head -n1)" && \
|
|
||||||
if [ -z "$MP_FILE" ]; then echo "mempalace mcp_server.py not found" >&2; exit 1; fi && \
|
|
||||||
perl -0777 -i -pe 's/(?:[ \t]*\#[^\n]*\n)*[ \t]*"required":\s*\[\s*"agent_name"\s*\]\s*,\s*\n[ \t]*"anyOf":\s*\[\s*\n[ \t]*\{\s*"required":\s*\[\s*"entry"\s*\]\s*\}\s*,\s*\n[ \t]*\{\s*"required":\s*\[\s*"content"\s*\]\s*\}\s*,?\s*\n[ \t]*\]\s*,\s*\n/ "required": ["agent_name", "entry"],\n/s' "$MP_FILE" && \
|
|
||||||
if grep -q '"required": \["agent_name", "entry"\]' "$MP_FILE"; then \
|
|
||||||
echo "mempalace diary_write anyOf workaround: applied (or already clean)"; \
|
|
||||||
else \
|
|
||||||
echo "WARN: mempalace diary_write anyOf workaround did not match expected schema — upstream may have changed shape" >&2; \
|
|
||||||
fi ; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
# ── mempalace-toolkit — bash wrappers for session/docs mining ────────
|
# ── mempalace-toolkit — bash wrappers for session/docs mining ────────
|
||||||
ARG INSTALL_MEMPALACE_TOOLKIT=true
|
ARG INSTALL_MEMPALACE_TOOLKIT=true
|
||||||
@@ -429,6 +410,26 @@ RUN ARCH=$(case "${TARGETARCH}" in amd64) echo "x86_64" ;; arm64) echo "aarch64"
|
|||||||
chmod +x /usr/local/bin/tldr && \
|
chmod +x /usr/local/bin/tldr && \
|
||||||
tldr --version
|
tldr --version
|
||||||
|
|
||||||
|
# ── yq (mikefarah) — YAML processor, jq's companion for YAML ─────────
|
||||||
|
# Installed as the mikefarah Go binary — NOT Debian's `yq` apt package, which
|
||||||
|
# is the unrelated Python kislyuk/yq (a jq wrapper with different syntax and
|
||||||
|
# version line, e.g. 3.x). The cloud-init repo's deploy.sh/provision.sh
|
||||||
|
# require mikefarah yq v4 (the unrelated Debian python yq is v3.x). Follows
|
||||||
|
# the repo's `latest` convention (like tealdeer/uv/etc.); the smoke test pins
|
||||||
|
# the contract to major v4, so a future yq v5 fails CI instead of silently
|
||||||
|
# breaking provision.sh. Pin a specific tag with --build-arg YQ_VERSION=vX.Y.Z.
|
||||||
|
ARG YQ_VERSION=latest
|
||||||
|
RUN ARCH=$(case "${TARGETARCH}" in amd64) echo "amd64" ;; arm64) echo "arm64" ;; *) echo "amd64" ;; esac) && \
|
||||||
|
V="${YQ_VERSION}" && \
|
||||||
|
if [ "$V" = "latest" ]; then \
|
||||||
|
V=$(curl -sI --retry 5 --retry-delay 5 --retry-all-errors "https://github.com/mikefarah/yq/releases/latest" | awk 'tolower($1)=="location:" { sub(/\r$/,"",$2); n=split($2,a,"/"); print a[n] }'); \
|
||||||
|
fi && \
|
||||||
|
[ -n "$V" ] && \
|
||||||
|
echo "Installing mikefarah yq ${V}" && \
|
||||||
|
curl -fsSL --retry 5 --retry-delay 5 --retry-all-errors "https://github.com/mikefarah/yq/releases/download/${V}/yq_linux_${ARCH}" -o /usr/local/bin/yq && \
|
||||||
|
chmod +x /usr/local/bin/yq && \
|
||||||
|
yq --version
|
||||||
|
|
||||||
# ── AWS CLI v2 (for SSO/Bedrock authentication) ─────────────────────
|
# ── AWS CLI v2 (for SSO/Bedrock authentication) ─────────────────────
|
||||||
RUN ARCH=$(case "${TARGETARCH}" in \
|
RUN ARCH=$(case "${TARGETARCH}" in \
|
||||||
amd64) echo "x86_64" ;; \
|
amd64) echo "x86_64" ;; \
|
||||||
@@ -478,6 +479,7 @@ ENV PATH="/home/${USER_NAME}/.pi/npm-global/bin:${PATH}"
|
|||||||
RUN mkdir -p /etc/skel-devbox
|
RUN mkdir -p /etc/skel-devbox
|
||||||
COPY rootfs/home/developer/.bash_aliases /etc/skel-devbox/.bash_aliases
|
COPY rootfs/home/developer/.bash_aliases /etc/skel-devbox/.bash_aliases
|
||||||
COPY rootfs/home/developer/.inputrc /etc/skel-devbox/.inputrc
|
COPY rootfs/home/developer/.inputrc /etc/skel-devbox/.inputrc
|
||||||
|
COPY rootfs/home/developer/.gitignore_global /etc/skel-devbox/.gitignore_global
|
||||||
|
|
||||||
# ── Entrypoint ────────────────────────────────────────────────────────
|
# ── Entrypoint ────────────────────────────────────────────────────────
|
||||||
COPY rootfs/usr/local/lib/pi-devbox/ /usr/local/lib/pi-devbox/
|
COPY rootfs/usr/local/lib/pi-devbox/ /usr/local/lib/pi-devbox/
|
||||||
|
|||||||
@@ -319,9 +319,10 @@ services:
|
|||||||
environment:
|
environment:
|
||||||
- TERM=xterm-256color
|
- TERM=xterm-256color
|
||||||
# - STUDIO_EXPOSE=1 # -studio only: auto-start the socat bridge on boot
|
# - STUDIO_EXPOSE=1 # -studio only: auto-start the socat bridge on boot
|
||||||
- GITEA_ACCESS_TOKEN=${GITEA_ACCESS_TOKEN:-}
|
# Secrets (GITEA_*, GITHUB_*, …) come from env_file: .env above — not
|
||||||
- GITEA_HOST=${GITEA_HOST:-}
|
# duplicated here. An environment: entry overrides env_file and is
|
||||||
- GITHUB_PERSONAL_ACCESS_TOKEN=${GITHUB_PERSONAL_ACCESS_TOKEN:-}
|
# interpolated from the host shell, so a stale shell export would
|
||||||
|
# silently shadow your .env. See .env.example for the full list.
|
||||||
volumes:
|
volumes:
|
||||||
# Workspace: your host source tree
|
# Workspace: your host source tree
|
||||||
- ${WORKSPACE_PATH:-.}:/workspace
|
- ${WORKSPACE_PATH:-.}:/workspace
|
||||||
|
|||||||
+7
-3
@@ -31,9 +31,13 @@ services:
|
|||||||
- .env
|
- .env
|
||||||
environment:
|
environment:
|
||||||
- TERM=xterm-256color
|
- TERM=xterm-256color
|
||||||
- GITEA_ACCESS_TOKEN=${GITEA_ACCESS_TOKEN:-}
|
# Secrets (GITEA_*, GITHUB_*, and any others) are delivered to the
|
||||||
- GITEA_HOST=${GITEA_HOST:-}
|
# container via `env_file: .env` above — do NOT duplicate them here.
|
||||||
- GITHUB_PERSONAL_ACCESS_TOKEN=${GITHUB_PERSONAL_ACCESS_TOKEN:-}
|
# An `environment:` entry overrides env_file AND is interpolated from
|
||||||
|
# the host shell, so a stale shell export (e.g. one auto-loaded by a
|
||||||
|
# dotenv hook) would silently shadow the value in your .env. Keeping
|
||||||
|
# secrets env_file-only decouples the container from the host shell.
|
||||||
|
# See .env.example for the full list of supported variables.
|
||||||
volumes:
|
volumes:
|
||||||
# Host workspace — mount your project here
|
# Host workspace — mount your project here
|
||||||
- ${WORKSPACE_PATH:-.}:/workspace
|
- ${WORKSPACE_PATH:-.}:/workspace
|
||||||
|
|||||||
+7
-1
@@ -33,7 +33,7 @@ fi
|
|||||||
# directly.
|
# directly.
|
||||||
SKEL_DIR="/etc/skel-devbox"
|
SKEL_DIR="/etc/skel-devbox"
|
||||||
if [ -d "$SKEL_DIR" ]; then
|
if [ -d "$SKEL_DIR" ]; then
|
||||||
for f in .bash_aliases .inputrc; do
|
for f in .bash_aliases .inputrc .gitignore_global; do
|
||||||
if [ -f "$SKEL_DIR/$f" ] && [ ! -e "$HOME/$f" ]; then
|
if [ -f "$SKEL_DIR/$f" ] && [ ! -e "$HOME/$f" ]; then
|
||||||
cp "$SKEL_DIR/$f" "$HOME/$f"
|
cp "$SKEL_DIR/$f" "$HOME/$f"
|
||||||
fi
|
fi
|
||||||
@@ -91,6 +91,12 @@ fi
|
|||||||
if [ -n "${GIT_USER_EMAIL:-}" ] && ! git config --global user.email &>/dev/null; then
|
if [ -n "${GIT_USER_EMAIL:-}" ] && ! git config --global user.email &>/dev/null; then
|
||||||
git config --global user.email "$GIT_USER_EMAIL"
|
git config --global user.email "$GIT_USER_EMAIL"
|
||||||
fi
|
fi
|
||||||
|
# Global gitignore for personal/tooling artifacts (*.bak, *~, *.orig, ...).
|
||||||
|
# Seeded above into $HOME/.gitignore_global from /etc/skel-devbox. Point git at
|
||||||
|
# it only if the user has not already set their own core.excludesFile.
|
||||||
|
if [ -f "$HOME/.gitignore_global" ] && ! git config --global core.excludesFile &>/dev/null; then
|
||||||
|
git config --global core.excludesFile "$HOME/.gitignore_global"
|
||||||
|
fi
|
||||||
|
|
||||||
# ── pi: deploy toolkit + extensions + mempalace bridge ─────────────
|
# ── pi: deploy toolkit + extensions + mempalace bridge ─────────────
|
||||||
# pi is always installed in pi-devbox; no INSTALL_PI guard needed.
|
# pi is always installed in pi-devbox; no INSTALL_PI guard needed.
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# Global gitignore — personal/tooling artifacts (applies to all repos in the container)
|
||||||
|
# Seeded into $HOME/.gitignore_global by entrypoint-user.sh and wired via
|
||||||
|
# `git config --global core.excludesFile`. Edit freely; it is yours after first boot.
|
||||||
|
|
||||||
|
# backup / editor / merge artifacts
|
||||||
|
*.bak
|
||||||
|
*.bak.*
|
||||||
|
*~
|
||||||
|
*.orig
|
||||||
|
*.swp
|
||||||
|
*.tmp
|
||||||
@@ -43,6 +43,29 @@ Run these immediately when a session begins, before responding to the user:
|
|||||||
|
|
||||||
Do NOT announce this to the user. Just do it silently to orient yourself.
|
Do NOT announce this to the user. Just do it silently to orient yourself.
|
||||||
|
|
||||||
|
### Temporal grounding — compute time deltas, don't guess
|
||||||
|
|
||||||
|
Diary entries and drawers carry real timestamps (`timestamp`, `created_at`).
|
||||||
|
Before describing *when* something happened — "yesterday", "earlier today",
|
||||||
|
"last week", "a while back" — **establish the current date/time first and
|
||||||
|
compute the delta against the actual timestamp.** Get "now" from the injected
|
||||||
|
session date or by running `date` in a shell; never infer it.
|
||||||
|
|
||||||
|
**A container recreate or a fresh session is NOT a day boundary.** A pi-devbox
|
||||||
|
container is frequently restarted — often several times within the *same* day —
|
||||||
|
and each restart begins a new session with a fresh wake-up. Do not reason "new
|
||||||
|
session ⇒ last session was yesterday": two diary entries 90 minutes apart can
|
||||||
|
straddle a container recreate. The only authoritative clock is the timestamp on
|
||||||
|
the memory, not the session/container boundary.
|
||||||
|
|
||||||
|
**Practical rule:** prefer explicit, checkable phrasing — e.g. "earlier today,
|
||||||
|
~8h ago (both 2026-06-25)" — over a vague relative term. If you catch yourself
|
||||||
|
about to write "yesterday" / "last week", subtract `now − entry.timestamp` and
|
||||||
|
state the computed result. (Remember timestamps may be UTC while the wall clock
|
||||||
|
is local — reconcile the offset before computing the delta.) Note too that
|
||||||
|
session feeders can lag up to a week (see *Multi-harness palace*), so a recent
|
||||||
|
absence in `wing_conversations` is not proof nothing happened.
|
||||||
|
|
||||||
### Phase 2: Active Session (during work)
|
### Phase 2: Active Session (during work)
|
||||||
|
|
||||||
#### Search Before You Speak
|
#### Search Before You Speak
|
||||||
@@ -294,6 +317,7 @@ Entity-relationship triples with temporal validity. Query with `mempalace_kg_que
|
|||||||
## Anti-Patterns
|
## Anti-Patterns
|
||||||
|
|
||||||
- **Don't guess when you can search.** If a question touches past work, search first.
|
- **Don't guess when you can search.** If a question touches past work, search first.
|
||||||
|
- **Don't infer elapsed time from session or container boundaries.** A restart isn't a new day. Compare the actual timestamp (`timestamp` / `created_at`) against the current date/time before saying "yesterday", "last week", etc.
|
||||||
- **Don't skip the diary.** A session without a diary entry is a session forgotten.
|
- **Don't skip the diary.** A session without a diary entry is a session forgotten.
|
||||||
- **Don't summarize drawer content.** File verbatim — the embedding model needs the original words.
|
- **Don't summarize drawer content.** File verbatim — the embedding model needs the original words.
|
||||||
- **Don't mine .git directories or node_modules.** The CLI miner respects .gitignore by default.
|
- **Don't mine .git directories or node_modules.** The CLI miner respects .gitignore by default.
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ run "mempalace-mcp" "mempalace-mcp --help"
|
|||||||
run "pandoc" "pandoc --version"
|
run "pandoc" "pandoc --version"
|
||||||
run "graphviz (dot)" "dot -V"
|
run "graphviz (dot)" "dot -V"
|
||||||
run "imagemagick" "magick --version"
|
run "imagemagick" "magick --version"
|
||||||
run "yq" "yq --version"
|
run "yq (mikefarah v4)" "yq --version | grep -qE 'mikefarah.*version v4'"
|
||||||
run "tldr (tealdeer)" "tldr --version"
|
run "tldr (tealdeer)" "tldr --version"
|
||||||
run "socat" "socat -V"
|
run "socat" "socat -V"
|
||||||
run "studio-expose helper" "test -x /usr/local/bin/studio-expose"
|
run "studio-expose helper" "test -x /usr/local/bin/studio-expose"
|
||||||
|
|||||||
Reference in New Issue
Block a user