Analysis toolkit for agentic context management research. Triage papers and tools into structured reference summaries and REVIEWED.md entries following the agentic-context repo conventions.
93
93%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
Add a new academic paper to the agentic-context research repo as a structured reference summary.
2310.08560), arxiv URL, or paper PDF pathREVIEWED.md first)triage-paper first, then promote to ANALYSIS-*.mdTriage is a quality gate, not a data-entry task. The goal is a scannable, honest record.
REVIEWED.md; promotion to ANALYSIS-*.md requires a deliberate user decision — never automatic.<firstauthor-surname>-<2-3-word-topic> (e.g. jiang-llmlingua, press-longchat).REVIEWED.md and references/REFERENCE_INDEX.md for the slug or arxiv ID.Assign one or more tags from this controlled list:
| Tag | Meaning |
|---|---|
compression | Reduces token count (summarisation, pruning, distillation) |
tiered-loading | Priority-based injection (L0/L1/L2, lazy vs eager) |
token-budgeting | Hard caps, soft priorities, eviction policies |
injection | How content enters the context window |
benchmark | Evaluation dataset or framework |
survey | Overview paper covering the topic broadly |
retrieval | RAG / retrieval-augmented context |
Create references/<slug>.md using templates/REFERENCE-paper.md. Populate every section:
N/A).(as reported).Keep language precise. Do not pad. Quote all numbers with their source.
Add a row to the summary table at the top (reverse-chronological):
| <today's date> | <slug> | paper | pending | <one-line description> |Add a detailed section below the table:
## <slug> — <Full paper title>
- **arxiv**: <ID>
- **Authors**: <list>
- **Date**: <YYYY-MM-DD>
- **Tags**: <tags>
- **Summary**: <2–3 sentences>
- **Disposition**: pending — awaiting user decision on promotionAdd a row under the most relevant category table. If no category fits, add it to the closest one and note it for the user.
Summarise what was created. Then ask:
This paper is now in
REVIEWED.mdas pending. Would you like to:
- Promote it to a standalone
ANALYSIS-arxiv-<id>-<slug>.mddeep dive?- Keep it in REVIEWED.md for now?
- Skip it (mark as not promoted with reasoning)?
# Check for duplicate before starting
grep -i "<arxiv-id-or-slug>" REVIEWED.md references/REFERENCE_INDEX.md
# Fetch arxiv abstract (title, authors, date)
curl -s "https://arxiv.org/abs/<id>"
# Create reference file from template
cp templates/REFERENCE-paper.md references/<slug>.md
# Add triage entry to REVIEWED.md (reverse-chronological)
# | YYYY-MM-DD | <slug> | paper | pending | <one-line description> |WHY: Fabricated metrics corrupt the research record.
BAD: "Achieves 87% recall on LongMemEval." GOOD: "Reports 87% recall on LongMemEval (as reported, Table 3)."
WHY: Re-triaging the same paper wastes effort and creates conflicting entries.
BAD: Creating a new references file without checking REVIEWED.md.
GOOD: grep -i "<slug>" REVIEWED.md references/REFERENCE_INDEX.md first.
WHY: Promotion to ANALYSIS-*.md is a quality gate, not automatic.
BAD: Creating ANALYSIS-*.md as part of triage. GOOD: Triage to REVIEWED.md, then ask the user.
references/<slug>.md in the consuming project