loop-task 2.0.0 → 2.0.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.
package/README.md CHANGED
@@ -7,27 +7,13 @@
7
7
 
8
8
  `loop-task` is a cross-platform CLI that runs shell commands at human-readable intervals. Create loops in the background, manage them from an interactive TUI board, or run them in the foreground. It is the **heartbeat** primitive for [loop engineering](#loop-engineering): instead of running a task by hand every time, you schedule it once and let it run.
9
9
 
10
+ **[loop.ckgrafico.com](https://loop.ckgrafico.com)**
11
+
10
12
  [![npm version](https://img.shields.io/npm/v/loop-task?style=flat-square&color=black)](https://www.npmjs.com/package/loop-task)
11
13
  [![npm downloads](https://img.shields.io/npm/dm/loop-task?style=flat-square&color=black)](https://www.npmjs.com/package/loop-task)
12
14
  [![license](https://img.shields.io/npm/l/loop-task?style=flat-square&color=black)](./LICENSE)
13
15
  [![node](https://img.shields.io/node/v/loop-task?style=flat-square&color=black)](https://nodejs.org)
14
16
 
15
- ## What's new in v2.0.0
16
-
17
- - **Ink 7 + React 19 TUI**: Rebuilt the entire terminal UI on [Ink 7](https://github.com/vadimdemedes/ink) (React 19 for CLI). No more Bun dependency — runs on any Node >= 20.
18
- - **HTTP API + Swagger**: The daemon now exposes a REST + SSE API on `localhost:8845`. Browse it at `http://127.0.0.1:8845/api/docs` (Swagger UI) or fetch the OpenAPI spec at `/api/openapi.json`. Manage loops, tasks, projects, and logs from any HTTP client.
19
- - **Hot-reloading configs**: Edit `~/.loop-cli/loops.json`, `tasks.json`, or `projects.json` in any editor and the daemon auto-reloads in real-time.
20
- - **Export/Import**: `loop-task export > backup.json` and `loop-task import backup.json` for backup and sharing.
21
- - **CLI API**: `loop-task status --json` for scripting and automation. `loop-task api` prints HTTP API endpoints.
22
- - **Polished loop forms**: Task mode toggle (inline command vs. existing task), per-field validation, smart CWD defaults, clipboard copy, and direct edit navigation — across both board and TUI.
23
- - **Rich log viewer**: Search/filter log output, fold chain sections, scroll lock, copy to clipboard.
24
- - **Run history trends**: Sparklines of durations, success/failure streaks, average duration.
25
- - **Chain visual editor**: Tree view of task chains with success/failure branches.
26
- - **First-run onboarding**: Welcome screen with example loops when no loops exist.
27
- - **Daemon push notifications**: Subscribe to real-time events via IPC or SSE (`GET /api/events`).
28
- - **Docker support**: `docker run -v ~/.loop-cli:/root/.loop-cli loop-task`.
29
- - **GitHub Actions CI**: Runs typecheck, lint, test, build on ubuntu/macos/windows.
30
-
31
17
  </div>
32
18
 
33
19
  ## Loop engineering
package/dist/tui/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { render } from "ink";
2
2
  import React from "react";
3
- import { App } from "./App.js";
3
+ import { App } from "./app.js";
4
4
  import { BRACKETED_PASTE_ENABLE, BRACKETED_PASTE_DISABLE } from "../config/constants.js";
5
5
  export async function launchBoard() {
6
6
  // Enable bracketed paste so a native paste (Ctrl+Shift+V / Cmd+V / right-click)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loop-task",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Loop engineering toolkit. Run any command on a cadence, in the background, managed from a terminal board. Schedule tests, builds, syncs, or agent prompts.",
5
5
  "type": "module",
6
6
  "bin": {