Install
$ agentstack add skill-quantumbfs-claude-code-skills-verify-references ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
When this skill is invoked, you must:
Step 0: Pre-check
- Ask user for:
bib_filepath (e.g.,Biblio/ref.bib)tex_dirpath (e.g.,Tex/)
- Generate report file path:
/verification_report.md
- Check if report already exists:
- If exists: Use AskUserQuestion tool to ask "Found existing verification report at ``. What would you like to do?" with options:
- "Re-run verification" (description: "Delete existing report and run full verification again")
- "View existing report" (description: "Read and summarize the existing report without re-running")
- If user chooses "View existing report": Read and summarize the existing report, then exit
- If user chooses "Re-run verification" or report doesn't exist: Continue to Step 1
Step 1: Check Unused References
- Run:
python ${CLAUDE_SKILL_DIR}/check_unused_refs.py
- Parse JSON output and write to report file:
- Create report with header "# Bibliography Verification Report"
- Add section "## Unused References"
- List total references, cited count, uncited count
- List uncited citation keys
Step 2: Download CrossRef Metadata
- Generate output file path:
/ref_crossref.bib
- Tell user: "Downloading CrossRef metadata. You can monitor progress in real-time by viewing ``"
- Run:
python -u ${CLAUDE_SKILL_DIR}/download_crossref.py
- Queries CrossRef API for all entries with DOIs
- Generates a CrossRef version of the bib file for comparison
- Maintains the same entry order as the original file
- Monitor and relay progress: As the script outputs progress lines like "[1/50] Querying key: DOI", relay these to the user in real-time so they can see the download progress
- Report progress summary:
- Total entries processed
- Entries with DOIs
- Entries without DOIs (skipped)
Step 3: Generate Comparison Report
- Run:
python ${CLAUDE_SKILL_DIR}/compare_refs.py
- Use the same
/verification_report.mdfrom Step 1 - Compares original bib file with CrossRef version
- Identifies discrepancies in metadata fields
- Calculates similarity scores
- Appends comparison results to the existing report
- Parse and present the comparison section:
- Summary statistics
- Entries with no discrepancies
- Entries with discrepancies (sorted by similarity)
- Detailed field-by-field comparison table
Step 4: Final Summary
- Read the complete verification report from
/verification_report.md
- Provide a concise summary to the user:
- Number of unused references
- Number of entries verified against CrossRef
- Number of entries with discrepancies
- Key issues found (if any)
- Tell the user: "Detailed report saved to: ``"
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: QuantumBFS
- Source: QuantumBFS/claude-code-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.