feat: build pipeline — .ts → .esm.js + .yaml + .d.ts 三件套

- add command auto-detects .ts vs .esm.js input
- .ts: Bun.build → bundle + descriptor extraction + JSON Schema → .d.ts
- .esm.js: requires .yaml alongside, .d.ts optional
- JSON Schema → TypeScript type converter
- hello-world example workflow
- 63 tests pass, biome clean

Closes #7
小橘 <xiaoju@shazhou.work>
This commit is contained in:
2026-05-06 06:26:14 +00:00
parent 47e8fdf5b3
commit e670047e6a
15 changed files with 405 additions and 236 deletions
@@ -5,14 +5,13 @@ import { join } from "node:path";
import { fileURLToPath } from "node:url";
import { getRegisteredWorkflow, readWorkflowRegistry } from "@uncaged/workflow";
import { addCliArgs, MINIMAL_DESCRIPTOR_YAML } from "./bundle-fixture.js";
import { cmdAdd } from "../src/cmd-add.js";
import { cmdHistory } from "../src/cmd-history.js";
import { cmdList, formatListLines } from "../src/cmd-list.js";
import { cmdRemove } from "../src/cmd-remove.js";
import { cmdRollback } from "../src/cmd-rollback.js";
import { cmdShow } from "../src/cmd-show.js";
import { addCliArgs, MINIMAL_DESCRIPTOR_YAML } from "./bundle-fixture.js";
describe("cli workflow commands", () => {
let prevEnv: string | undefined;
@@ -144,6 +143,39 @@ export default async function* (input) {
expect(entry.hash).toBe(hash);
});
test("add from .esm.js with --descriptor uses explicit YAML path", async () => {
const bundleDir = join(storageRoot, "w");
await mkdir(bundleDir, { recursive: true });
const bundlePath = join(bundleDir, "app.esm.js");
const yamlPath = join(bundleDir, "desc.yaml");
await writeFile(
bundlePath,
`export default async function* (input) {
yield { role: "a", content: "x", meta: {} };
return { returnCode: 0, summary: "x" };
}
`,
"utf8",
);
await writeFile(yamlPath, MINIMAL_DESCRIPTOR_YAML, "utf8");
const added = await cmdAdd(storageRoot, {
name: "app",
filePath: bundlePath,
descriptorPath: yamlPath,
typesPath: null,
});
expect(added.ok).toBe(true);
if (!added.ok) {
return;
}
const yamlStored = await readFile(
join(storageRoot, "bundles", `${added.value.hash}.yaml`),
"utf8",
);
expect(yamlStored).toContain("fixture");
});
test("add from .esm.js warns when optional .d.ts is missing", async () => {
const bundleDir = join(storageRoot, "src");
await mkdir(bundleDir, { recursive: true });
@@ -2,12 +2,11 @@ import { afterEach, beforeEach, describe, expect, test } from "bun:test";
import { mkdir, mkdtemp, readFile, rm, writeFile } from "node:fs/promises";
import { tmpdir } from "node:os";
import { join } from "node:path";
import { addCliArgs, MINIMAL_DESCRIPTOR_YAML } from "./bundle-fixture.js";
import { cmdAdd } from "../src/cmd-add.js";
import { cmdFork } from "../src/cmd-fork.js";
import { cmdRun } from "../src/cmd-run.js";
import { pathExists } from "../src/fs-utils.js";
import { addCliArgs, MINIMAL_DESCRIPTOR_YAML } from "./bundle-fixture.js";
/** Three-role workflow that respects `input.steps` for fork/resume. */
const threeRoleBundleSource = `export default async function* (input) {
@@ -4,8 +4,6 @@ import { mkdir, mkdtemp, readFile, rm, writeFile } from "node:fs/promises";
import { tmpdir } from "node:os";
import { dirname, join } from "node:path";
import { fileURLToPath } from "node:url";
import { addCliArgs, MINIMAL_DESCRIPTOR_YAML } from "./bundle-fixture.js";
import { cmdAdd } from "../src/cmd-add.js";
import { cmdKill } from "../src/cmd-kill.js";
import { cmdPause } from "../src/cmd-pause.js";
@@ -15,6 +13,7 @@ import { cmdRun } from "../src/cmd-run.js";
import { cmdThreadRemove, cmdThreadShow } from "../src/cmd-thread.js";
import { cmdThreads } from "../src/cmd-threads.js";
import { pathExists } from "../src/fs-utils.js";
import { addCliArgs, MINIMAL_DESCRIPTOR_YAML } from "./bundle-fixture.js";
const fastBundleSource = `export default async function* (input) {
yield { role: "planner", content: "plan", meta: { plan: input.prompt } };