@markjaquith/agency 2.71.11 → 2.71.12
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": "@markjaquith/agency",
|
|
3
|
-
"version": "2.71.
|
|
3
|
+
"version": "2.71.12",
|
|
4
4
|
"description": "Manage agentic work across repositories with durable workbases",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agents",
|
|
@@ -66,6 +66,7 @@
|
|
|
66
66
|
"preuninstall": "bun scripts/install-pi-extension.ts uninstall",
|
|
67
67
|
"benchmark:pr": "bun scripts/benchmark-pr.ts",
|
|
68
68
|
"benchmark:status": "bun scripts/benchmark-status.ts",
|
|
69
|
+
"benchmark:init": "bun scripts/benchmark-init.ts",
|
|
69
70
|
"benchmark:workbase": "bun scripts/benchmark-workbase.ts",
|
|
70
71
|
"benchmark:doctor": "bun scripts/benchmark-doctor.ts",
|
|
71
72
|
"benchmark:context": "bun scripts/benchmark-context.ts",
|
|
@@ -240,13 +240,18 @@ export class WorkbaseService extends Effect.Service<WorkbaseService>()(
|
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
yield* fs.createDirectory(root)
|
|
243
|
-
yield*
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
243
|
+
yield* Effect.all(
|
|
244
|
+
[
|
|
245
|
+
fs.writeJSON(configPath, {
|
|
246
|
+
version: 2,
|
|
247
|
+
vcs: preferredVersionControl(),
|
|
248
|
+
}),
|
|
249
|
+
...["repos", "epics", "tasks"].map((directory) =>
|
|
250
|
+
fs.createDirectory(join(root, directory)),
|
|
251
|
+
),
|
|
252
|
+
],
|
|
253
|
+
{ concurrency: "unbounded" },
|
|
254
|
+
)
|
|
250
255
|
|
|
251
256
|
const ignorePath = join(root, ".gitignore")
|
|
252
257
|
const requiredPatterns = [
|