anombyte93

Claude Research Skill — Development skill for Claude Code

Development community

Claude Code skill: Enforces mandatory research before any implementation code.

How to install Claude Research Skill

This entry records only its repository, not the path inside it, so there is no exact command to give. Open anombyte93/claude-research-skill and copy the folder into ~/.claude/skills/, or the file into ~/.claude/agents/.

What Claude Research Skill does

Claude Code skill: Enforces mandatory research before any implementation code.

Alternatives in Development

  • OpenAI Codex CLI — (Rust implementation) 67.8k ★
  • Brain Filing Rules — Brain Filing Rules -- MANDATORY for all skills that write to the brain 29.1k ★
  • Academic Pptx Skill — A Claude Skill for creating academic presentations (conference talks, seminar slides, thesis defenses, grant b 811 ★

README

Research Before Coding

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![GitHub stars](https://img.shields.io/github/stars/anombyte93/claude-research-skill)](https://github.com/anombyte93/claude-research-skill/stargazers) [![Last Commit](https://img.shields.io/github/last-commit/anombyte93/claude-research-skill)](https://github.com/anombyte93/claude-research-skill/commits/main) [![GitHub Issues](https://img.shields.io/github/issues/anombyte93/claude-research-skill)](https://github.com/anombyte93/claude-research-skill/issues)

A Claude Code skill that enforces mandatory research using WebSearch and optional context7 before writing any implementation code.

Install

curl -fsSL https://raw.githubusercontent.com/anombyte93/claude-research-skill/main/install.sh | bash

Installs to `~/.claude/skills/research-before-coding/`. Run the same command to upgrade.

The Core Principle

**"You don't know anything until research confirms it"**

This skill treats research as a mandatory first step, not an optional one. No exceptions for "obvious" patterns, "simple" fixes, or things you "know."

Why?

Approach Time Cost
Research first: 3 parallel calls × 3 seconds = 9 seconds → Correct code
Guess and fix: Type code → Wrong → Debug → Wrong → Revert → Lost context = 15+ minutes

Usage

Invoke the skill before writing any implementation code:

/research-before-coding

The Research Workflow

**Step 1: Run 3-4 Research Queries (ALL in parallel)**

  1. WebSearch("best practices 2025")
  2. WebSearch(" architecture patterns ")
  3. WebSearch("github examples")
  4. Optional: Skill("context7/resolve-library-id", args="")

**Step 2: Synthesize findings**

  • Extract key patterns from each source
  • Note specific tools/libraries mentioned
  • Capture code examples
  • Identify