npx skills add ...
npx skills add openai/plugins --skill encode-skill
npx skills add openai/plugins --skill encode-skill
Submit compact ENCODE REST API requests for object lookups, portal-style search, and metadata retrieval. Use when a user wants concise ENCODE summaries
scripts/rest_request.py for all ENCODE API calls.base_url=https://www.encodeproject.org.max_items; portal-style search endpoints are better with limit=10 and max_items=10.Accept: application/json in headers and add format=json in params when needed.... in tool previews as UI truncation, not literal request content.biosamples/<accession>/ and search paths such as search/.save_raw=true and report the saved file path.base_url, pathmethod, params, headers, json_body, form_body, record_path, response_format, max_items, max_depth, timeout_sec, save_raw, raw_output_path{"base_url":"https://www.encodeproject.org","path":"biosamples/ENCBS000AAA/","params":{"frame":"object","format":"json"},"headers":{"Accept":"application/json"}}{"base_url":"https://www.encodeproject.org","path":"search/","params":{"type":"Experiment","assay_term_name":"RNA-seq","limit":10,"format":"json"},"record_path":"@graph","headers":{"Accept":"application/json"},"max_items":10}ok, source, path, method, status_code, warnings, and either compact records or a compact summary.raw_output_path when save_raw=true.ok=false with error.code and error.message.scripts/rest_request.py.