Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .claude/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"permissions": {
"allow": [
"Bash(curl -sS -H \"Authorization: Bearer *\" *public-api.wp-umbrella.com*)"
"Bash(curl -sS -H \"Authorization: Bearer *\" https://public-api.wp-umbrella.com/*)"
]
}
}
5 changes: 3 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,11 @@ compress_file() {
echo " · $file"
# Headless invocation of the /caveman:compress slash command.
# --permission-mode=acceptEdits lets the skill write its backup + compressed
# output without an interactive prompt. stdout is noisy, keep it out of logs.
# output without an interactive prompt. stdout is noisy, keep it out of logs;
# stderr passes through so caveman failures surface their underlying cause.
if ! claude -p "/caveman:compress $abs_file" \
--permission-mode=acceptEdits \
>/dev/null 2>&1; then
>/dev/null; then
echo " ERROR: caveman compression failed for $file" >&2
return 1
fi
Expand Down
2 changes: 1 addition & 1 deletion skills/umbrella/references/permissions.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/skills/umbrella/references/permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you want to frontload the config before you ever see a prompt, add this to `~
{
"permissions": {
"allow": [
"Bash(curl -sS -H \"Authorization: Bearer *\" *public-api.wp-umbrella.com*)",
"Bash(curl -sS -H \"Authorization: Bearer *\" https://public-api.wp-umbrella.com/*)",
"Bash(jq *)",
"Bash(head -n *)"
]
Expand Down
Loading