{"id":"e83473a7-1c88-41f3-a837-f4e8b71ce097","slug":"guoxh-zotero-interface-skill","name":"zotero-interface","description":"Comprehensive Zotero reference management interface for searching, retrieving metadata, and accessing full text of academic papers. Use when Claude needs to work with Zotero bibliographic databases for searching papers by topic/author/keywords, retrieving bibliographic metadata in APA7/other formats, accessing full text content, creating literature reviews/summaries, or managing academic references and citations.","canonicalUrl":"https://xpersona.co/skill/guoxh-zotero-interface-skill","sourceUrl":"https://github.com/guoxh/zotero-interface-skill","homepage":null,"source":"GITHUB_OPENCLEW","vendor":{"slug":"guoxh","label":"Guoxh","url":"https://github.com/guoxh/zotero-interface-skill"},"protocols":["OPENCLEW"],"capabilities":["boolean"],"trustScore":null,"trustConfidence":"unknown","artifactCount":0,"benchmarkCount":0,"lastRelease":null,"freshnessAt":"2026-04-15T03:14:20.127Z","freshnessLabel":"Apr 15, 2026","securityReviewed":true,"openapiReady":false,"stats":[{"label":"Trust score","value":"Unknown"},{"label":"Compatibility","value":"OpenClaw"},{"label":"Freshness","value":"Apr 15, 2026"},{"label":"Vendor","value":"Guoxh"},{"label":"Artifacts","value":"0"},{"label":"Benchmarks","value":"0"},{"label":"Last release","value":"Unpublished"}],"factsPreview":[{"factKey":"docs_crawl","category":"integration","label":"Crawlable docs","value":"6 indexed pages on the official domain","href":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceUrl":"https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar","sourceType":"search_document","confidence":"medium","observedAt":"2026-04-15T05:03:46.393Z","isPublic":true},{"factKey":"vendor","category":"vendor","label":"Vendor","value":"Guoxh","href":"https://github.com/guoxh/zotero-interface-skill","sourceUrl":"https://github.com/guoxh/zotero-interface-skill","sourceType":"profile","confidence":"medium","observedAt":"2026-04-15T03:14:20.127Z","isPublic":true},{"factKey":"protocols","category":"compatibility","label":"Protocol compatibility","value":"OpenClaw","href":"https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/contract","sourceUrl":"https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/contract","sourceType":"contract","confidence":"medium","observedAt":"2026-04-15T03:14:20.127Z","isPublic":true},{"factKey":"traction","category":"adoption","label":"Adoption signal","value":"3 GitHub stars","href":"https://github.com/guoxh/zotero-interface-skill","sourceUrl":"https://github.com/guoxh/zotero-interface-skill","sourceType":"profile","confidence":"medium","observedAt":"2026-04-15T03:14:20.127Z","isPublic":true},{"factKey":"handshake_status","category":"security","label":"Handshake status","value":"UNKNOWN","href":"https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/trust","sourceUrl":"https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/trust","sourceType":"trust","confidence":"medium","observedAt":null,"isPublic":true}],"highlights":["3 GitHub stars","Trust evidence available"],"agentCard":{"name":"zotero-interface","description":"Comprehensive Zotero reference management interface for searching, retrieving metadata, and accessing full text of academic papers. Use when Claude needs to work with Zotero bibliographic databases for searching papers by topic/author/keywords, retrieving bibliographic metadata in APA7/other formats, accessing full text content, creating literature reviews/summaries, or managing academic references and citations.","source":"GITHUB_OPENCLEW","sourceId":"github:1139473970","repository":"https://github.com/guoxh/zotero-interface-skill","documentation":"https://xpersona.co/skill/guoxh-zotero-interface-skill/agent/guoxh-zotero-interface-skill","protocols":["OPENCLEW"],"capabilities":["boolean"],"languages":["typescript"],"install":{"command":"git clone https://github.com/guoxh/zotero-interface-skill.git","ecosystem":"git"},"examples":[{"kind":"example","language":"javascript","snippet":"// Use local for faster access to local Zotero database\nzotero_local_zotero_search_items({\n  query: \"situated learning\",\n  qmode: \"everything\", \n  limit: 20\n})\n\n// Use cloud for remote access or when local Zotero isn't running\nzotero_cloud_zotero_search_items({\n  query: \"situated learning\",\n  qmode: \"everything\", \n  limit: 20\n})"},{"kind":"example","language":"javascript","snippet":"// Recommended pattern: Try local first, fallback to cloud\nfunction searchZotero(query, options = {}) {\n  try {\n    // Try local first for speed\n    return zotero_local_zotero_search_items({ query, ...options });\n  } catch (localError) {\n    // Fallback to cloud if local fails\n    return zotero_cloud_zotero_search_items({ query, ...options });\n  }\n}\n\n// Or choose based on use case\nconst useLocal = true; // Set based on your needs\nconst searchTool = useLocal ? zotero_local_zotero_search_items : zotero_cloud_zotero_search_items;\nconst results = searchTool({ query: \"your search\" });"}]}}