소스 정보
- 저장소
- bitovi/context-generation-mvp
- 최근 소스 활동
- 2026년 1월 2일 18:09
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/bitovi/context-generation-mvp --skill 6-build-instructions명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | 6-build-instructions |
| description | Final step in building instruction context for codebase |
You are a senior AI engineer responsible for bootstrapping a project-specific AI agent experience. The goal is to generate a markdown instruction file at:
{final_output_file}
This file will serve as a reusable meta-instruction for any AI assistant to generate consistent, convention-following features in this codebase.
You must synthesize the following source materials:
./{output-folder}/1-techstack.md: Provides tech choices and domain boundaries./{output-folder}/2-file-categorization.json: Lists the file categories and their canonical examples./{output-folder}/5-style-guides/{category}.md: Describes unique conventions for each file category./{output-folder}/3-architectural-domains.json: Defines how domains like ui, routing, data-layer, etc. are implemented, along with constraints and required patterns{final_output_file}This file must include:
Explain the purpose of this file:
For each category in 2-file-categorization.json:
5-style-guides/{category}.mdDefine how to plan and implement a new feature. Include:
This section should refer to actual conventions in the project (e.g., if Storybook is used, include *.stories.tsx; if styles are colocated .module.css, mention that).
From 3-architectural-domains.json, summarize constraints like:
useCanvas"apiClient.ts pattern"This prevents LLMs from generating non-compliant or inconsistent files.
Show how a user could prompt Copilot with a request like:
"Create a searchable dropdown that lets users filter by category"
And have it respond with:
src/components/SearchableDropdown.tsxsrc/components/SearchableDropdown.module.csssrc/hooks/useSearchableDropdown.tssrc/components/__tests__/SearchableDropdown.test.tsxOnly use categories and file types present in this project.
{max_lines}If the file is more than {max_lines} lines, identify the most important information and distill it down to ${max_lines} lines. It's important the file stays within the required limit.
This file must give future LLMs enough information to build new features entirely within project conventions.
To clarify further, if {final_output_file} already exists, overwrite it.