Skip to content

v0.2.81

Choose a tag to compare

@github-actions github-actions released this 25 May 08:42
· 2 commits to main since this release

What's new in v0.2.81

A follow-up to v0.2.77 / v0.2.80 fixing a Skill sync gap.

Fixed: per-agent Skill files were not updated to the v0.2.77 schema

When v0.2.77 redesigned brain_recall, I updated data/skill/base-skill.md
to describe the new parameters (multi-dimensional stacking, match: any/all,
exact_matches / related_matches, etc.) — but forgot to mirror the
change into the 7 agent-specific Skill files
that agents actually load:

  • claude-code-skill.md
  • codex-skill.md
  • cowork-skill.md
  • cursor-skill.md
  • windsurf-skill.md
  • openclaw-skill.md
  • gemini-skill.md

So even after users regenerated their Skill in TideMind, the agent prompt
still taught the old intent / include_surprise parameters. Every recall
call then triggered the deprecation hint, leaving agents confused and users
seeing repeated upgrade prompts.

This release:

  • Synchronizes the parameter reference section across all 7 agent Skill
    files to the v0.2.77 schema (search dimensions + filter dimensions +
    return controls + override entries + canonical examples).
  • Also updates gemini-commands/brain-recall.toml to teach the new idiom
    (multi-dimensional stacking + never-empty results) instead of the older
    "first list with mode=index" workflow.

What you need to do

  1. Update TideMind to v0.2.81 (automatic).
  2. Open Settings → External Integration.
  3. Click "Regenerate Skill" for each configured agent so the new prompt
    text lands in the agent's plugin directory.
  4. Restart the external agent (Claude Desktop / Claude Code / Cursor / etc.)
    so it picks up the regenerated Skill.

If you skipped this step before, recall calls were silently triggering the
deprecation hint instead of doing real work. After updating you'll see
agents using match, time, tags, etc. naturally.

Apology

This is the fifth release in a 24-hour window covering the same redesign
(v0.2.77 → 78 → 79 → 80 → 81). Each one fixed a gap revealed only after
real-world testing:

  • v0.2.78: heat clamp shouldn't be a manual runbook
  • v0.2.79: Codex agent card UI still asked to copy AGENTS.md
  • v0.2.80: schema version constant not bumped, migration silently never ran
  • v0.2.81: per-agent Skill files not synced

Each of these should have been caught at design time. Backlog: tighten the
release verification to actually exercise the full client → skill → MCP
agent loop in CI before stamping a version.