Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
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. --- 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 managin Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
zotero-interface is best for boolean workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
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. --- 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 managin
Public facts
5
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Guoxh
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/guoxh/zotero-interface-skill.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Guoxh
Protocol compatibility
OpenClaw
Adoption signal
3 GitHub stars
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
javascript
// Use local for faster access to local Zotero database
zotero_local_zotero_search_items({
query: "situated learning",
qmode: "everything",
limit: 20
})
// Use cloud for remote access or when local Zotero isn't running
zotero_cloud_zotero_search_items({
query: "situated learning",
qmode: "everything",
limit: 20
})javascript
// Recommended pattern: Try local first, fallback to cloud
function searchZotero(query, options = {}) {
try {
// Try local first for speed
return zotero_local_zotero_search_items({ query, ...options });
} catch (localError) {
// Fallback to cloud if local fails
return zotero_cloud_zotero_search_items({ query, ...options });
}
}
// Or choose based on use case
const useLocal = true; // Set based on your needs
const searchTool = useLocal ? zotero_local_zotero_search_items : zotero_cloud_zotero_search_items;
const results = searchTool({ query: "your search" });bash
# Find PDFs in Zotero storage find ~/Zotero/storage -name "*.pdf" -type f | head -20 # Extract text from PDF pdftotext "/path/to/pdf" - | head -100
javascript
// Search for papers using local tools (faster)
const results = zotero_local_zotero_search_items({
query: "machine learning",
qmode: "titleCreatorYear",
limit: 5
});
// Get metadata for each
results.forEach(item => {
const metadata = zotero_local_zotero_item_metadata({
item_key: item.key
});
// Format APA7 reference
});
// Alternative using cloud tools
const cloudResults = zotero_cloud_zotero_search_items({
query: "machine learning",
qmode: "titleCreatorYear",
limit: 5
});javascript
// Search topic using cloud tools (works remotely)
const papers = zotero_cloud_zotero_search_items({
query: "artificial intelligence ethics",
qmode: "everything"
});
// Retrieve abstracts and key info
const summaries = papers.map(paper => {
const meta = zotero_cloud_zotero_item_metadata({
item_key: paper.key
});
return {
title: meta.title,
authors: meta.authors,
year: meta.date,
abstract: meta.abstract
};
});
// For local access with fallback
function getPaperMetadata(itemKey) {
try {
return zotero_local_zotero_item_metadata({ item_key: itemKey });
} catch (error) {
return zotero_cloud_zotero_item_metadata({ item_key: itemKey });
}
}bash
# List PDFs in Zotero storage
find ~/Zotero/storage -name "*.pdf" -type f | head -30
# Search for specific author papers
find ~/Zotero/storage -name "*.pdf" -type f -exec basename {} \; | grep -i "author name"
# Extract text from PDF
pdftotext "path/to/pdf" - | head -200Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
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. --- 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 managin
This skill provides comprehensive interface capabilities for working with Zotero reference management software through opencode's Zotero tools. It enables searching academic literature, retrieving bibliographic metadata, accessing full text content, and creating organized literature summaries.
Search for items in your Zotero library.
Parameters:
query: Search query stringqmode: Query mode - "titleCreatorYear" (default) or "everything"tag: Optional tag filter (supports boolean searches)limit: Maximum results (default: 10)Usage:
// Use local for faster access to local Zotero database
zotero_local_zotero_search_items({
query: "situated learning",
qmode: "everything",
limit: 20
})
// Use cloud for remote access or when local Zotero isn't running
zotero_cloud_zotero_search_items({
query: "situated learning",
qmode: "everything",
limit: 20
})
When to use: Initial literature searches, finding papers by topic/author.
Get detailed metadata for a specific Zotero item.
Parameters:
item_key: Zotero item key (from search results)Returns: Title, authors, publication details, abstract, identifiers (DOI, URL, ISBN), tags.
When to use: Getting complete bibliographic information for citation formatting.
Get full text content of a Zotero item.
Parameters:
item_key: Zotero item keyReturns: Full text content when available (may return error if not accessible).
When to use: Reading paper content for analysis, summarization, or extraction.
OpenCode provides two sets of Zotero tools for different use cases:
// Recommended pattern: Try local first, fallback to cloud
function searchZotero(query, options = {}) {
try {
// Try local first for speed
return zotero_local_zotero_search_items({ query, ...options });
} catch (localError) {
// Fallback to cloud if local fails
return zotero_cloud_zotero_search_items({ query, ...options });
}
}
// Or choose based on use case
const useLocal = true; // Set based on your needs
const searchTool = useLocal ? zotero_local_zotero_search_items : zotero_cloud_zotero_search_items;
const results = searchTool({ query: "your search" });
qmode: "everything"qmode: "titleCreatorYear" for precise matchespdftotext command-line tool to extract text from PDFs~/Zotero/storage/APA7 Format Examples:
qmode: "titleCreatorYear" for main itemszotero_cloud_* or zotero_local_* prefixes)# Find PDFs in Zotero storage
find ~/Zotero/storage -name "*.pdf" -type f | head -20
# Extract text from PDF
pdftotext "/path/to/pdf" - | head -100
// Search for papers using local tools (faster)
const results = zotero_local_zotero_search_items({
query: "machine learning",
qmode: "titleCreatorYear",
limit: 5
});
// Get metadata for each
results.forEach(item => {
const metadata = zotero_local_zotero_item_metadata({
item_key: item.key
});
// Format APA7 reference
});
// Alternative using cloud tools
const cloudResults = zotero_cloud_zotero_search_items({
query: "machine learning",
qmode: "titleCreatorYear",
limit: 5
});
// Search topic using cloud tools (works remotely)
const papers = zotero_cloud_zotero_search_items({
query: "artificial intelligence ethics",
qmode: "everything"
});
// Retrieve abstracts and key info
const summaries = papers.map(paper => {
const meta = zotero_cloud_zotero_item_metadata({
item_key: paper.key
});
return {
title: meta.title,
authors: meta.authors,
year: meta.date,
abstract: meta.abstract
};
});
// For local access with fallback
function getPaperMetadata(itemKey) {
try {
return zotero_local_zotero_item_metadata({ item_key: itemKey });
} catch (error) {
return zotero_cloud_zotero_item_metadata({ item_key: itemKey });
}
}
~/Obsidian/Inbox/ or appropriate vault location~/Zotero/zotero.sqlite~/Zotero/storage/find commands to locate specific papers# List PDFs in Zotero storage
find ~/Zotero/storage -name "*.pdf" -type f | head -30
# Search for specific author papers
find ~/Zotero/storage -name "*.pdf" -type f -exec basename {} \; | grep -i "author name"
# Extract text from PDF
pdftotext "path/to/pdf" - | head -200
zotero_local_zotero_search_items({query: "Smith", qmode: "titleCreatorYear"})zotero_cloud_zotero_search_items({query: "topic keywords", qmode: "everything"})try {
zotero_local_zotero_search_items({query: "search", tag: "review"});
} catch {
zotero_cloud_zotero_search_items({query: "search", tag: "review"});
}
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/snapshot"
curl -s "https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/contract"
curl -s "https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 5d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/guoxh-zotero-interface-skill/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T01:00:58.151Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "boolean",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:boolean|supported|profile"
}Facts JSON
[
{
"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
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub · GitHub",
"description": "Fresh crawlable documentation was indexed for 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
}
]Sponsored
Ads related to zotero-interface and adjacent AI workflows.