scholarly-edition — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited scholarly-edition (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Create a complete, citable scholarly edition of a translated historical text with DOI.
Before starting, verify the book has:
Authentication: Steps 2, 3, and 5 require admin authentication. When running as a Claude Code agent, requests go through the local dev server or use session cookies automatically. For manual curl commands, you need an authenticated session.
First, get the book ID and check its readiness:
# Get book details and page statistics
curl -s "https://sourcelibrary.org/api/books/BOOK_ID" | jq '{
title: .title,
display_title: .display_title,
author: .author,
language: .language,
published: .published,
pages_count: .pages_count,
pages_translated: .pages_translated
}'The book API returns pages_count and pages_translated as cached counts. Confirm pages_translated equals pages_count before proceeding. For detailed page-level text, use /api/books/BOOK_ID/text?content=translation.
Generate the scholarly Introduction and Methodology sections:
curl -X POST "https://sourcelibrary.org/api/books/BOOK_ID/editions/front-matter" \
-H "Content-Type: application/json" \
-d '{}'This creates:
Save the response to use when creating the edition.
Create a versioned edition with the generated front matter:
curl -X POST "https://sourcelibrary.org/api/books/BOOK_ID/editions" \
-H "Content-Type: application/json" \
-d '{
"version_label": "First Edition",
"license": "CC-BY-4.0",
"changelog": "Initial scholarly edition with AI-assisted translation.",
"contributors": [
{"name": "Source Library", "role": "editor", "type": "ai"},
{"name": "ORGANIZATION_NAME", "role": "editor", "type": "human"}
],
"front_matter": {
"introduction": "INTRODUCTION_TEXT",
"methodology": "METHODOLOGY_TEXT",
"generated_at": "ISO_DATE",
"generated_by": "gemini-3-flash-preview"
}
}'Note the returned edition_id for the next step.
Test the scholarly EPUB download:
curl -sL "https://sourcelibrary.org/api/books/BOOK_ID/download?format=epub-scholarly" \
-o /tmp/scholarly-test.epub
# Check file size
ls -lh /tmp/scholarly-test.epubThe EPUB should include:
Mint a permanent DOI for the edition:
curl -X POST "https://sourcelibrary.org/api/books/BOOK_ID/editions/mint-doi" \
-H "Content-Type: application/json" \
-d '{"edition_id": "EDITION_ID"}'This will:
The response includes:
doi: The permanent DOI (e.g., 10.5281/zenodo.12345678)doi_url: The resolvable DOI URLzenodo_url: Direct link to Zenodo recordValid SPDX license identifiers:
CC-BY-4.0 - Attribution (recommended for scholarly work)CC-BY-SA-4.0 - Attribution-ShareAlikeCC-BY-NC-4.0 - Attribution-NonCommercialCC-BY-NC-SA-4.0 - Attribution-NonCommercial-ShareAlikeCC0-1.0 - Public DomainFollow semantic versioning:
1.0.0 - First published edition1.1.0 - Minor corrections, improved translations2.0.0 - Major revision, new translationsAfter completion, provide:
| Field | Value |
|---|---|
| Book | [Title] |
| Edition | [Version] - [Label] |
| Pages | [Count] translated |
| DOI | [DOI] |
| DOI URL | [URL] |
| Zenodo Record | [URL] |
| License | [License] |
| EPUB Download | ?format=scholarly |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.