From 7e02269a025f124290aa482ef113bc65509be99a Mon Sep 17 00:00:00 2001 From: "Michael J. Jabbour" Date: Sun, 11 Jan 2026 03:21:06 -0500 Subject: [PATCH 1/3] feat: Add explanatory output style behavior MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This behavior includes hooks-explanatory which injects instructions at session start encouraging educational insight blocks. The module is published at github.com/michaeljabbour/amplifier-module-hooks-explanatory. 🤖 Generated with [Amplifier](https://github.com/microsoft/amplifier) Co-Authored-By: Amplifier <240397093+microsoft-amplifier@users.noreply.github.com> --- behaviors/explanatory.yaml | 8 ++++++++ bundle.md | 1 + 2 files changed, 9 insertions(+) create mode 100644 behaviors/explanatory.yaml diff --git a/behaviors/explanatory.yaml b/behaviors/explanatory.yaml new file mode 100644 index 0000000..3beefe8 --- /dev/null +++ b/behaviors/explanatory.yaml @@ -0,0 +1,8 @@ +bundle: + name: behavior-explanatory + version: 1.0.0 + description: Explanatory output style with educational insight blocks + +hooks: + - module: hooks-explanatory + source: git+https://github.com/michaeljabbour/amplifier-module-hooks-explanatory@main diff --git a/bundle.md b/bundle.md index a10d6dd..23d6fde 100644 --- a/bundle.md +++ b/bundle.md @@ -14,6 +14,7 @@ includes: - bundle: foundation:behaviors/redaction - bundle: foundation:behaviors/todo-reminder - bundle: foundation:behaviors/streaming-ui + - bundle: foundation:behaviors/explanatory # External bundles - bundle: git+https://github.com/microsoft/amplifier-bundle-recipes@main#subdirectory=behaviors/recipes.yaml - bundle: git+https://github.com/microsoft/amplifier-bundle-design-intelligence@main#subdirectory=behaviors/design-intelligence.yaml From 9916f960f4e5c47dcf910c79466207399fd291a0 Mon Sep 17 00:00:00 2001 From: "Michael J. Jabbour" Date: Wed, 21 Jan 2026 07:18:48 -0800 Subject: [PATCH 2/3] feat: Add session activity indicator hook for real-time status display --- behaviors/sessionindicator.yaml | 15 +++++++++++++++ bundle.md | 1 + 2 files changed, 16 insertions(+) create mode 100644 behaviors/sessionindicator.yaml diff --git a/behaviors/sessionindicator.yaml b/behaviors/sessionindicator.yaml new file mode 100644 index 0000000..95c39ed --- /dev/null +++ b/behaviors/sessionindicator.yaml @@ -0,0 +1,15 @@ +bundle: + name: behavior-sessionindicator + version: 1.0.0 + description: Real-time session activity indicator - shows spinner, token usage, elapsed time, and stuck detection + +hooks: + - module: hooks-sessionindicator + source: git+https://github.com/michaeljabbour/amplifier-module-hooks-sessionindicator@main + config: + position: bottom + show_tokens: true + show_elapsed: true + update_interval: 0.1 + stuck_threshold: 60 + enable_unstick_hint: true diff --git a/bundle.md b/bundle.md index 23d6fde..c7b4f38 100644 --- a/bundle.md +++ b/bundle.md @@ -14,6 +14,7 @@ includes: - bundle: foundation:behaviors/redaction - bundle: foundation:behaviors/todo-reminder - bundle: foundation:behaviors/streaming-ui + - bundle: foundation:behaviors/sessionindicator - bundle: foundation:behaviors/explanatory # External bundles - bundle: git+https://github.com/microsoft/amplifier-bundle-recipes@main#subdirectory=behaviors/recipes.yaml From 0dca2036aa14d64476e7a25248eb392a25ab0761 Mon Sep 17 00:00:00 2001 From: "Michael J. Jabbour" Date: Wed, 21 Jan 2026 07:22:08 -0800 Subject: [PATCH 3/3] revert: Remove sessionindicator from foundation - should be independent module --- behaviors/sessionindicator.yaml | 15 --------------- bundle.md | 1 - 2 files changed, 16 deletions(-) delete mode 100644 behaviors/sessionindicator.yaml diff --git a/behaviors/sessionindicator.yaml b/behaviors/sessionindicator.yaml deleted file mode 100644 index 95c39ed..0000000 --- a/behaviors/sessionindicator.yaml +++ /dev/null @@ -1,15 +0,0 @@ -bundle: - name: behavior-sessionindicator - version: 1.0.0 - description: Real-time session activity indicator - shows spinner, token usage, elapsed time, and stuck detection - -hooks: - - module: hooks-sessionindicator - source: git+https://github.com/michaeljabbour/amplifier-module-hooks-sessionindicator@main - config: - position: bottom - show_tokens: true - show_elapsed: true - update_interval: 0.1 - stuck_threshold: 60 - enable_unstick_hint: true diff --git a/bundle.md b/bundle.md index c7b4f38..23d6fde 100644 --- a/bundle.md +++ b/bundle.md @@ -14,7 +14,6 @@ includes: - bundle: foundation:behaviors/redaction - bundle: foundation:behaviors/todo-reminder - bundle: foundation:behaviors/streaming-ui - - bundle: foundation:behaviors/sessionindicator - bundle: foundation:behaviors/explanatory # External bundles - bundle: git+https://github.com/microsoft/amplifier-bundle-recipes@main#subdirectory=behaviors/recipes.yaml