agentplane 0.3.20 → 0.3.21
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/dist/.build-manifest.json +10 -10
- package/dist/cli/run-cli/commands/init/recipes.js +2 -2
- package/dist/cli.js +266 -266
- package/dist/commands/recipes/impl/installed-recipes.d.ts +1 -0
- package/dist/commands/recipes/impl/installed-recipes.d.ts.map +1 -1
- package/dist/commands/recipes/impl/installed-recipes.js +24 -0
- package/package.json +3 -3
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"package_dir": "/home/runner/work/agentplane/agentplane/packages/agentplane",
|
|
4
|
-
"generated_at": "2026-04-
|
|
5
|
-
"git_head": "
|
|
6
|
-
"src_cli_mtime_ms":
|
|
4
|
+
"generated_at": "2026-04-22T18:30:36.999Z",
|
|
5
|
+
"git_head": "5643a70096a20dc7dc30453dbc84b5cdbdc8f112",
|
|
6
|
+
"src_cli_mtime_ms": 1776882494485.1802,
|
|
7
7
|
"src_index_mtime_ms": null,
|
|
8
|
-
"dist_cli_mtime_ms":
|
|
8
|
+
"dist_cli_mtime_ms": 1776882636796.8308,
|
|
9
9
|
"dist_index_mtime_ms": null,
|
|
10
|
-
"tsbuildinfo_mtime_ms":
|
|
10
|
+
"tsbuildinfo_mtime_ms": 1776882634724.798,
|
|
11
11
|
"watched_runtime_paths": [
|
|
12
12
|
"src",
|
|
13
13
|
"bin/agentplane.js",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"bin/runtime-context.js",
|
|
16
16
|
"bin/stale-dist-policy.js"
|
|
17
17
|
],
|
|
18
|
-
"watched_runtime_snapshot_hash": "
|
|
18
|
+
"watched_runtime_snapshot_hash": "8461bae1ae37ba91891641d028df78865e48e2096102211580effd7243d252a3",
|
|
19
19
|
"watched_runtime_files": [
|
|
20
20
|
{
|
|
21
21
|
"path": "bin/agentplane.js",
|
|
@@ -564,8 +564,8 @@
|
|
|
564
564
|
},
|
|
565
565
|
{
|
|
566
566
|
"path": "src/cli/run-cli/commands/init/recipes.ts",
|
|
567
|
-
"sha256": "
|
|
568
|
-
"size_bytes":
|
|
567
|
+
"sha256": "bd309ab8d4f6b541dd977c0bdb632af5ec8db934e261fc6b56adcd064373d9f9",
|
|
568
|
+
"size_bytes": 1912
|
|
569
569
|
},
|
|
570
570
|
{
|
|
571
571
|
"path": "src/cli/run-cli/commands/init/spec.ts",
|
|
@@ -1414,8 +1414,8 @@
|
|
|
1414
1414
|
},
|
|
1415
1415
|
{
|
|
1416
1416
|
"path": "src/commands/recipes/impl/installed-recipes.ts",
|
|
1417
|
-
"sha256": "
|
|
1418
|
-
"size_bytes":
|
|
1417
|
+
"sha256": "fbc372ff5d8fd731ce8ff35c006537ae7148ee92619ed1343b9f55ae81f29d70",
|
|
1418
|
+
"size_bytes": 3979
|
|
1419
1419
|
},
|
|
1420
1420
|
{
|
|
1421
1421
|
"path": "src/commands/recipes/impl/mutation-transaction.ts",
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { cmdRecipeAddParsed } from "../../../../commands/recipes/impl/commands/add.js";
|
|
2
|
-
import {
|
|
2
|
+
import { readAndMigrateInstalledRecipesFile } from "../../../../commands/recipes/impl/installed-recipes.js";
|
|
3
3
|
import { resolveInstalledRecipesPath } from "../../../../commands/recipes/impl/paths.js";
|
|
4
4
|
import { CliError } from "../../../../shared/errors.js";
|
|
5
5
|
export async function listCachedRecipes() {
|
|
6
|
-
const cached = await
|
|
6
|
+
const cached = await readAndMigrateInstalledRecipesFile(resolveInstalledRecipesPath());
|
|
7
7
|
return cached.recipes.map((recipe) => ({
|
|
8
8
|
id: recipe.id,
|
|
9
9
|
summary: recipe.manifest.summary,
|