소스 정보
- 저장소
- Bullish-Design/loci.nvim
- 최근 소스 활동
- 2026년 6월 26일 00:56
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Bullish-Design/loci.nvim --skill gitman명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use on ModuleNotFoundError or import failures inside the devenv shell, or after a fresh venv. The venv exists but deps may not be installed.
Use on "command not found", the shell won't enter, or eval errors. A symptom→cause→fix decision tree for devenv repos.
Start here for any work in this repo. Routes to the right manager and owns the lifecycle order (verify before save, scaffold before change).
SOC 직업 분류 기준
SKILL.md 표시 중
| name | gitman |
| description | Route ALL version control through gitman (jj + colocated git). Never run raw jj/git. |
Run every version-control action through gitman (inside the devenv shell). Raw
jj/git edits break canonicity and force a gitman reconcile.
gitman owns version control only. For cross-phase, cross-manager ordering across the
repo's whole lifecycle (spec → scaffold → change → verify → save → docs), defer to the
repoman skill — the repoman entrypoint sequences the managers and routes the VC steps
here. Within version control, gitman is authoritative.
gitman init --colocate is the one-command front door: it colocates jj onto this directory's git —
adopting an existing .git (importing its history, keeping uncommitted work on @) or creating
a fresh one — and then freezes trunk. Pick the path by repo state:
Existing git repo with history (e.g. an "Initial commit" + uncommitted edits):
gitman init --colocate --trunk main # adopts the .git; trunk reuses the existing branch
gitman start <name> # adopts the uncommitted work into a lane
gitman save -m "<message>"
No seed needed — trunk already has a commit.
Fresh / empty repo (no commits yet):
gitman init --colocate --trunk main # creates the colocated git + trunk bookmark at @
gitman seed -m "Initial commit" # describes the working copy as trunk's first commit
seed is one-shot and refuses once trunk has any history.
(Without --colocate, gitman init assumes the workspace is already colocated; if it isn't, it
tells you to colocate first.)
A lane is one unit of work: a named bookmark (= git branch) on trunk, kept linear.
gitman start <name> # begin a lane (add --workspace to isolate it in its own dir)
# ...edit files...
gitman save -m "<message>" # describe the current change
gitman status # see trunk + all lanes (canonical or off-canonical)
gitman sync # fetch trunk + rebase this lane onto it
gitman publish # push the lane (branch = lane name); verify hook runs first
gitman land [<lane>...] # fold lane(s) into trunk, advance trunk, retire the lane(s)
gitman abandon [<lane>] # discard a lane
gitman undo reverts the last intent (whole-intent, via jj's op-log).
gitman undo --list shows recent ops; gitman undo --op <id> restores any of them.gitman resolve [--list] surfaces conflicts. Conflicts are not blocking — keep
working and resolve later (jj records conflicts in commits).gitman reconcile is the one recovery path when status says OFF-CANONICAL: it
adopts stray changes into lanes (or --abandon discards them).gitman version # show current version
gitman version bump <major|minor|patch>
gitman release [<level>|--version X.Y.Z] # (bump →) tag vX.Y.Z → push tag
This repo's version lives at: not configured — add a [version] section to gitman.toml to enable version/release
0 ok · 1 a VC decision is needed (conflict / push rejected / verify blocked /
off-canonical) · 2 infra/config · 3 invalid usage. Pass --json for structured output.