Skip to content

Skills Reference

github-actions[bot] edited this page Apr 16, 2026 · 8 revisions

Skills Catalog

All 17 skills shipped with 8-habit-ai-dev v2.10.0. Skills are read-only guidance — they tell Claude how to approach a task, they do not modify files themselves.

Tip

Not sure which skill to use? Type /using-8-habits for an interactive decision tree, or see the quick-select matrix below.

7-Step Workflow Skills

# Skill Habit When to use
0 /research H5 Problem space is unclear — investigate before specifying
1 /requirements H2 Any new feature or non-trivial change
2 /design H8 Architecture decisions — human decides
3 /breakdown H3 Decompose work into atomic tasks
4 /build-brief H5 Before coding each task — read existing code first
5 /review-ai H4 Always before committing AI-generated code
6 /deploy-guide H1 Staging-first deploys with rollback plan
7 /monitor-setup H7 Observability after deploy

Assessment Skills

Run at any point in the workflow for deeper analysis.

/cross-verify {#cross-verify}

17-question 8-Habit cross-verification checklist. Run after planning and before committing to implementation. Produces a dimension summary across all 8 habits with confidence levels.

/whole-person-check {#whole-person-check}

Assess a feature/component/PR against Covey's 4 dimensions: Body (discipline), Mind (vision), Heart (passion), Spirit (conscience). Scores 1-5 per dimension.

/security-check {#security-check}

Focused security review — secrets, injection, auth, dependencies, OWASP Top 10. A dedicated security lens separate from general code review.

/reflect {#reflect}

Post-task micro-retrospective — 6 questions, 5 minutes. Captures lessons to ~/.claude/lessons/ for future retrieval by /research and /build-brief. Includes skill-effectiveness signal (Q6) feeding SKILL-EFFECTIVENESS.md.

/workflow {#workflow}

Interactive guided walkthrough of the 7-step workflow. Prompts at each step to invoke or skip.

  • Habit: All
  • When to use: Starting a new feature when you're unsure which step comes next
  • Source: skills/workflow/SKILL.md

Meta & Onboarding Skills

Learn the plugin and adapt it to your style.

/using-8-habits {#using-8-habits}

Onboarding meta-skill — explains the 8 habits, all 17 skills, and provides a decision tree for "which skill next?". Includes a complete walkthrough example (password-reset feature).

  • Habit: H5 Understand First + H8 Find Your Voice
  • When to use: First time using the plugin, or when unsure which skill applies
  • Source: skills/using-8-habits/SKILL.md

/calibrate {#calibrate}

Self-assessment skill that determines your maturity level (Dependence → Independence → Interdependence → Significance) and writes a profile to ~/.claude/habit-profile.md. Other skills read this profile to adapt verbosity — full guidance for beginners, minimal prompts for experts.

Compliance & Audit Skills

Governance, transparency, and regulatory readiness.

/eu-ai-act-check {#eu-ai-act-check}

EU AI Act Regulation 2024/1689 compliance checker. 9 obligations from Articles 9-15 with a tiered checklist: 25 MUST + 27 SHOULD + 8 COULD items. Includes a scope-check pre-flight to skip quickly if your system is not high-risk or not EU-targeted.

  • Habit: H1 Be Proactive + H8 Spirit (Conscience)
  • When to use: Before major releases of high-risk AI systems targeting the EU
  • Enforcement date: 2 August 2026
  • Source: skills/eu-ai-act-check/SKILL.md

/ai-dev-log {#ai-dev-log}

Generates an AI-assisted development log from git log + Co-Authored-By trailers. 4 output modes: markdown, JSON, summary, and stdout. Useful for EU AI Act Article 11 (technical documentation) audit trails and team transparency.

  • Habit: H4 Win-Win + H1 Be Proactive
  • When to use: Before releases, audits, or when stakeholders ask "how much was AI-generated?"
  • Source: skills/ai-dev-log/SKILL.md

Quick-Select Matrix

I need to... Use
Start a new feature from scratch /workflow or /requirements
Understand this plugin /using-8-habits
Adjust guidance verbosity /calibrate
Research before deciding /research
Review AI-generated code /review-ai
Check all 8 habits at once /cross-verify
Assess Body/Mind/Heart/Spirit balance /whole-person-check
Run a focused security review /security-check
Check EU AI Act compliance /eu-ai-act-check
Generate AI audit trail /ai-dev-log
Capture lessons after a task /reflect
Deploy safely to production /deploy-guide

Skill Anatomy

Every skill follows the same structure (source convention):

---
name: <skill-name>
description: >
  When to use this skill
user-invocable: true
argument-hint: "[arg description]"
allowed-tools: ["Read", "Glob", "Grep"]
prev-skill: <predecessor|any|none>
next-skill: <successor|any|none>
---

Body: Habit mapping → Process → Handoff → When to Skip → Definition of Done → Checkpoint.

See also

Clone this wiki locally