@agimon-ai/doompi-loop 0.0.1-alpha.67 → 0.0.1-alpha.68

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agimon-ai/doompi-loop",
3
- "version": "0.0.1-alpha.67",
3
+ "version": "0.0.1-alpha.68",
4
4
  "description": "Session-scoped recurring prompt scheduler and loop controls for Pi coding agents.",
5
5
  "keywords": [
6
6
  "ai",
@@ -34,7 +34,8 @@
34
34
  "src/types/loopView.ts",
35
35
  "README.md",
36
36
  "LICENSE",
37
- "package.json"
37
+ "package.json",
38
+ "!src/web/**/*.stories.tsx"
38
39
  ],
39
40
  "type": "module",
40
41
  "main": "./dist/index.cjs",
@@ -58,10 +59,10 @@
58
59
  },
59
60
  "dependencies": {
60
61
  "@deepseek-ai/cordis": "4.0.2",
61
- "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.66",
62
- "@agimon-ai/doompi-web-components": "0.0.1-alpha.26",
63
- "@agimon-ai/doompi-ui": "0.0.1-alpha.67",
64
- "@agimon-ai/doompi-web-contracts": "0.0.1-alpha.29"
62
+ "@agimon-ai/doompi-extension-contracts": "0.0.1-alpha.67",
63
+ "@agimon-ai/doompi-ui": "0.0.1-alpha.68",
64
+ "@agimon-ai/doompi-web-contracts": "0.0.1-alpha.30",
65
+ "@agimon-ai/doompi-web-components": "0.0.1-alpha.27"
65
66
  },
66
67
  "devDependencies": {
67
68
  "@earendil-works/pi-coding-agent": "0.85.1",
@@ -31,15 +31,15 @@ export function LoopsActivitySection({ sessionId, statuses, sendSessionFrame }:
31
31
  >
32
32
  <span className="flex min-w-0 items-center gap-1.5">
33
33
  <Dot tone={toneOf(loop.state)} pulse={loop.state !== 'running'} />
34
- <span className="min-w-0 flex-1 truncate text-[10px] font-bold text-doom-hi">{loop.label}</span>
35
- <span className="shrink-0 text-[9px] text-doom-faint">{loop.state}</span>
34
+ <span className="min-w-0 flex-1 truncate text-xs font-bold text-doom-hi">{loop.label}</span>
35
+ <span className="shrink-0 text-2xs text-doom-faint">{loop.state}</span>
36
36
  </span>
37
- <span className="truncate pl-3 text-[9px] text-doom-faint">{loop.detail}</span>
37
+ <span className="truncate pl-3 text-2xs text-doom-faint">{loop.detail}</span>
38
38
  </li>
39
39
  ))}
40
40
  </ul>
41
41
  ) : (
42
- <p className="px-1 text-[10px] text-doom-faint">loop status unavailable</p>
42
+ <p className="px-1 text-xs text-doom-faint">loop status unavailable</p>
43
43
  )}
44
44
  <Button
45
45
  variant="subtle"
@@ -51,7 +51,7 @@ export function LoopsActivitySection({ sessionId, statuses, sendSessionFrame }:
51
51
  if (sessionId === null) return;
52
52
  sendSessionFrame(sessionId, { type: 'prompt', message: MANAGE_COMMAND });
53
53
  }}
54
- className="self-end text-[8px] font-bold"
54
+ className="self-end text-2xs font-bold"
55
55
  >
56
56
  manage
57
57
  </Button>