소스 정보
- 저장소
- Integralist/agent-skills
- 최근 소스 활동
- 2026년 7월 13일 09:36
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Integralist/agent-skills --skill markdown-to-skill명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
MANDATORY for any work on Go files (*.go). Load this before editing, reviewing, or creating any *.go file. Go coding conventions and style guide covering naming, error handling, testing, HTTP handlers, caching, concurrency, and observability.
Rewrite text to be more concise, clear, and direct without losing critical information. Inventories load-bearing details first, rewrites, then audits the rewrite to verify nothing essential was dropped — for a plan, technical guide, agent instructions, or any prose too long or hard to follow.
Write or improve technical documentation. Applies documentation best practices: brevity, focusing on why and what rather than how, simple visualizations, modularization, and decoupling from volatile code. Use when writing new documentation from scratch, or editing, or reviewing and rewriting existing documents for clarity and quality.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | markdown-to-skill |
| description | Convert Markdown files from a directory into agent skills. |
| disable-model-invocation | true |
Convert Markdown files from a user-specified directory into valid agent skills, written to one of two locations:
~/.agents/skills/
or ~/.claude/skills/); available in all projects..agents/skills/ or
.claude/skills/); available only in this project.Ask the user:
.), docs/, or other
(let the user specify).Before scanning, use ls/Glob to check the source for
website-scoped subdirectories: top-level dirs that look like domain
names (contain ., e.g. docs.example.com). If found, skill names get
a scope prefix derived from the domain (see Step 5).
Glob for **/*.md recursively. Exclude files that are already
SKILL.md.
Show a table of source path, proposed skill name (with scope prefix if applicable), and conflict status. Ask the user to confirm before proceeding.
| Source File | Skill Name | Status |
|--------------------------------------------|-------------------------|-------------------------|
| guides/my-guide.md | my-guide | Will create |
| setup.md | setup | Conflict: skill exists |
| docs.fastly.com/guides/getting-started.md | fastly-docs:getting-started | Will create |
Skip conflicts unless the user confirms overwrite. For each file:
Derive skill name. Strip .md, lowercase, replace spaces and
underscores with hyphens (My_Guide File.md -> my-guide-file).
guides/setup.md -> setup).<scope>:<filename>
(docs.fastly.com/guides/getting-started.md ->
fastly-docs:getting-started). Scope derivation:
docs.X.com or X.docs.com -> X-docswww.X.com -> X-wwwdeveloper.X.org -> X-developerapi.github.com -> github-apiExtract description. Prefer an existing frontmatter
description. Otherwise use the first # Heading (or, if none, the
first non-empty paragraph) as the basis, truncated to ~100 chars. If
empty, default to Skill converted from <original-filename>.
Strip existing frontmatter (if the file starts with ---) and
replace with skill frontmatter.
Create the skill directory under the chosen destination:
<skills-dir>/<skill-name>/.
Write SKILL.md:
---
name: <skill-name>
description: <extracted-description>
---
<original content, minus old frontmatter>
Conversion is a uniform, per-file transform — a verified-pattern fan-out. Convert the first file in the main thread and show the user the result. Once they confirm the derived name, description, and frontmatter, the rest is mechanical: fan out one subagent per file (or per batch) to apply the identical Step 5 rules, each writing its own skill dir and reporting back. Conflicts still skip per Step 5. The user approves the transform once, not each file.
Report the destination, count of skills created, files skipped (with
reasons, e.g. conflicts), errors, and the list of new skills (invokable
as /<skill-name>, e.g. /fastly-docs:getting-started).
| Source | Skill property |
|---|---|
Filename (my-guide.md) | name: my-guide |
| Domain dir + filename | name: scope:filename (e.g. fastly-docs:my-guide) |
First # Heading or first paragraph | description (max ~100 chars) |
| Full file content (minus old frontmatter) | Body of SKILL.md |
fastly-docs:api vs fastly-www:api).Skill converted from <original-filename>.Source docs/deployment-guide.md:
---
author: Jane Doe
date: 2024-01-15
---
# Deploying to Production
This guide covers the steps to deploy our application to production.
...
Output <skills-dir>/deployment-guide/SKILL.md:
---
name: deployment-guide
description: Deploying to Production - This guide covers the steps to deploy our application to production.
---
# Deploying to Production
This guide covers the steps to deploy our application to production.
...
With website scoping, docs.fastly.com/guides/getting-started.md
becomes <skills-dir>/fastly-docs:getting-started/SKILL.md with
name: fastly-docs:getting-started, invoked as
/fastly-docs:getting-started.