-
Notifications
You must be signed in to change notification settings - Fork 150
fix: 9 improvements to aws-devops-agent power from end-to-end testing #127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Jay2113
merged 14 commits into
kirodotdev:main
from
tipuq:fix/aws-devops-agent-improvements
May 19, 2026
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
fb5ba15
fix: 9 improvements to aws-devops-agent power from end-to-end testing
tipuq 0ab00be
fix: revert license to Apache-2.0, verify all links
tipuq 804b3fa
fix: add create-chat fallback note for accounts without Operator App
tipuq e3174c7
fix: clarify executionId returned immediately from create-backlog-task
tipuq 5405d7e
fix: document executionId format caveat (exe-ops1-* vs pure UUID), re…
tipuq 895d321
fix: add exe-ops1 format warning + create-chat fallback note
tipuq e491939
fix: add exe-ops1 format rule to common mistakes, clarify executionId…
tipuq 78f378f
refactor: move walkthrough to steering/ for agent discoverability (re…
tipuq a6c5550
refactor: remove old examples/ location
tipuq 8285e36
fix: add jq requirement, use grep -E for macOS compat (review comments)
tipuq 756e003
fix: add jq requirement, use sed instead of grep -P for macOS compat
tipuq 9ca80f5
fix: proper Python dict syntax in context injection, explain autoAppr…
tipuq eefaeeb
fix: sync steering with latest changes
tipuq be7d7d3
fix: add inclusion: auto frontmatter — load on-demand not always (rev…
tipuq File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| #!/usr/bin/env bash | ||
| # Requires: jq (https://jqlang.github.io/jq/) | ||
| # Auto-approve aws___run_script when the code is a SendMessage via call_boto3 | ||
| # and contains no destructive operation. | ||
| # Requires Kiro hook engine with stdin tool-input passthrough (not yet available). | ||
| # | ||
| # When Kiro adds stdin passthrough, install by adding to your hook config: | ||
| # toolTypes: ["aws___run_script"] | ||
| # command: ".kiro/hooks/aws-allow-chat.sh" | ||
| set -euo pipefail | ||
| input=$(cat) | ||
| code=$(echo "$input" | jq -r '.tool_input.code // ""') | ||
| if echo "$code" | grep -qE "operation_name[[:space:]]*=[[:space:]]*['\"]SendMessage['\"]" && \ | ||
| ! echo "$code" | grep -qE "operation_name[[:space:]]*=[[:space:]]*['\"](Delete|Terminate|Remove|Put|Create|Update)[A-Z]"; then | ||
| echo '{"decision": "allow"}' | ||
| else | ||
| echo '{}' | ||
| fi | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| #!/usr/bin/env bash | ||
|
Jay2113 marked this conversation as resolved.
|
||
| # Requires: jq (https://jqlang.github.io/jq/) | ||
| # Auto-approve aws___call_aws when the CLI command is a read-only DevOps Agent op. | ||
| # Requires Kiro hook engine with stdin tool-input passthrough (not yet available). | ||
| # | ||
| # When Kiro adds stdin passthrough, install by adding to your hook config: | ||
| # toolTypes: ["aws___call_aws"] | ||
| # command: ".kiro/hooks/aws-allow-reads.sh" | ||
| set -euo pipefail | ||
| input=$(cat) | ||
| cli_command=$(echo "$input" | jq -r '.tool_input.cli_command // ""') | ||
| operation=$(echo "$cli_command" | sed -n 's/.*devops-agent[[:space:]]\+\([a-z]\+\-[a-z-]\+\).*/\1/p') | ||
| case "$operation" in | ||
| list-*|describe-*|get-*) echo '{"decision": "allow"}' ;; | ||
| *) echo '{}' ;; | ||
| esac | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.