From playbook
Session kickoff. Checks for playbook updates, reads WORK_LOG.md and CLAUDE.md, and presents a briefing with status, issues, and suggested next steps. Use when starting a new work session.
npx claudepluginhub bluemax713/playbook --plugin playbookThis skill uses the workspace's default tool permissions.
Read CLAUDE.md and WORK_LOG.md to understand the project and where we left off.
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
Analyzes competition with Porter's Five Forces, Blue Ocean Strategy, and positioning maps to identify differentiation opportunities and market positioning for startups and pitches.
Read CLAUDE.md and WORK_LOG.md to understand the project and where we left off.
Check your project management tool via MCP (if available) for current task priorities. If not connected, skip this step and rely on WORK_LOG.md.
Check your auto-memory files for any relevant context from prior sessions.
Before anything else, silently check if a newer version of Playbook is available. This must not slow down the session or require user interaction unless there's actually an update.
~/.claude/.playbook-version exists. If not, skip the update check entirely.~/.claude/.playbook-version.~/.claude/.playbook/ is a git repo: Run git -C ~/.claude/.playbook fetch origin main --quiet then read VERSION from the fetched main branch using git -C ~/.claude/.playbook show origin/main:VERSION.curl -sf https://raw.githubusercontent.com/bluemax713/playbook/main/VERSION to get the latest version.Fetch the CHANGELOG.md content between the installed version and the latest:
git -C ~/.claude/.playbook show origin/main:CHANGELOG.mdcurl -sf https://raw.githubusercontent.com/bluemax713/playbook/main/CHANGELOG.mdExtract only the entries NEWER than the user's installed version. Do not show the entry for their current version.
Present to the user:
Playbook vX.Y.Z is available (you have vA.B.C). Here's what's new:
[Relevant changelog entries]
Would you like to update?
If the user says yes:
bash ~/.claude/.playbook/update.sh (if git is available in the playbook dir) or fetch updated files via curl and run the update.git -C ~/.claude/.playbook diff vA.B.C..origin/main -- CLAUDE.md (or compare the files directly)~/.claude/CLAUDE.md with ~/.claude/.playbook/CLAUDE.mdAfter any new settings.json permissions are available in the updated Playbook, check if the user's ~/.claude/settings.json is missing any permissions from the Playbook version. If so, mention: "The new version includes some additional pre-approved permissions: [list them briefly]. Want me to add these to your settings?" Only add with user approval.
If the user says no (skip the update): Continue with the normal briefing. Do not mention the update again during this session.
Present a concise briefing:
Keep it short and scannable. Bullet points. No fluff. Wait for direction before making changes.
Before the briefing, prompt the user to name the session. Output only this — nothing else:
Copy/paste to name this session:
/rename <project>
Where <project> is the current directory's basename (e.g., playbook). Then wait for the user to respond before presenting the briefing. Do not include the briefing in the same message.