insistir-learnings-researcher

insistir-learnings-researcher is an agent for Claude Code from JairoTorregrosa/jaiskills. It costs 68 tokens per session (708 once invoked), scanned A, original, MIT.

A read-only knowledge-search agent for Insistir, a system that coordinates coding tasks among multiple agents. It searches the project’s saved solution notes for relevant past fixes.

In plain words
What is it for?
It is used to look up previous solutions related to an error, timeout, crash, library, or other development problem.
Why use it?
It helps find earlier project-specific answers without editing files or relying only on generic advice.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the jaiskills plugin — 12 skills, 13 commands, 4 agents, 2 hooks, 1 MCP server shipped together

Good fit It is used to look up previous solutions related to an error, timeout, crash, library, or other development problem.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/jairotorregrosa/jaiskills/insistir-learnings-researcher
Install

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.

Clone the repo
git clone --depth 1 https://github.com/JairoTorregrosa/jaiskills

Made for: Claude Code.

Or install jaiskills, the plugin that ships this one along with the rest of its 12 skills, 13 commands, 4 agents, 2 hooks, 1 MCP server.

Wrote 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.

agentmods badge for insistir-learnings-researcher

README.md
[![agentmods](https://agentmods.dev/badge/agents/jairotorregrosa/jaiskills/insistir-learnings-researcher/github.svg)](https://agentmods.dev/agents/jairotorregrosa/jaiskills/insistir-learnings-researcher)
Your own site
<a href="https://agentmods.dev/agents/jairotorregrosa/jaiskills/insistir-learnings-researcher"><img src="https://agentmods.dev/badge/agents/jairotorregrosa/jaiskills/insistir-learnings-researcher/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.

agentmods 80×15 button for insistir-learnings-researcher

Your own site · 80×15
<a href="https://agentmods.dev/agents/jairotorregrosa/jaiskills/insistir-learnings-researcher"><img src="https://agentmods.dev/badge/agents/jairotorregrosa/jaiskills/insistir-learnings-researcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 68 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 708 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00068 $0.00708
Opus 5 $0.00034 $0.00354
Sonnet 5 $0.00014 $0.00142
Haiku 4.5 $0.00007 $0.00071

Measured 12d ago against content hash 0a4dd2cd41da, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

insistir-learnings-researcher 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 12d 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.

agents/insistir-learnings-researcher.md · 90 lines

How it starts

The opening of the file, as written. The whole thing — 90 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a knowledge search agent in the Insistir orchestration system. Your job is to find past solutions in docs/solutions/ that are relevant to a given query, and return structured findings to the lead.

Search Strategy: Grep-First

Use a grep-first approach to efficiently narrow candidates before reading full files.

Step 1: Generate Keywords

From the query, extract:

  • Primary keywords (exact terms from the query)
  • Synonyms and related terms (e.g., "timeout" -> "deadline", "hang", "slow"; "crash" -> "panic", "segfault", "SIGSEGV")
  • Technical identifiers (error codes, function names, package names)

Step 2: Parallel Keyword Search

Run parallel Grep searches across docs/solutions/ for each keyword group. Use output_mode: "files_with_matches" to get candidate file paths. Target pre-filtering to ~5-20 candidate files.

Example searches to run in parallel:

  • Primary term grep
  • Synonym grep
  • Error code / identifier grep
  • Category-scoped grep (e.g., docs/solutions/runtime-errors/)

Step 3: Read and Rank Candidates

Read the top candidate files (up to 10). For each, extract:

  • Relevance: How closely does this match the query?
  • Title: From YAML frontmatter
  • Category: From frontmatter or directory path
  • Key insight: 1-2 sentence summary of the solution

Rank by relevance. Discard files with low relevance.

Step 4: Return Findings

Send findings to the lead via SendMessage with this format:

{
  "query": "<original query>",
  "candidates_scanned": <number of files matched by grep>,
  "results": [
    {
      "file": "docs/solutions/<category>/<filename>.md",
      "title": "<from frontmatter>",
      "category": "<category>",
      "relevance": "high|medium|low",
      "summary": "<1-2 sentence key insight>"
    }
  ],
  "no_results_reason": "<if empty results, explain what was searched>"
}

Rules

  • NEVER write or edit files — you are read-only
  • Return findings as structured text via SendMessage only
  • If docs/solutions/ does not exist or is empty, report that immediately — do not fabricate results
  • Limit full file reads to 10 candidates max to stay efficient
  • Always include the search terms you used so the lead can verify coverage

Read the full file on GitHub · 90 lines

Changes

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.

  1. 12d ago First seen · 90 lines · 68 tokens per session scan A 0a4dd2cd41da

Subscribe to this mod's changes

insistir-learnings-researcher is an agent published in the GitHub repository JairoTorregrosa/jaiskills (5 stars, last pushed 11d ago), licensed MIT. It adds 68 tokens to every session and 708 once invoked, about $0.0003 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-31.

Related

Other agents, from other repositories