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 event4u-app/agent-config --skill jobs-eventsgit clone --depth 1 https://github.com/event4u-app/agent-configWrote 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/event4u-app/agent-config/jobs-events)<a href="https://agentmods.dev/skills/event4u-app/agent-config/jobs-events"><img src="https://agentmods.dev/badge/skills/event4u-app/agent-config/jobs-events/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/event4u-app/agent-config/jobs-events"><img src="https://agentmods.dev/badge/skills/event4u-app/agent-config/jobs-events.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.00030 | $0.00642 |
| Opus 5 | $0.00015 | $0.00321 |
| Sonnet 5 | $0.00006 | $0.00128 |
| Haiku 4.5 | $0.00003 | $0.00064 |
Grade A, and why
jobs-events 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 9d 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 — 98 lines — stays where its author put it; the contents beside it link to each section on GitHub.
jobs-events
When to use
Use when creating jobs, events, listeners, or queued workflows.
Do NOT use when:
- Artisan commands (use
artisan-commandsskill) - Scheduling configuration (use
laravel-schedulingskill)
Procedure: Create a Job
Step 0: Inspect
- Check existing jobs — match naming, queue config, retry strategy, failure handling.
- Determine sync vs. async — only queue work that is slow, retryable, or non-blocking.
- Check queue driver:
.env/config/queue.php(Redis, database, sync). - Check Horizon:
config/horizon.phpfor queue names, supervisors, balancing.
Step 1: Create the job class
- Pass IDs or compact DTOs in constructor — not full models with relations.
- Set queue via
$this->onQueue(Queue::NAME->value). - Add
tags()for Horizon filtering. - Set
$maxExceptions,backoff(),$uniqueForas needed.
Step 2: Implement handle()
- Keep focused and readable.
- Delegate complex logic to services/actions.
- Design for idempotency — retries must not create duplicates.
Step 3: Test
Bus::fake(),Queue::fake(),Event::fake().- Test side effects, not just dispatch assertions.
Procedure: Create an Event + Listener
Step 1: Create event
- Past-tense naming:
OrderPlaced,ImportCompleted. - Keep payload focused.
- Laravel 11+: automatic discovery — no manual registration.
Step 2: Create listener
- One responsibility per listener.
- Delegate large logic to services.
- Use
ShouldQueueon listeners that do heavy work.
Conventions
→ See guideline php/jobs.md for full conventions (serialization, idempotency, events, dispatching).
Output format
- Job/Event/Listener class(es) with proper serialization and retry config
- Event registration in EventServiceProvider if needed
Gotcha
- Without
ShouldQueue, jobs run synchronously. - Queued jobs serialize constructor args — don't pass loaded models.
- Listener exceptions block the event chain — queue heavy listeners.
- Set
$triesand$backoff— unlimited retries overwhelm the queue.
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.
- 9d ago First seen · 98 lines · 30 tokens per session scan A 16a051d807dc
jobs-events is a skill published in the GitHub repository event4u-app/agent-config (10 stars, last pushed today), licensed MIT. It adds 30 tokens to every session and 642 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-09-03.
Other skills, from other repositories
cqrs-implementation
Implement Command Query Responsibility Segregation for scalable architectures. Use when separating read and write models, optimizing query performance, or building event-sourced systems.
diagnose-backend-bug
Diagnose a bounded backend or multi-service failure from GitHub Issues, Jira, Aone, user-provided exports, logs, traces, responses, stack traces, or job records. Use when a service, API, RPC, worker, queue, CLI, or scheduled job bug needs correlation through the project's existing observability route before repair; do…
api-doc-generator
Generate API documentation from source code, supporting REST APIs, GraphQL, and various documentation formats.
telnyx-ai-inference-curl
Access Telnyx LLM inference APIs, embeddings, and AI analytics for call insights and summaries. This skill provides REST API (curl) examples.
telnyx-ai-assistants-curl
AI voice assistants with custom instructions, knowledge bases, and tool integrations.
telnyx-email-domains-curl
Manage email sending domains, verify DNS records (SPF, DKIM, DMARC, MX), check domain health, and configure domain-level webhooks for delivery events.