🎯

prd-clarifier

🎯Skill

from akornmeier/claude-config

VibeIndex|
What it does

Clarifies and refines product requirements documents by asking targeted questions, identifying ambiguities, and suggesting improvements to ensure precise and actionable specifications.

πŸ“¦

Part of

akornmeier/claude-config(24 items)

prd-clarifier

Installation

GoRun with Go
go install claudio.click/cmd/claudio@latest
πŸ“– Extracted from docs: akornmeier/claude-config
1Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Overview

# Claude Code Configuration

Personal configuration for Claude Code, including custom hooks, skills, and settings.

Overview

This repository contains my Claude Code configuration directory (~/.claude), which customizes the Claude Code experience with:

  • Hooks: Event-triggered automation using claudio for audio feedback
  • Skills: Specialized knowledge and workflows for various technologies and methodologies
  • Settings: Plugin configurations and preferences
  • Project Management: Session data, todos, and shell snapshots

Directory Structure

```

.claude/

β”œβ”€β”€ settings.json # Claude Code settings and enabled plugins

β”œβ”€β”€ package.json # Package metadata

β”œβ”€β”€ skills/ # Custom skills library

β”œβ”€β”€ plugins/ # Installed plugins cache

β”œβ”€β”€ projects/ # Project-specific configurations

β”œβ”€β”€ debug/ # Debug logs and outputs

β”œβ”€β”€ todos/ # Task tracking data

β”œβ”€β”€ session-env/ # Session environment snapshots

β”œβ”€β”€ shell-snapshots/ # Shell state captures

β”œβ”€β”€ file-history/ # File change history

β”œβ”€β”€ history.jsonl # Conversation history

└── ide/ # IDE integration settings

```

Key Directories

  • skills/: Collection of specialized knowledge modules for different technologies
  • settings.json: Configures hooks and enabled plugins
  • plugins/: Cached plugin data from enabled marketplaces (superpowers, code-review, etc.)
  • todos/: TodoWrite tracking files for task management

Hooks

Hooks are event-triggered commands that run during Claude Code's lifecycle. All hooks in this configuration use claudio - a custom tool that plays system sounds to provide audio feedback during Claude's operations.

Configured Hooks

  • SessionStart: Audio notification when a Claude session begins
  • Stop: Audio notification when a session ends
  • SubagentStop: Audio notification when a subagent completes
  • UserPromptSubmit: Audio feedback when you submit a prompt
  • PreToolUse: Sound before Claude uses a tool
  • PostToolUse: Sound after a tool completes
  • PreCompact: Audio notification before context compaction
  • Notification: General notification sounds

Claudio Tool

Install claudio by running this command:

```bash

go install claudio.click/cmd/claudio@latest

claudio install

```

Located at /Users/tk/Code/go/bin/claudio, this tool provides real-time audio feedback:

  • Plays sounds while Claude thinks
  • Audio cues during typing/output
  • Notification sounds for prompt submissions

This creates an auditory UI layer that makes Claude's activity more perceptible and engaging.

Skills

Skills are specialized knowledge modules that Claude loads dynamically to improve performance on specific tasks. Each skill contains instructions, examples, and guidelines for completing particular types of work.

Installed Skills

#### Cloud Platforms & Infrastructure

  • cloudflare: Building applications on Cloudflare's edge platform (Workers, D1, R2, KV, Durable Objects, AI features)
  • cloudflare-workers: Serverless applications with Cloudflare Workers (JavaScript/TypeScript/Python/Rust)
  • cloudflare-browser-rendering: Headless browser automation for screenshots, PDFs, scraping, and testing
  • cloudflare-r2: S3-compatible object storage with zero egress fees
  • docker: Containerization platform for building, running, and deploying applications
  • mongodb: Document database with CRUD operations, aggregation, indexing, replication, and sharding

#### Frameworks & UI Libraries

  • better-auth: Framework-agnostic authentication and authorization for TypeScript
  • nuxt-ui: NuxtUI v4.1+ component library with Tailwind CSS and Reka UI
  • nuxt-ui-tdd: Building Vue 3 components with NuxtUI using strict TDD methodology
  • tailwindcss: Utility-first CSS framework for rapid UI development
  • turborepo: High-performance build system for JavaScript/TypeScript monorepos

