Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Guiziweb/guiziweb-plugins --skill add-respondergit clone --depth 1 https://github.com/Guiziweb/guiziweb-pluginsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/guiziweb/guiziweb-plugins/add-responder)<a href="https://agentmods.dev/skills/guiziweb/guiziweb-plugins/add-responder"><img src="https://agentmods.dev/badge/skills/guiziweb/guiziweb-plugins/add-responder/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/guiziweb/guiziweb-plugins/add-responder"><img src="https://agentmods.dev/badge/skills/guiziweb/guiziweb-plugins/add-responder.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00027 | $0.00764 |
| Opus 5 | $0.00014 | $0.00382 |
| Sonnet 5 | $0.00005 | $0.00153 |
| Haiku 4.5 | $0.00003 | $0.00076 |
Grade A, and why
add-responder scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Add a Custom Responder — Sylius Stack
Ask the user if not provided:
- The resource (
ModelName) and the target operation. - The responder class name. Default:
{Purpose}Responder(e.g.ExportGridToXlsxResponder,BookPdfResponder). - The format to return (file stream, PDF, XLSX, raw JSON with a specific structure, redirect, …). This drives the body.
If the user only needs a custom redirect after a Create/Update/Delete, do not create a responder — suggest the operation flags:
new Create(
redirectToRoute: 'app_admin_author_show',
redirectArguments: ['id' => 'resource.getAuthor().getId()'],
)
If the user only needs extra variables in the default Twig template, use /sylius-stack:add-twig-context instead.
1. Create the responder class
src/Responder/{ResponderName}.php
<?php
declare(strict_types=1);
namespace App\Responder;
use Sylius\Resource\Context\Context;
use Sylius\Resource\Metadata\Operation;
use Sylius\Resource\State\ResponderInterface;
use Symfony\Component\HttpFoundation\Response;
final readonly class {ResponderName} implements ResponderInterface
{
public function __construct(
// TODO: inject the services needed to build the response (renderer, http client, serializer…)
) {
}
public function respond(mixed $data, Operation $operation, Context $context): mixed
{
// TODO: transform $data into a Symfony Response and return it
// examples: new Response($body), new StreamedResponse(...), new BinaryFileResponse(...)
return new Response();
}
}
For a streaming / download response, follow this pattern (see also add-grid-export for a concrete CSV example):
use Symfony\Component\HttpFoundation\StreamedResponse;
$response = new StreamedResponse(function () use ($data) {
// write bytes to php://output
});
$response->headers->set('Content-Type', 'application/pdf');
$response->headers->set('Content-Disposition', 'attachment; filename="export.pdf"');
return $response;
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 110 lines · 27 tokens per session scan A 19090b015b98
add-responder is a skill published in the GitHub repository Guiziweb/guiziweb-plugins (4 stars, last pushed 1mo ago), licensed MIT. It adds 27 tokens to every session and 764 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
backend-report-generation
Enforce report generation patterns including PDF generation (Puppeteer, wkhtmltopdf), Excel/CSV export, async generation with queues, report scheduling, large dataset handling, template rendering, and report API design. NOT for real-time dashboards or live charting.
cc-api-design-safety
A safety guide for designing REST API responses and creating downstream files such as Excel, CSV, PDF, or reconciliation files.
file-handling
File handling patterns — S3/R2/Vercel Blob storage, PDF generation, CSV/Excel import-export, file streaming, presigned URLs, multipart upload. Use when implementing file uploads to cloud storage, generating documents, processing large files, or building download endpoints.
doc-reader
Read any common document/data file — PDF, Word (.docx), Excel (.xlsx/.xls), PowerPoint (.pptx), images (OCR), CSV/TSV, plain text, JSON/YAML/TOML, HTML/XML, and most source-code files. Use the readdocument tool.
skill-doc-delivery
Convert markdown to DOCX, PPTX, XLSX, PDF office documents — use when you need exportable deliverables.
unified-deliverable-workflow
Generate spreadsheets, diagrams, and PDF reports with iteration budgeting and error recovery.