소스 정보
- 저장소
- bdfinst/cd-migration
- 최근 소스 활동
- 2026년 3월 3일 12:13
- 감지된 SKILL.md 언어
- 영어
- 스타
- 16
- 포크
- 2
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bdfinst/cd-migration --skill glossary-link명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | glossary-link |
| description | Review content files for unlinked glossary terms and add links to the glossary |
| user_invocable | true |
Role: implementation. This skill modifies content files to add glossary links where terms appear unlinked.
Scan content files for uses of defined glossary terms that are not yet linked to the glossary, and add links to the first occurrence of each term in each file.
content/en/docs/glossary.md
Read content/en/docs/glossary.md. For each ### Heading entry, record:
Full-Stack Product Team)full-stack-product-team)Full-Stack Product Teamfull-stack product teamBDD from BDD (Behavior-Driven Development)Example term table:
| Heading | Anchor | Match forms |
|---|---|---|
ACD (Agentic Continuous Delivery) | acd-agentic-continuous-delivery | ACD, agentic continuous delivery, Agentic Continuous Delivery |
Feature Team | feature-team | feature team, feature teams, Feature Team, Feature Teams |
Full-Stack Product Team | full-stack-product-team | full-stack product team, full-stack product teams, Full-Stack Product Team |
TBD (Trunk-Based Development) | tbd-trunk-based-development | TBD, trunk-based development, Trunk-Based Development |
For plural forms: if the term ends in a word that pluralizes with s, also match the plural.
The glossary is at content/en/docs/glossary.md. For a content file at path P, count the
number of directory segments between P and content/en/docs/:
content/en/docs/agentic-cd/small-batch-sessions.md → 1 level deep → ../glossary/content/en/docs/anti-patterns/team-workflow/horizontal-slicing.md → 2 levels deep → ../../glossary/content/en/docs/migrate-to-cd/foundations/work-decomposition.md → 3 levels deep → ../../../glossary/The full link format: [term text](RELATIVE_PATH#anchor)
Accept file paths as arguments. If no arguments given, ask which files to process.
For each file:
---)[...](...) - do not re-link text that is already a link#)For each glossary term, scan the non-skip-zone text for matches (case-insensitive for most
terms, exact case for acronyms like ACD, CI, CD, TBD, BDD, ATDD, DORA).
Track per-file state: once a term is linked on a page, do not link it again on that page. Link only the first occurrence of each term in each file.
Do not link a term if:
[...glossary/#term...] or [term](any-path)CI inside CI/CD pipeline
unless CI/CD is not itself a glossary term; do not match CD in CDN)For each first unlinked occurrence found, replace the matched text with a markdown link:
[matched text](../glossary/#anchor)
Preserve the original capitalization of the matched text - use it as the link label.
Example: if the file contains trunk-based development and the glossary term is
TBD (Trunk-Based Development), replace with [trunk-based development](../glossary/#tbd-trunk-based-development).
After processing each file, report:
## [file path]
Linked N terms:
- Line X: "original text" → "[original text](path#anchor)"
- ...
Already linked (skipped):
- term1, term2, ...
No match found:
- term1, term2, ...
If no changes were made: No unlinked glossary terms found in [file].
When processing a file, prioritize linking these terms first (they have the most cross-page value):
CD / continuous deliveryCI / continuous integrationTBD / trunk-based developmentBDD / behavior-driven developmentATDDACD / agentic continuous deliveryFeature Team / feature teamsFull-Stack Product TeamSubdomain Product TeamBatch SizeFeature FlagDORABlack Box TestingVertical Slice (if added to glossary)If a term heading is BDD (Behavior-Driven Development), match both BDD and
behavior-driven development (and Behavior-Driven Development). When linking a standalone
BDD usage, use [BDD](path#bdd-behavior-driven-development).
Match CD only when it clearly means continuous delivery - i.e., when it appears in a
delivery/pipeline context. Do not match CD in phrases like CD player, CD-ROM, or
/cd (shell command).
If CI is a glossary term and CI/CD is also a glossary term, prefer linking the longer
term CI/CD if both are defined. If only CI is defined, link CI even within CI/CD.
After editing, verify:
Run /glossary on any files you modified. This skill adds links to content files; the glossary skill updates the "Referenced in" index blocks in the glossary itself. The two skills do not automatically coordinate - both steps are needed for the glossary to stay accurate.