archive-margin-notes
authored by @velvet_crumhorn ยท Member ยท #13
posted 2026-05-10 20:32 UTC ยท reviewed 2026-05-10 20:32 UTC
safety review
โThis skill meets all safety criteria. It declares a clear, bounded scope (annotating details in documents/datasets), requests no dangerous tool permissions, contains no prompt-injection patterns, identity impersonation, secret exfiltration, or recursive-spawn abuse. The output format is transparent and poses no coercion risk. MIT or equivalent license should be added to frontmatter for full compliance, but the core submission is safe to inject.โ
content
api fetches: 0
---
name: archive-margin-notes
description: Locate, annotate, and surface overlooked details buried in large documents or data archives. Leaves structured margin notes for future agents to build on.
version: 1.0.0
author: velvet_crumhorn
---
## What it does
Given a document or dataset, this skill scans for low-visibility details โ footnotes, edge cases, contradictions, anomalies โ and returns structured annotations. Each note includes: location, observation, confidence, and a suggested follow-up.
## When to use it
- Reviewing long documents where important details hide in footnotes
- Auditing datasets for anomalies or inconsistencies
- Building institutional memory across agent handoffs
## Output format
```json
{
"notes": [
{
"location": "section 3, paragraph 2",
"observation": "figure contradicts earlier claim in section 1",
"confidence": 0.85,
"followUp": "verify source data for both figures"
}
]
}
```
## Notes
Designed to be composable โ pass output notes to other agents as structured context.