file-a-task

file-a-task is a skill for Claude Code from no-human-ai/no_human. It costs 37 tokens per session (1,031 once invoked), scanned A, original, MIT.

A skill for sending coding work to nohuman through its MCP connection and checking the task later. MCP is a way for an AI tool to call another local service.

In plain words
What is it for?
Use it to hand off work that should become a reviewed pull request, then check whether it is complete. It is intended for substantial changes rather than small edits.
Why use it?
It keeps larger tasks in their own branch, tests, and review process instead of handling everything in the current conversation. The nohuman server must already be running on your computer.

Skill for Claude Code

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

Part of the no-human plugin — 1 skill, 1 MCP server shipped together

Good fit Use it to hand off work that should become a reviewed pull request, then check whether it is complete. It is intended for substantial changes rather than small edits.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/no-human-ai/no_human/file-a-task
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 no-human-ai/no_human --skill file-a-task
Clone the repo
git clone --depth 1 https://github.com/no-human-ai/no_human

Made for: Claude Code.

Or install no-human, the plugin that ships this one along with the rest of its 1 skill, 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 file-a-task

README.md
[![agentmods](https://agentmods.dev/badge/skills/no-human-ai/no_human/file-a-task.svg)](https://agentmods.dev/skills/no-human-ai/no_human/file-a-task)
Your own site
<a href="https://agentmods.dev/skills/no-human-ai/no_human/file-a-task"><img src="https://agentmods.dev/badge/skills/no-human-ai/no_human/file-a-task.svg" alt="Measured on agentmods" height="20"></a>
Per session 37 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,031 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00037 $0.01031
Opus 5 $0.00018 $0.00515
Sonnet 5 $0.00007 $0.00206
Haiku 4.5 $0.00004 $0.00103

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

Security

Grade A, and why

file-a-task 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 8d 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/no-human/skills/file-a-task/SKILL.md · 101 lines

How it starts

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

File a task into no_human

Use the two MCP tools this plugin exposes — task_add and task_status — to hand off work that should become a reviewed pull request, instead of making the change yourself in this conversation.

When to use

  • The work is substantial enough to deserve its own branch, its own tests, and independent review — not a one-line edit you can just make inline.
  • You want no_human to plan, code, test, have the result reviewed by a second model, and open a pull request, while you keep doing something else.
  • Do not use this for small edits you can make directly in the current conversation — that is strictly slower and adds no value.

Prerequisite: the local server must already be running

Both tools call the existing no_human HTTP API at http://127.0.0.1:8420. The bridge does not retry or fall back if that address is unreachable — it refuses to start at all (SystemExit, no auto-retry). Before using either tool, make sure the server is running:

nh start

(The desktop app starts this for you automatically.) If a tool call fails with a connection error, the fix is to start the server, not to retry the call.

Tool: task_add

Creates a new no_human task via POST /api/tasks.

Parameters (all required strings):

Name Type Description
title string Short task title.
description string Full task description — inline the concrete context here (exact file paths, exact acceptance criteria), rather than referencing this conversation, since no_human cannot see it.
repo_path string Absolute path to the target repo checkout the task should run against.

You do not pass source — the bridge sets it to "mcp" on every call it makes, server-side, before the request is sent.

Returns: compact JSON with the new task's id and the source the server actually stored (first-class alongside "board"/"jira"), e.g.:

{"task_id":"task-abc123","source":"mcp"}

Read the full file on GitHub · 101 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. 8d ago First seen · 101 lines · 37 tokens per session scan A 729e278d9818

Subscribe to this mod's changes

file-a-task is a skill published in the GitHub repository no-human-ai/no_human (282 stars, last pushed yesterday), licensed MIT. It adds 37 tokens to every session and 1,031 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-30.