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 agentmods add agents/yogasw/wick/ticket-integrationsgit clone --depth 1 https://github.com/yogasw/wickWhat 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 | $0.00000 | $0.06991 |
| Opus 5 | $0.00000 | $0.03495 |
| Sonnet 5 | $0.00000 | $0.01398 |
| Haiku 4.5 | $0.00000 | $0.00699 |
Grade A, and why
ticket-integrations scanned grade A with 1 finding 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 2d 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.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s "$WICK_API/projects/$PROJECT/tickets?rows=0" \ How it starts
The opening of the file, as written. The whole thing — 748 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Ticket Integrations
Wire a project's ticket board to another system, in both directions:
- Outbound — webhooks. Wick POSTs a JSON event to your endpoint whenever a ticket is created, moved, assigned, or deleted.
- Inbound — REST API. Your system creates and updates tickets with a Personal Access Token.
- Custom buttons. A button on every ticket's page that POSTs the ticket to your URL on click — see Custom buttons.
All three are configured per project, under Project settings → Ticket system → Integrations. All are off (empty) until you add one.
Setup
- Open Project settings → Ticket system, make sure ticket mode is on.
- Expand Integrations.
- For the API: switch REST API on. Copy the base URL shown there.
- For webhooks: Add webhook, fill in the URL, set a signing secret, pick the events, then Send test to prove the endpoint before a real ticket depends on it.
- For a custom button: Add button, fill in a label and a URL, and save — see Custom buttons.
You need a Personal Access Token for the REST API. Create one at
/profile/tokens — see Access Tokens. A token acts as
you: it reaches exactly the projects your user can see, and no others.
::: warning The API toggle is per project
A token cannot touch a project whose REST API is switched off — those requests
answer 403 with the REST API is disabled for this project. A project you
cannot see at all answers 403 you don't have access to this project; one
that does not exist answers 404.
:::
REST API
Base URL and auth
https://<your-wick-host>/api
Every endpoint path in this reference is relative to this base URL —
append it as-is. GET /projects/{id}/tickets means:
https://<your-wick-host>/api/projects/{id}/tickets
Every request carries the token:
-H "Authorization: Bearer $WICK_TOKEN"
Set up the shell for every example below:
export WICK_HOST="https://wick.abc.com"
export WICK_API="$WICK_HOST/api"
export WICK_TOKEN="wick_pat_..."
export PROJECT="proj_7f21c9"
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.
- 2d ago First seen · 748 lines · 0 tokens per session scan A b5e91952a3dd
ticket-integrations is an agent published in the GitHub repository yogasw/wick (5 stars, last pushed 5d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 6,991 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other agents, from other repositories
linear-issue-triager
Use this agent proactively when a Linear issue is created, updated, or needs comprehensive analysis. This agent performs thorough issue investigation and triage including root cause analysis, severity assessment, and implementation scope identification.
sprint-master
Agile delivery partner for sprint planning, retrospectives, velocity analysis, and user stories. Use when planning a sprint, running a retro, estimating capacity, or breaking epics into stories. Uses the capacity calculator to size commitments.
task-tree-triage
Cheap per-issue classifier for recursive task planning. Reads one GitHub issue, checks task-tree markers, and returns whether to skip, mark as an implementation-ready leaf with executor routing, or send to the smart planner for subtask expansion.
triage-labels
All canonical role labels are configured in GitHub.
Technical Manager
Engineering manager that coordinates all agents, tracks progress, prioritizes work, and surfaces decisions to the human operator.
issue-tracker
Issues and specs for this repo live as GitHub issues. Use the gh CLI for all operations.