Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

ln-914-community-responderln 914 社区响应者

Agent Skill

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

总安装

2,423

周安装

98

GitHub Stars

441

下载量

760
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-914-community-responder

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和安装路径。
  • 建议在安装前确认维护状态、是否会触发联网或文件读写操作。
  • ln-914-community-responder 属于研究检索类 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. If shared/ is missing, fetch files via WebFetch from https://raw.githubusercontent.com/levnikolaevich/claude-code-skills/master/skills/{path}.

ln-914-community-responder

Type: L3 Worker (standalone) Category: 9XX Community Engagement Responds to unanswered GitHub Discussions and Issues by analyzing the question, searching the codebase for answers, and composing a helpful reply. Supports single-item and batch modes.


Overview

AspectDetails
Input$ARGUMENTS: discussion/issue number (#42), batch (all unanswered P1), or empty (interactive)
OutputResponse comment(s) published to GitHub
PatternRead question → Search codebase → Compose response → Fact-check → Publish

Phase 0: GitHub Discovery

MANDATORY READ: Load shared/references/community_github_discovery.md

Execute the discovery protocol. Extract:

  • {owner}/{repo} for URLs and API calls
  • repo.id for GraphQL mutations
  • maintainer login (authenticated user)
  • Discussion category IDs

Load strategy: check docs/community_engagement_strategy.md in target project, fallback to shared/references/community_strategy_template.md. Extract Section 5 (Engagement Metrics) and Section 6 (Tone Guide).

MANDATORY READ: Load shared/references/community_discussion_formatting.md MANDATORY READ: Load response_styles.md MANDATORY READ: Load shared/references/humanizer_checklist.md


Phase 1: Load Items

Single Item Mode

If $ARGUMENTS contains a number (e.g., 42, #42):

# For discussions
gh api graphql -f query='query($owner: String!, $name: String!) {
  repository(owner: $owner, name: $name) {
    discussion(number: {N}) {
      id number title body
      category { name }
      author { login }
      createdAt
      answerChosenAt
      comments(first: 20) {
        totalCount
        nodes { author { login } body createdAt }
      }
    }
  }
}' -f owner="{owner}" -f name="{repo}"
# For issues (if discussion not found)
gh issue view {N} --repo {owner}/{repo} --json number,title,body,author,createdAt,comments,labels

Batch Mode

If $ARGUMENTS is batch:

  1. Fetch recent discussions + issues via GraphQL (last 30 days, open, sorted by created DESC)
  2. Filter to P1 items: author!= maintainer AND zero maintainer comments
  3. Fetch full context for each item (max 10 per batch)

Interactive Mode

If $ARGUMENTS is empty, list recent unanswered items and ask the user which to respond to.


Phase 2: Analyze Context

For each item:

2a. Understand the Question

  1. Read the discussion/issue body — identify the core question or problem
  2. Read existing comments — check if partially answered or if follow-ups changed the scope
  3. Detect item type: Q&A question, bug report, feature request, configuration help, general feedback

2b. Search Codebase for Answer

Based on the question type, search for relevant information:

Question TypeSearch Strategy
"How do I..."Grep for keywords in SKILL.md files, README.md, docs/
Bug reportGrep for mentioned function/file, check git log for recent fixes
ConfigurationRead.hex-skills/environment_state.json, CLAUDE.md, relevant SKILL.md
Feature requestCheck if feature already exists, grep for related patterns
InstallationRead README.md installation section, plugin.json
FOR each item:
  1. Extract keywords from question (function names, skill names, error messages)
  2. Grep codebase for keywords (max 5 searches)
  3. Read relevant files (max 3 files, prioritize SKILL.md and docs/)
  4. Check git log for recent changes related to the topic
  5. If answer found → proceed to Phase 3
  6. If not found → mark as "needs-manual" and suggest the user respond directly

2c. Detect First-Time Poster

gh api graphql -f query='query($owner: String!, $name: String!) {
  repository(owner: $owner, name: $name) {
    discussions(first: 100) {
      nodes { author { login } }
    }
  }
}' -f owner="{owner}" -f name="{repo}"

Count how many discussions the author has created. If 0 previous (this is their first) → flag for Welcome style.


Phase 3: Classify Response Type

MANDATORY READ: Load response_styles.md — use the classification matrix.

Item TypeResponse Style
Q&A question with answer foundTechnical Answer
Bug reportBug Acknowledgment
Feature request / ideaFeature Acknowledgment
Question already answered elsewhereRedirect
First-time poster (any type)Welcome + appropriate content style
Stale item with progress updateStatus Update
Cannot find answer in codebaseMark needs-manual — skip composition

Phase 4: Compose Response

Use the selected style template from response_styles.md.

Required Elements (All Styles)

  • Thank the author — by name if possible, acknowledge their contribution
  • Answer the question — direct, clear, linked to source code/docs
  • Invite follow-up — "Let us know if this helps" or similar
  • No jargon without context — explain internal terms
  • Link to code — at least one link to relevant file in the repo

Batch Mode Composition

In batch mode, compose all responses first, then present ALL for user review before publishing any.


Phase 5: Fact-Check

Before presenting to user, verify every claim:

  1. File paths & links — verify each linked file exists: ls {path}
  2. Code references — verify mentioned functions/classes exist: grep -r "{name}"
  3. Feature descriptions — re-read source file, confirm accuracy
  4. Install/usage commands — verify against README.md
  5. Humanizer audit -- run the audit protocol from humanizer_checklist.md. If 3+ AI patterns found, rewrite flagged sections.

Gate: If any check fails, fix the response before proceeding.


Phase 6: Review and Publish

Single Item Mode

Present the composed response to the user. Wait for explicit approval before publishing.

Batch Mode

Present ALL responses in a summary table:

### Batch Responses — {N} items

| # | Type | Title | Style | Status |
|---|------|-------|-------|--------|
| {number} | {Discussion/Issue} | {title} | {Technical/Bug/Welcome/...} | Ready |
| {number} | ... | ... | ... | needs-manual |

Then show each response body. User can approve all, approve selectively, or edit individual responses.

Publish Discussion Comment

gh api graphql -f query='
  mutation($discussionId: ID!, $body: String!) {
    addDiscussionComment(input: {
      discussionId: $discussionId,
      body: $body
    }) {
      comment { url }
    }
  }
' -f discussionId="{discussion.id}" -f body="{response body}"

Publish Issue Comment

gh issue comment {number} --repo {owner}/{repo} --body "{response body}"

Report the comment URL(s) to the user.


Rules

  • Always require user approval before publishing any response
  • Never close discussions or issues — only respond
  • Never mark as answered — let the author do it (for Q&A discussions)
  • Batch limit: max 10 items per batch (prevent context overload)
  • needs-manual items: report to user with GitHub URL + reason, do not attempt response
  • Tone: per strategy Section 6 — respectful, helpful, link to code

Definition of Done

  • Items loaded (single, batch, or interactive selection)
  • Question context analyzed + codebase searched for answers
  • Response type classified per response_styles.md
  • First-time posters detected and welcomed
  • Response(s) composed with links to relevant code/docs
  • Fact-checked (file paths, code references, commands verified)
  • User approved response(s)
  • Published via GraphQL/CLI, comment URL(s) reported
  • needs-manual items reported to user with URLs

Version: 1.0.0 Last Updated: 2026-03-14

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.07%
按下载量换算282

Claude

27.76%
按下载量换算211

Cursor

19.44%
按下载量换算148

Gemini CLI

9.97%
按下载量换算76

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills