Produktivita Pokročilý Claude

Learning system a skill acquisition framework

Vytvoř systematický learning framework pro rychlé osvojení nových skills s evidencí pokroku.

Prompt text

Délka: Dlouhý
Navrhni learning system a skill acquisition framework pro [SKILL/TOPIC]. Level: [BEGINNER/INTERMEDIATE/ADVANCED]. Timeline: [TIMELINE - 30 days/3 months/6 months]. Struktura: 1) **Learning Goals Definition** - specific skill target (what exactly? from level X to level Y), measurable outcome (what can you do/build/create at the end?), timeline (realistic based on time available per week), motivation (why this skill? how will it help career/life?), success criteria (how to know you've achieved it?), 2) **Skill Deconstruction** - break skill into sub-skills (e.g. "Learn React": JSX, Components, Props, State, Hooks, Routing, State Management, Testing), identify 20% that gives 80% results (Pareto principle: which sub-skills matter most?), dependencies (what order to learn: basics before advanced), remove non-essential (what can you skip initially?), 3) **Learning Curriculum** - structured roadmap (week-by-week breakdown), resources for each sub-skill (courses, books, tutorials, docs), practice projects (hands-on application), progressive difficulty (easy → medium → hard), checkpoints (mini-milestones every week), 4) **Deliberate Practice Strategy** - focused practice sessions (1-2h daily better than 8h once), immediate feedback loop (test/validate learning right away), work at edge of ability (slightly challenging not too easy/hard), active learning (build things, not just watch/read), repetition with variation (practice same concept different ways), 5) **Learning Methods** - active recall (test yourself without looking), spaced repetition (review at intervals: 1 day, 3 days, 1 week, 2 weeks), feynman technique (explain concept simply as if teaching), interleaving (mix topics rather than block studying), elaboration (connect new info to existing knowledge), generation (try to answer before seeing solution), 6) **Progress Tracking** - learning log (daily log: what learned, time spent, challenges, breakthroughs), skill level assessment (rate 1-10 weekly), project portfolio (build and document projects), metrics (problems solved, features built, tests passed), confidence tracking (subjective feel of competence), 7) **Project-Based Learning** - define learning project (real-world application of skill), start simple (MVP with basic features), iterate complexity (add features as you learn), document learnings (blog post, README, code comments), showcase publicly (GitHub, portfolio, social media), 8) **Learning Resources Curation** - primary course/book (main learning resource), supplementary resources (docs, articles, videos), community (Discord, Reddit, forums for questions), mentors/accountability (study buddy, expert to ask questions), tools and environment (setup needed for practice), 9) **Overcoming Plateaus** - identify plateau (progress stalls despite effort), change learning method (if reading not working, try building), increase difficulty (challenge yourself more), take strategic break (rest and consolidate), seek feedback (expert review of work), find gaps (what's missing in understanding?), 10) **Integration and Application** - apply to real work/projects (use new skill in actual context), teach others (explain to colleague/blog post = solidify), create resources (cheatsheet, template, tool), maintain skill (regular practice even after "done"), expand to adjacent skills (what to learn next?). Včetně: Sample learning plans for common skills (React, Python, Design, Writing, etc.), template daily learning log, project ideas by skill level, troubleshooting learning difficulties, motivation strategies, recommended resources.
Interaktivní tvůrce

Příklad použití

Vstup:

Skill: Learn React pro frontend development. Current level: Beginner (zná HTML/CSS/basic JS). Goal: Build production-ready React apps. Timeline: 3 měsíce. Time available: 10h/týden.

Výstup:

