feat(codex): add codex config.toml

This commit is contained in:
Poby 2026-03-24 20:59:38 +09:00
parent 8014e2cc45
commit 96d4c82f3e
No known key found for this signature in database
2 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,34 @@
prefix_rule(
pattern = ["just"],
decision = "allow",
justification = "Executing Justfile commands is allowed",
match = [
"just",
"just darwin",
"just darwin-debug",
],
)
prefix_rule(
pattern = ["git"],
decision = "allow",
justification = "Git is allowed",
match = [
"git add .",
"git commit -m",
"git worktree",
"git status",
"git log",
"git branch",
],
)
prefix_rule(
pattern = ["gh"],
decision = "allow",
justification = "Github CLI is allowed",
match = [
"gh pr",
"gh repo",
],
)