Skip to content
Merged
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
11 changes: 11 additions & 0 deletions claude/stacks/github.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@
"WebFetch(domain:github.com)",
"WebFetch(domain:raw.githubusercontent.com)",
],
// Creating a repo (especially --public) is visible-to-others and not
// meaningfully undone by deleting it after the fact, same class as
// git push --force/reset --hard in base.jsonc's ask list. It had no
// allow/deny/ask rule anywhere else, so outside auto mode it already
// prompted by falling through to the default "ask" -- this entry exists
// so it also prompts *in* auto mode, where an uncovered command is
// instead handed to a per-action classifier that decides whether to
// interrupt, and isn't guaranteed to flag repo creation as needing a
// human. Confirmed once: a `gh repo create ... --public` ran under
// auto mode with no prompt at all before this rule existed.
"ask": ["Bash(gh repo create:*)"],
},

// source: agent-safehouse
Expand Down
Loading