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.
- package/AGENTS.md +7 -0
- package/CLAUDE.md +71 -0
- package/LICENSE +21 -0
- package/README.md +60 -0
- package/bin/create-pathfinder.mjs +8 -0
- package/context/ai-interaction.md +76 -0
- package/context/coding-standards.md +72 -0
- package/context/current-feature.md +46 -0
- package/context/features/example-feature-spec.md +99 -0
- package/context/history.md +14 -0
- package/context/learning/learner-profile.md +35 -0
- package/context/learning/lessons/.gitkeep +0 -0
- package/context/learning/progress.md +28 -0
- package/context/project-overview.md +198 -0
- package/copy-list.json +11 -0
- package/package.json +51 -0
- package/prompts/01-kickstart-project.md +1 -0
- package/prompts/01-teach-current-feature.md +9 -0
- package/prompts/02-debate-me.md +1 -0
- package/prompts/02-quiz-current-feature.md +7 -0
- package/prompts/03-challenge-current-feature.md +7 -0
- package/prompts/03-prototype.md +1 -0
- package/prompts/04-teach-current-architecture.md +7 -0
- package/prompts/04-to-specs.md +1 -0
- package/prompts/05-learning-review.md +5 -0
- package/prompts/05-load-feature.md +1 -0
- package/prompts/06-start-feature.md +1 -0
- package/prompts/07-review-feature.md +1 -0
- package/prompts/08-complete-feature.md +1 -0
- package/prompts/09-learn-feature.md +1 -0
- package/prompts/10-learn-codebase.md +1 -0
- package/prompts/11-handoff.md +1 -0
- package/prompts/12-skillsmith.md +1 -0
- package/prompts/13-reverse-engineer.md +18 -0
- package/prompts/14-reflect.md +13 -0
- package/skills/challenge-me/SKILL.md +81 -0
- package/skills/complete-feature/SKILL.md +17 -0
- package/skills/debate-me/SKILL.md +82 -0
- package/skills/handoff/SKILL.md +12 -0
- package/skills/kickstart-pathfinder/SKILL.md +49 -0
- package/skills/learn-codebase/SKILL.md +33 -0
- package/skills/learn-feature/SKILL.md +48 -0
- package/skills/learning-review/SKILL.md +76 -0
- package/skills/load-feature/SKILL.md +17 -0
- package/skills/prototype/SKILL.md +46 -0
- package/skills/quiz-me/SKILL.md +78 -0
- package/skills/reflect/SKILL.md +481 -0
- package/skills/reverse-engineer/SKILL.md +252 -0
- package/skills/review-feature/SKILL.md +25 -0
- package/skills/skillsmith/SKILL.md +14 -0
- package/skills/start-feature/SKILL.md +25 -0
- package/skills/teach-architecture/SKILL.md +79 -0
- package/skills/teach-feature/SKILL.md +110 -0
- package/skills/to-specs/SKILL.md +45 -0
- package/src/cli.mjs +156 -0
- package/src/install.mjs +99 -0
- package/src/kit.mjs +94 -0
- package/templates/CHANGELOG.template.md +11 -0
- package/templates/feature-spec.template.md +99 -0
- package/templates/lesson.template.md +71 -0
- package/templates/progress-entry.template.md +23 -0
- package/templates/project-overview.template.md +198 -0
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
# [Project Name] — Project Overview
|
|
2
|
+
|
|
3
|
+
> Describe the product, audience, intended feeling, and reason it should exist.
|
|
4
|
+
|
|
5
|
+
## Status
|
|
6
|
+
|
|
7
|
+
- Stage: `[idea / prototype / MVP / production / maintenance]`
|
|
8
|
+
- Repo type: `[new / existing / application / library / service / monorepo / other]`
|
|
9
|
+
- Primary goal: `[success definition]`
|
|
10
|
+
- Prototype status: `[not required / recommended / in progress / approved / rejected / TBD]`
|
|
11
|
+
|
|
12
|
+
## Decision States
|
|
13
|
+
|
|
14
|
+
- `TBD` — human decision required
|
|
15
|
+
- `None` — intentionally excluded
|
|
16
|
+
- `N/A` — not applicable
|
|
17
|
+
- `Deferred` — intentionally postponed
|
|
18
|
+
|
|
19
|
+
## Product Vision
|
|
20
|
+
|
|
21
|
+
- Problem:
|
|
22
|
+
- Primary user:
|
|
23
|
+
- First useful outcome:
|
|
24
|
+
- Distinctive quality:
|
|
25
|
+
- What this must avoid becoming:
|
|
26
|
+
|
|
27
|
+
## MVP Boundary
|
|
28
|
+
|
|
29
|
+
### In scope
|
|
30
|
+
|
|
31
|
+
- `[essential outcome]`
|
|
32
|
+
|
|
33
|
+
### Out of scope
|
|
34
|
+
|
|
35
|
+
- `[deferred outcome]`
|
|
36
|
+
|
|
37
|
+
### Success signals
|
|
38
|
+
|
|
39
|
+
- `[observable user, business, system, or learning signal]`
|
|
40
|
+
|
|
41
|
+
## Core Experience or System Flow
|
|
42
|
+
|
|
43
|
+
```text
|
|
44
|
+
starting state -> action/process -> useful result -> reason to return or continue
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Requirements, Preferences, Constraints, and Open Decisions
|
|
48
|
+
|
|
49
|
+
| Type | Item | Notes |
|
|
50
|
+
| --- | --- | --- |
|
|
51
|
+
| Requirement | `[must be true]` | |
|
|
52
|
+
| Preference | `[desired but negotiable]` | |
|
|
53
|
+
| Constraint | `[limit or external obligation]` | |
|
|
54
|
+
| Open decision | `[TBD]` | |
|
|
55
|
+
|
|
56
|
+
## Recommended and Approved Technology
|
|
57
|
+
|
|
58
|
+
Recommendations may be proposed by `debate-me`; approved choices belong here.
|
|
59
|
+
|
|
60
|
+
| Layer | Approved choice | Reason | Status |
|
|
61
|
+
| --- | --- | --- | --- |
|
|
62
|
+
| Platform/runtime | `TBD` | | |
|
|
63
|
+
| Language(s) | `TBD` | | |
|
|
64
|
+
| UI/presentation | `TBD / N/A` | | |
|
|
65
|
+
| Backend/application layer | `TBD / None` | | |
|
|
66
|
+
| Data storage | `TBD / None` | | |
|
|
67
|
+
| Data access/ORM | `TBD / None` | | |
|
|
68
|
+
| Authentication | `TBD / None` | | |
|
|
69
|
+
| Authorization | `TBD / None` | | |
|
|
70
|
+
| API/integration style | `TBD / None` | | |
|
|
71
|
+
| State management | `TBD / N/A` | | |
|
|
72
|
+
| Testing | `TBD` | | |
|
|
73
|
+
| Build/package tooling | `TBD` | | |
|
|
74
|
+
| Deployment/runtime environment | `TBD` | | |
|
|
75
|
+
| Observability | `TBD / Deferred` | | |
|
|
76
|
+
| AI providers/models | `TBD / None` | | |
|
|
77
|
+
|
|
78
|
+
## Architecture
|
|
79
|
+
|
|
80
|
+
- Architecture style: `TBD`
|
|
81
|
+
- Repository shape: `TBD`
|
|
82
|
+
- Main boundaries/modules:
|
|
83
|
+
- Data/control flow:
|
|
84
|
+
- Important tradeoffs:
|
|
85
|
+
|
|
86
|
+
```text
|
|
87
|
+
[path or module] # purpose
|
|
88
|
+
[path or module] # purpose
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
## Prototype Direction
|
|
92
|
+
|
|
93
|
+
- Prototype needed: `[yes / no / TBD]`
|
|
94
|
+
- Type: `[experience / technical / diagram / mixed / N/A]`
|
|
95
|
+
- Assumption being validated:
|
|
96
|
+
- Output location:
|
|
97
|
+
- Review criteria:
|
|
98
|
+
- Approved direction:
|
|
99
|
+
- Elements explicitly not adopted into production:
|
|
100
|
+
|
|
101
|
+
## Delivery Workflow
|
|
102
|
+
|
|
103
|
+
| Area | Choice |
|
|
104
|
+
| --- | --- |
|
|
105
|
+
| Git workflow | `TBD` |
|
|
106
|
+
| Default/stable branch | `TBD` |
|
|
107
|
+
| Branch naming | `TBD / N/A` |
|
|
108
|
+
| Commit convention | `TBD / None` |
|
|
109
|
+
| Pull request policy | `TBD` |
|
|
110
|
+
| Merge strategy | `TBD` |
|
|
111
|
+
| CI/CD | `TBD / None` |
|
|
112
|
+
| Versioning | `TBD / None` |
|
|
113
|
+
| Changelog | `TBD / None` |
|
|
114
|
+
| Release process | `TBD / None` |
|
|
115
|
+
|
|
116
|
+
## Environments and Integrations
|
|
117
|
+
|
|
118
|
+
| Area | Choice | Notes |
|
|
119
|
+
| --- | --- | --- |
|
|
120
|
+
| Local development | `TBD` | |
|
|
121
|
+
| Preview/staging | `TBD / None` | |
|
|
122
|
+
| Production | `TBD / None` | |
|
|
123
|
+
| Environment configuration | `TBD` | |
|
|
124
|
+
| Secrets management | `TBD / N/A` | |
|
|
125
|
+
| External APIs/services | `TBD / None` | |
|
|
126
|
+
| Rate/cost limits | `TBD / N/A` | |
|
|
127
|
+
|
|
128
|
+
## Quality Priorities
|
|
129
|
+
|
|
130
|
+
Rank only what matters for this project.
|
|
131
|
+
|
|
132
|
+
1. `[priority]`
|
|
133
|
+
2. `[priority]`
|
|
134
|
+
3. `[priority]`
|
|
135
|
+
|
|
136
|
+
| Concern | Target or decision |
|
|
137
|
+
| --- | --- |
|
|
138
|
+
| Correctness/reliability | `TBD` |
|
|
139
|
+
| Security/privacy | `TBD / N/A` |
|
|
140
|
+
| Accessibility | `TBD / N/A` |
|
|
141
|
+
| Performance | `TBD / N/A` |
|
|
142
|
+
| Browser/platform support | `TBD / N/A` |
|
|
143
|
+
| Localization | `TBD / None` |
|
|
144
|
+
| Offline behavior | `TBD / N/A` |
|
|
145
|
+
|
|
146
|
+
## Core Domain Concepts
|
|
147
|
+
|
|
148
|
+
Describe durable concepts without assuming a language:
|
|
149
|
+
|
|
150
|
+
```text
|
|
151
|
+
Entity/Concept: Example
|
|
152
|
+
Required fields: id, name
|
|
153
|
+
Important states: draft, active, archived
|
|
154
|
+
Relationships: belongs to / contains / references
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
## Build, Test, and Run Commands
|
|
158
|
+
|
|
159
|
+
```text
|
|
160
|
+
install: TBD
|
|
161
|
+
run/dev: TBD
|
|
162
|
+
test: TBD
|
|
163
|
+
lint/static analysis: TBD
|
|
164
|
+
build/package: TBD
|
|
165
|
+
other verification: TBD
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
## Build Phases
|
|
169
|
+
|
|
170
|
+
| Phase | Goal | Visible or verifiable win |
|
|
171
|
+
| --- | --- | --- |
|
|
172
|
+
| 1 | Foundation | `[result]` |
|
|
173
|
+
| 2 | Core experience/system | `[result]` |
|
|
174
|
+
| 3 | Real data/integration | `[result]` |
|
|
175
|
+
| 4 | Quality and release readiness | `[result]` |
|
|
176
|
+
|
|
177
|
+
## Learning Goals
|
|
178
|
+
|
|
179
|
+
- What the human wants to understand:
|
|
180
|
+
- Preferred lesson format: `[HTML / MDX / Markdown / existing docs system / TBD]`
|
|
181
|
+
- Quiz preferences:
|
|
182
|
+
- Topics to emphasize:
|
|
183
|
+
- Topics to avoid over-explaining:
|
|
184
|
+
|
|
185
|
+
## Durable Decisions
|
|
186
|
+
|
|
187
|
+
| Date | Decision | Reason | Status |
|
|
188
|
+
| --- | --- | --- | --- |
|
|
189
|
+
| `[YYYY-MM-DD]` | `[decision]` | `[reason]` | `[proposed / accepted / superseded]` |
|
|
190
|
+
|
|
191
|
+
## Things To Avoid
|
|
192
|
+
|
|
193
|
+
- Building before critical decisions are understood.
|
|
194
|
+
- Treating recommendations as approval.
|
|
195
|
+
- Silently resolving `TBD` items.
|
|
196
|
+
- Turning prototype shortcuts into production defaults.
|
|
197
|
+
- Over-documenting temporary implementation detail.
|
|
198
|
+
- Creating feature specs too large for a focused LLM context window.
|