AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Refacil:reply

skill-erikole21-refacil-sdd-ai-reply · by Erikole21

Reply to the last question directed to this session on the bus. The broker autocompletes the correlationId.

No reviews yet
0 installs
5 views
0.0% view→install

Install

$ agentstack add skill-erikole21-refacil-sdd-ai-reply

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-erikole21-refacil-sdd-ai-reply)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Refacil:reply? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 ask directed to this session in the room
  • Uses its correlationId so the asker (if in ask --wait) receives the response directly
  • Broadcasts to the entire room as a kind=reply message

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 in ask --wait to 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 reply is the close (done / PR / blocked), include that summary in the text; it is the default channel to respond to whoever made the original ask (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:say instead.
  • If you were asked multiple questions and want to respond to a specific older one, pass --correlation explicitly:

``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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.