소스 정보
- 저장소
- archibate/dotfiles-opencode
- 최근 소스 활동
- 2026년 2월 20일 06:37
- 감지된 SKILL.md 언어
- 영어
- 스타
- 106
- 포크
- 21
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/archibate/dotfiles-opencode --skill setup-fresh-project명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | setup-fresh-project |
| description | Use this when setting up a fresh new project. |
Use this skill when you are starting to write code in a fresh project.
git init..gitignore suitable for tech stack of choices (e.g. __pycache__ for Python, node_modules for Node)..stylua.toml for Lua, pyproject.toml + Ruff for Python). Default to 4 spaces for tab.stylua, npm, uv). If not, explicitly ask the user to install.Ask user for tech stack choices. Offer default choices:
Prefer uv (with venv) and ruff.
If you are using venv, to prevent LSP errors about 'package not found', create pyrightconfig.json with content:
{
"venvPath": ".",
"venv": ".venv"
}
Prefer biome and npm (or bun).
Prefer stylua.
If the Lua project is used as a NeoVim configuration or plugin:
Create a .luarc.json with content:
{
"runtime.version": "LuaJIT",
"runtime.path": [
"lua/?.lua",
"lua/?/init.lua"
],
"diagnostics.globals": ["vim"],
"workspace.checkThirdParty": false,
"workspace.library": [
"$VIMRUNTIME"
]
}
Prefer clang, cmake and clang-format.
Make sure to use cmake -B build -DCMAKE_EXPORT_COMPILE_COMMANDS=ON when build (or add set(CMAKE_EXPORT_COMPILE_COMMANDS ON) to CMakeLists.txt). This will create build/compile_commands.json, for clangd to not reporting false positive errors about include header missing.
Follow industry best pratice of project folder structure most suitable the tech stack.
e.g.:
src/, tests/, dist/ for Python & PyTest project.src/, include/, build/ for C++ & CMake project.lua/ for NeoVim Lua plugin project.A .gitignore and README.md is always required for all projects.
Main documentation resides in README.md. With a simple and clear introduction on how to use this project, including but not limited to the following perspectives:
README.md must be presented in a clear, structured markdown format. No placeholders.
README.md focus on big-picture. Optionally create .md under docs/ for more detailed documentation and refer them in README.md.
If this is to be a public project (potentially upload to github), not for personal use:
/home/bate/project) in README.md and other documents.README.md and other documents (e.g. [Screenshot](screenshot.png) but actually no such file).