Token导航 LogoToken导航TokenDH.com
开发规范external-servicegithub未标认证来源可访问clear审计提醒

ln-002-best-practices-researcherln 002 最佳实践研究员

Agent Skill

ln-002-best-practices-researcher 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,913

周安装

119

GitHub Stars

441

下载量

933
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ln-002-best-practices-researcher(ln 002 最佳实践研究员)
来源仓库:https://github.com/levnikolaevich/claude-code-skills
仓库路径:skills/ln-002-best-practices-researcher
安装命令:
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-002-best-practices-researcher
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-002-best-practices-researcher

简介

用于查找和筛选与 ln-002 最佳实践相关的信息。

  • 适合根据开发场景快速获取推荐做法和模板。
  • 通过 GitHub 安装,需结合项目文档验证适用性。
  • 建议在使用前确认是否符合团队编码规范。ln-002-best-practices-researcher 属于开发规范类 Skill,可作为该场景下的辅助能力补充。
  • 注意实践可行性,避免引入不兼容的技术方案。

SKILL.md

Paths: File paths (shared/, references/, ../ln-*) are relative to skills repo root. If not found at CWD, locate this SKILL.md directory and go up one level for repo root.

Best Practices Researcher

Research industry standards and create project documentation in one workflow.

Purpose & Scope

  • Research via MCP Ref + Context7 for standards, patterns, versions
  • Create 4 types of documents from research results:

