Codex

research-discover

Search for research papers across academic databases

104 stars

Best use case

research-discover is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

It is a strong fit for teams already working in Codex.

Search for research papers across academic databases

Teams using research-discover should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/research-discover/SKILL.md --create-dirs "https://raw.githubusercontent.com/jmagly/aiwg/main/.agents/skills/research-discover/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/research-discover/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How research-discover Compares

Feature / Agentresearch-discoverStandard Approach
Platform SupportCodexLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Search for research papers across academic databases

Which AI agents support this skill?

This skill is designed for Codex.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

Related Guides

SKILL.md Source

# Research Discover Command

Search for relevant research papers across academic databases (arXiv, ACM, IEEE, Semantic Scholar, CrossRef).

## Instructions

When invoked, perform systematic literature search:

1. **Parse Query**
   - Accept natural language search query
   - Extract key terms and constraints
   - Identify domain context (ML, software engineering, HCI, etc.)

2. **Select Databases**
   - Default: Search all available databases
   - If `--source` specified, use only that database
   - Prioritize databases by domain relevance

3. **Execute Search**
   - Query each database API
   - Apply filters: publication year, source type, quality indicators
   - Collect results with metadata (title, authors, DOI, abstract)

4. **Rank Results**
   - Score by relevance to query
   - Score by citation count
   - Score by source quality (journal tier, conference rank)
   - Score by recency
   - Calculate composite relevance score

5. **Present Results**
   - Display top N results (default: 10)
   - Show title, authors, year, source, DOI
   - Show relevance score and brief abstract snippet
   - Provide acquisition options for high-value papers

## Arguments

- `[query]` - Search query (required)
- `--source [arxiv|acm|ieee|semantic-scholar|crossref|all]` - Database to search (default: all)
- `--limit [n]` - Maximum results to return (default: 10)
- `--year-from [yyyy]` - Filter results from year onwards
- `--year-to [yyyy]` - Filter results to year
- `--min-citations [n]` - Minimum citation count threshold
- `--output [table|json|yaml]` - Output format (default: table)

## Examples

```bash
# Basic search across all databases
/research-discover "agentic workflows LLM"

# Search specific database with filters
/research-discover "test-driven development effectiveness" --source acm --year-from 2020 --min-citations 50

# Comprehensive search with high limit
/research-discover "cognitive load theory UI design" --limit 25 --output yaml
```

## Expected Output

```
Search Results: "agentic workflows LLM" (10 results, sorted by relevance)

┌─────┬───────────────────────────────────────────┬──────────┬───────────┬──────────┐
│ #   │ Title                                     │ Authors  │ Year      │ Score    │
├─────┼───────────────────────────────────────────┼──────────┼───────────┼──────────┤
│ 1   │ AutoGen: Enabling Next-Gen LLM Apps...   │ Wu et al.│ 2023      │ 0.95     │
│     │ DOI: 10.48550/arXiv.2308.08155            │          │ arXiv     │ 234 cit. │
├─────┼───────────────────────────────────────────┼──────────┼───────────┼──────────┤
│ 2   │ The Landscape of Emerging AI Agent...    │ Wang et  │ 2024      │ 0.89     │
│     │ DOI: 10.48550/arXiv.2404.11584            │          │ arXiv     │ 89 cit.  │
├─────┼───────────────────────────────────────────┼──────────┼───────────┼──────────┤
...

Actions:
- Use /research-acquire [DOI] to download papers
- Use /research-quality [DOI] to assess source quality
- Results saved to .aiwg/research/search-cache/results-[timestamp].yaml
```

## Workflow Integration

This command integrates with the research workflow:

1. **Discovery** ← You are here
2. Use `/research-acquire` to download selected papers
3. Use `/research-document` to create summaries
4. Use `/research-quality` to assess evidence quality
5. Use `/research-cite` to generate citations

## References

- @$AIWG_ROOT/agentic/code/frameworks/research-complete/agents/discovery-agent.md - Discovery Agent
- @$AIWG_ROOT/agentic/code/frameworks/research-complete/docs/database-apis.md - Supported databases
- @$AIWG_ROOT/src/research/services/discovery-service.ts - Search implementation
- @.aiwg/research/README.md - Research corpus structure

Related Skills

research-workflow

104
from jmagly/aiwg

Execute multi-stage research workflows

Codex

research-status

104
from jmagly/aiwg

Show research corpus health and statistics

Codex

research-query

104
from jmagly/aiwg

Search the local research corpus, read matching findings, and synthesize an answer with inline citations to REF-XXX sources. The "query" operation for the research pipeline.

Codex

research-quality

104
from jmagly/aiwg

Assess source quality using GRADE methodology

Codex

research-quality-audit

104
from jmagly/aiwg

Audit research corpus for shallow stubs, incomplete sections, missing source files, and doc depth issues. Detects docs written from abstracts rather than full papers and optionally auto-dispatches expansion agents.

Codex

research-provenance

104
from jmagly/aiwg

Query provenance chains and artifact relationships

Codex

research-lint

104
from jmagly/aiwg

Run the research corpus lint ruleset to detect structural and referential integrity issues — orphan notes, missing frontmatter, broken references, missing GRADE assessments.

Codex

research-gap

104
from jmagly/aiwg

Analyze gaps in research coverage

Codex

research-gap-detect

104
from jmagly/aiwg

Build the mutual citation graph, find connected components, identify isolated clusters, and optionally search for bridge candidates and file gap issues. Automates the manual cluster analysis workflow.

Codex

research-document

104
from jmagly/aiwg

Generate summaries and literature notes from research papers

Codex

research-cite

104
from jmagly/aiwg

Generate properly formatted citation from research corpus

Codex

research-archive

104
from jmagly/aiwg

Package research artifacts for long-term archival

Codex