| name | research-digest-wrapper |
| description | Use when the user wants a local research digest from tracked topics or wants to manage tracked research topics. |
| metadata | {"short-description":"Local research digest from tracked topics"} |
OpenCode Runtime Notes
This skill is installed as an OpenCode-native SKILL.md. For runtime-backed
helpers, prefer the shared ai-agents-skills runtime root and the
AAS_RUNTIME_ROOT override instead of assuming a Codex-specific runtime
path.
Research Digest Wrapper
Windows Runtime Commands
On native Windows, use the managed Windows runner and the native runtime command target. Set $runtime to the installed runtime root. Multi-agent installs usually use %LOCALAPPDATA%\ai-agents-skills\runtime. Then run:
$runtime = if ($env:AAS_RUNTIME_ROOT) { $env:AAS_RUNTIME_ROOT } else { "$env:LOCALAPPDATA\ai-agents-skills\runtime" }
& "$runtime\run_skill.bat" "skills/research-digest-wrapper/run_research_digest.bat" <args>
POSIX examples below use run_skill.sh and .sh command targets; use the Windows command target above on native Windows.
Base path
$AAS_RUNTIME_WORKSPACE/skills/research-digest-wrapper/
Use the managed runtime runner rather than invoking the digest script directly.
Shared runner:
bash "$AAS_RUNTIME_ROOT/run_skill.sh"
Use cases
- run my research digest
- list tracked topics
- add or edit tracked topics
- doctor the digest setup
Core execution
bash "$AAS_RUNTIME_ROOT/run_skill.sh" skills/research-digest-wrapper/run_research_digest.sh <COMMAND AND ARGS>
Common actions
run
run --tag TAG --min-priority N
run --use-llm-scoring --use-llm-summary
list-topics
add-topic "<name>" --tag TAG --priority N
edit-topic "<name>" --tag TAG --priority N
disable-topic "<name>" / enable-topic "<name>"
remove-topic "<name>"
backup-topics --reason "REASON"
list-topic-backups
restore-topic-backup <backup-name>
export-topics --output /tmp/topics.tsv
import-topics /tmp/topics.tsv
doctor
rebuild-corpus
Verified example shapes:
bash "$AAS_RUNTIME_ROOT/run_skill.sh" skills/research-digest-wrapper/run_research_digest.sh run --tag graph-theory --min-priority 3
bash "$AAS_RUNTIME_ROOT/run_skill.sh" skills/research-digest-wrapper/run_research_digest.sh add-topic "Token sliding" --tag reconfiguration --priority 5
After execution
Read and summarize:
$AAS_RUNTIME_WORKSPACE/data/research/alerts/digests/latest-digest.md
Tracked topics live at:
$AAS_RUNTIME_WORKSPACE/data/research/alerts/topics.tsv
Writing Style Gate
For any user-facing digest summary, load writing-style-settings.md before
writing. If the digest item or synthesis is mathematical, TCS, graph-theoretic,
Lean-related, or LaTeX manuscript prose, also load math-manuscript-style.md.
Stored digest summaries should record style_profile_ref, active_overlays,
active_requirement_ids, and style_applied; do not accept a bare
style_applied: true assertion as sufficient evidence.