vibe.devlog

Solid

Use when accumulated git commits must be turned into a devlog post or the configured N-commit publication threshold is reached.

AI & Automation 0 stars 1 forks Updated today MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
0
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Devlog Auto-Generator ## Done Criteria - [ ] 처리한 commit 범위가 산출물에 기록되어 있다. - [ ] devlog Markdown이 설정된 대상 경로에 존재한다. - [ ] 이미 처리한 commit이 중복 포함되지 않았다. - [ ] 설정된 frontmatter 필드가 모두 채워져 있다. Analyzes git commit history to automatically generate development logs and saves them as posts to the configured blog repository. ## Config `devlog` section in `.vibe/config.json`: ```json { "devlog": { "enabled": true, "targetRepo": "/absolute/path/to/blog-repo", "targetDir": "posts", "prefix": "devlog", "interval": 10, "autoPush": false, "lang": "ko", "author": "Su", "category": "dev-log", "tags": [] } } ``` | Key | Required | Default | Description | |-----|----------|---------|-------------| | `enabled` | Y | `false` | Whether to enable | | `targetRepo` | Y | — | Absolute path to the blog repository | | `targetDir` | N | `"posts"` | Directory to save posts | | `prefix` | N | `"devlog"` | Filename prefix (`{prefix}-{NNNN}.md`) | | `interval` | N | `10` | How many commits trigger a generation | | `autoPush` | N | `false` | Auto commit+push to targetRepo | | `lang` | N | `"ko"` | Writing language | | `author` | N | git user.name | Author name | | `category` | N | `"dev-log"` | frontmatter category | | `tags` | N | `[]` | Default tags (project name etc. auto-added) | ## Trigger Modes ### 1. Auto (lifecycle acceleration) When lifecycle hooks are available, `devlog-gen.js` may check the counter after each commit and invoke `llm-orchestrate.js...

Details

Author
su-record
Repository
su-record/vibe
Created
8 months ago
Last Updated
today
Language
TypeScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

Code & Development Listed

devlog

Turn recent engineering work into build-in-public devlogs for X/Twitter. Use when the user asks to draft or write a devlog/post, create a vault post and cover, start today's dev log on x.com, publish a ship/debug/lesson thread, or turn recent commits into a public update.

2 Updated today
vanducng
AI & Automation Listed

vibe.commit-push-pr

Use when the user asks to commit completed changes, push the branch, and open a pull request in one workflow.

0 Updated today
su-record
Code & Development Listed

auto-git

Set up automatic, per-round git commits for a code project so the user's work is committed every round and never lost. It runs git init, writes a sensible .gitignore, installs a Stop hook that auto-commits each round (and pushes when an upstream is configured), and makes the initial commit — then keeps committing as work continues, and keeps the project's progress files (progress.md, plan.md, and the like) current each round. Trigger it proactively whenever a new code project is being started or scaffolded, even if the user never mentions git: when they describe or kick off building an app, tool, or library, create the first source files, or ask you to write a CLAUDE.md for a codebase. Also trigger on explicit requests such as /auto-git, "turn on auto commit", "set up version control", "commit my changes automatically as we go", or "stop losing my work". Lean toward activating at the start of a coding project rather than missing it. Do NOT trigger for one-off git actions — a single "commit this", "push my bra

0 Updated 2 days ago
hfjddjksaj