AI Fluency Framework
Aligned with Anthropic's 4Ds model - Delegation, Description, Discernment, Diligence. Explicit human vs AI task distribution.
Learn about AI Fluency
Stop guessing. Start executing. Intelligent prompt engineering for Claude Code.
You write a prompt. Claude guesses what you meant. You get something close but not quite right. You clarify. Claude tries again. Repeat.
This wastes time and tokens.
Claude Commands Library ensures every prompt is perfect before execution:
# Before: Vague prompt leads to wrong implementation
"Add login to my app"
# After: Phase 0 asks what you actually need
/prompt-technical Add login to my app
# Claude asks:
# - Which authentication method? (JWT / OAuth / Session)
# - Which database stores users?
# - What UI framework for the login form?
# - Should I add password reset functionality?
# Result: Precise implementation matching your exact needs# Download and run installer
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/Tadzesi/claude-ideas/main/install-claude-commands.ps1" -OutFile "install.ps1"
.\install.ps1# Perfect any prompt (2 seconds)
/prompt Fix the authentication bug
# Technical analysis with agent assistance (5-30 seconds)
/prompt-technical Implement caching with Redis
# Deep multi-agent research (1-3 minutes)
/prompt-research Perform security audit of payment system
# Save your work
/session-endInstall the Enhanced Statusline to see real-time metrics:
■ my-project | ⎇ main | ████████░░ 45% | ● 27k/155k | ▶ 89k/15k | ◆ 3.2s| Command | Purpose | Speed | When to Use |
|---|---|---|---|
/prompt | Basic prompt perfection | ~2s | Quick fixes, simple tasks |
/prompt-hybrid | Intelligent with agents | 2-30s | Complex tasks, codebase changes |
/prompt-technical | Implementation analysis | 5-30s | New features, refactoring |
/prompt-research | Deep multi-agent research | 60-180s | Security audits, architecture review |
/prompt-dotnet | .NET project-aware perfection | ~3s | C# APIs, EF Core, .NET features |
/prompt-react | React project-aware perfection | ~3s | Components, hooks, Vite, routing |
/prompt-article | Article writing wizard | Interactive | Blog posts, documentation |
/session-start | Load previous context | ~2s | Beginning of session |
/session-end | Save current context | ~5s | End of session |
/reflect | Improve skills from feedback | 5-15s | After using a command |
Every command runs your prompt through validation:
Tasks are scored for complexity (0-50+):
The system tracks:
After 3+ occurrences, it suggests smart defaults.
Every skill now has a built-in contract that prevents Claude from inventing facts:
HARD-GATE blocks — pre-flight checklist in every skill before any output:
- [ ] project-profile.md read this session
- [ ] No version numbers copied from templates — all from read files
- [ ] No file paths invented — all verified with Read or GlobNEVER rules — explicit domain-specific prohibitions (e.g. /prompt-dotnet will never state a NuGet version without reading .csproj).
Chain-of-Thought REASONING block — Step 0.1 now requires:
REASONING
Prompt type: Task (Feature) — because input contains "add" + specific component name
Facts from project-profile.md: Stack is Node.js/VitePress, kebab-case conventions
Cannot determine: which specific file to editCore library v2.0 with Mermaid flowchart and Grounding Protocol.
/session-start and /session-end removed — replaced by Claude Code auto-memory/deploy and /new-stack are now universal — all server config read from personal-profile.md/prompt-dotnet and /prompt-react scan fallbacks added (monorepo support)Two new project-aware skills that scan your codebase before asking any questions:
/prompt-dotnet - Reads .csproj, Program.cs, appsettings.json, Docker files:
PROJECT SCAN COMPLETE
Framework: net10.0
Architecture: Minimal API
Auth: JWT
ORM: EF Core | DB: PostgreSQL — ConnectionStrings:Default
Docker: yes — stack: myapp
Packages: FluentValidation, Serilog, MediatR/prompt-react - Reads package.json, vite.config.ts, tsconfig.json:
PROJECT SCAN COMPLETE
React: 19.0.0 | TypeScript: yes, strict: yes
Router: React Router v6
State: Zustand
Data fetching: TanStack Query
Base path: /appname/Both skills apply best practices for the detected stack automatically — no repeated questions.
Skills Format - Commands now use the native Claude Code Skills format:
---
name: prompt
description: Transform any prompt into an unambiguous, executable format...
argument-hint: "[your prompt or task description]"
---Claude automatically suggests the right skill based on description. No more manual /prompt when Claude already knows what you need.
Project-Aware Startup - Every command loads project context first:
CONTEXT LOADED FROM PROJECT PROFILE
Project: My App v2.1 | Stack: Node.js + PostgreSQL
Platform: macOS | Branch: feature/auth
Recent work: Added JWT middleware (yesterday)
What else do you need for this task?Zero Repeated Questions - The populated project-profile.md eliminates asking the same questions across sessions. Tech stack, preferences, structure - all pre-filled automatically.
Memory Recall - Commands remember your project between sessions:
Session 1: "What framework?" → "Express + TypeScript"
Session 2: Context: Express + TypeScript (from project profile) ✓AI Fluency - Full 4Ds Framework integration:
/reflectNew to Claude Commands?
Follow the Getting Started Guide for a complete walkthrough.
Install Now → | Browse Commands → | Understand Architecture →