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 agentmods add skills/agno-agi/context/researchnpx skills add agno-agi/context --skill researchgit clone --depth 1 https://github.com/agno-agi/contextWrote 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/agno-agi/context/research)<a href="https://agentmods.dev/skills/agno-agi/context/research"><img src="https://agentmods.dev/badge/skills/agno-agi/context/research.svg" alt="Measured on agentmods" 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 | $0.00102 | $0.01425 |
| Opus 5 | $0.00051 | $0.00713 |
| Sonnet 5 | $0.00020 | $0.00285 |
| Haiku 4.5 | $0.00010 | $0.00143 |
Grade A, and why
research 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 4d 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 — 96 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Research
Runtime skill — a playbook the deployed @context agent runs for its owner, invoked in natural language. Not a coding-agent workflow; those live in
.agents/skills/.
Turn a topic into a durable, sourced brief filed in the knowledge base. Like
process-today, this one writes — it ends in an update_knowledge call, not
just a summary. It still never acts on the outside world: it reads and files, and
nothing leaves.
Procedure
- Pin the topic and the question. Settle what the owner actually wants to know ("research how teams handle multi-tenant RBAC" → the question is how do teams do this, and where does it leave us). If the topic is genuinely ambiguous and a wrong guess wastes the work, ask one clarifying question.
- Sweep what we already know first — internal before web. Always do this,
even for a topic that looks purely external: it's how you avoid duplicating a
page that already exists and how you learn where the brief should land. A
quick sweep that comes back empty is fine; skipping it is not.
query_knowledge— route through the index to any spec or page already on the topic. If one exists, the brief extends it; it doesn't shadow it.query_crm— contacts, notes, projects, meetings tagged to the topic (our relationship and history with it).query_slack(when connected) — recent threads where the team discussed it; often the freshest internal context.
- Go to the web for current and external background.
query_webfor what we can't know from our own notes: public facts, recent developments, how others approach it. Keep queries to the public subject, not the owner's private notes. Skip the web only when the topic is purely internal and the internal sweep already answers it. - Read the codebase when the topic is framework-related. If the question
touches how @context is built or how Agno does something (a toolkit, a
provider, the scheduler, AgentOS), read the repo's files (
list_files,read_file) to see how it uses it, andquery_webfor anything the code doesn't answer. - Synthesize a clear, sourced brief. Lead with the answer. Attribute every
claim to where it came from, and keep web background visibly separate from our
own record: tag lines
(from web),(on file), or(auto-summarized, unverified)for anything you distilled but haven't confirmed. Never blend an unverified web claim into our known facts. - File it with
update_knowledge. Filing is frictionless (no approval gate), so land it directly:- Topic already covered → file into that spec's right sub-file (a decision →
decisions.md, design detail →design.md, status → theREADME.md) and keep the status table current. - New topic that's a real spec → a new folder-per-spec following
_template/, plus a row in the rootREADME.mdindex. - A standalone write-up that isn't a spec → a loose prose page ("what we know about X"). The write sub-agent carries the provenance labels through, so keep them in the prose you hand it.
- Topic already covered → file into that spec's right sub-file (a decision →
- Make the brief findable — don't orphan your own research. Filing isn't
done until the new page or spec has a row in the root
README.mdindex. A new spec earns its row through the write tool's own rules; for a new loose page, make a secondupdate_knowledgecall that adds a one-line index row pointing at the path you just wrote. Skipping this lands the brief as exactly the kind of orphan theknowledge-reviewsweep exists to flag. - Report what you filed and where. One line per file touched (what + path),
then one line on what you leaned on — "web: 4 sources; on file: the
pgvector-standard spec" — so the owner can see the brief's footing at a
glance. Mirror
process-today's digest.
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.
- 4d ago First seen · 96 lines · 102 tokens per session scan A 50edcb79210d
research is a skill published in the GitHub repository agno-agi/context (11 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 102 tokens to every session and 1,425 once invoked, about $0.0005 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-08-30.
Other skills, from other repositories
verification
Prove that a coding task is actually complete. Use this after meaningful code changes, when tests/builds fail or are skipped, before marking a plan or goal complete, and whenever acceptance depends on runtime, security, recovery, performance, or cross-module evidence.
repository-investigation
Investigate an unfamiliar repository before changing it. Use this whenever a coding task spans multiple modules, asks for architecture or root-cause analysis, names behavior whose implementation location is unknown, or risks editing before enough evidence is gathered.
safe-refactoring
Execute behavior-preserving or intentionally scoped refactors safely. Use this for multi-file renames, component/service extraction, state-management changes, API migrations, concurrency refactors, or any request where unrelated user work and subtle contracts must be preserved.
wegent-knowledge
Knowledge base management and search tools for Wegent. Provides capabilities to list, create, update, and search knowledge bases and documents using RAG retrieval. Use this skill when the user wants to manage knowledge bases, documents, or search for information programmatically.
quantmind-dev
Contributor workflow for the QuantMind codebase. Covers contributor setup (environment + hooks), filing issues, commit format, pull request format, and component development across quantmind/ modules (etl, knowledge, configs, preprocess, rag, flows, mind, utils) with tests, examples, and verification. Use when setting…
knowledge_base
Manage the user's personal knowledge base — knowledge graph, documents, and wiki vault.