← ClaudeAtlas

devtrail-ailoglisted

Create an AILOG (AI Action Log) document for the current changes. Quick shortcut for the most common document type.
Technophile522/devtrail · ★ 0 · AI & Automation · score 62
Install: claude install-skill Technophile522/devtrail
# DevTrail AILOG Skill Quickly create an AI Action Log (AILOG) document for the current changes. ## Instructions This is a shortcut skill that creates AILOG documents directly. ### 1. Gather Context ```bash # Get current date date +%Y-%m-%d # Get modified files git status --porcelain # Get change summary git diff --stat HEAD~1 2>/dev/null || git diff --stat ``` ### 2. Confirm with User **Always confirm before creating:** ``` ╔══════════════════════════════════════════════════════════════════╗ ║ DevTrail AILOG ║ ╠══════════════════════════════════════════════════════════════════╣ ║ ║ ║ 📊 Changes detected: ║ ║ • Files: [list of modified files] ║ ║ • Lines: [+X / -Y] ║ ║ ║ ║ 📝 Will create: ║ ║ AILOG-YYYY-MM-DD-NNN-[description].md ║ ║ ║ ║ Please provide a brief description of what was done: ║ ╚══════════════════════════════════════════════════════════════════╝ ``` ### 3. Determine Sequence Number ```bash # Count existing AILOGs for today ls .devtrail/07-ai-audit/agent-logs/AILOG-$(date +%Y-%m-%d)-*.md 2>/dev/nu