- Guide: Pattern documentation (Do/Don't/When table) - Manual: API reference (methods/params/doc links) - ADR: Architecture Decision Record (Q&A dialog) - Research: Investigation document answering specific question

  • Return document path for linking in Stories/Tasks

Phase 0: Stack Detection

Objective: Identify project stack to filter research queries and adapt output.

Detection:

IndicatorStackQuery PrefixOfficial Docs
*.csproj, *.sln.NET"C# ASP.NET Core"Microsoft docs
package.json + tsconfig.jsonNode.js"TypeScript Node.js"MDN, npm docs
requirements.txt, pyproject.tomlPython"Python"Python docs, PyPI
go.modGo"Go Golang"Go docs
Cargo.tomlRust"Rust"Rust docs
build.gradle, pom.xmlJava"Java"Oracle docs, Maven

Usage:

  • Add query_prefix to all MCP search queries
  • Link to stack-appropriate official docs

When to Use

  • ln-310-multi-agent-validator detects missing documentation
  • Need to document a pattern, library, or decision
  • Replaces: ln-321-guide-creator, ln-322-adr-creator, ln-323-manual-creator

Input Parameters

ParameterRequiredDescription
doc_typeYes"guide" / "manual" / "adr" / "research"
topicYesWhat to document (pattern name, package name, decision title, research question)
story_contextNoStory/Task context for relevance

Research Tools

ToolUse CaseQuery Pattern
ref_search_documentationStandards, patterns, RFCs"[topic] RFC standard best practices {current_year}"
context7__resolve-library-idGet library ID for docslibraryName="[topic]"
context7__query-docsLibrary API, methodstopic="[stack_prefix] [topic]"
WebSearchMarket, competitors, versions"[topic] latest {current_year}" or "[topic] vs alternatives"

Time-box: 5-10 minutes for research; skip if topic is trivial

Research Methodology by Type (for doc_type="research")

TypeFocusPrimary SourcesKey Questions
TechnicalSolution comparisonDocs, benchmarks, RFCs"Which solution fits our use-case?"
MarketIndustry landscapeReports, blogs, articles"What's the market size/trend?"
CompetitorHow others solve itProduct pages, reviews, demos"What features do competitors offer?"
RequirementsUser needsFeedback, support tickets, forums"What do customers complain about?"
FeasibilityCan we build it?PoC, prototypes, local tests"Is it technically possible?"
Feature DemandFeature viabilityCompetitor features + blogs/socials + user complaints"Is this feature worth building?"

Workflow

doc_typePurposeResearch SourceTemplateOutput PathWords
guidePattern with Do/Don't/When tableref_search (best practices)guide_template.mdguides/NN-[slug].md300-500
manualAPI/library referencecontext7__query-docsmanual_template.mdmanuals/[pkg]-[ver].md300-500
adrArchitecture decisionDialog (5 questions)adr_template.mdadrs/adr-NNN-[slug].md300-500
researchInvestigation answering questionSee Methodology table aboveresearch_template.mdresearch/rsh-NNN-[slug].md300-700

Common Workflow: Detect number (if needed) → Research → Generate from template → Validate (SCOPE, POSIX) → Save → Return path

Extract & Sections by doc_type:

  • guide: Extract principle, 2-3 do/don'ts, sources → Sections: Principle, Our Implementation, Patterns table, Sources, Related
  • manual: Extract methods, params (type/required/default), returns → Sections: Package info, Overview, Methods table, Config table, Limitations
  • adr: Dialog answers → Sections: Context, Decision, Rationale, Alternatives table, Consequences, Related
  • research: Findings by methodology → Sections: Question, Context, Methodology, Findings (tables!), Conclusions, Next Steps, Sources

Validation specifics: guide: patterns table present; manual: version in filename; adr: ISO date, status field; all: sources ≤ 1 year old

ADR Dialog (5 questions): Q1: Title? → Q2: Category (Strategic/Technical)? → Q3: Context? → Q4: Decision + Rationale? → Q5: Alternatives (2 with pros/cons)?

Output: File path for linking in Stories/Tasks; for ADR remind to reference in architecture.md; for Research suggest ADR if decision needed

Critical Rules

MANDATORY FILE CREATION:

  • ALL research MUST end with file creation (guide/manual/ADR/research document)
  • Create target directory if missing (docs/guides/, docs/manuals/, docs/adrs/, docs/research/)
  • No exceptions — file creation is required for ALL invocations

NO_CODE_EXAMPLES (ALL document types):

ForbiddenAllowed
Code snippetsTables (params, config, alternatives)
Implementation examplesASCII diagrams, Mermaid diagrams
Code blocks >1 lineMethod signatures (1 line inline)
Links to official docs

Format Priority (STRICT):

┌───────────────────────────────────────────────┐
│ 1. TABLES + ASCII diagrams  ←── PRIORITY      │
│    Params, Config, Alternatives, Flows        │
├───────────────────────────────────────────────┤
│ 2. LISTS (enumerations only)                  │
│    Enumeration items, file lists, tools       │
├───────────────────────────────────────────────┤
│ 3. TEXT (last resort)                         │
│    Only if cannot express as table            │
└───────────────────────────────────────────────┘
Content TypeFormat
ParametersTable: Name \Type \Required \Default
ConfigurationTable: Option \Type \Default \Description
AlternativesTable: Alt \Pros \Cons \Why Rejected
PatternsTable: Do \Don't \When
WorkflowASCII diagram: A → B → C

Other Rules:

  • Research ONCE per invocation; reuse results
  • Cite sources with versions/dates (≤ 1 year old)
  • One pattern per guide; one decision per ADR; one package per manual
  • Preserve language (EN/RU) from story_context
  • Link to stack-appropriate docs (Microsoft for.NET, MDN for JS, etc.)
  • MANDATORY: Create target directory if missing (docs/guides/, docs/manuals/, docs/adrs/, docs/research/); file creation is required

Definition of Done

  • Research completed (standards/patterns/versions extracted) - for guide/manual
  • Dialog completed (5 questions answered) - for ADR
  • Document generated with all required sections; no placeholders
  • Standards validated (SCOPE, maintenance, POSIX)
  • File saved to correct directory with proper naming
  • Path returned; README updated if placeholder present

Reference Files

  • Guide template: shared/templates/guide_template.md
  • Manual template: shared/templates/manual_template.md
  • ADR template: shared/templates/adr_template.md
  • Research template: shared/templates/research_template.md
  • Standards: docs/standards/DOCUMENTATION_STANDARDS.md (if exists)
  • MANDATORY READ: shared/references/research_tool_fallback.md

Version: 3.0.1 Last Updated: 2026-02-14

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

24.49%
按下载量换算228

Gemini CLI

23.8%
按下载量换算222

Antigravity

18.21%
按下载量换算170

Codex

12.76%
按下载量换算119

OpenCode

8.3%
按下载量换算77

windsurf

3.46%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills