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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"libs/core": "0.1.0",
"libs/webhooks": "0.1.0",
"libs/worker": "0.1.0",
"libs/workflows": "0.1.0",
"libs/workflows": "0.1.1",
"plugins/local-storage": "0.1.0",
"plugins/communication-http": "0.1.0",
"plugins/communication-nats": "0.1.0",
Expand Down
32 changes: 32 additions & 0 deletions libs/workflows/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Changelog

## [0.1.1](https://github.com/voidrot/waygate/compare/waygate-workflows-v0.1.0...waygate-workflows-v0.1.1) (2026-04-23)


### Features

* **core:** add plugin public API, storage namespaces, and app context ([82e998a](https://github.com/voidrot/waygate/commit/82e998a9f85c7cc7f6adf3286c39d6cb09df3d8d))
* **core:** add raw document content typing ([f4700a2](https://github.com/voidrot/waygate/commit/f4700a2dd674900d258fbe527472fd6f10e14622))
* **core:** add typed document artifact contracts ([121ad21](https://github.com/voidrot/waygate/commit/121ad21570eb37109edaf1d812c7f98ebadd44a0))
* enhance document analysis and recovery mechanisms, normalize legacy summaries, and update environment settings ([338d5cd](https://github.com/voidrot/waygate/commit/338d5cddda29f9e43d385569ebb4762989bc9c68))
* **env:** add environment variable configuration for core plugins ([b847cc1](https://github.com/voidrot/waygate/commit/b847cc133bfbf39ae998cf215980518e7574965c))
* **workflows:** add rq draft worker pipeline ([a456cd6](https://github.com/voidrot/waygate/commit/a456cd6ca3cb6c5b336772891e2fb7764519ba51))
* **workflows:** add runtime LLM preflight support ([a03625d](https://github.com/voidrot/waygate/commit/a03625d4061b7120164e2d950cb950d00416a874))
* **workflows:** add sequential supervisor compile workflow ([5229db5](https://github.com/voidrot/waygate/commit/5229db5fd406aa2f7e86c9bfebeedd8bed264b16))
* **workflows:** add structured workflow logging ([06b0b04](https://github.com/voidrot/waygate/commit/06b0b044e5bccaf0c163d1fd8522ae7ecb21b454))
* **workflows:** add workflows library with initial configuration and dependencies ([500bf0a](https://github.com/voidrot/waygate/commit/500bf0a23bf9fc0c4557cb51689ec064a561bea7))
* **workflows:** merge sequential supervisor compile workflow ([41dc438](https://github.com/voidrot/waygate/commit/41dc438d3c7646404c96ec45fe16ed30a985bbbf))
* **workflows:** validate targeted llm workflow profiles ([51c9d8f](https://github.com/voidrot/waygate/commit/51c9d8f22016c23f773dced1fd16614bc01a46dc))


### Bug Fixes

* **workflows:** recover structured output fallbacks ([91829d0](https://github.com/voidrot/waygate/commit/91829d0916e6e37efc5cf707f1277164cefd1db7))
* **workflows:** reject empty draft triggers ([73d2234](https://github.com/voidrot/waygate/commit/73d223435c028a1ffc1332d46c73b54c79559209))


### Documentation

* **repo:** update workflow and plugin guides ([820f314](https://github.com/voidrot/waygate/commit/820f3146b485d206ee672b4814a8a7f0b69fbf79))
* **workflows:** add workflow reference and API docstrings ([e86837d](https://github.com/voidrot/waygate/commit/e86837d20b314d7d18ec211abf394d2e866157fb))
* **workflows:** document llm profile failure outcomes ([63b30a1](https://github.com/voidrot/waygate/commit/63b30a10da844d1d943dfd07c7d363e244aeab5f))
2 changes: 1 addition & 1 deletion libs/workflows/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "waygate-workflows"
version = "0.1.0"
version = "0.1.1"
description = "Default workflows for Waygate. These can be used as-is or serve as examples for building your own custom workflows."
readme = "README.md"
authors = [
Expand Down
Loading