Install
$ agentstack add skill-erikole21-refacil-sdd-ai-reply ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
refacil:reply — Reply to a bus question
Sends a response to the last question directed to this session. $ARGUMENTS = response text.
Instructions
Step 1: Execute reply
Run via Bash:
refacil-sdd-ai bus reply --text "[response]"
The broker:
- Automatically finds the last
askdirected to this session in the room - Uses its
correlationIdso the asker (if inask --wait) receives the response directly - Broadcasts to the entire room as a
kind=replymessage
Step 2: Confirm
Report to the user that the response was sent.
When to use reply vs say
reply: always when you are responding to something you were asked. This allows the other side inask --waitto unblock automatically.say: general announcement unrelated to a previous question.
Safe bus text delivery
Use --text for simple messages (no special characters, single-line):
refacil-sdd-ai bus reply --text "Simple response here"
Do NOT use ` inside --text` — shells may interpret them as redirection operators and truncate or discard the message.
For messages containing `, |, newlines, or other special characters, use --from-env`:
PowerShell (Windows):
$env:BUS_TEXT = "integrationPoint: POST /pay`noutputContract: {status, id}"
refacil-sdd-ai bus reply --from-env BUS_TEXT
Remove-Item Env:BUS_TEXT
bash (inline, preferred — automatic cleanup):
BUS_TEXT="integrationPoint: POST /pay
outputContract: {status, id}" refacil-sdd-ai bus reply --from-env BUS_TEXT
bash (export + unset alternative):
export BUS_TEXT="response with chars"
refacil-sdd-ai bus reply --from-env BUS_TEXT
unset BUS_TEXT
> Note: the CLI cannot perform cleanup itself — it runs as a child process and cannot modify the parent shell's environment. Cleanup (Remove-Item / unset) is the responsibility of the invoking script or shell.
Contract-focused reply format (for integration questions)
When replying to cross-repo integration clarifications, prefer this structure so the other side can continue without ambiguity:
integrationPoint: [confirmed endpoint/event/queue + direction]
inputContract: [confirmed fields/validation]
outputContract: [confirmed outputs/status/errors]
compatibility: [version/constraints, or "unknown"]
sourceOfTruth: [file/path/symbol in this repo]
confidence: [high|medium|low]
openQuestions: [none | list of unresolved points]
If you cannot confirm a field, answer with unknown and include the missing evidence in openQuestions.
Rules
- If you just implemented a change requested by another agent and this
replyis the close (done / PR / blocked), include that summary in the text; it is the default channel to respond to whoever made the originalask(same thread). - Correctly quote the text.
- Respond only from your knowledge of THIS repo. If the question falls outside your scope, say it explicitly:
"out of my scope, repo X knows about this". - If your reply leaves unresolved contract points, explicitly list them so the asker can send a targeted retry
ask. - If there is no pending question directed to you and you do not want to link it, use
/refacil:sayinstead. - If you were asked multiple questions and want to respond to a specific older one, pass
--correlationexplicitly:
``bash refacil-sdd-ai bus reply --text "..." --correlation [id] ``
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Erikole21
- Source: Erikole21/refacil-sdd-ai
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.