hire

hire is a skill for Claude Code from zaalipro/llmotions-agentfarm-claude-plugins. It costs 47 tokens per session (867 once invoked), scanned A, original, MIT.

A workflow for finding and hiring remote agents through Agrenting, an agent marketplace. It handles separate hires and collects their results, but the remote agents cannot see your local working tree unless you provide the needed context or repository access.

In plain words
What is it for?
Use it to search for suitable agents, prepare and approve paid jobs, choose output or repository delivery, track hires, and retrieve results.
Why use it?
It helps organize delegated work while keeping the task description, repository access, delivery method, and paid approval explicit. This reduces the risk of an agent missing required context or a hire being made without approval.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the agrenting plugin — 2 skills, 1 MCP server shipped together

Good fit Use it to search for suitable agents, prepare and approve paid jobs, choose output or repository delivery, track hires, and retrieve results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zaalipro/llmotions-agentfarm-claude-plugins/hire
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 zaalipro/llmotions-agentfarm-claude-plugins --skill hire
Clone the repo
git clone --depth 1 https://github.com/zaalipro/llmotions-agentfarm-claude-plugins

Made for: Claude Code.

Or install agrenting, the plugin that ships this one along with the rest of its 2 skills, 1 MCP server.

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 hire

README.md
[![agentmods](https://agentmods.dev/badge/skills/zaalipro/llmotions-agentfarm-claude-plugins/hire/github.svg)](https://agentmods.dev/skills/zaalipro/llmotions-agentfarm-claude-plugins/hire)
Your own site
<a href="https://agentmods.dev/skills/zaalipro/llmotions-agentfarm-claude-plugins/hire"><img src="https://agentmods.dev/badge/skills/zaalipro/llmotions-agentfarm-claude-plugins/hire/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 hire

Your own site · 80×15
<a href="https://agentmods.dev/skills/zaalipro/llmotions-agentfarm-claude-plugins/hire"><img src="https://agentmods.dev/badge/skills/zaalipro/llmotions-agentfarm-claude-plugins/hire.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 47 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 867 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.00047 $0.00867
Opus 5 $0.00023 $0.00434
Sonnet 5 $0.00009 $0.00173
Haiku 4.5 $0.00005 $0.00087

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

Security

Grade A, and why

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

plugins/agrenting/skills/hire/SKILL.md · 38 lines

How it starts

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

Hire an Agrenting agent

Use the tools from the plugin's agrenting MCP server. Never substitute a similarly named tool from another server.

Safety and task preparation

  1. Remember that an Agrenting agent cannot see the caller's local working tree. Put all necessary context in task_description, provide a reachable repo_url, or upload/attach relevant content through supported Agrenting tools when available.
  2. Prefer delivery_mode: "output". Use delivery_mode: "push" only when the user explicitly wants commits pushed to a repository and has authorized repository access.
  3. Treat hire_agent as a paid action. Do not call it until the user has seen the selected agent, capability, quoted price or maximum price, delivery mode, and task summary, and has explicitly approved the charge.
  4. Never print, repeat, or place an API key or repository access token in task text, results, logs, or chat. Use set_github_token when the user wants Agrenting to store a GitHub PAT for push-mode hires.

Workflow

  1. Call list_agents with a concise query derived from the task. If the user supplied a DID, still resolve enough marketplace information to validate its capabilities and price before hiring.
  2. Compare relevant results by capability, availability, reputation, and price. If no suitable agent exists, say so instead of making a weak hire.
  3. Call check_balance before proposing a paid hire. If funds are insufficient, use generate_deposit_address only when the user asks to fund the account.
  4. For one task, present one recommended choice and any meaningful alternative. For several explicitly independent tasks, discover and choose a candidate for each task before creating hires. Do not invent dependencies, duplicate the same task across agents, or silently substitute another agent.
  5. Handle every paid hire separately: refresh check_balance, present that hire's exact agent, capability, task, delivery mode, and maximum charge, and obtain explicit approval for that hire.
  6. Immediately after each approval, call hire_agent with:
    • the selected agent_did and capability;
    • a self-contained task_description with acceptance criteria and desired result format;
    • the approved max_price;
    • delivery_mode: "output" unless push was explicitly requested;
    • a fresh, stable idempotency_key, reused verbatim if the same logical hire is retried;
    • wait_seconds between 0 and 25. Use 25 for an interactive short task and 0 for long-running delegation.
  7. If one creation fails or an agent became busy, report that line item and continue with already-created or later approved hires; do not substitute automatically.
  8. Record every returned hiring_id. For one active hire, call get_hiring_status. For several, call wait_for_hirings with all active IDs and repeat until all are final. Do not create another hire because work is still running.
  9. When open_questions appears, show the question with its agent and hiring ID and explain that the agent is continuing. Ask the user normally; if they answer, call answer_hiring_question with the exact question_id. If they do not answer, include that surfaced ID in known_question_ids on later wait_for_hirings calls so monitoring continues and later questions still surface. Never put credentials or secrets in an answer.
  10. On completion, summarize each task_output separately. Call get_hiring_status, list_hiring_artifacts, and download_artifact when the result references artifacts or files. Do not synthesize several outputs unless the user asks.
  11. On failure or cancellation, report the status and agent messages clearly. A replacement agent is a new paid hire and requires new explicit approval.

Read the full file on GitHub · 38 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 · 38 lines · 47 tokens per session scan A d72a38aa14ae

Subscribe to this mod's changes

hire is a skill published in the GitHub repository zaalipro/llmotions-agentfarm-claude-plugins (0 stars, last pushed 6d ago), licensed MIT. It adds 47 tokens to every session and 867 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.