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
#!/bin/bash | |
# Read JSON input from stdin | |
input=$(cat) | |
# printf "input: %s\n" "$input" | |
# Extract current directory and replace home with ~ | |
current_dir=$(echo "$input" | jq -r '.workspace.current_dir' | sed "s|^$HOME|~|") | |
# Extract session id and Claude version |
This file has been truncated, but you can view the full file.
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
cd /tmp && python -m openhands.resolver.resolve_issue \ | |
--selected-repo modern-realty-inc/plug-chat \ | |
--token *** \ | |
--issue-number 2567 \ | |
--issue-type issue \ | |
--max-iterations 50 \ | |
--comment-id None \ | |
--is-experimental true | |
shell: /usr/bin/bash -e {0} | |
env: |
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
/** | |
* TypeScript Method Tracing Utility | |
* -------------------------------- | |
* | |
* This utility provides automatic method tracing for TypeScript classes using decorators. | |
* It's designed to be a drop-in solution for debugging and monitoring method execution flow. | |
* Great for allowing coding AI agents to see the stack trace from terminal being put back into prompts. | |
/** | |
* TypeScript Method Tracing Utility | |
* -------------------------------- |