- Add bulk_search_item.v1 + bulk_search_response.v1 wire schemas
- Register both in WIRE_SCHEMAS const
- README: --bulk flag mention + MCP tool list 7→8 (bulk_search)
- SMOKE: bulk multi-query walkthrough (CLI + MCP equivalent)
- Design §2.2: Bulk multi-query (fb-42) subsection (additive minor)
- SKILL: mcp__kebab__bulk_search section + tool table row
- Task spec status open→completed, banner replaced
- INDEX: fb-42 row 머지 (rerank hint deferred)
- Fix: missed Capabilities {bulk_search} in cli wire.rs test (Task 7 leftover)
- Fix: missed tools.len() 7→8 in cli_mcp_smoke (Task 5 leftover)
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
21 lines
911 B
JSON
21 lines
911 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://kb.local/wire/v1/bulk_search_item.schema.json",
|
|
"title": "BulkSearchItem v1",
|
|
"description": "p9-fb-42: per-query result inside a bulk_search response. `response` XOR `error` — exactly one is non-null. `query` is the input echo so consumers can correlate without index tracking.",
|
|
"type": "object",
|
|
"required": ["schema_version", "query", "response", "error"],
|
|
"properties": {
|
|
"schema_version": { "const": "bulk_search_item.v1" },
|
|
"query": { "type": "object", "description": "Input echo (verbatim JSON object)." },
|
|
"response":{
|
|
"type": ["object", "null"],
|
|
"description": "search_response.v1 payload on success; null when error is non-null."
|
|
},
|
|
"error": {
|
|
"type": ["object", "null"],
|
|
"description": "error.v1 payload when this query failed; null on success."
|
|
}
|
|
}
|
|
}
|