@agimon-ai/doompi-loop 0.0.1-alpha.22 → 0.0.1-alpha.23
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 +4 -0
- package/package.json +9 -7
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A session-scoped scheduler that sends a prompt immediately and repeats it at a bounded interval.
|
|
4
4
|
|
|
5
|
+
Part of the [DoomPi distribution](https://www.npmjs.com/package/@agimon-ai/doompi).
|
|
6
|
+
|
|
5
7
|
Several loops can coexist. Loop is a minor mode and remains active while at least one scheduled prompt belongs to the current session.
|
|
6
8
|
|
|
7
9
|
> **Alpha:** launcher and scheduling contracts may change between releases.
|
|
@@ -55,6 +57,8 @@ pnpm test
|
|
|
55
57
|
pnpm lint
|
|
56
58
|
```
|
|
57
59
|
|
|
60
|
+
Maintained by [Agimon](https://agimon.ai/about).
|
|
61
|
+
|
|
58
62
|
## License
|
|
59
63
|
|
|
60
64
|
MIT
|
package/package.json
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agimon-ai/doompi-loop",
|
|
3
|
-
"version": "0.0.1-alpha.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.1-alpha.23",
|
|
4
|
+
"description": "Session-scoped recurring prompt scheduler and loop controls for Pi coding agents.",
|
|
5
5
|
"keywords": [
|
|
6
|
-
"
|
|
6
|
+
"automation",
|
|
7
7
|
"coding-agent",
|
|
8
|
-
"developer-tools",
|
|
9
8
|
"doompi",
|
|
10
|
-
"pi-
|
|
9
|
+
"pi-coding-agent",
|
|
10
|
+
"pi-extension",
|
|
11
|
+
"prompt-scheduler",
|
|
12
|
+
"recurring-tasks"
|
|
11
13
|
],
|
|
12
14
|
"homepage": "https://agimon.ai",
|
|
13
15
|
"license": "MIT",
|
|
@@ -37,8 +39,8 @@
|
|
|
37
39
|
"access": "public"
|
|
38
40
|
},
|
|
39
41
|
"dependencies": {
|
|
40
|
-
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.
|
|
41
|
-
"@agimon-ai/doompi-ui": "0.0.1-alpha.
|
|
42
|
+
"@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.23",
|
|
43
|
+
"@agimon-ai/doompi-ui": "0.0.1-alpha.23"
|
|
42
44
|
},
|
|
43
45
|
"devDependencies": {
|
|
44
46
|
"@earendil-works/pi-coding-agent": "0.84.2",
|