Each one is a starting point, not a fixed menu — every step points at a callable, so you can swap it for anything your install can reach.
01 / STANDARD
One prompt, every row. The original BulkForge — write a template with [topic] in it and run it down your list.
Run one prompt per item through a local model. This is the original BulkForge — a prompt template and a list of topics.
1 step per item.
02 / MULTI-STEP
Several steps per row, in order — and step two reads step one’s answer FOR THAT ROW. Read a page, then summarise that page.
Two steps per item — fetch the page, then hand THAT page to a model. This is the shape a workflow loop gets wrong: here step 2 sees step 1’s output for the same item.
2 steps per item.
03 / WEB
Point it at a list of URLs. Pull the text, the metadata, the links — or send one request per row.
Fetch every URL in the list and pull its readable text out of the markup.
1 step per item.
Title, description, canonical, Open Graph and Twitter cards, for every URL in the list.
1 step per item.
Every outbound link on every page in the list — the fastest way to turn one list into a bigger one.
1 step per item.
Send one HTTP request per item. The item can be interpolated into the URL, the headers or the body.
1 step per item.
04 / GENERATE
Turn each row into something written — a rendered template, a query, a set of subject lines.
One template, many outputs — code, config, copy. The item is available to the template as a variable.
1 step per item.
Compose a parameterised SELECT per item. Builds the statement — it does not execute it, which the legacy mode also did not, despite saying so.
1 step per item.
Turn a list of topics, offers or segments into candidate email subject lines.
1 step per item.
05 / TRANSFORM
Reshape the rows themselves. Find and replace across a whole column, or pull the URLs out of a block of text.
Apply one string transformation across the whole list — find/replace, case, slug, redact, hash.
1 step per item.
The legacy splitters, one of them: turn a block of text per item into the URLs inside it.
1 step per item.
06 / IMAGES
Work on a list of images — resize a whole folder to one consistent thumbnail.
Resize a list of images to one consistent thumbnail size.
1 step per item.
Open the Forge to run one.