From AI user to AI system builder in 30 days
Come here from the video, copy each lesson's ready prompt with one click, run it in your own Claude Code.
4 Modules
Claude Code
AI coding in the terminal: understand the project, set up safely, first commands.
22 lessonsMCP
Connect Claude to external tools: GitHub, databases, APIs.
2 lessonsSkills + Hooks
Automate repetitive work, block dangerous commands.
8 lessonsGitHub Actions
Put AI in your CI/CD: automatic review, deploy checks.
Coming soonCopy-Paste Prompt Library
Each prompt runs in your own Claude Code. Click, copy, paste.
Explain the project
Introduce a new codebase to AI — architecture, risks, entry point.
Bu kod tabanını analiz et: ana giriş noktası, klasör yapısı, bağımlılıklar ve mimari kararları özetle. Bilmediğin yeri "bilmiyorum" diye işaretle, uydurma. Sonunda: en riskli 3 alanı listele.
Safe .env setup
Prevent secret leaks: .gitignore + git history scan.
.gitignore'a .env ekli mi kontrol et. Değilse ekle. Sonra git history'de daha önce .env veya secret commit edilmiş mi tara (git log --all --full-history). Bulursan UYAR ama otomatik temizleme — bana raporla, ben karar vereyim.
First MCP connection
Connect the GitHub MCP server, test it by summarizing recent PRs.
Bu projeye GitHub MCP server bağlamak istiyorum. .claude/mcp/ altına config oluştur, GITHUB_TOKEN environment'tan okusun. Bağlandıktan sonra "son 5 PR'ı özetle" komutuyla test et, çıktıyı göster.
Deploy-check skill
Lint/type-check/test/build chain before deploy, stop on fail.
.claude/skills/deploy-check/SKILL.md oluştur. Bu skill production deploy öncesi sırayla: lint, type-check, test, build çalıştırsın. Herhangi biri fail ederse DUR ve raporla. Asla otomatik deploy etme — sadece kontrol et.
Secret-check hook
Block dangerous bash commands before they run.
.claude/hooks/pre-tool-use-secret-check.sh oluştur. Bash komutu çalışmadan önce kontrol etsin: 'git add .env', 'git add -A', '--force push main/master', 'rm -rf /'. Bunlardan biri varsa exit code 2 ile blokla, sebebini yaz. settings.json'a PreToolUse hook olarak kaydet.
Post-mortem EXP
Generate a lasting experience record with 5 questions after a bug fix.
Bir bug fix sonrası bunu çalıştır: bana 5 soru sor (problem, belirti, kök neden, çözüm, tekrar gelmesin diye), cevaplarımla exp/EXP-XXXX-konu.md oluştur (frontmatter: id, title, tags, severity, date + 5 bölüm). Sıradaki numarayı ls exp/EXP-*.md ile bul.
I want the working code
Prompts are the start. Full working example projects and configs live in the GitHub repo.
Open the repoThe repo is private for now — access requires an invite.
Where does this content come from?
Comment AI101