DYLA-ai: Skill for Claude Code

.agents/skills/ticket/SKILL.md

ticket is a skill for Claude Code from Federico-Anastasi/DYLA-ai. It costs 46 tokens per session (1,237 once invoked), scanned A, original, MIT.

A maintenance-ticket triage guide for a completed software project. It uses project documents to identify where a reported problem probably belongs and what the system should do.

In plain words
What is it for?
Use it to review a ticket, identify the affected area and likely data objects, find the related project work, and suggest a first hypothesis.
Why use it?
It reduces the time support teams spend searching through estimates, data models, mockups, and briefs. It gives an initial explanation without changing code or pretending to fix the issue.

Skill for Claude Code

Written for Claude Code: user-invocable in frontmatter. Also seen: installed under .agents/ (shared by several agents); mentions Codex.

This is Federico-Anastasi/DYLA-ai's own configuration. It tells Claude Code how to work on DYLA-ai itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything DYLA-ai configures →

Reuse

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.

Copy the file
curl -O https://raw.githubusercontent.com/Federico-Anastasi/DYLA-ai/main/.agents/skills/ticket/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Federico-Anastasi/DYLA-ai

Made for: Claude Code.

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

agentmods badge for ticket

README.md
[![agentmods](https://agentmods.dev/badge/skills/federico-anastasi/dyla-ai/ticket/github.svg)](https://agentmods.dev/skills/federico-anastasi/dyla-ai/ticket)
Your own site
<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.

agentmods 80×15 button for ticket

Your own site · 80×15
<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>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,237 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 11d ago against content hash 9fd818ae5039, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

.agents/skills/ticket/SKILL.md · 127 lines

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

  1. Get the ticket text from the user (or from the file they point at)
  2. Read the project deliverables
  3. Answer with the triage: where to look, what should happen, hypothesis
  4. 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 the layer telling you what kind of thing each piece is
  • projects/{project}/data_model.json — tables, fields, relations
  • projects/{project}/mockup.json — the pages and their names: the bridge between the user's words ("the requests screen") and the objects
  • the brief (brief.json or the input document, possibly via .extracted/)
  • projects/{project}/context.md — decisions and assumptions: many apparent anomalies are behaviours somebody decided on deliberately
  • projects/{project}/test_plan.json — if it exists: a case covering the flow tells you how to reproduce it
  • knowledge/ — if the folder exists: naming and client patterns

Read the full file on GitHub · 127 lines

Changes

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.

  1. 11d ago First seen · 127 lines · 46 tokens per session scan A 9fd818ae5039

Subscribe to this mod's changes

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.

Related

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.

Donchitos/Claude-Code-Game-Studios · 59 tokens

qa-session

Interactive QA: user reports bugs conversationally, agent files GitHub issues. Triggers: QA session, report bug, file issue, conversational QA, bug intake.

softspark/ai-toolkit · 36 tokens

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.

sammcj/agentic-coding · 49 tokens

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.

FlorianBruniaux/claude-code-plugins · 81 tokens

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…

handarbeit/fabrik · 173 tokens

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.

handarbeit/fabrik · 38 tokens