Skip to content

v0.10.1

Choose a tag to compare

@BRO3886 BRO3886 released this 12 Apr 17:15
· 64 commits to main since this release
266f225

What's New

Rebuilt agent skill with dynamic date injection

The bundled rem-cli Claude Code skill has been rebuilt from scratch using the official Agent Skills specification and Claude Code's Advanced Patterns. This is an agent-side upgrade — if you use rem skills install to install the skill into Claude Code, Codex CLI, or OpenClaw, the new version is noticeably better. Binary behavior is unchanged.

Highlights:

  • Live date injection. The skill now preprocesses date commands via the ! syntax, so every time an agent loads the skill it sees the actual current date, ISO date, day of week, tomorrow, and next Friday injected into the prompt. No more hallucinating dates from training cutoff, no more asking "what day is today". The "next Friday" value uses date -v+1d -v+fri to always jump forward even when today is Friday itself.
  • allowed-tools: Bash(rem *). Rem commands no longer trigger a permission prompt when the skill is active. Huge friction drop for the common case.
  • Spec-compliant frontmatter. name, description, license, compatibility, metadata, allowed-tools, and argument-hint all conform to agentskills.io — dropped unrecognized fields that earlier versions shipped.
  • Navigation-focused SKILL.md. The body shrank from 218 lines of duplicated reference material to 145 lines of decision-tree + gotchas + pointers. Full command reference still lives in references/commands.md, loaded on demand.
  • Tightened description (242 chars) so it survives the 250-char truncation cap in skill listings with all trigger keywords intact.
  • Expanded decision tree. New rows for rem show, priority changes, notes updates, --repeat, --due none, and --remind-me 15m — all common intents that were missing.

Re-install the skill to pick this up

If you already have the skill installed, run this after updating the binary:

rem skills install

The installer will detect the outdated version and prompt to overwrite.

Other Changes

  • Spec-compliance fix: the skill's name: field now matches the parent directory name (rem-cli) per the Agent Skills specification. Earlier versions used name: rem which was technically invalid but silently accepted by lenient parsers.

Install / Update

curl -fsSL https://rem.sidv.dev/install | bash

Or via Go:

go install github.com/BRO3886/rem/cmd/rem@v0.10.1

Full Changelog: v0.10.0...v0.10.1