plugins/vibeworks-library/skills/start-of-day/SKILL.md
Comprehensive daily project sync - checks git repos, analyzes all code, reads documentation, and provides status report. Use when user says "start of day", "daily sync", "project status", or at beginning of work session.
npx skillsauth add claude-code-community-ireland/claude-code-resources start-of-dayInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill performs a comprehensive analysis of the current working directory to get you synced up at the start of each day. It works on any project.
Git Repository Check
Codebase Analysis
Documentation Review
Status Report
Check if the current working directory (or any subdirectories) contains git repos:
# Check if current directory is a git repo
git status 2>/dev/null
# If it's a repo, fetch and check status
git fetch origin 2>/dev/null
git status -sb
# Check if behind remote
git rev-list HEAD..@{u} --count 2>/dev/null
# Pull if behind
git pull
# Show recent commits
git log --oneline -10
If the current directory is not a git repo, check subdirectories for git repos and report on each.
Read key files to understand the project:
Configuration files (use Glob to find, then Read):
package.json, requirements.txt, Cargo.toml, etc..env.example, config filesREADME.md, CONTRIBUTING.mdSource code structure (use Glob):
Documentation (use Glob + Read):
*.md filesdocs/ folder contentsUse the Explore agent to thoroughly analyze the codebase:
Provide a structured report:
This skill uses:
Bash - For git operationsGlob - To find files by patternRead - To read file contentsTask with Explore agent - For deep code analysisTodoWrite - To track analysis progressThis skill activates when user says:
tools
Automate changelog generation from commits, PRs, and releases following Keep a Changelog format. Use when setting up release workflows, generating release notes, or standardizing commit conventions.
documentation
Project Guidelines Skill (Example)
development
Development skill from everything-claude-code
documentation
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.