AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

History

skill-markusleben-ha-nova-history · by markusleben

Use when reading Home Assistant entity history, logbook timelines, or long-term statistics through HA NOVA Relay.

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add skill-markusleben-ha-nova-history

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-markusleben-ha-nova-history)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of History? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

HA NOVA History

Scope

Read-only timeline work:

  • entity state history over a bounded time range
  • logbook queries over a bounded time range
  • long-term statistics over a bounded time range
  • concise "what happened?" summaries

Not in scope:

  • live subscriptions
  • system logs
  • trace debugging
  • calendar queries
  • giant raw exports

Use ha-nova:read for traces and ha-nova:fallback for calendars or subscriptions.

Bootstrap (once per session)

Verify relay CLI: ha-nova relay health If this fails: ha-nova setup

Relay Contract

Use file-based relay requests:

  • ha-nova relay core --method GET --path --out
  • ha-nova relay core --method GET --path --out
  • ha-nova relay ws --data-file --out
  • ha-nova relay jq --file --jq-file

For ha-nova relay jq, the filter is positional unless --jq-file is used. Do not invent a --jq flag.

Canonical paths:

  • /api/history/period/?filter_entity_id=&end_time=
  • /api/logbook/?entity=&end_time=
  • recorder/statistics_during_period

Prefer minimal_response and no_attributes on large history queries when the task only needs state transitions. Relay-core response shape here stays under .data.body.

  • history series: .data.body[0]
  • logbook entries: .data.body
  • do not probe .[0] or .[0][0] against the relay envelope

Recorder statistics response stays under WS .data.

Flow

  1. Resolve the exact entity target when needed.
  2. Set a bounded window.
  • if the user gave a range, use it
  • otherwise default to the last 24 hours for history/logbook
  • otherwise default to the last 30 days for statistics/trend questions
  • if the requested window is too broad, narrow it before querying
  1. Choose the source:
  • history for state transitions and values
  • logbook for human-readable events and automation activity
  • statistics for multi-day trends, comparisons, or long-term summaries
  1. Execute the read into ``.
  2. Summarize first:
  • key transitions
  • first/last seen values
  • notable gaps or bursts
  • key periods or trend direction for statistics
  • if the raw state series can contain unknown or unavailable, do not run numeric min/max across the whole series unless you first filter to numeric states safely
  • prefer simple reductions that do not depend on fragile timestamp parsing unless the user explicitly asked for gap analysis
  • for the default summary, do not build complex jq expressions just to recover min/max event timestamps; numeric range plus a few direct sample timestamps is enough
  1. Only show raw excerpts if the user explicitly asks.

Output Format

  • Target
  • Window
  • Summary
  • Key events, Key transitions, or Key periods
  • Next step

Keep default output compact. Raw payload dumps are opt-in only.

Safety

  • Read-only skill. No writes.
  • No guessed entity ids.
  • If more than one entity could match, ask one blocking question.
  • If the data is incomplete for the requested conclusion, say so explicitly.

Guardrails

  • Never run an unbounded history/logbook/statistics query.
  • Cap default investigative windows at 24 hours unless the user asked for more.
  • If the user asks for a very large export, narrow the request first.
  • Prefer a short summary over dumping a long raw timeline.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.