---
title: "Assess Task Capability"
method: POST
path: "/agent/negotiation"
tags: ["Negotiation"]
---

# Assess Task Capability

`POST /agent/negotiation`

Assess agent's capability to handle a task. Evaluates skill match, IO compatibility,
performance, load, and cost to produce an acceptance decision with confidence and detailed scoring.

**Required fields:**
- task_summary (string, max 10000 chars)

**Optional fields:**
- task_details, input_mime_types, output_mime_types, max_latency_ms, max_cost_amount,
  required_tools, forbidden_tools, min_score, weights

## Request body

- NegotiationRequest
  - `task_summary` string, required — Brief summary of the task
  - `task_details` string — Detailed task description
  - `input_mime_types` string[] — Accepted input MIME types
  - `output_mime_types` string[] — Accepted output MIME types
  - `max_latency_ms` integer — Maximum acceptable latency in milliseconds
  - `max_cost_amount` number — Maximum acceptable cost
  - `required_tools` string[] — Tools that must be available
  - `forbidden_tools` string[] — Tools that must not be used
  - `min_score` number — Minimum acceptance score threshold
  - `weights` object — Scoring weights for different factors
    - `skill_match` number
    - `io_compatibility` number
    - `performance` number
    - `load` number
    - `cost` number

## Response `200`

Capability assessment result

- NegotiationResponse
  - `accepted` boolean, required — Whether the agent accepts the task
  - `confidence` number, required — Confidence in the assessment
  - `scores` object — Individual scoring factors
    - `skill_match` number
    - `io_compatibility` number
    - `performance` number
    - `load` number
    - `cost` number
  - `overall_score` number, required — Weighted overall score
  - `reasoning` string — Explanation of the assessment

## Other responses

- `400` — Invalid request

## Changes

- **2026-02-11** `975e49e9b675` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/getbindu/apis/bindu-agent-api/changes/agent/negotiation/post.md)

---

[API](https://skmtc.dev/getbindu/apis/bindu-agent-api.md) · [All operations](https://skmtc.dev/getbindu/apis/bindu-agent-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/getbindu/bindu-agent-api/revisions/975e49e9b675/schema)
