Task Agent Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Task Agent Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An autonomous task decomposition and execution agent exposed via the Model Context Protocol (MCP). Give it a high-level engineering goal — it plans the work, executes each step, verifies nothing broke, and commits the results.
You: "Add error handling to all API calls in my RAG pipeline"
Agent:
1. Scans your codebase
2. Decomposes into subtasks:
- "Add try/except to embeddings.py fetch call"
- "Add retry logic to vector search in retriever.py"
- "Add timeout handling to API client"
- "Write tests for error handling paths"
3. Executes each subtask (generates and applies code changes)
4. Runs your test suite after each change
5. Commits if tests pass, rolls back if they don't
6. Reports: 3/4 subtasks committed, 1 rolled back┌──────────────────────────────────────────────────────┐
│ MCP Client │
│ (Claude Desktop / Cursor / VS Code) │
└──────────────────┬───────────────────────────────────┘
│ JSON-RPC over stdio
┌──────────────────▼───────────────────────────────────┐
│ Task Agent MCP Server │
│ │
│ ┌─────────┐ ┌───────────┐ ┌──────────┐ │
│ │ scan │ │ plan │ │ execute │ │
│ │ project │ │ task │ │ task │ │
│ └─────────┘ └───────────┘ └────┬─────┘ │
│ │ │
│ ┌────────────────────▼──────────────┐ │
│ │ Execution Pipeline │ │
│ │ │ │
│ │ decompose → identify_files → │ │
│ │ generate_fix → write → test → │ │
│ │ commit OR rollback │ │
│ └────────────────────┬──────────────┘ │
│ │ │
│ ┌──────────────────────────┼──────────┐ │
│ ▼ ▼ ▼ │
│ ┌──────────┐ ┌──────────┐ ┌────────┐ │
│ │ Anthropic│ │ Git │ │ pytest │ │
│ │ API │ │ │ │ │ │
│ └──────────┘ └──────────┘ └────────┘ │
└──────────────────────────────────────────────────────┘| Tool | Description |
|---|---|
scan_project | List all Python files in a project with line counts |
plan_task | Decompose a goal into subtasks without executing (preview mode) |
execute_task | Full pipeline: decompose → execute → verify → commit/rollback |
check_status | Check progress of a running task |
rollback_all | Emergency rollback to pre-task state |
git clone https://github.com/yerramsettianish0427/task-agent-mcp.git
cd task-agent-mcp
pip install -r requirements.txt
export ANTHROPIC_API_KEY="your-key-here"Add to your claude_desktop_config.json:
{
"mcpServers": {
"task-agent": {
"command": "python",
"args": ["/absolute/path/to/task_agent_mcp.py"],
"env": {
"ANTHROPIC_API_KEY": "your-key-here"
}
}
}
}Config location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.json%LOCALAPPDATA%\Packages\Claude_pzs8sxrjxfjjc\LocalCache\Roaming\Claude\claude_desktop_config.jsonSettings → MCP → Add Server → stdio → command: python /absolute/path/to/task_agent_mcp.py
Preview a plan:
"Plan how to add type hints to my project at /Users/me/my-project"
Execute autonomously:
"Execute task: add comprehensive error handling to /Users/me/rag-system"
Check progress:
"What's the status of the current task?"
Emergency stop:
"Roll back all changes"
pytest to check nothing broke[TaskAgent] subtask description. If tests fail, restores the original file.MIT
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.