بنقرة واحدة
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