Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计异常

ln-161-skill-creatorln 161 技能创建器

Agent Skill

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

总安装

2,399

周安装

102

GitHub Stars

441

下载量

840
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-161-skill-creator

简介

ln-161-skill-creator 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词或任务场景快速定位候选结果。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

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-161-skill-creator

Type: L3 Worker (standalone-capable) Category: 1XX Documentation Pipeline

Creates .claude/commands/*.md slash command files from procedural documentation sections. It converts procedural prose into imperative command instructions without changing the source docs.


Overview

AspectDetails
InputApproved procedural sections or standalone docs scan
Output.claude/commands/*.md files in target project
Templatereferences/command_template.md
Read modeSection-first markdown reading

Input Modes

ModeTriggerBehavior
Provided sectionsContext contains approved_sectionsUse supplied sections directly
StandaloneInvoked directly with $ARGUMENTSSelf-discover, classify, and create commands

Standalone Discovery

When invoked without approved_sections:

  1. Read shared/references/procedural_extraction_rules.md, shared/references/procedural_skill_sop_guide.md, shared/references/markdown_read_protocol.md, and shared/references/docs_quality_contract.md
  2. Scan docs-first sources:

- docs/**/*.md - tests/README.md - tests/manual/**/* - README.md - CONTRIBUTING.md

  1. Use AGENTS.md, CLAUDE.md, and docs/project/.context/doc_registry.json only to route discovery
  2. Classify candidate sections with the shared procedural extraction rules
  3. Present the extraction plan to the user for approval
  4. Create approved commands

Workflow

Phase 1: Prepare

Receive or build this normalized input:

{
  "approved_sections": [
    {
      "source_file": "docs/project/runbook.md",
      "section_header": "Deployment",
      "line_range": [45, 92],
      "command_name": "deploy.md",
      "doc_kind": "how-to",
      "doc_role": "canonical"
    }
  ]
}

MANDATORY READ: Load references/command_template.md and shared/references/procedural_skill_sop_guide.md

Phase 2: Transform and Create

For each approved section:

  1. Read the source section using the shared markdown read protocol
  2. Ignore standardized doc shell content if it appears in the selected range:

- header markers such as DOC_KIND, DOC_ROLE, READ_WHEN, SKIP_WHEN, PRIMARY_SOURCES - Quick Navigation - Agent Entry - Maintenance

  1. Detect allowed-tools
Content PatternTool
shell commands or fenced bash / sh blocksBash
file reads or config inspectionRead
file updatesEdit
search stepsGrep, Glob
skill callsSkill
approval gatesAskUserQuestion
  1. Transform the content with these rules:
RuleFromTo
VoiceDeclarative proseImperative instructions
Code blocksSource shell blocksPreserve when executable
Numbered listsDoc proseOrdered workflow steps
VerificationImplicit expectationsExplicit verification checks
Risky procedural stepsHidden assumptionsAction, key point, why, evidence, exception, automation/guard
Decision pointsBlended into proseExplicit IF/ELSE branch with evidence required per branch
Dependencies/preflightAssumed environmentFirst executable self-check before mutation or external invocation
ExceptionsImplied troubleshootingConcrete pause/retry/ask path
Doc shellMetadata and navigationRemove
Source provenanceImplied onlyExplicit Source section
Related docsInline refsRelated Documentation section
  1. Write .claude/commands/{command_name} if the file does not already exist

Phase 3: Report

Return:

created:
  - file: .claude/commands/deploy.md
    source: docs/project/runbook.md#Deployment
    lines: 85
    tools: [Bash, Read]
summary: "Created 1 command from 1 procedural section"

Critical Rules

  • Template-driven: All output follows references/command_template.md.
  • Preserve source: Never modify or delete source docs.
  • No invention: Do not add commands, steps, or paths absent from the source.
  • Imperative voice: Every retained instruction must be actionable.
  • SOP/TWI extraction: Preserve action, decision point, exception, validation, dependency/preflight, and why for risky procedural steps.
  • No copied doc shell: Do not copy DOC_KIND, DOC_ROLE, Quick Navigation, Agent Entry, or Maintenance into commands.
  • Source provenance: Every generated command must point back to its source doc and section.
  • Relative paths: File references must stay relative to project root.
  • Idempotent: Skip existing command files; do not overwrite them.

Definition of Done

  • Approved sections received or discovered
  • Source sections read with section-first protocol
  • Allowed-tools detected per command
  • Content transformed into imperative workflow steps
  • Risky procedural steps include action, key point, why, evidence, exception, and automation/guard where applicable
  • Standard doc shell content removed from command output
  • Source provenance included in each created command
  • Existing command files not overwritten
  • Creation report returned

Version: 1.0.0 Last Updated: 2026-03-26

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.81%
按下载量换算326

Claude

29.89%
按下载量换算251

Cursor

19.33%
按下载量换算162

Gemini CLI

9.48%
按下载量换算80

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/levnikolaevich/claude-code-skills --skill ln-161-skill-creator 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills