Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,236 changes: 1,110 additions & 126 deletions workflow/bun.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions workflow/components/docs-workflow.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/** @jsxImportSource smithers-orchestrator */
/** @jsxImportSource smthrs */
import {
CodexAgent,
Loop,
Sequence,
createSmithers,
} from "smithers-orchestrator";
} from "smthrs";
import { z } from "zod";
import ImplementationPrompt from "../prompts/ImplementationPrompt.mdx";
import ColdReviewPrompt from "../prompts/ColdReviewPrompt.mdx";
Expand Down
2 changes: 1 addition & 1 deletion workflow/components/workflow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
AmpAgent,
CodexAgent,
KimiAgent,
} from "smithers-orchestrator";
} from "smthrs";
import { focusTestSuites } from "./focusTestSuites";
import { focusDirs } from "./focusDirs";
import { readFileSync } from "node:fs";
Expand Down
2 changes: 1 addition & 1 deletion workflow/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"drizzle-zod": "^0.8.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"smithers-orchestrator": "^0.17.0",
"smthrs": "^0.33.0",
"super-ralph": "^0.3.2",
"zod": "^4.4.2",
"zod-to-json-schema": "^3.25.2"
Expand Down
4 changes: 2 additions & 2 deletions workflow/run-docs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ import { createRequire } from "node:module";
import { tmpdir } from "node:os";
import { delimiter, join, resolve, dirname } from "node:path";
import { fileURLToPath, pathToFileURL } from "node:url";
import { mdxPlugin, runWorkflow } from "smithers-orchestrator";
import { mdxPlugin, runWorkflow } from "smthrs";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const ROOT_DIR = resolve(__dirname, "..");
const WORKFLOW_ENTRY = resolve(ROOT_DIR, "docs/workflows/docs.tsx");
const NODE_MODULES = resolve(__dirname, "node_modules");
const smithersRequire = createRequire(import.meta.resolve("smithers-orchestrator"));
const smithersRequire = createRequire(import.meta.resolve("smthrs"));
const { Effect } = smithersRequire("effect");

const args = new Set(process.argv.slice(2));
Expand Down
2 changes: 1 addition & 1 deletion workflow/smithers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createSmithers } from "smithers-orchestrator";
import { createSmithers } from "smthrs";
import { ralphOutputSchemas } from "super-ralph";

const runtime = (createSmithers as (schemas: Record<string, unknown>, options: Record<string, unknown>) => any)(ralphOutputSchemas, {
Expand Down
2 changes: 1 addition & 1 deletion workflow/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"module": "ESNext",
"moduleResolution": "bundler",
"jsx": "react-jsx",
"jsxImportSource": "smithers-orchestrator",
"jsxImportSource": "smthrs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module "smithers-orchestrator/jsx-runtime" {
declare module "smthrs/jsx-runtime" {
export const Fragment: unknown;
export function jsx(type: unknown, props: unknown, key?: unknown): unknown;
export function jsxs(type: unknown, props: unknown, key?: unknown): unknown;
Expand Down
Loading