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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
demo/

# Smithers run store (ephemeral — never commit)
smithers.db
smithers.db-shm
smithers.db-wal
22 changes: 22 additions & 0 deletions .smithers/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Ephemeral data (never commit)
node_modules/
executions/
runs/
reports/
sandboxes/
remote/
state/
tmp/
*.db
*.sqlite
*.db-shm
*.db-wal
# PGlite/Postgres durable store (the default backend's data dir)
pg/
migrated.json
dist/
.DS_Store

# Log files
*.log
logs/
933 changes: 933 additions & 0 deletions .smithers/bun.lock

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .smithers/bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
preload = ["./preload.ts"]
26 changes: 26 additions & 0 deletions .smithers/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "smithers-workflows",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"workflow:list": "smithers workflow list",
"workflow:run": "smithers workflow run",
"workflow:inspect": "smithers workflow inspect"
},
"dependencies": {
"react": "19.2.7",
"react-dom": "19.2.7",
"smithers-orchestrator": "^0.27.0",
"@smithers-orchestrator/cli": "^0.27.0",
"zod": "4.4.3"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"@types/mdx": "2.0.14",
"@types/node": "25.6.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"typescript": "7.0.2"
}
}
3 changes: 3 additions & 0 deletions .smithers/preload.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { mdxPlugin } from "smithers-orchestrator";

mdxPlugin();
7 changes: 7 additions & 0 deletions .smithers/smithers.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export const repoCommands = {
lint: null,
test: null,
coverage: null,
} as const;

export default { repoCommands };
36 changes: 36 additions & 0 deletions .smithers/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"compilerOptions": {
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"jsxImportSource": "smithers-orchestrator",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"noImplicitAny": false,
"skipLibCheck": true,
"types": [
"node",
"bun"
],
"paths": {
"~/*": [
"./*"
]
}
},
"include": [
"./**/*"
],
"exclude": [
"./executions/**/*"
]
}
Loading