[19,000+ word learning system for React with goals definition (Specific: Build 3 production apps using React Hooks, Router, API integration, State Management, testing; Measurable: Deploy apps with 100% working features, pass tests, code review approved; Timeline: 3 months, 10h/week = 120h total; Motivation: Get frontend job, build side project, increase salary; Success: Can ship React features independently at work), skill deconstruction breaking React into sub-skills (Foundational 30h: JSX syntax 3h, Components & Props 5h, State & Events 5h, Lists & Keys 3h, Forms 4h, Lifecycle 5h, Hooks basics 5h; Intermediate 50h: useEffect 8h, Custom Hooks 6h, Context API 6h, React Router 8h, API Integration 10h, Error Handling 6h, Performance 6h; Advanced 40h: State Management Redux/Zustand 12h, Testing Jest/RTL 10h, TypeScript 8h, Build/Deploy 5h, Advanced Patterns 5h; identified 20% that gives 80%: Components, State, Hooks, API integration = focus here first), structured 12-week curriculum (Week 1-2: JSX & Components basics, build static component library, resources: React docs + Scrimba course; Week 3-4: State & Props, build interactive todo app, add features: add/delete/edit/filter; Week 5-6: Hooks deep dive, refactor todo to hooks, add useEffect for localStorage; Week 7-8: Routing & Multi-page, build blog with routes/pages, integrate fake API; Week 9-10: Real API & State, build weather app with OpenWeather API, handle loading/errors; Week 11: Testing, add tests to all projects, achieve 80% coverage; Week 12: Deploy & Polish, deploy to Vercel, portfolio site, code review), deliberate practice strategy (daily 1.5h sessions: 30min learn new concept from course, 45min build/code applying concept, 15min reflect and log; immediate feedback via React DevTools, console logs, tests; work at edge: if too easy add complexity, if stuck simplify then retry; active building not passive watching - max 30min video then must code for 45min; repetition: build same app different ways, try different approaches), learning methods applied (Active Recall: Friday quiz yourself on week concepts without docs, Spaced Repetition: review Week 1 concepts in Week 3, Week 6, Week 10 to retain, Feynman: write blog post explaining hooks simply = solidify understanding, Interleaving: mix learning new + practicing old each session, Elaboration: connect React state to Vue reactive data you know, Generation: try implementing feature before checking tutorial solution), progress tracking in Notion (daily learning log with template: Date, Duration, Topic, What I learned, Code written, Blockers, Aha moments, next plan; weekly skill ratings: JSX 3→7, Components 4→8, State 2→6 showing progress; project portfolio: 1) Todo App v1 basic, v2 with localStorage, v3 with testing; 2) Blog App with routing; 3) Weather App with API; 4) Final Project: Recipe App with all concepts; metrics: 45 components built, 150 problems solved, 85% test coverage achieved), project-based learning (Project 1 Todo App: MVP with add/delete in Week 3, iterate to add edit/filter/localStorage in Week 4-5, documented in README with learnings; Project 2 Weather App: API integration, loading states, error handling, responsive design; Project 3 Recipe App: all concepts combined, deployed to Vercel, showcased on portfolio, posted on Twitter for feedback), resources (Primary: React docs official tutorial + Scrimba "Learn React" course, Supplementary: Kent C. Dodds blog, React patterns site, Stack Overflow, Community: Reactiflux Discord, r/reactjs Reddit, Mentor: senior dev at work reviews code weekly, Tools: VS Code + React DevTools + Vite), overcoming plateau (Week 7 plateau: concepts clear but code slow and messy, Solution: focused on code quality, refactored old projects, studied good codebases on GitHub, joined code review sessions = broke through week 8; Week 10: testing felt hard and frustrating, Solution: watched different tutorial, paired with QA engineer, wrote tests for tiny components first then bigger = clicked), integration (applied at work: shipped 2 small React features to production with mentorreviews, taught: wrote 3 blog posts explaining hooks/routing/testing for beginners = solidified knowledge, created: React snippets library and boilerplate template for future projects, maintain: set recurring task to build one small React project monthly after course ends, expand: next learn Next.js for SSR, then React Native for mobile)]

Kde použít tento prompt?

Najděte vhodné AI nástroje pro použití tohoto promptu a maximalizujte jeho efektivitu.

Objevte další AI prompty

Prozkoumejte naši sbírku Produktivita promptů a najděte ty, které vám pomohou dosáhnout lepších výsledků.