@@ -934,8 +934,14 @@ You can also explicitly specify the domain using the `--domain` option.
934934- ` --location TEXT ` - Filter by location (city, country, or region)
935935- ` --capabilities TEXT ` - Comma-separated list of required capabilities
936936- ` --materials TEXT ` - Comma-separated list of required materials
937- - ` --min-confidence FLOAT ` - Minimum confidence threshold (0.0-1.0, default: 0.7 )
937+ - ` --min-confidence FLOAT ` - Minimum confidence threshold (0.0-1.0, default: 0.3 )
938938- ` --max-results INTEGER ` - Maximum number of results (default: 10)
939+ - ` --max-depth INTEGER ` - BOM matching depth (0 = single-level, >0 = nested component matching)
940+ - ` --auto-detect-depth ` - Auto-enable nested matching when manifest contains nested components
941+ - ` --allow-facility-combinations ` - Enable aggregated multi-facility matching for manufacturing
942+ - ` --max-facilities-per-solution INTEGER ` - Cap facilities used in one composite solution (default: 3)
943+ - ` --combination-strategy [greedy] ` - Composite solver strategy
944+ - ` --no-alternative-solutions ` - Return only the top composite solution
939945- ` --output, -o TEXT ` - Output file path
940946- ` --use-llm ` - Enable LLM integration for enhanced matching
941947- ` --llm-provider [anthropic|openai|google|azure|local] ` - LLM provider
@@ -969,6 +975,12 @@ ohm match requirements my-design.okh.json --min-confidence 0.9
969975# Match with LLM enhancement
970976ohm match requirements my-design.okh.json --use-llm --quality-level professional
971977
978+ # Composite matching across multiple facilities
979+ ohm match requirements my-design.okh.json --allow-facility-combinations --max-facilities-per-solution 3
980+
981+ # Composite matching returning only best solution
982+ ohm match requirements my-design.okh.json --allow-facility-combinations --no-alternative-solutions
983+
972984# Save results to file
973985ohm match requirements my-design.okh.json --output matches.json
974986```
@@ -980,6 +992,7 @@ The command displays matching facilities with:
980992- Confidence score
981993- Match type (manufacturing or cooking)
982994- Location (if available)
995+ - Structured summary metadata (` match_summary ` , ` coverage_gaps ` ) in JSON mode
983996
984997** Note:** Facility IDs are displayed as full UUIDs. Use the full ID with ` ohm okw get ` to retrieve facility details.
985998
0 commit comments