@trevonistrevon/pi-loop 0.1.0 → 0.1.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/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.1]
4
+
5
+ - Migrated peer dependencies from `@mariozechner/pi-*` to `@earendil-works/pi-*`
6
+ - Fixed `.npmignore` to include `src/` and `dist/` directories
7
+
3
8
  ## [0.1.0] — Initial Release
4
9
 
5
10
  ### Tools
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <p align="center">
2
- <h1 align="center">@trevonistrevon/pi-loop</h1>
2
+ <h1 align="center">@pi-loop</h1>
3
3
  <h6 align="center">Cron and event loops for the pi coding agent. Background monitors, scheduled re-wakes, pi-tasks integration.</h6>
4
4
  </p>
5
5
 
package/dist/index.d.ts CHANGED
@@ -13,5 +13,5 @@
13
13
  * /loop — Schedule a re-wake loop: /loop [interval] [prompt]
14
14
  * /loops — Interactive menu: view, create, cancel, settings
15
15
  */
16
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
16
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
17
17
  export default function (pi: ExtensionAPI): void;
@@ -1,4 +1,4 @@
1
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
1
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
2
2
  import type { MonitorEntry, MonitorProcess } from "./types.js";
3
3
  export declare class MonitorManager {
4
4
  private pi;
@@ -1,4 +1,4 @@
1
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
1
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
2
2
  import type { CronScheduler } from "./scheduler.js";
3
3
  import type { LoopEntry } from "./types.js";
4
4
  export declare class TriggerSystem {
package/dist/ui/widget.js CHANGED
@@ -1,4 +1,4 @@
1
- import { truncateToWidth } from "@mariozechner/pi-tui";
1
+ import { truncateToWidth } from "@earendil-works/pi-tui";
2
2
  const MAX_VISIBLE = 6;
3
3
  export class LoopWidget {
4
4
  store;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trevonistrevon/pi-loop",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "A pi extension for cron/event-based agent re-wake loops and background process monitoring.",
5
5
  "author": "trevonistrevon",
6
6
  "license": "MIT",
@@ -18,8 +18,8 @@
18
18
  "scheduler"
19
19
  ],
20
20
  "peerDependencies": {
21
- "@mariozechner/pi-coding-agent": ">=0.70.5",
22
- "@mariozechner/pi-tui": ">=0.70.5"
21
+ "@earendil-works/pi-coding-agent": "^0.75.5",
22
+ "@earendil-works/pi-tui": "^0.75.5"
23
23
  },
24
24
  "dependencies": {
25
25
  "typebox": "^1.1.34"
@@ -34,9 +34,9 @@
34
34
  "lint:fix": "biome check --fix src/ test/"
35
35
  },
36
36
  "devDependencies": {
37
+ "@biomejs/biome": "^2.4.13",
37
38
  "@types/node": "^25.0.0",
38
39
  "typescript": "^6.0.0",
39
- "@biomejs/biome": "^2.4.13",
40
40
  "vitest": "^4.1.5"
41
41
  },
42
42
  "pi": {
package/src/index.ts CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
  import { randomUUID } from "node:crypto";
18
18
  import { join, resolve } from "node:path";
19
- import type { ExtensionAPI, ExtensionCommandContext, ExtensionContext } from "@mariozechner/pi-coding-agent";
19
+ import type { ExtensionAPI, ExtensionCommandContext, ExtensionContext } from "@earendil-works/pi-coding-agent";
20
20
  import { Type } from "typebox";
21
21
  import { parseInterval } from "./loop-parse.js";
22
22
  import { MonitorManager } from "./monitor-manager.js";
@@ -1,6 +1,6 @@
1
1
 
2
2
  import { spawn } from "node:child_process";
3
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
3
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
4
4
  import type { MonitorEntry, MonitorProcess } from "./types.js";
5
5
 
6
6
  export class MonitorManager {
@@ -1,4 +1,4 @@
1
- import type { ExtensionAPI } from "@mariozechner/pi-coding-agent";
1
+ import type { ExtensionAPI } from "@earendil-works/pi-coding-agent";
2
2
  import type { CronScheduler } from "./scheduler.js";
3
3
  import type { LoopEntry } from "./types.js";
4
4
 
package/src/ui/widget.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { truncateToWidth } from "@mariozechner/pi-tui";
1
+ import { truncateToWidth } from "@earendil-works/pi-tui";
2
2
  import type { MonitorManager } from "../monitor-manager.js";
3
3
  import type { CronScheduler } from "../scheduler.js";
4
4
  import type { LoopStore } from "../store.js";