You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,13 @@ Build high-signal agent and instruction files from community-proven best practic
6
6
7
7
## What devcontext does
8
8
- Transforms curated community knowledge into ready-to-use instructions for agents, coding copilots, and repo guides.
9
-
- Guides you through a multi-step wizard that selects files, frameworks, and scenario-specific topics.
9
+
- Guides you through a multi-step wizard that selects files, stacks, and scenario-specific topics.
10
10
- Surfaces examples, trade-offs, and documentation links so every choice is backed by trusted references.
11
11
12
12
## How the wizard works
13
13
1. Launch the app and switch from the landing hero to the Instructions Wizard.
14
14
2. Pick the instruction file you want to assemble (from templates defined in `data/files.json`).
15
-
3. Choose your framework and automatically load its follow-up question set (dynamic imports from `data/questions/<framework>.json`).
15
+
3. Choose your stack and automatically load its follow-up question set (dynamic imports from `data/questions/<stack>.json`).
16
16
4. Answer topic prompts across general, architecture, performance, security, commits, and more—or lean on the recommended defaults when you need a fast decision.
17
17
5. Review a completion summary that highlights what made it into your file and which areas still need decisions.
18
18
@@ -38,7 +38,7 @@ Then open the printed local URL in your browser to explore the wizard.
38
38
39
39
## Contribute back to the community
40
40
- Add or improve topics in `data/*.json` with clear labels, examples, and `docs` links.
41
-
- Propose new framework questionnaires under `data/questions/`, keeping the schema consistent.
41
+
- Propose new stack questionnaires under `data/questions/`, keeping the schema consistent.
42
42
- Share hooks, utilities, or UI refinements that make the wizard easier to reason about for first-time contributors.
43
43
44
44
Every addition helps the community build better instruction files faster.
-Framework selection (`data/frameworks.json`) with branching into framework-specific question sets (e.g., `data/questions/react.json`).
12
-
- Dynamic question sets loaded via `import()` based on the chosen framework.
11
+
-Stack selection (`data/stacks.json`) with branching into stack-specific question sets (e.g., `data/questions/react.json`).
12
+
- Dynamic question sets loaded via `import()` based on the chosen stack.
13
13
- User actions per question:
14
14
- Select single or multiple answers, or apply the recommended default when unsure.
15
15
- Review hover tooltips with examples, pros/cons, tags, and documentation links.
@@ -18,8 +18,8 @@
18
18
## Data Conventions
19
19
- Every answer object may define: `value`, `label`, `icon`, `example`, `infoLines` (derived from `pros`/`cons`), `tags`, `isDefault`, `disabled`, `disabledLabel`, and `docs`.
20
20
- JSON files in `data/` supply domain-specific options:
0 commit comments