create-pathfinder 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/AGENTS.md +7 -0
  2. package/CLAUDE.md +71 -0
  3. package/LICENSE +21 -0
  4. package/README.md +60 -0
  5. package/bin/create-pathfinder.mjs +8 -0
  6. package/context/ai-interaction.md +76 -0
  7. package/context/coding-standards.md +72 -0
  8. package/context/current-feature.md +46 -0
  9. package/context/features/example-feature-spec.md +99 -0
  10. package/context/history.md +14 -0
  11. package/context/learning/learner-profile.md +35 -0
  12. package/context/learning/lessons/.gitkeep +0 -0
  13. package/context/learning/progress.md +28 -0
  14. package/context/project-overview.md +198 -0
  15. package/copy-list.json +11 -0
  16. package/package.json +51 -0
  17. package/prompts/01-kickstart-project.md +1 -0
  18. package/prompts/01-teach-current-feature.md +9 -0
  19. package/prompts/02-debate-me.md +1 -0
  20. package/prompts/02-quiz-current-feature.md +7 -0
  21. package/prompts/03-challenge-current-feature.md +7 -0
  22. package/prompts/03-prototype.md +1 -0
  23. package/prompts/04-teach-current-architecture.md +7 -0
  24. package/prompts/04-to-specs.md +1 -0
  25. package/prompts/05-learning-review.md +5 -0
  26. package/prompts/05-load-feature.md +1 -0
  27. package/prompts/06-start-feature.md +1 -0
  28. package/prompts/07-review-feature.md +1 -0
  29. package/prompts/08-complete-feature.md +1 -0
  30. package/prompts/09-learn-feature.md +1 -0
  31. package/prompts/10-learn-codebase.md +1 -0
  32. package/prompts/11-handoff.md +1 -0
  33. package/prompts/12-skillsmith.md +1 -0
  34. package/prompts/13-reverse-engineer.md +18 -0
  35. package/prompts/14-reflect.md +13 -0
  36. package/skills/challenge-me/SKILL.md +81 -0
  37. package/skills/complete-feature/SKILL.md +17 -0
  38. package/skills/debate-me/SKILL.md +82 -0
  39. package/skills/handoff/SKILL.md +12 -0
  40. package/skills/kickstart-pathfinder/SKILL.md +49 -0
  41. package/skills/learn-codebase/SKILL.md +33 -0
  42. package/skills/learn-feature/SKILL.md +48 -0
  43. package/skills/learning-review/SKILL.md +76 -0
  44. package/skills/load-feature/SKILL.md +17 -0
  45. package/skills/prototype/SKILL.md +46 -0
  46. package/skills/quiz-me/SKILL.md +78 -0
  47. package/skills/reflect/SKILL.md +481 -0
  48. package/skills/reverse-engineer/SKILL.md +252 -0
  49. package/skills/review-feature/SKILL.md +25 -0
  50. package/skills/skillsmith/SKILL.md +14 -0
  51. package/skills/start-feature/SKILL.md +25 -0
  52. package/skills/teach-architecture/SKILL.md +79 -0
  53. package/skills/teach-feature/SKILL.md +110 -0
  54. package/skills/to-specs/SKILL.md +45 -0
  55. package/src/cli.mjs +156 -0
  56. package/src/install.mjs +99 -0
  57. package/src/kit.mjs +94 -0
  58. package/templates/CHANGELOG.template.md +11 -0
  59. package/templates/feature-spec.template.md +99 -0
  60. package/templates/lesson.template.md +71 -0
  61. package/templates/progress-entry.template.md +23 -0
  62. package/templates/project-overview.template.md +198 -0
