agenthud 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -113,7 +113,7 @@ function createDecisionsHeader() {
113
113
  return label + "\u2500".repeat(dashCount) + "\u2524";
114
114
  }
115
115
  function PlanPanel({ plan, decisions, error }) {
116
- if (error || !plan) {
116
+ if (error || !plan || !plan.goal || !plan.steps) {
117
117
  return /* @__PURE__ */ jsxs2(Box2, { flexDirection: "column", width: PANEL_WIDTH, children: [
118
118
  /* @__PURE__ */ jsxs2(Text2, { children: [
119
119
  BOX.tl,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agenthud",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "CLI tool to monitor agent status in real-time. Works with Claude Code, multi-agent workflows, and any AI agent system.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",