원클릭으로
about-shiplog
Shiplog project context — architecture, history, and the original repo script it replaces
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Shiplog project context — architecture, history, and the original repo script it replaces
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | about:shiplog |
| description | Shiplog project context — architecture, history, and the original repo script it replaces |
| user-invocable | false |
Shiplog is an AI-powered git CLI tool built with Deno 2.x and TypeScript. It generates commit messages and branch names via LLM providers (Anthropic, OpenRouter).
Shiplog is a re-invention of the repo bash script from
nikbrunner/dots at common/.local/bin/repo. The bash script
provided AI-powered commit and branch operations using direct curl calls to the Anthropic API or
Claude Code CLI. Shiplog replaces this with a typed, extensible Deno CLI.
Key differences from the original repo script:
The archive/v1-bash branch contains the original bash implementation that was the first version of
shiplog. This code is deprecated and preserved for reference only.
src/
main.ts → Entry point, Cliffy command registration
commands/ → commit.ts, branch.ts — CLI command definitions
ai/ → client.ts (LLM interaction), prompts.ts (prompt templates)
adapters.ts → Provider factory (Anthropic, OpenRouter), model type definitions
config/ → schema.ts (Zod), loader.ts (TOML)
git/ → diff.ts, exec.ts, operations.ts
ui/ → prompts.ts (interactive user prompts via Cliffy)
~/.config/black-atom/shiplog/config.toml.shiplog.toml in repo rootsrc/config/schema.ts — validates with Zod v4