Crawler Summary

zotero-interface answer-first brief

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

Claim this agent
Agent DossierGitHubSafety: 94/100

zotero-interface

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

OpenClawself-declared

Public facts

5

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals3 GitHub stars

Capability contract not published. No trust telemetry is available yet. 3 GitHub stars reported by the source. Last updated 4/15/2026.

3 GitHub starsTrust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Guoxh

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

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.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    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.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Guoxh

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Adoption (1)

Adoption signal

3 GitHub stars

profilemedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

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 -200

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

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

Full README

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.

Zotero Interface Skill

Overview

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.

Available Tools

1. zotero_cloud_zotero_search_items / zotero_local_zotero_search_items

Search for items in your Zotero library.

Parameters:

  • query: Search query string
  • qmode: 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.

2. zotero_cloud_zotero_item_metadata / zotero_local_zotero_item_metadata

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.

3. zotero_cloud_zotero_item_fulltext / zotero_local_zotero_item_fulltext

Get full text content of a Zotero item.

Parameters:

  • item_key: Zotero item key

Returns: Full text content when available (may return error if not accessible).

When to use: Reading paper content for analysis, summarization, or extraction.

Cloud vs Local Tools

OpenCode provides two sets of Zotero tools for different use cases:

zotero_cloud_* Tools

  • Purpose: Access Zotero via web API
  • When to use:
    • Remote access to Zotero library
    • When local Zotero application isn't running
    • Accessing cloud-synced libraries
  • Performance: Slower (network requests)
  • Availability: Always available if Zotero web API is configured

zotero_local_* Tools

  • Purpose: Direct access to local Zotero database
  • When to use:
    • Faster local access
    • Direct database queries
    • Offline operation
    • Bulk processing
  • Performance: Faster (direct SQLite access)
  • Requirements: Local Zotero installation with database file

Tool Selection Guide

// 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" });

Common Workflows

Workflow 1: Literature Search and Summary

  1. Search for papers on a topic
  2. Retrieve metadata for relevant items
  3. Format references in APA7 or other styles
  4. Access full text for detailed reading
  5. Create structured summaries

Workflow 2: Citation Management

  1. Search for specific papers by title/author
  2. Extract bibliographic metadata
  3. Format references for papers/reports
  4. Create reference lists in proper citation style

Workflow 3: Literature Review Creation

  1. Comprehensive search on research topic
  2. Retrieve abstracts and metadata
  3. Read full text of key papers
  4. Create thematic summaries
  5. Generate structured literature reviews

Best Practices

Search Strategies

  • Start with broad searches using qmode: "everything"
  • Refine with qmode: "titleCreatorYear" for precise matches
  • Use tag filters for categorized searches
  • Limit results to manageable numbers (10-20 for initial review)

Metadata Handling

  • Always check for complete metadata (authors, date, publication)
  • Extract DOI/URL for proper citation formatting
  • Note abstract availability for quick screening
  • Check for attached PDFs in storage directory

Full Text Access

  • Full text retrieval may fail for some items
  • Check Zotero storage directory for PDF attachments
  • Use pdftotext command-line tool to extract text from PDFs
  • Path: ~/Zotero/storage/

Reference Formatting

APA7 Format Examples:

  • Journal article: Author, A. A., & Author, B. B. (Year). Title. Journal, Volume(Issue), Pages. DOI
  • Book: Author, A. A. (Year). Title. Publisher.
  • Chapter: Author, A. A., & Author, B. B. (Year). Chapter title. In E. E. Editor (Ed.), Book title (pp. xx-xx). Publisher.

Error Handling

Common Issues

  1. Full text not accessible: Use PDF extraction from storage directory
  2. Incomplete metadata: Cross-reference with identifiers (DOI/URL)
  3. Search returns attachments: Search again with qmode: "titleCreatorYear" for main items
  4. Item keys not found: Verify key format and search again
  5. Tool not found errors: Ensure you're using correct tool names (zotero_cloud_* or zotero_local_* prefixes)
  6. Local tools failing: Check if local Zotero is running and database is accessible
  7. Cloud tools failing: Verify Zotero web API configuration and internet connection

PDF Extraction Commands

# Find PDFs in Zotero storage
find ~/Zotero/storage -name "*.pdf" -type f | head -20

# Extract text from PDF
pdftotext "/path/to/pdf" - | head -100

Examples

Example 1: Search and Format References

// 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
});

Example 2: Create Literature Summary

// 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 });
  }
}

Integration with Other Skills

Obsidian Integration

  • Create literature notes in Obsidian markdown format
  • Use wikilinks for paper connections
  • Add tags for categorization
  • Save to ~/Obsidian/Inbox/ or appropriate vault location

PDF Skill Integration

  • Use PDF skill for advanced PDF processing
  • Extract tables, images, or specific sections
  • Combine with Zotero metadata

Storage Location

  • Zotero database: ~/Zotero/zotero.sqlite
  • PDF attachments: ~/Zotero/storage/
  • Use find commands to locate specific papers

Quick Reference

Common Commands

# 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

Search Patterns

  • Author search (local): zotero_local_zotero_search_items({query: "Smith", qmode: "titleCreatorYear"})
  • Topic search (cloud): zotero_cloud_zotero_search_items({query: "topic keywords", qmode: "everything"})
  • Tag filter (local with fallback):
try {
  zotero_local_zotero_search_items({query: "search", tag: "review"});
} catch {
  zotero_cloud_zotero_search_items({query: "search", tag: "review"});
}

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
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"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

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

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

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

OPENCLAW
GITHUB_REPOScherry-studio

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

MCPOPENCLAW
GITHUB_REPOSAionUi

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

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

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.