Skip to content
Draft
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ define download-file
wget -qO- "$(1)"; \
fi; \
else \
echo "Error: curl or wget required"; \
echo "Error: curl or wget is required"; \
exit 1; \
fi
endef
Expand Down Expand Up @@ -148,7 +148,7 @@ setup-gh-aw-compat:
@echo "Setting up gh-aw compat compiler..."
@mkdir -p .bin
@if ! command -v go >/dev/null 2>&1; then \
echo "Error: Go is required to install gh-aw compiler."; \
echo "Error: Go is required to install gh-aw compat compiler."; \
echo "Install Go: https://go.dev/dl/"; \
exit 1; \
elif [ -x ".bin/gh-aw-compat" ] && [ -f ".bin/.gh-aw-compat-version" ] && [ "$$(cat .bin/.gh-aw-compat-version 2>/dev/null)" = "$(GH_AW_COMPAT_VERSION)" ]; then \
Expand Down
2 changes: 1 addition & 1 deletion claude-workflows/issue-triage/rwx/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Issue Triage (Read-Write-Execute)

Automatically triage and label new issues with capabilities to read, write, and execute. Can run tests, write temporary files for testing, but cannot commit/push code.
Automatically triage and label new issues with read, write, and execute capabilities. Can run tests, write temporary files for testing, but cannot commit/push code.

## Usage

Expand Down
2 changes: 1 addition & 1 deletion claude-workflows/issue-triage/rwx/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# github-token: ${{ github.token }}
#
name: "Claude Issue Triage (Read-Write-Execute)"
description: "Automatically triage and label new issues using Claude with capabilities to read, write, and execute"
description: "Automatically triage and label new issues using Claude with read, write, and execute capabilities"

branding:
icon: "tag"
Expand Down
Loading