--- name: capacity-browsing description: > Browse free capacities and find matching tasks for a specific capacity. Use this skill when the user wants to see available people, inspect a capacity's details, or find tasks that match a person's profile. --- # Capacity Browsing & Task Matching ## Available Operations ### List free capacities Call `list_free_capacities(limit=20)` to show recent free capacities with capacity_id, role, and availability dates. ### View capacity details Call `get_capacity_details(capacity_id)` to inspect a specific capacity (role, competences, availability window, description, references, and certifications). ### Find matching tasks for a capacity Call `find_matching_tasks(capacity_id)` to find open tasks that match a person's profile. After results return: - Echo `Using SEARCH_ID=` and the Summary table - Use `get_results_by_category(search_id, category, page, page_size)` for browsing - Use `filter_search_results(search_id, ...)` for refinement - Task-search supports: `task_text_filter`, `task_competence_filter` ## Typical Flow 1. User asks to see available people → `list_free_capacities()` 2. User picks a capacity → `get_capacity_details(capacity_id)` 3. User wants matching tasks → `find_matching_tasks(capacity_id)` 4. Browse/filter results as needed