package/AGENTS.md ADDED
@@ -0,0 +1,7 @@
1
+ # Agent Entry Point
2
+
3
+ Read `CLAUDE.md` first.
4
+
5
+ Project truth lives in `context/`. Follow the technology and delivery choices documented in `context/project-overview.md`; do not assume a framework, package manager, branch model, or release process.
6
+
7
+ Use the smallest relevant context for the active task. Keep each delivery chunk stable, reviewable, and verifiable.
package/CLAUDE.md ADDED
@@ -0,0 +1,71 @@
1
+ # Project Agent Guide
2
+
3
+ This repository uses an AI-assisted, human-in-the-loop workflow. Project truth lives in `context/`, reusable behaviors live in `skills/`, and manual launchers live in `prompts/`.
4
+
5
+ ## Read only what is needed
6
+
7
+ For feature work, usually read:
8
+
9
+ 1. `context/current-feature.md`
10
+ 2. its referenced feature spec
11
+ 3. relevant sections of `context/project-overview.md`
12
+ 4. relevant rules from `context/coding-standards.md`
13
+ 5. `context/ai-interaction.md`
14
+ 6. only the source files needed for the current delivery chunk
15
+
16
+ Do not load the whole repo by default.
17
+
18
+ ## Project-selected policies
19
+
20
+ Follow the stack, architecture, commands, Git workflow, review policy, and release process documented in `context/project-overview.md`.
21
+
22
+ If a policy is `TBD`, do not invent it. Ask the human or clearly mark it unresolved.
23
+
24
+ ## Before implementation
25
+
26
+ Restate:
27
+
28
+ 1. Goal
29
+ 2. Active delivery chunk
30
+ 3. Expected files or areas
31
+ 4. Required context
32
+ 5. Risks
33
+ 6. Assumptions
34
+ 7. Verification plan
35
+ 8. Out-of-scope work
36
+ 9. Current Git state
37
+ 10. Intended Git action under the documented workflow
38
+
39
+ ## Human approval
40
+
41
+ Ask before actions identified in `context/ai-interaction.md`, especially dependency additions, destructive commands, sensitive migrations, commits, merges, and releases.
42
+
43
+ ## Scope and quality
44
+
45
+ - Implement only the active feature and current delivery chunk.
46
+ - Keep the project stable after each chunk.
47
+ - Do not convert prototype code into production code without an explicit feature decision.
48
+ - Prefer concrete verification over confident narration.
49
+ - Report conflicts between specs, repository reality, and durable context.
50
+
51
+ ## Available skills
52
+
53
+ - `kickstart-pathfinder` — discover and initialize project context
54
+ - `debate-me` — pressure-test and recommend product, stack, workflow, and prototype direction
55
+ - `reverse-engineer` — analyze an external reference and produce an evidence-based reconstruction blueprint
56
+ - `prototype` — create and iterate the cheapest useful validation artifact
57
+ - `to-specs` — generate context-sized feature specs
58
+ - `load-feature` — prepare one feature for implementation
59
+ - `start-feature` — implement scoped delivery chunks
60
+ - `review-feature` — review against requirements, regressions, and standards
61
+ - `complete-feature` — verify and close a feature cleanly
62
+ - `learn-feature` — create an interactive lesson for a completed feature
63
+ - `learn-codebase` — create a modular learning portal for the repository
64
+ - `teach-feature` — teach the verified current feature from its spec, diff, tests, and implementation
65
+ - `teach-architecture` — explain how completed features fit into the wider application and system architecture
66
+ - `quiz-me` — assess understanding of a recently taught feature with evidence-based questions
67
+ - `challenge-me` — create a small transfer exercise applying a learned concept in a changed context
68
+ - `learning-review` — review accumulated lessons, identify gaps, and create a reinforcement plan
69
+ - `reflect` — review completed work, and the reflection itself, and propose reusable workflow improvements for human approval
70
+ - `handoff` — preserve useful state between sessions or tools
71
+ - `skillsmith` — teach and create small local skills
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Ricardo Lamadrid
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,60 @@
1
+ ![Pathfinder](https://raw.githubusercontent.com/rikilamadrid/pathfinder/main/assets/logo-wordmark.png)
2
+
3
+ **An AI-assisted, human-in-the-loop workflow for building software — without giving up the decisions.**
4
+
5
+ This package installs [Pathfinder](https://github.com/rikilamadrid/pathfinder) into a Git repository you already have.
6
+
7
+ ```bash
8
+ npx create-pathfinder
9
+ ```
10
+
11
+ Then give your agent this prompt:
12
+
13
+ ```text
14
+ Use skills/kickstart-pathfinder/SKILL.md. Help me initialize this project.
15
+ Do not install packages or write product code yet.
16
+ ```
17
+
18
+ ## What it installs
19
+
20
+ Pathfinder is a kit of context files and skills — not a framework. There is no runtime, no dependency, and nothing to build. The installer copies six things into your repository and nothing else:
21
+
22
+ | Path | What it is |
23
+ | --- | --- |
24
+ | `AGENTS.md`, `CLAUDE.md` | Entry files that tell an agent how to work in the project |
25
+ | `context/` | Project truth — overview, standards, interaction rules, current feature |
26
+ | `skills/` | Nineteen skills covering discovery, specs, delivery, review, and learning |
27
+ | `prompts/` | Manual launchers for tools that do not discover local skills |
28
+ | `templates/` | Starting points the project copies when it needs them |
29
+
30
+ It never copies Pathfinder's own `README.md`, `CHANGELOG.md`, CI configuration, or brand assets. Your repository gets the workflow, not the project that maintains it.
31
+
32
+ ## What it will not do to your repository
33
+
34
+ This runs once, in real code, so it is deliberately timid:
35
+
36
+ - **It never overwrites.** Files that already exist are left exactly as they are and listed by name in the summary. Pass `--force` if you actually want them replaced.
37
+ - **It refuses to run outside a Git repository**, so whatever it writes is reviewable and undoable.
38
+ - **`--dry-run` reports the same plan the real install would carry out**, without writing anything.
39
+
40
+ Re-running it is safe, and fills in only what is missing.
41
+
42
+ ## Options
43
+
44
+ | Option | Effect |
45
+ | --- | --- |
46
+ | `--dry-run` | Report what would be written; change nothing |
47
+ | `--force` | Overwrite files that already exist |
48
+ | `-h`, `--help` | Show usage |
49
+
50
+ ## Requirements
51
+
52
+ Node 18 or newer, and a Git repository. No dependencies — this package installs nothing into your project's `node_modules`, and has none of its own.
53
+
54
+ ## Links
55
+
56
+ - [Repository and full documentation](https://github.com/rikilamadrid/pathfinder)
57
+ - [Why this is not a framework](https://github.com/rikilamadrid/pathfinder/blob/main/NOT_A_FRAMEWORK.md)
58
+ - [Changelog](https://github.com/rikilamadrid/pathfinder/blob/main/CHANGELOG.md)
59
+
60
+ MIT © Lamadrid Labs
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env node
2
+ import { run } from "../src/cli.mjs";
3
+
4
+ process.exitCode = run(process.argv.slice(2), {
5
+ cwd: process.cwd(),
6
+ out: (text) => process.stdout.write(text),
7
+ err: (text) => process.stderr.write(text),
8
+ });
@@ -0,0 +1,76 @@
1
+ # AI Interaction Guidelines
2
+
3
+ This file defines how AI agents collaborate with the human owner. Project-specific choices override generic defaults when explicitly documented.
4
+
5
+ ## Communication
6
+
7
+ - Be concise, direct, and honest.
8
+ - Distinguish facts, recommendations, assumptions, and unresolved decisions.
9
+ - Do not invent answers for `TBD` items.
10
+ - Stop after 2–3 grounded failed approaches and explain the blocker.
11
+
12
+ ## Approval Boundaries
13
+
14
+ Follow the project's documented policy. Unless explicitly pre-approved, ask before:
15
+
16
+ - dependencies or build-tool changes
17
+ - architecture migrations
18
+ - database, auth, payment, secrets, or security-sensitive changes
19
+ - destructive commands or file deletion
20
+ - Git history rewriting
21
+ - commits, merges, releases, or deployments
22
+ - adopting prototype code into production
23
+
24
+ ## Git and Delivery
25
+
26
+ Follow `context/project-overview.md`. Do not assume `main`, feature branches, Git Flow, conventional commits, pull requests, or SemVer.
27
+
28
+ Before Git actions, inspect current state and state what the documented workflow requires. If the workflow is `TBD`, ask before changing it.
29
+
30
+ ## Feature Lifecycle
31
+
32
+ 1. `load-feature` prepares one feature and checks context readiness.
33
+ 2. `start-feature` implements one delivery chunk at a time.
34
+ 3. `review-feature` reports findings against the spec and repository standards.
35
+ 4. `complete-feature` verifies acceptance criteria and updates durable records.
36
+ 5. `learn-feature` may generate an interactive lesson after completion.
37
+
38
+ ## Context Discipline
39
+
40
+ - Read the active feature, its dependencies, and only relevant durable context.
41
+ - Use the feature's Context Boundary and Delivery Chunks.
42
+ - Avoid repo-wide scans unless the task genuinely requires them.
43
+ - Split the feature when a focused session cannot safely understand, implement, and verify it.
44
+ - Never hide excessive scope behind a long checklist.
45
+
46
+ ## Prototype Workflow
47
+
48
+ - Use `debate-me` to determine whether prototyping is warranted.
49
+ - Use `prototype` to validate one important assumption at a time.
50
+ - Ask the human to approve, revise, replace, or stop the direction.
51
+ - Record approved direction and rejected assumptions.
52
+ - Do not treat prototype output as production-ready.
53
+
54
+ ## Scope Control
55
+
56
+ Do not drift into unrelated refactors, extra features, dependency swaps, broad visual changes, speculative abstractions, or later roadmap items.
57
+
58
+ ## Review Priorities
59
+
60
+ Use the project's quality priorities. When none are specified, review in this order:
61
+
62
+ 1. correctness
63
+ 2. security/privacy
64
+ 3. regressions and edge cases
65
+ 4. accessibility when applicable
66
+ 5. performance
67
+ 6. maintainability
68
+ 7. consistency
69
+ 8. polish
70
+
71
+ ## Learning
72
+
73
+ - Explain what was actually implemented, not an idealized architecture.
74
+ - Use diagrams, examples, and quizzes when they improve understanding.
75
+ - Do not expose private chain-of-thought.
76
+ - Keep feature lessons scoped; reserve broad repository scanning for `learn-codebase`.
@@ -0,0 +1,72 @@
1
+ # Coding Standards
2
+
3
+ These standards are stack-agnostic. Extend them after the project selects a real stack; remove sections that do not apply.
4
+
5
+ ## Core Principles
6
+
7
+ - Prefer readable, explicit code over clever code.
8
+ - Keep modules cohesive and boundaries clear.
9
+ - Validate data and assumptions at system boundaries.
10
+ - Make failure visible and diagnosable without exposing sensitive data.
11
+ - Optimize for future humans and AI agents reading the code.
12
+ - Follow existing repository conventions unless an approved decision changes them.
13
+
14
+ ## Context-Efficient Changes
15
+
16
+ - Work on one coherent delivery chunk at a time.
17
+ - Inspect only the files and dependencies needed for that chunk.
18
+ - Avoid mixing unrelated refactors, formatting churn, and features.
19
+ - Keep the project stable and verifiable after each chunk.
20
+ - Split work when too many systems or concerns must be held in context simultaneously.
21
+
22
+ ## Types and Contracts
23
+
24
+ - Use the strongest practical contract mechanism available in the chosen stack.
25
+ - Avoid untyped or unchecked escape hatches unless justified.
26
+ - Define and validate contracts for external data, configuration, user input, and integration boundaries.
27
+
28
+ ## User Interface Standards — When Applicable
29
+
30
+ - Start from the smallest supported viewport when the product supports small screens.
31
+ - Use semantic platform elements before accessibility workarounds.
32
+ - Support keyboard, focus, labels, contrast, reduced motion, and assistive technology according to project targets.
33
+ - Handle relevant loading, empty, error, success, disabled, and permission states.
34
+ - Use shared tokens and primitives when they improve consistency.
35
+
36
+ ## Service, API, CLI, Library, and Infrastructure Standards — When Applicable
37
+
38
+ - Document public contracts and compatibility expectations.
39
+ - Make operational failures actionable.
40
+ - Provide safe defaults and clear configuration errors.
41
+ - Preserve idempotency where repeated execution is possible.
42
+ - Avoid leaking implementation details through public interfaces.
43
+
44
+ ## Testing
45
+
46
+ Choose tests by behavior and risk:
47
+
48
+ - unit tests for isolated logic
49
+ - component/module tests for reusable units
50
+ - integration tests for boundaries and important flows
51
+ - end-to-end or system tests for critical journeys
52
+ - contract tests when independent systems depend on shared behavior
53
+
54
+ Avoid tests that only reproduce implementation detail.
55
+
56
+ ## Dependencies
57
+
58
+ Before adding one, assess necessity, maintenance, security, runtime cost, licensing, portability, and simpler alternatives. Follow the approval policy in `context/ai-interaction.md`.
59
+
60
+ ## Prototype Code
61
+
62
+ - Treat prototype code as disposable by default.
63
+ - Do not copy it into production merely because it appears to work.
64
+ - Adopt it only through an explicit feature that adds production architecture, validation, tests, accessibility, security, and maintainability as applicable.
65
+
66
+ ## Documentation
67
+
68
+ - Durable product and architecture truth belongs in `context/project-overview.md`.
69
+ - Active scope belongs in `context/current-feature.md`.
70
+ - Completed outcomes belong in `context/history.md`.
71
+ - Feature-specific contracts belong in `context/features/`.
72
+ - Learning artifacts explain the code but do not replace source-of-truth documentation.
@@ -0,0 +1,46 @@
1
+ # Current Feature
2
+
3
+ Use this as the lean tracker for active work.
4
+
5
+ ## Status
6
+
7
+ - State: `[not started / loaded / in progress / blocked / ready for review / complete]`
8
+ - Feature spec: `[context/features/##-feature-name.md]`
9
+ - Current delivery chunk: `[number and name]`
10
+ - Git state: `[branch/ref and working-tree summary, following project policy]`
11
+
12
+ ## Goal
13
+
14
+ - `[single feature outcome]`
15
+
16
+ ## Active Delivery Chunk
17
+
18
+ - `[small stable increment being implemented now]`
19
+
20
+ ## Context Boundary
21
+
22
+ Read:
23
+
24
+ - `[required file or folder]`
25
+
26
+ Avoid loading:
27
+
28
+ - `[unrelated area]`
29
+
30
+ ## Definition of Done
31
+
32
+ - `[acceptance result]`
33
+ - `[verification]`
34
+ - `[required docs/state update]`
35
+
36
+ ## Assumptions and Open Questions
37
+
38
+ - `[assumption or none]`
39
+
40
+ ## Out of Scope
41
+
42
+ - `[explicit boundary]`
43
+
44
+ ## Up Next
45
+
46
+ - `[next chunk or feature]`
@@ -0,0 +1,99 @@
1
+ # [Feature Name]
2
+
3
+ ## Status
4
+
5
+ Not Started
6
+
7
+ ## Overview
8
+
9
+ Describe the smallest coherent outcome, where it fits, and why it matters.
10
+
11
+ ## Problem
12
+
13
+ - What is missing, risky, confusing, inaccessible, unreliable, or inefficient?
14
+ - Who or what is affected?
15
+ - Why does this matter now?
16
+
17
+ ## Goal
18
+
19
+ State one user-visible or system-verifiable outcome.
20
+
21
+ ## Dependencies
22
+
23
+ - Earlier feature, system, decision, prototype, or `None`.
24
+
25
+ ## Requirements
26
+
27
+ - Requirement 1
28
+ - Requirement 2
29
+ - Requirement 3
30
+ - Include relevant failure, permission, loading, empty, retry, responsive, accessibility, operational, or compatibility states only when applicable.
31
+
32
+ ## Out of Scope
33
+
34
+ - Explicit exclusion
35
+ - Later feature, if known
36
+ - Unrelated refactors, dependencies, or polish
37
+
38
+ ## Experience or Operational Notes — When Applicable
39
+
40
+ - User interaction, system behavior, responsive behavior, accessibility, observability, performance, security, or operational expectations.
41
+
42
+ ## Technical Notes
43
+
44
+ Likely areas:
45
+
46
+ - `[specific path or bounded area]`
47
+
48
+ Implementation constraints:
49
+
50
+ - Follow project context and approved prototype direction.
51
+ - Do not silently resolve open architecture decisions.
52
+ - Keep prototype and production code boundaries explicit.
53
+
54
+ ## Context Boundary
55
+
56
+ Read:
57
+
58
+ - `[specific context and code]`
59
+
60
+ Avoid loading:
61
+
62
+ - `[unrelated systems, old specs, generated output]`
63
+
64
+ Split this feature further if its required context is not focused enough for reliable implementation and verification.
65
+
66
+ ## Delivery Chunks
67
+
68
+ 1. `[stable, verifiable increment]`
69
+ 2. `[stable, verifiable increment]`
70
+ 3. `[optional stable increment]`
71
+
72
+ Each chunk should leave the project stable.
73
+
74
+ ## Acceptance Criteria
75
+
76
+ - The defined outcome works end to end within scope.
77
+ - Relevant failure and edge behavior is handled.
78
+ - Applicable quality requirements are met.
79
+ - Required automated/manual checks pass.
80
+ - The work can be reviewed independently.
81
+
82
+ ## Verification
83
+
84
+ - Manual or operational checks:
85
+ - Automated checks:
86
+ - Edge cases:
87
+ - Quality checks:
88
+
89
+ ## Learning Targets
90
+
91
+ - Concepts worth explaining after completion:
92
+ - Diagram or demonstration opportunity:
93
+ - Quiz ideas:
94
+
95
+ ## Suggested Delivery Metadata
96
+
97
+ - Git action: `[follow project workflow]`
98
+ - Suggested branch, when applicable: `[project naming convention]`
99
+ - Suggested commit, when applicable: `[project convention]`
@@ -0,0 +1,14 @@
1
+ # Project History
2
+
3
+ Append-only record of completed, accepted work. Prefer durable outcomes over raw file inventories.
4
+
5
+ ## Completed Work
6
+
7
+ ### [YYYY-MM-DD] — [Feature or milestone]
8
+
9
+ - Outcome:
10
+ - Why it mattered:
11
+ - Verification:
12
+ - Important decision or tradeoff:
13
+ - Learning artifact, if any:
14
+ - Follow-up, if any:
@@ -0,0 +1,35 @@
1
+ # Learner Profile
2
+
3
+ ## Current Level
4
+
5
+ - Primary role: Senior Frontend Engineer
6
+ - Strongest areas: React, TypeScript, reusable components, design systems, frontend testing
7
+ - Areas to strengthen: system design, complex state, server-state architecture, data visualization, performance at scale, enterprise product architecture, backend integration, real-time systems
8
+ - Target role or environment: Senior frontend/product engineering role building complex enterprise interfaces
9
+ - Preferred learning style: practical explanations grounded in real code, diagrams, comparisons, interview framing, and short challenges
10
+ - Explanation depth: advanced but do not skip fundamentals that affect architectural decisions
11
+
12
+ ## Learning Preferences
13
+
14
+ - Explain why a solution was selected, not only what the code does.
15
+ - Compare at least one credible alternative when the tradeoff is meaningful.
16
+ - Connect frontend details to system-level consequences.
17
+ - Include accessibility, performance, testing, and maintainability.
18
+ - Use concise Mermaid diagrams when they clarify data or event flow.
19
+ - Prefer varied assessments: prediction, debugging, design choice, code reading, and transfer.
20
+ - Avoid trivia and syntax-only questions unless syntax caused a real issue.
21
+ - Do not overpraise. Give precise feedback.
22
+
23
+ ## Career Preparation
24
+
25
+ For relevant lessons, include:
26
+
27
+ - A likely senior frontend interview question
28
+ - A concise strong-answer outline
29
+ - One follow-up question that tests deeper understanding
30
+ - Vocabulary worth using accurately
31
+ - Any gap between the current implementation and production-scale expectations
32
+
33
+ ## Update Rules
34
+
35
+ Update this file only when the user explicitly changes learning goals or when a repeated pattern is clearly established across multiple lessons.
File without changes
@@ -0,0 +1,28 @@
1
+ # Learning Progress
2
+
3
+ This file records demonstrated understanding, not feature completion.
4
+
5
+ ## Confidence Scale
6
+
7
+ - `introduced` — explained once; no evidence of recall yet
8
+ - `practiced` — answered or applied with help
9
+ - `independent` — applied correctly without meaningful help
10
+ - `transferable` — applied the concept correctly in a different context
11
+ - `review-needed` — misunderstanding or weak recall was observed
12
+
13
+ ## Concept Records
14
+
15
+ | Concept | Status | Evidence | Last reviewed | Next reinforcement |
16
+ | --- | --- | --- | --- | --- |
17
+
18
+ ## Lessons Completed
19
+
20
+ | Date | Feature | Lesson | Quiz result | Challenge result | Follow-up |
21
+ | --- | --- | --- | --- | --- | --- |
22
+
23
+ ## Rules
24
+
25
+ - Do not mark a concept `independent` from passive reading.
26
+ - Do not mark a concept `transferable` using the same example that introduced it.
27
+ - Record uncertainty honestly.
28
+ - Prefer a few meaningful concepts over dozens of shallow entries.