Skip to content
Open
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
9 changes: 7 additions & 2 deletions skills/release-prepare/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,13 +321,18 @@ confirmation before creating the issue.

Proposed issue title: `Release <Product Name> <version>`

If the RM confirms, create the issue via:
If the RM confirms, write the body to a temp file (the planning issue body
is internally-generated content, not attacker-controlled, but using
`--body-file` avoids shell-quoting edge cases with multi-line bodies):

```bash
cat > /tmp/planning-issue-body-<version>.md <<'EOF'
<body>
EOF
gh issue create \
--repo <upstream> \
--title "Release <Product Name> <version>" \
--body "<body>" \
--body-file /tmp/planning-issue-body-<version>.md \
--label "release-planning"
```

Expand Down
1 change: 0 additions & 1 deletion skills/reviewer-routing/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ license: Apache-2.0
https://www.apache.org/licenses/LICENSE-2.0 -->

<!-- Placeholder convention (see ../../AGENTS.md#placeholder-convention-used-in-skill-files):
<tracker> → GitHub slug of the security tracker repo
<upstream> → GitHub slug of the upstream codebase
<project-config> → the adopting project's config directory
<default-branch> → upstream's default branch (master vs main)
Expand Down
2 changes: 1 addition & 1 deletion skills/security-issue-import/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -1937,7 +1937,7 @@ media / cross-thread-followup / fix-already-public):

```bash
LEDGER=$(gh issue list --repo <tracker> --state open \
--label rejections-ledger --json number --jq '.[0].number')
--label rejections-ledger --limit 5 --json number --jq '.[0].number')
```

*Write tool call:* `file_path: /tmp/rejection-<threadId>.md`,
Expand Down