From 739b48c69a5df8625951592ee7fbc2b7328a5914 Mon Sep 17 00:00:00 2001 From: Daniel Abraham Date: Thu, 8 Aug 2024 08:55:41 +0300 Subject: [PATCH 1/2] feat: index of all projects - initial skeleton --- README.md | 14 ++++++++++++++ task_chain/README.md | 6 +++--- 2 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c980ee1 --- /dev/null +++ b/README.md @@ -0,0 +1,14 @@ +# Kittehub + +This is a central repository of [AutoKitteh](https://github.com/autokitteh/autokitteh) +projects for: + +- Full-fledged, ready-to-use solutions for real-life use cases +- Composable templates for interoperability between common services +- Demonstrations of system capabilities and features + +| Name | Description | Integrations | +| :----------------------------------------------- | :------------------------------------------------------------------------------ | :--------------------------- | +| [Pull Request Review Reminder (Purrr)](./purrr/) | Streamline code reviews and cut down the turnaround time to merge pull requests | GitHub, Slack | +| [ReviewKitteh](./reviewkitteh/) | Monitor pull requests, and meow at random people | GitHub, Google Sheets, Slack | +| [Task Chain](./task_chain/) | demonstrates Run a sequence of tasks with fault tolerance | Slack | diff --git a/task_chain/README.md b/task_chain/README.md index 4a27aed..3a6c35e 100644 --- a/task_chain/README.md +++ b/task_chain/README.md @@ -1,10 +1,10 @@ # Task Chain -This project demonstrates running a sequence of tasks with fault tolerance. +This project runs a sequence of tasks with fault tolerance. The workflow is resilient to errors in each step (with the ability to retry -each failing step on-demand), as well as server-side failures (thanks to -AutoKitteh's durable execution). +each failing step on-demand via Slack), as well as server-side failures +(thanks to AutoKitteh's durable execution). Slack screenshot 1 Slack screenshot 2 From acab0f009b909d6e1d16edc7a95bfb06c5203406 Mon Sep 17 00:00:00 2001 From: Daniel Abraham Date: Thu, 8 Aug 2024 09:05:07 +0300 Subject: [PATCH 2/2] Remove redundant word --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c980ee1..72ce7d6 100644 --- a/README.md +++ b/README.md @@ -11,4 +11,4 @@ projects for: | :----------------------------------------------- | :------------------------------------------------------------------------------ | :--------------------------- | | [Pull Request Review Reminder (Purrr)](./purrr/) | Streamline code reviews and cut down the turnaround time to merge pull requests | GitHub, Slack | | [ReviewKitteh](./reviewkitteh/) | Monitor pull requests, and meow at random people | GitHub, Google Sheets, Slack | -| [Task Chain](./task_chain/) | demonstrates Run a sequence of tasks with fault tolerance | Slack | +| [Task Chain](./task_chain/) | Run a sequence of tasks with fault tolerance | Slack |