Borrowing it
Nothing to install: this file belongs to Federico-Anastasi/DYLA-ai. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/Federico-Anastasi/DYLA-ai/main/.agents/skills/ticket/SKILL.mdgit clone --depth 1 https://github.com/Federico-Anastasi/DYLA-aiWrote 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/federico-anastasi/dyla-ai/ticket)<a href="https://agentmods.dev/skills/federico-anastasi/dyla-ai/ticket"><img src="https://agentmods.dev/badge/skills/federico-anastasi/dyla-ai/ticket/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/federico-anastasi/dyla-ai/ticket"><img src="https://agentmods.dev/badge/skills/federico-anastasi/dyla-ai/ticket.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.00046 | $0.01237 |
| Opus 5 | $0.00023 | $0.00619 |
| Sonnet 5 | $0.00009 | $0.00247 |
| Haiku 4.5 | $0.00005 | $0.00124 |
Grade A, and why
ticket 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 11d 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 — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/ticket — Maintenance triage
Support is usually done by a different team from the one that built the thing. Faced with a ticket, the time goes first of all into working out where to look.
On a delivered project that answer is already written in our own deliverables: the estimate says what was built, the data model says where the data lives, the mockup says what the user sees, the brief says what should happen.
This skill does not fix the ticket and does not touch code. It points.
UX: chat stays conversational. The triage is an answer in chat, not a deliverable: no
JSON gets written. Cite dev tasks by id and name, and chapters of the brief as
[[brief:Title]], so the reader gets there with one click.
PROTOCOL
- Get the ticket text from the user (or from the file they point at)
- Read the project deliverables
- Answer with the triage: where to look, what should happen, hypothesis
- Do not modify any file unless explicitly asked
PHASE 1 — THE TICKET
If the user has not pasted the text, ask for it in a ```questions block (format in
.Codex/prompts/questions_format.md):
```questions
[
{
"id": 1,
"q": "Paste the ticket text so I can triage it.",
"options": ["I'll paste it now"],
"hint": "as it arrived, bad grammar and all"
}
]
```
You want it as it arrived: the end user's own words tell you which screen they are looking at the problem from.
If the project is still in flight (estimate in draft, dev tasks unfinished), say so: this skill is at its best on a delivered application, where the deliverables describe something that actually exists.
PHASE 2 — READING
Read ALL of these before answering:
projects/{project}/estimate.json— epics, tasks and dev tasks: the inventory of what was built, with thelayertelling you what kind of thing each piece isprojects/{project}/data_model.json— tables, fields, relationsprojects/{project}/mockup.json— the pages and their names: the bridge between the user's words ("the requests screen") and the objects- the brief (
brief.jsonor the input document, possibly via.extracted/) projects/{project}/context.md— decisions and assumptions: many apparent anomalies are behaviours somebody decided on deliberatelyprojects/{project}/test_plan.json— if it exists: a case covering the flow tells you how to reproduce itknowledge/— if the folder exists: naming and client patterns
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.
- 11d ago First seen · 127 lines · 46 tokens per session scan A 9fd818ae5039
ticket is a skill published in the GitHub repository Federico-Anastasi/DYLA-ai (2 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 1,237 once invoked, about $0.0002 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
bug-triage
Read all open bugs in production/qa/bugs/, re-evaluate priority vs. severity, assign to sprints, surface systemic trends, and produce a triage report. Run at sprint start or when the bug count grows enough to need re-prioritization.
qa-session
Interactive QA: user reports bugs conversationally, agent files GitHub issues. Triggers: QA session, report bug, file issue, conversational QA, bug intake.
reframe-voice
Write, rewrite, or review content in the evidence-led reframe voice style. Use when the user explicitly asks to write in "reframe voice" or "reframe style". Do NOT use for general writing tasks.
issue-triage
3-phase issue backlog management with audit, deep analysis, and validated triage actions. Use when triaging GitHub issues, sorting bug reports, cleaning up stale tickets, or detecting duplicate issues. Args: 'all' to analyze all, issue numbers to focus (e.g. '42 57'), 'en'/'fr' for language, no arg = audit only.
onboard
Interviews someone about a software project as a whole — the problem it solves, who it serves, what is in and out of scope, the hard constraints, and the domain vocabulary — and writes it up as a project constitution that every later feature specification inherits. Use this at the start of a project, before any…
fabrik-implement
Use when operating as the Fabrik Implement stage agent. This skill guides the implementation of a planned feature, following the task checklist to produce committed, tested, pushed code on a feature branch.