Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
openclaw-temporal-halo logo

openclaw-temporal-halo

shayne/openclaw-temporal-halo

Otheropenclawby shayne

Summary

OpenClaw plugin exposing 0 skills.

Install to Claude Code

openclaw plugin add shayne/openclaw-temporal-halo

Run in Claude Code. Add the marketplace first with /plugin marketplace add shayne/openclaw-temporal-halo if you haven't already.

README.md

OpenClaw Temporal Halo

Temporal Halo is an OpenClaw plugin that maintains a living HALO.md, writes a compact HALO.delta.md sidecar for incremental refreshes, and injects current temporal context into each agent turn. It is tool/skill agnostic: the prompt tells the agent what to gather, and the agent uses whatever calendar/email/messages tools you already have connected.

1) Installation

openclaw plugins install @shayne/openclaw-temporal-halo
openclaw plugins enable openclaw-temporal-halo

Optional plugin config (plugins.entries.openclaw-temporal-halo.config):

{
  plugins: {
    entries: {
      "openclaw-temporal-halo": {
        enabled: true,
        config: {
          haloPath: "~/.openclaw/temporal-halo/HALO.md",
          dreamMarker: "[temporal-halo:dream]",
          fullRefreshMarker: "[temporal-halo:full-refresh]",
          maxChars: 25000,
          compactTargetChars: 20000,
        },
      },
    },
  },
}

Recommended immediately after install: run the one-off full refresh in section 3 to bootstrap HALO.md.

2) Set Up Cron Job (30m Delta Refresh)

Create a recurring main-session system event job:

openclaw cron add \
  --name "Temporal Halo: Dream (Delta)" \
  --every "30m" \
  --session main \
  --wake now \
  --system-event "[temporal-halo:dream] Refresh HALO.md with recent changes."

Delta mode behavior:

  • Scheduled runs are incremental.
  • Prompt steers the agent to use the HALO.delta.md sidecar as the first-pass change ledger, then fall back to the full HALO.md snapshot only when needed.
  • If prior refresh timing is unknown, prompt falls back to about the last 30 minutes with a small overlap to avoid misses.
  • Each medium/important publish can write both a refreshed HALO.md snapshot and a compact HALO.delta.md summary with added, updated, retired, and still-open items.
  • Prompt steers the agent to retire stale bullets when they are resolved, expired, superseded, duplicated by fresher facts, or no longer useful for likely user action/disambiguation.
  • The run remains map/reduce and subagent-first (sessions_spawn fan-out/fan-in).

3) Run Full Refresh (On-Demand)

Use this for initial bootstrap and occasional deep refreshes. This is intentionally on-demand (not recurring).

openclaw cron add \
  --name "Temporal Halo: Full Refresh (One-off)" \
  --at "+5s" \
  --delete-after-run \
  --session main \
  --wake now \
  --system-event "[temporal-halo:full-refresh] Rebuild HALO.md from a wider baseline."

Full refresh behavior:

  • Uses the same map/reduce subagent orchestration.
  • Scans a broader baseline (at least last 14 days) plus upcoming horizons to rebuild HALO.md.

Markers

  • Delta marker (scheduled): [temporal-halo:dream]
  • Full marker (on-demand): [temporal-halo:full-refresh]

Prompt Architecture

Delta and full refresh share one base dream prompt; mode-specific scope is added by mode lines in code:

  • Dream mode detection: dream.ts
  • Shared dream prompt builder: buildDreamInstructions in dream.ts
  • Sidecar delta context block: buildHaloDeltaBlock in dream.ts
  • Mode scope lines (delta vs full): buildDreamModeScopeLines in dream.ts

Notes

  • One-off/cron runs can outlive short CLI timeouts; check run history if needed.
  • HALO.md and HALO.delta.md can contain sensitive context. The full HALO.md snapshot is injected into each turn; HALO.delta.md is injected only for delta dream runs.

License

MIT. See LICENSE.

Related plugins

Browse all →