agy-jobs

agy-jobs is a skill for Claude Code from keli-wen/agy-staff. It costs 101 tokens per session (2,266 once invoked), scanned A, a copy of jobs, MIT.

A job-management skill for background work started by the agy staff plugin. It explains how to check, collect, cancel or continue jobs stored for a repository.

In plain words
What is it for?
Use it to monitor agy jobs, collect their results, cancel them, or continue an existing conversation.
Why use it?
It prevents background results from being missed and provides a defined way to wait for jobs to finish.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Codex.

Part of the agy plugin — 14 skills shipped together

Good fit Use it to monitor agy jobs, collect their results, cancel them, or continue an existing conversation.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/keli-wen/agy-staff/agy-jobs
Install

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.

Any agent
npx skills add keli-wen/agy-staff --skill agy-jobs
Clone the repo
git clone --depth 1 https://github.com/keli-wen/agy-staff

Made for: Claude Code.

Or install agy, the plugin that ships this one along with the rest of its 14 skills.

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 agy-jobs

README.md
[![agentmods](https://agentmods.dev/badge/skills/keli-wen/agy-staff/agy-jobs/github.svg)](https://agentmods.dev/skills/keli-wen/agy-staff/agy-jobs)
Your own site
<a href="https://agentmods.dev/skills/keli-wen/agy-staff/agy-jobs"><img src="https://agentmods.dev/badge/skills/keli-wen/agy-staff/agy-jobs/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 agy-jobs

Your own site · 80×15
<a href="https://agentmods.dev/skills/keli-wen/agy-staff/agy-jobs"><img src="https://agentmods.dev/badge/skills/keli-wen/agy-staff/agy-jobs.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 101 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,266 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 92% copy Near-identical to another mod 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.00101 $0.02266
Opus 5 $0.00051 $0.01133
Sonnet 5 $0.00020 $0.00453
Haiku 4.5 $0.00010 $0.00227

Measured yesterday against content hash a8a980f2ead4, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

agy-jobs 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 yesterday.

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.

Origin

This is a copy

92% identical to jobs — 14 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

pi-skills/agy-jobs/SKILL.md · 90 lines

How it starts

The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.

agy jobs

Manage background staffer/research/review/implement jobs. State is per repository in .agy-staff/. Only ask runs synchronously.

This file lives at <plugin-root>/pi-skills/agy-jobs/SKILL.md:

node "<skill-dir>/../../companion/agy-companion.mjs" <command> [args]

Collect the result

Default flow: prepare the prompt → dispatch → wait for the final result → validate as needed. While a job is running, do not proactively call observe/status, read logs or inspect intermediate artifacts. Do not query progress for routine updates or create sleep/observe loops. Observe only when the user explicitly asks for progress; diagnose after receiving a failure or a result requiring intervention.

  1. Keep the returned job id. Start wait <id> --timeout 10m in the background, using the same unsandboxed context as launch. Use a separate wait for each job; never wait for several jobs serially in one shell.
  2. For wait, branch on the exit code:
Code Meaning Next action
0 Invocation ended; response text delivered Assess whether it satisfies the task. Review attached diagnostics; inspect further only as needed.
2 Still running; wait soft-expired Wait again for the same job. The attached snapshot is not a request to inspect progress or intervene.
3 Error or crash Read the error and recovery information below.
4 Canceled Complete any already-authorized follow-up; otherwise report cancellation.
5 Attention: resumable timeout Inspect partial workspace changes; ask whether to continue with the suggested timeout or stop. Continue only after explicit user confirmation.
1 Invalid command or other command error Quote the error and correct the named problem.

done describes invocation and response delivery, not task acceptance. Preserve agy-cli response text and diagnostics; a nonempty response may only acknowledge launched background work. Successful calls with warnings include a bounded log tail on stderr and a full-log pointer. The orchestrator assesses the response and artifacts, uses observe or diagnostics if the returned result needs investigation, and decides whether to propose continuation. Keep the recovery confirmation rules below; do not infer timeout from response wording or add routine progress polling.

Read the full file on GitHub · 90 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. yesterday Changed · +10 lines a8a980f2ead4
  2. 2d ago Changed · +5 lines d03c3d31e2c6
  3. 4d ago Changed · +13 lines 17f42d356df3
  4. 7d ago First seen · 62 lines · 101 tokens per session scan A 285597a3a4f1

Subscribe to this mod's changes

agy-jobs is a skill published in the GitHub repository keli-wen/agy-staff (131 stars, last pushed yesterday), licensed MIT. It adds 101 tokens to every session and 2,266 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. It is 92% identical to jobs, differing in 14 lines, and is treated as a copy.

Related

Other skills, from other repositories

mantis-configure

Configures and validates Mantis pipeline environments, sandbox mechanisms, and AI models. Use to set up workflow.json, auto-detect host capabilities, switch between sandboxes (static-only, gvisor, microsandbox, gce), select AI models, and run fast 1-2s preflight tests. Don't use for scanning source code or running…

google/mantis · 77 tokens

party

Throw or join an agents-party: a shared channel where several AI agent sessions (and their humans) talk to each other — Claude Code, Cursor, Codex or any other agent, on one machine or across machines. Use when the user asks to throw or start a party, wants several agent sessions to collaborate in one chat, wants two…

1gr14/agents-party · 110 tokens

cc-status

A structured workflow for checking Codex configuration, task status, synchronization results, and project .codex task records.

doccker/cc-use-exp · 53 tokens

notify-user

Telegram comms playbook for Antigravity — when and how to reply, ack long work, present choices, and delegate to other agents. Use whenever you're paired to a Telegram chat via the telegram-agy MCP server and need to talk back to the user. The chat is your only signal channel — terminal output never reaches the user.

5dive-ai/5dive-plugins · 71 tokens

generate-daily-schedule

Use when turning a day's structured inputs — fixed commitments, tasks, and free windows — into a concrete 15-minute schedule. Domain-agnostic; the caller provides all context.

ne11nn/cantos-plugin · 42 tokens

token-efficiency

Token conservation economics, bounded context-window pruning, AST structural query optimization, and high-precision prompt budget discipline.

saitarrun/Devforge-ai · 26 tokens