gsd-ai-researcher

gsd-ai-researcher is an agent for Claude Code from megamen32/LastHumanCommit. It costs 67 tokens per session (1,658 once invoked), scanned A, a copy of gsd-ai-researcher, MIT.

A research agent that reads official documentation for a chosen AI framework and writes implementation guidance for a project specification. An AI framework is a library or toolkit used to build AI features.

In plain words
What is it for?
It is for researching framework syntax, recommended practices, and implementation details for an AI integration.
Why use it?
It reduces the need to search and condense framework documentation manually. It focuses the guidance on the project's specific use case and records relevant patterns and pitfalls.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Codex; $skill-name invocation.

Part of the gsd plugin — 67 skills, 33 agents shipped together

Good fit It is for researching framework syntax, recommended practices, and implementation details for an AI integration.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/megamen32/lasthumancommit/gsd-ai-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/megamen32/LastHumanCommit

Made for: Claude Code.

Or install gsd, the plugin that ships this one along with the rest of its 67 skills, 33 agents.

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 gsd-ai-researcher

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

Your own site · 80×15
<a href="https://agentmods.dev/agents/megamen32/lasthumancommit/gsd-ai-researcher"><img src="https://agentmods.dev/badge/agents/megamen32/lasthumancommit/gsd-ai-researcher.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 67 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,658 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 95% copy Near-identical to another mod 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.00067 $0.01658
Opus 5 $0.00034 $0.00829
Sonnet 5 $0.00013 $0.00332
Haiku 4.5 $0.00007 $0.00166

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

Security

Grade A, and why

gsd-ai-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 today.

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.

Origin

This is a copy

95% identical to gsd-ai-researcher — 23 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/gsd/agents/gsd-ai-researcher.md · 133 lines

How it starts

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

<codex_agent_role> role: gsd-ai-researcher tools: Read, Write, Bash, Grep, Glob, WebFetch, WebSearch, mcp__context7__* purpose: Researches a chosen AI framework's official docs to produce implementation-ready guidance — best practices, syntax, core patterns, and pitfalls distilled for the specific use case. Writes the Framework Quick Reference and Implementation Guidance sections of AI-SPEC.md. Spawned by $gsd-ai-integration-phase orchestrator. </codex_agent_role>

<documentation_lookup> When you need library or framework documentation, check in this order:

  1. If Context7 MCP tools (mcp__context7__*) are available in your environment, use them:

    • Resolve library ID: mcp__context7__resolve-library-id with libraryName
    • Fetch docs: mcp__context7__get-library-docs with context7CompatibleLibraryId and topic
  2. If Context7 MCP is not available (upstream bug anthropics/claude-code#13898 strips MCP tools from agents with a tools: frontmatter restriction), use the CLI fallback via Bash:

    Step 1 — Resolve library ID:

    npx --yes ctx7@latest library <name> "<query>"
    

    Step 2 — Fetch documentation:

    npx --yes ctx7@latest docs <libraryId> "<query>"
    

Do not skip documentation lookups because MCP tools are unavailable — the CLI fallback works via Bash and produces equivalent output. </documentation_lookup>

<required_reading> Read /tmp/gsd-npm-codex-stage/get-shit-done/references/ai-frameworks.md for framework profiles and known pitfalls before fetching docs. </required_reading>

If prompt contains <required_reading>, read every listed file before doing anything else.

<documentation_sources> Use context7 MCP first (fastest). Fall back to WebFetch.

Framework Official Docs URL
CrewAI https://docs.crewai.com
LlamaIndex https://docs.llamaindex.ai
LangChain https://python.langchain.com/docs
LangGraph https://langchain-ai.github.io/langgraph
OpenAI Agents SDK https://openai.github.io/openai-agents-python
the agent Agent SDK https://docs.anthropic.com/en/docs/claude-code/sdk
AutoGen / AG2 https://ag2ai.github.io/ag2
Google ADK https://google.github.io/adk-docs
Haystack https://docs.haystack.deepset.ai
</documentation_sources>

<execution_flow>

Update AI-SPEC.md at ai_spec_path:

Section 3 — Framework Quick Reference: real installation command, actual imports, working entry point pattern for system_type, abstractions table (3-5 rows), pitfall list with why-it's-a-pitfall notes, folder structure, Sources subsection with URLs.

Section 4 — Implementation Guidance: specific model (e.g., claude-sonnet-4-6, gpt-4o) with params, core pattern as code snippet with inline comments, tool use config, state management approach, context window strategy.

Read the full file on GitHub · 133 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. today First seen · 133 lines · 67 tokens per session scan A c727a77d5395

Subscribe to this mod's changes

gsd-ai-researcher is an agent published in the GitHub repository megamen32/LastHumanCommit (2 stars, last pushed today), licensed MIT. It adds 67 tokens to every session and 1,658 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to gsd-ai-researcher, differing in 23 lines, and is treated as a copy.

Related

Other agents, from other repositories

Prompt Builder

Expert prompt engineering and validation system for creating high-quality prompts - Brought to you by microsoft/edge-ai.

github/awesome-copilot · 24 tokens

Research Harness Engineer

Research harness engineer for experiment campaigns: builds evaluation harnesses that are hard to fool, then keeps every reported number honest - null models first, calibration/held-out separation, baseline reproduction before improvement claims, paired error bars, and guards verified by deliberate breakage.

github/awesome-copilot · 56 tokens

fit

Selects algorithms, tunes hyperparameters, and builds reproducible training pipelines from baseline to production. Use when choosing a model architecture, designing a tuning strategy, or auditing training code for leakage and reproducibility. Trigger with "design training pipeline", "tune model hyperparameters".

jeremylongshore/tons-of-skills-marketplace · 57 tokens

mlops-engineer

ML operations agent for experiment tracking, model registry, feature stores, ML pipelines, model serving, drift monitoring, and AIOps.

pjt222/agent-almanac · 31 tokens

migration-reviewer

Use this agent after aidp-migrate-job completes to review a migrated .ipynb for correctness (NOT just "did it run"). Catches latent issues the cell-execute loop missed — wrong write-mode, lost rows, dropped columns, hardcoded paths, dead Databricks-isms. Outputs a structured review report.

ahmedawan-oracle/claude-code-plugins · 70 tokens

nn-embedding-expert

Embedding trained neural networks and tree ensembles as MINLP constraints via discopt.nn - OMLT-style full-space and reduced-space formulations, ReLU big-M, interval bound propagation, ONNX reader. Use when a trained ML surrogate must live inside an optimization problem.

jkitchin/discopt · 59 tokens