#### Development Tools

  • postgresql-psql: PostgreSQL interactive terminal client for database management
  • mcp-builder: Creating MCP (Model Context Protocol) servers for LLM-service integration
  • skill-creator: Guide for creating effective custom skills
  • template-skill: Basic template as a starting point for new skills

#### Problem Solving & Debugging

  • debugging/systematic-debugging: Four-phase framework for understanding bugs before fixing
  • debugging/root-cause-tracing: Tracing errors backward through call stacks to find triggers
  • debugging/verification-before-completion: Requires running verification before claiming success
  • debugging/defense-in-depth: Multi-layer defensive programming strategies
  • problem-solving/when-stuck: Strategies for getting unstuck on difficult problems
  • problem-solving/simplification-cascades: Breaking complex problems into simpler components
  • problem-solving/collision-zone-thinking: Identifying where different concerns intersect
  • problem-solving/meta-pattern-recognition: Recognizing patterns across different domains
  • problem-solving/inversion-exercise: Solving problems by inverting the question
  • problem-solving/scale-game: Thinking about problems at different scales

Enabled Plugins

The following plugins are enabled via the Claude Code marketplace:

  • superpowers@superpowers-marketplace: Advanced workflows including TDD, systematic debugging, git worktrees, brainstorming, and plan execution
  • superpowers-developing-for-claude-code@superpowers-marketplace: Documentation and workflows for Claude Code plugin development
  • code-review@claude-code-plugins: Code review capabilities for pull requests
  • security-guidance@claude-code-plugins: Security best practices and vulnerability detection

Usage

This configuration is automatically loaded when Claude Code starts. The .claude directory in your home folder is where Claude Code stores all its settings, history, and customizations.

Restoring This Configuration

If you need to restore this configuration on a new machine:

  1. Clone this repository to ~/.claude
  2. Ensure claudio is installed at /Users/tk/Code/go/bin/claudio
  3. Restart Claude Code to load the configuration

Adding New Skills

To add new skills:

  1. Create a new directory in skills/
  2. Add a SKILL.md file with frontmatter (name, description) and instructions
  3. Reference the skill in conversations or let Claude discover it automatically

See the [template-skill](skills/template-skill/) for a starting point.

More from this repository10

🎯
postgresql-psql🎯Skill

Enables interactive PostgreSQL database management through psql, executing queries, scripting, and administering database operations from the command line.

🎯
shadcn-ui🎯Skill

Provides customizable, accessible React UI components using Tailwind CSS that can be directly copied and modified in your project.

🎯
openspec-dev🎯Skill

Automates OpenSpec change implementation by parsing tasks, filtering phases, and creating PRs using subagent-driven development.

🎯
cloudflare-r2🎯Skill

Enables seamless S3-compatible object storage on Cloudflare's global network with zero egress fees, supporting file uploads, downloads, and migrations.

🎯
better-auth🎯Skill

Securely implement authentication and authorization with a framework-agnostic TypeScript library supporting email/password, OAuth, 2FA, and advanced auth features.

🎯
mongodb🎯Skill

Enables comprehensive MongoDB database management, from schema design and querying to deployment, performance optimization, and secure integration across multiple platforms and languages.

🎯
nuxt-ui-tdd🎯Skill

Guides developers in building Vue 3 NuxtUI components using strict Test-Driven Development (TDD) methodology with atomic design principles and Storybook interaction tests.

🎯
turborepo🎯Skill

Accelerates monorepo development by enabling intelligent caching, parallel task execution, and efficient build performance across JavaScript and TypeScript projects.

🎯
skill-creator🎯Skill

Generates configurable AI skills with customizable parameters and templates for Claude-based applications.

🎯
prd-to-ux🎯Skill

Translates product requirements into comprehensive UX specifications by systematically analyzing user mental models, information architecture, and interaction design.