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 tool or library to the agentic-context research repo as a structured reference summary.
REVIEWED.md first)triage-tool first, then promote to ANALYSIS-<name>.mdTriage is a quality gate, not a catalogue entry. The goal is a reproducible, honest assessment.
REVIEWED.md; promotion to ANALYSIS-*.md and vendoring both require explicit user confirmation — never automatic.<author-or-org>-<tool-name> (e.g. versatly-clawvault, press-longchat).
For well-known single-name tools, use just the tool name (e.g. context-mode, memv).REVIEWED.md and references/REFERENCE_INDEX.md for the slug or repo URL.Assign one or more tags from this controlled list:
| Tag | Meaning |
|---|---|
compression | Reduces token count (summarisation, pruning, compaction) |
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 |
cli | Operated via command-line interface |
daemon | Runs as a background process |
mcp-server | Exposes capabilities via MCP protocol |
session-lifecycle | Manages wake/sleep/checkpoint across sessions |
retrieval | RAG / retrieval-augmented context feeding |
Before writing the summary, confirm the tool is in scope for this repo:
If borderline or out of scope, note this clearly in the summary and REVIEWED.md disposition.
Create references/<slug>.md using templates/REFERENCE-tool.md. Populate every section:
N/A).(as reported).Keep language precise. Do not pad. Mark all unverified claims.
Ask the user whether to vendor the repo into tools/:
tools/<repo-name>/ and record the pinned commit in the reference frontmatter local_clone field. Do this for tools that warrant code-level inspection.Do not vendor without confirmation.
Add a row to the summary table at the top (reverse-chronological):
| <today's date> | <slug> | tool | pending | <one-line description> |Add a detailed section below the table:
## <slug> — <Tool name>
- **Repo**: <URL>
- **Author**: <author/org>
- **Version**: <vX.Y.Z / commit>
- **Language**: <language>
- **Tags**: <tags>
- **Summary**: <2–3 sentences>
- **Scope fit**: in scope / borderline / out of scope — <reason>
- **Disposition**: pending — awaiting user decision on promotionAdd a row under the most relevant category table.
Summarise what was created. Then ask:
This tool is now in
REVIEWED.mdas pending. Would you like to:
- Promote it to a standalone
ANALYSIS-<slug>.mddeep dive?- Vendor the repo into
tools/for code-level inspection?- Keep it in REVIEWED.md for now?
- Skip it (mark as not promoted with reasoning)?
# Check for duplicate before starting
grep -i "<slug-or-repo-url>" REVIEWED.md references/REFERENCE_INDEX.md
# Fetch tool README
curl -s "https://raw.githubusercontent.com/<owner>/<repo>/main/README.md"
# Create reference file from template
cp templates/REFERENCE-tool.md references/<slug>.md
# Vendor as submodule (only after explicit user confirmation)
git submodule add <repo-url> tools/<repo-name>
# Add triage entry to REVIEWED.md (reverse-chronological)
# | YYYY-MM-DD | <slug> | tool | pending | <one-line description> |WHY: Tool benchmarks are often run on curated inputs under favourable conditions.
BAD: "Achieves 60% token reduction." GOOD: "Reports 60% token reduction on their internal benchmark (as reported, README)."
WHY: Re-triaging creates conflicting entries and wastes effort.
BAD: Creating a new references file without checking REVIEWED.md.
GOOD: grep -i "<slug>" REVIEWED.md references/REFERENCE_INDEX.md first.
WHY: Vendoring changes git state and submodule config — a deliberate action, not automatic.
BAD: Running git submodule add during triage.
GOOD: Offer vendoring as a follow-up option after the summary is written.
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