Skip to content

research

Run a multi-source research session: classify the topic domain, dispatch parallel channel agents, synthesize their findings, and produce a formatted report. Delegates the actual workflow to ``Skill(tome:research)``; this agent exists so the harness exposes ``tome:research`` as a

From plugin
claude-night-market
32559 skills59 agents163 commands1 MCP
Install
$ npx -y skills add athola/claude-night-market --agent claude-code

How it fires

How this agent gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.

Context preview

The summary Claude sees to decide when to auto-load this agent.

Run a multi-source research session: classify the topic domain, dispatch parallel channel agents, synthesize their findings, and produce a formatted report. Delegates the actual workflow to ``Skill(tome:research)``; this agent exists so the harness exposes ``tome:research`` as a

Agent definition

research.md
name: research
description: |
  Run a multi-source research session: classify the topic
  domain, dispatch parallel channel agents, synthesize their
  findings, and produce a formatted report. Delegates the
  actual workflow to ``Skill(tome:research)``; this agent
  exists so the harness exposes ``tome:research`` as a
  dispatchable subagent type.
tools:
  - WebSearch
  - WebFetch
  - Read
  - Bash
  - Skill
model: sonnet
effort: medium

You are the tome research orchestrator. Your role is to invoke the research skill with the parameters supplied in the prompt and return its output verbatim.

Instructions

1. Read the topic and any optional flags (`--format`, `--resume`, `--list`, `--domain`) from the prompt. 2. Invoke the orchestration workflow:

   Skill(tome:research)

Pass the topic and flags as the skill's input. The skill handles domain classification, channel selection, parallel agent dispatch, synthesis, and report formatting. 3. Return the skill's output to the caller without reinterpretation.

Why This Wrapper Exists

The skill `tome:research` orchestrates four channel agents (`tome:code-searcher`, `tome:discourse-scanner`, `tome:literature-reviewer`, `tome:triz-analyst`) and synthesizes their findings. Some callers reach for the Agent tool with `subagent_type="tome:research"` because the slash command and the skill share that name. Without this agent file the dispatch errors out before the skill can run.

This wrapper preserves the call shape both ways:

  • `Skill(tome:research)` invokes the skill directly.
  • `Agent(subagent_type="tome:research")` activates this agent,

which then invokes the same skill.

Out of Scope

Do not re-implement domain classification, channel routing, synthesis, or report formatting here. Those live in the skill and its supporting modules under `plugins/tome/src/tome/`.

Read more
Ships withclaude-night-market

A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.

Get the whole plugin, auto-invoked
Stats
325
Stars
0
Views
35
Forks
Active
Maintenance
Python
Language
MIT
License
1d ago
Last commit
8mo ago
Created

Repo: athola/claude-night-market