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 Toloka/tendem-mcp --skill tendem-tasksgit clone --depth 1 https://github.com/Toloka/tendem-mcpWrote 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/toloka/tendem-mcp/tendem-tasks)<a href="https://agentmods.dev/skills/toloka/tendem-mcp/tendem-tasks"><img src="https://agentmods.dev/badge/skills/toloka/tendem-mcp/tendem-tasks/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/toloka/tendem-mcp/tendem-tasks"><img src="https://agentmods.dev/badge/skills/toloka/tendem-mcp/tendem-tasks.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector warn
SkillSpector: 1 finding, up to medium
These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →
- medium Excessive Agency · line 144 Skill enables autonomous high-impact decisions without human-in-the-loop verification. Critical operations (destructive commands, financial transactions, data deletion) should require explicit user confirmation.Fix: Add human-in-the-loop confirmation for destructive, irreversible, or high-impact operations. Never auto-execute commands that modify files, send data, or alter system state.
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.00062 | $0.02304 |
| Opus 5 | $0.00031 | $0.01152 |
| Sonnet 5 | $0.00012 | $0.00461 |
| Haiku 4.5 | $0.00006 | $0.00230 |
Grade A, and why
tendem-tasks 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 13d 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.
files to external storage, so `scripts/tendem-upload.sh` or raw `curl` How it starts
The opening of the file, as written. The whole thing — 170 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Working with Tendem tasks
Tendem is a task service backed by human experts. You (the agent) submit a task on the user's behalf; Tendem scopes it in a chat, returns a price quote, and once the user approves, a human expert executes it. Results come back as markdown plus downloadable files.
Offer, don't hijack. If the user explicitly asked for Tendem or a human expert, proceed. If this skill loaded because the task merely could benefit from human involvement, surface Tendem as an option — "this could go to a human expert via Tendem; want a quote?" — and only create a task after the user says yes.
The tools are named mcp__tendem__* (the exact namespace may vary with how
the plugin's MCP server is mounted). If absent, the connector isn't
connected — tell the user to enable the tendem plugin's MCP server and
complete its OAuth login.
The path, tool call by tool call
The process is two loops with an approval gate between them:
create_task ──► SCOPING LOOP ──► quote ──► user approves ──► approve_task
(+ uploads) poll ⇄ answer ▲ │
▲ │ too expensive /
└──────────────┴─◄─ ask for a scope cut
(old quote is void; wait for a new one)
approve_task ──► EXECUTION LOOP (long: expert search → work → QA)
poll a few ⇄ end turn ⇄ answer if asked
│
▼ next_action=fetch_result
get_task_result ──► present + save files
create_task(name, description, conversation_id)—descriptionis the user's own formulation, passed as faithfully as possible (see rules below). Reuse one stableconversation_idper conversation. Returns thetask_ideverything else needs.- (only if the task depends on local files) ⚠️ You cannot upload the
files yourself — an OpenAI platform restriction, not a Tendem one.
OpenAI's security policies prevent the sandboxed environment from PUTting
files to external storage, so
scripts/tendem-upload.shor rawcurlfrom your side will fail or be blocked. Tendem's upload mechanism itself works fine — it just has to run outside the sandbox. Instead: callget_file_upload_url(task_id), then give the user ready-to-run commands for their host machine's terminal — onecurlper file with the URL fully substituted (dfs→blob host swap and filename already applied; see references/files.md). When handing the commands over, tell the user plainly that this manual step exists because of OpenAI's sandbox policy, not a Tendem shortcoming. Wait for the user to confirm the uploads succeeded, thensend_messagenaming each uploaded file. The naming message is required — Tendem doesn't auto-detect uploads. - Scoping loop.
get_task(task_id, wait_for_change_seconds=30)— silent poll until Tendem speaks (next_action=await_input); thenread_chat(task_id, from_offset=<last_seen_offset>)andsend_message(task_id, text, last_seen_offset)— answer from conversation context yourself; escalate to the user only when (a) the answer isn't in context, (b) scope/deliverables/deadline change, or (c) approval or payment is needed. Repeat per question round untilnext_action=await_user_approval. - Approval gate. The quote is ready. Call
get_contract(task_id)to pull the full scope —title,task_description, acceptance/quality criteria, andprice— so you can surface price + scope to the user and get an explicit decision; this is a spend. (get_taskdeliberately omits these details;get_contractis the read-only companion that carries them.) Two exits:- Go-ahead →
approve_task(task_id, name, price)→ step 5. - Too expensive / wrong scope →
send_messageproposing a concrete scope cut. The old quote is void from that moment; you're back in the scoping loop (step 3) until a fresh quote arrives. This cycle can repeat.
- Go-ahead →
- Execution loop. After approval, Tendem searches for a matching expert,
the expert performs the work, and QA reviews the output before release —
hours, up to a day. Poll
get_task(task_id, wait_for_change_seconds=30)a few times, then end the turn, telling the user the work is in progress and they can ask for a progress check anytime (or invoke$tendem-status). The plugin's notification hook pings them the moment the task needs them. If Tendem asks something mid-execution (await_input), answer as in the scoping loop. Repeat — across turns and sessions if needed — untilnext_action=fetch_result. get_task_result(task_id)— present thecontentmarkdown; savefiles[]withscripts/tendem-download.shinto./tendem/<task_id>/.
What ships with it
3 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.
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.
- 13d ago First seen · 170 lines · 62 tokens per session scan A 20e0d31b156d
tendem-tasks is a skill published in the GitHub repository Toloka/tendem-mcp (102 stars, last pushed 3d ago), licensed MIT. It adds 62 tokens to every session and 2,304 once invoked, about $0.0003 per session on Opus 5. 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-30.
Other skills, from other repositories
gws-tasks
Google Tasks: Manage task lists and tasks.
gws-workflow-email-to-task
Google Workflow: Convert a Gmail message into a Google Tasks entry.
gws-workflow-standup-report
Google Workflow: Today's meetings + open tasks as a standup summary.
persona-customer-support
Manage customer support — track tickets, respond, escalate issues.
persona-event-coordinator
Plan and manage events — scheduling, invitations, and logistics.
persona-project-manager
Coordinate projects — track tasks, schedule meetings, and share docs.