Skip to content

Commit 5666e39

Browse files
committed
chore: scrub leaked identifiers from examples and docs
Replace placeholder strings that looked team-specific with fully generic ones: Linear ID, reviewer names, branch/commit descriptions. No functional change. History rewrite follows to scrub prior commits.
1 parent c43d312 commit 5666e39

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/a2ui-approval.jsonl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
{"surfaceUpdate": {"components": [{"id": "title", "component": {"Text": {"usageHint": "h2", "text": {"literalString": "Deploy Approval Required"}}}}]}}
55
{"surfaceUpdate": {"components": [{"id": "subtitle", "component": {"Text": {"usageHint": "subtitle", "text": {"literalString": "An agent is requesting permission to deploy to production."}}}}]}}
66
{"surfaceUpdate": {"components": [{"id": "divider", "component": {"Divider": {}}}]}}
7-
{"surfaceUpdate": {"components": [{"id": "description", "component": {"Text": {"usageHint": "body", "text": {"literalString": "Changes: Updated billing module with new rate-limit handler. 3 files changed, 47 insertions, 12 deletions. All tests passing."}}}}]}}
7+
{"surfaceUpdate": {"components": [{"id": "description", "component": {"Text": {"usageHint": "body", "text": {"literalString": "Changes: Updated API module with new rate-limit handler. 3 files changed, 47 insertions, 12 deletions. All tests passing."}}}}]}}
88
{"surfaceUpdate": {"components": [{"id": "comment_input", "component": {"TextInput": {"label": {"literalString": "Comment (optional)"}, "placeholder": {"literalString": "Add context for the deploy log..."}, "fieldName": "comment", "multiline": true}}}]}}
99
{"surfaceUpdate": {"components": [{"id": "button_row", "component": {"Row": {"alignment": "end", "children": {"explicitList": ["btn_reject", "btn_approve"]}}}}]}}
1010
{"surfaceUpdate": {"components": [{"id": "btn_reject", "component": {"Button": {"label": {"literalString": "Reject"}, "variant": "danger", "action": {"name": "reject"}}}}]}}

examples/hero-deploy-approval.jsonl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{"surfaceUpdate":{"components":[{"id":"insertions","component":{"Text":{"usageHint":"caption","text":{"literalString":"+47 insertions"}}}}]}}
1010
{"surfaceUpdate":{"components":[{"id":"deletions","component":{"Text":{"usageHint":"caption","text":{"literalString":"-12 deletions"}}}}]}}
1111
{"surfaceUpdate":{"components":[{"id":"checks","component":{"Text":{"usageHint":"caption","text":{"literalString":"CI: all green"}}}}]}}
12-
{"surfaceUpdate":{"components":[{"id":"changes","component":{"Text":{"usageHint":"body","text":{"literalString":"fix(api): handle rate-limit response webhook — retries with exponential backoff, dead-letters to SQS after 5 attempts. Linear: ENG-1234."}}}}]}}
12+
{"surfaceUpdate":{"components":[{"id":"changes","component":{"Text":{"usageHint":"body","text":{"literalString":"fix(api): handle rate-limit responses with exponential backoff, dead-letters to queue after 5 attempts. Linear: ENG-1234."}}}}]}}
1313
{"surfaceUpdate":{"components":[{"id":"comment","component":{"TextInput":{"label":{"literalString":"Deploy note (optional, added to release log)"},"placeholder":{"literalString":"e.g. urgent fix for customer X"},"fieldName":"note","multiline":true}}}]}}
1414
{"surfaceUpdate":{"components":[{"id":"notify","component":{"Checkbox":{"label":{"literalString":"Post to #eng-deploys when live"},"fieldName":"notify","checked":true}}}]}}
1515
{"surfaceUpdate":{"components":[{"id":"buttons","component":{"Row":{"alignment":"end","children":{"explicitList":["btn_cancel","btn_deploy"]}}}}]}}

skill/references/examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ cat <<'EOF' | webview-cli --a2ui --title "Deploy Approval" --width 540 --height
1616
{"surfaceUpdate":{"components":[{"id":"title","component":{"Text":{"usageHint":"h2","text":{"literalString":"Deploy to Production"}}}}]}}
1717
{"surfaceUpdate":{"components":[{"id":"subtitle","component":{"Text":{"usageHint":"subtitle","text":{"literalString":"Review changes before approving. Comment will be logged."}}}}]}}
1818
{"surfaceUpdate":{"components":[{"id":"divider","component":{"Divider":{}}}]}}
19-
{"surfaceUpdate":{"components":[{"id":"changes","component":{"Text":{"usageHint":"body","text":{"literalString":"Branch: feature/rate-limit-v2\n3 files changed, 47 insertions, 12 deletions\nAll CI checks passing\nLast commit: fix(api): handle rate-limit response event"}}}}]}}
19+
{"surfaceUpdate":{"components":[{"id":"changes","component":{"Text":{"usageHint":"body","text":{"literalString":"Branch: feature/rate-limit-v2\n3 files changed, 47 insertions, 12 deletions\nAll CI checks passing\nLast commit: fix(api): handle rate-limit responses"}}}}]}}
2020
{"surfaceUpdate":{"components":[{"id":"comment","component":{"TextInput":{"label":{"literalString":"Deploy note (optional)"},"placeholder":{"literalString":"e.g. urgent fix for customer X"},"fieldName":"note","multiline":true}}}]}}
2121
{"surfaceUpdate":{"components":[{"id":"buttons","component":{"Row":{"alignment":"end","children":{"explicitList":["btn_cancel","btn_deploy"]}}}}]}}
2222
{"surfaceUpdate":{"components":[{"id":"btn_cancel","component":{"Button":{"label":{"literalString":"Cancel"},"variant":"secondary","action":{"name":"cancel"}}}}]}}

0 commit comments

Comments
 (0)