dev-loops 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/README.md +1 -1
- package/extension/checks.ts +1 -1
- package/extension/index.ts +1 -1
- package/extension/post-merge-update.ts +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -158,7 +158,7 @@ See [Extension Documentation](./extension/README.md) for the full command and pa
|
|
|
158
158
|
- Node `>=20`
|
|
159
159
|
- `gh` installed and authenticated for GitHub/Copilot workflows
|
|
160
160
|
- `pi-subagents` for async workflow assumptions
|
|
161
|
-
- A Pi host that satisfies peer dependencies on `@
|
|
161
|
+
- A Pi host that satisfies peer dependencies on `@earendil-works/pi-coding-agent` and `@earendil-works/pi-tui`
|
|
162
162
|
|
|
163
163
|
## Development
|
|
164
164
|
|
package/extension/checks.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { ExtensionAPI } from '@
|
|
1
|
+
import type { ExtensionAPI } from '@earendil-works/pi-coding-agent';
|
|
2
2
|
|
|
3
3
|
import { collectDevLoopChecks as collectSharedDevLoopChecks, DEV_LOOP_CHECK_IDS } from '../lib/dev-loops-core.mjs';
|
|
4
4
|
import { createInspectRunViewerLifecycleManager } from '../scripts/loop/inspect-run-viewer/managed-instance.mjs';
|
package/extension/index.ts
CHANGED
|
@@ -2,7 +2,7 @@ import fs from 'node:fs';
|
|
|
2
2
|
import os from 'node:os';
|
|
3
3
|
import path from 'node:path';
|
|
4
4
|
import { fileURLToPath } from 'node:url';
|
|
5
|
-
import type { ExtensionAPI } from '@
|
|
5
|
+
import type { ExtensionAPI } from '@earendil-works/pi-coding-agent';
|
|
6
6
|
|
|
7
7
|
import { executeDevLoopsCommand } from '../lib/dev-loops-core.mjs';
|
|
8
8
|
import { createExtensionCoreRuntime } from './checks.ts';
|
|
@@ -6,7 +6,7 @@ import type {
|
|
|
6
6
|
ToolResultEvent,
|
|
7
7
|
UserBashEvent,
|
|
8
8
|
UserBashEventResult,
|
|
9
|
-
} from '@
|
|
9
|
+
} from '@earendil-works/pi-coding-agent';
|
|
10
10
|
|
|
11
11
|
export const TARGET_REPO_SLUG = 'mfittko/dev-loops';
|
|
12
12
|
export const POST_MERGE_UPDATE_COMMAND = 'pi update git:github.com/mfittko/dev-loops';
|
package/package.json
CHANGED
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"dev-loops": "./cli/index.mjs"
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
|
-
"@
|
|
54
|
-
"@
|
|
53
|
+
"@earendil-works/pi-coding-agent": "*",
|
|
54
|
+
"@earendil-works/pi-tui": "*"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@playwright/test": "^1.60.0",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"mermaid": "11.15.0",
|
|
74
74
|
"zod": "^4.4.3",
|
|
75
|
-
"@dev-loops/core": "^0.1.
|
|
75
|
+
"@dev-loops/core": "^0.1.1"
|
|
76
76
|
},
|
|
77
77
|
"repository": {
|
|
78
78
|
"type": "git",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"url": "https://github.com/mfittko/dev-loops/issues"
|
|
83
83
|
},
|
|
84
84
|
"homepage": "https://github.com/mfittko/dev-loops#readme",
|
|
85
|
-
"version": "0.1.
|
|
85
|
+
"version": "0.1.1",
|
|
86
86
|
"files": [
|
|
87
87
|
"cli/",
|
|
88
88
|
"lib/",
|