Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add ai-analyst-lab/ai-analyst --skill archive-analysisgit clone --depth 1 https://github.com/ai-analyst-lab/ai-analystWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/ai-analyst-lab/ai-analyst/archive-analysis)<a href="https://agentmods.dev/skills/ai-analyst-lab/ai-analyst/archive-analysis"><img src="https://agentmods.dev/badge/skills/ai-analyst-lab/ai-analyst/archive-analysis/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/ai-analyst-lab/ai-analyst/archive-analysis"><img src="https://agentmods.dev/badge/skills/ai-analyst-lab/ai-analyst/archive-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00178 | $0.02499 |
| Opus 5 | $0.00089 | $0.01249 |
| Sonnet 5 | $0.00036 | $0.00500 |
| Haiku 4.5 | $0.00018 | $0.00250 |
Grade A, and why
archive-analysis scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 234 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Skill: Archive Analysis
Purpose
Save a completed analysis to the knowledge system's analysis archive for future recall. Captures key findings, metrics used, agents invoked, and output file paths so that past work can be referenced in future sessions.
When to Use
- After completing an L3+ analysis (post-validation)
- After
/run-pipelinecompletes successfully - User says "save this analysis" or "archive this"
- Automatically triggered at the end of Step 18 (Close the Loop)
- VERIFICATION MODE: User says "verify the archive" or "show me what was captured" — read existing entry, don't create new
Instructions
Step 0: Determine Mode
Check if this is an archive request (create new entry) or a verification request (read existing entry).
Verification signals:
- User says "verify", "check", "show me what was captured", "did it save", "was it archived"
- User mentions pipeline "auto-saved" or "already completed"
- No new findings mentioned — just wants to see what's already there
If verification: Skip to Verification Mode (below). Otherwise, proceed to Step 1.
Step 1: Gather Analysis Metadata from Session Context
Record only what exists: findings, metrics, agents, and files come from the files and session
history listed below, or from what the user stated. Anything not found is null or [], never
invented.
Where to look:
- Pipeline state — Read
working/session_state.yamlif it exists (contains pipeline progress, agents run, resume instructions) - Active dataset — Read
.knowledge/active.yamlfor dataset ID - Output files — Scan
outputs/andworking/directories for artifacts created in this session (usels -ltto find recent files) - Validation report — Look for
working/validation_report.mdorworking/validation_summary.jsonfor confidence grade - User's stated findings — If user provides key findings in their request, use those verbatim
What to extract:
- Title: Derive from the original question or business context (check session history for the initial analytical question)
- Question: The original user question (look back in conversation for the first analytical request)
- Question level: From the Question Router classification (L1-L5) — check if router was invoked
- Dataset ID: From
.knowledge/active.yaml - Key findings:
- If validation report exists, extract from there
- Otherwise, check
working/analysis_summary.mdoroutputs/narrative.md - If nothing exists, use findings the user mentioned in their archive request
- Format as single-sentence bullets with numbers
- Metrics used:
- Check validation report or analysis summary for metric references
- Scan SQL queries in
working/*.sqlfor column names - Match against
.knowledge/metrics/index.yamlif available
- Agents used:
- Read
working/session_state.yamlif pipeline was used - Check conversation history for agent invocations (look for "Task" tool uses)
- List in execution order
- Read
- Output files:
- Run
ls -lt outputs/ working/ | head -20to find recent files - Filter for files created during this session (check timestamps)
- Include both deliverables (outputs/) and working files (working/)
- ONLY list files that actually exist — check the directory before listing
- If no files exist or user didn't mention any outputs, set
output_files: []
- Run
- Tags: Auto-generate from:
- Keywords in the original question (mobile, checkout, seasonal, etc.)
- Metric names used
- Dataset name
- Analysis type (funnel, root-cause, segmentation, etc.)
- Confidence:
- Read from
working/validation_report.mdorworking/validation_summary.json - If validation was not run, set to
nulland note it
- Read from
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 2d ago First seen · 234 lines · 178 tokens per session scan A 0db5873f1dc2
archive-analysis is a skill published in the GitHub repository ai-analyst-lab/ai-analyst (298 stars, last pushed 3d ago), licensed MIT. It adds 178 tokens to every session and 2,499 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-12.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
local-ai-agents
Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…
next-cache-components-adoption
Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…
chronicle
Analyze Copilot session history for standup reports, usage tips, session search, and session reindexing. Use when the user asks for a standup, daily summary, usage tips, workflow recommendations, wants to search or find past sessions by keyword/file/PR, wants to reindex their session store, or asks about deleting…
chat-pet-sprite-creation
Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.
cpu-profile-analysis
Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…