AI SummaryUse when the user wants recent, cross-source evidence from the last 30 days. The runtime is a single v3 pipeline: 3. normalize and dedupe
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "last30days-v3-spec" skill in my project. Please run this command in my terminal: # Install skill into your project mkdir -p .claude/skills/last30days && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/last30days/SKILL.md "https://raw.githubusercontent.com/mvanhorn/last30days-skill/main/skills/last30days/SKILL.md" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Internal architecture spec for the v3 last30days runtime pipeline. Not user-invocable.
Usage guidance for agents
• Prefer --quick for fast iteration. • Prefer default mode when the user wants a balanced answer. • Prefer --deep only when the user explicitly wants maximum recall or the topic is complex enough to justify extra latency. • Prefer --emit=json when downstream code or evaluation will consume the result. • Use --search= only when the user explicitly wants source restrictions.
last30days v3.0.0
Use last30days when the user wants recent, cross-source evidence from the last 30 days. The runtime is a single v3 pipeline: • plan the query • retrieve per (subquery, source) • normalize and dedupe • extract best snippets • fuse with weighted RRF • rerank with one relevance score • cluster evidence • render ranked clusters
Setup: resolve the skill root
`bash for dir in \ "." \ "${CLAUDE_PLUGIN_ROOT:-}" \ "${GEMINI_EXTENSION_DIR:-}" \ "$HOME/.openclaw/workspace/skills/last30days" \ "$HOME/.openclaw/skills/last30days" \ "$HOME/.claude/skills/last30days" \ "$HOME/.agents/skills/last30days" \ "$HOME/.codex/skills/last30days"; do [ -n "$dir" ] && [ -f "$dir/scripts/last30days.py" ] && SKILL_ROOT="$dir" && break done if [ -z "${SKILL_ROOT:-}" ]; then echo "ERROR: Could not find scripts/last30days.py" >&2 exit 1 fi for py in python3.14 python3.13 python3.12 python3; do command -v "$py" >/dev/null 2>&1 || continue "$py" -c 'import sys; raise SystemExit(0 if sys.version_info >= (3, 12) else 1)' || continue LAST30DAYS_PYTHON="$py" break done if [ -z "${LAST30DAYS_PYTHON:-}" ]; then echo "ERROR: last30days v3 requires Python 3.12+. Install python3.12 or python3.13 and rerun." >&2 exit 1 fi `
Default command
`bash "${LAST30DAYS_PYTHON}" "${SKILL_ROOT}/scripts/last30days.py" $ARGUMENTS --emit=compact `
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster