prizmkit 1.1.76 → 1.1.77

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "frameworkVersion": "1.1.76",
3
- "bundledAt": "2026-06-13T04:58:49.240Z",
4
- "bundledFrom": "17f8257"
2
+ "frameworkVersion": "1.1.77",
3
+ "bundledAt": "2026-06-14T15:13:42.592Z",
4
+ "bundledFrom": "2327b8b"
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.1.76",
2
+ "version": "1.1.77",
3
3
  "skills": {
4
4
  "prizm-kit": {
5
5
  "description": "Full-lifecycle dev toolkit. Covers spec-driven development, Prizm context docs, code quality, debugging, deployment, and knowledge management.",
@@ -332,22 +332,23 @@ For each selected layer, run the rules Q&A workflow. This follows the 4-phase ru
332
332
 
333
333
  **Phase A — Load layer resources:**
334
334
  - Read `${SKILL_DIR}/references/rules/<layer>/fixed-rules.md` — industry-consensus rules injected without asking
335
- - Read `${SKILL_DIR}/references/rules/<layer>/question-bank.md` — interactive questions organized in groups (G1→G10)
335
+ - Read `${SKILL_DIR}/references/rules/<layer>/question-bank.md` — interactive questions organized in groups (G1→G10): authoritative source for question text, options, "Recommended" markers, and Notes
336
+ - Read `${SKILL_DIR}/references/rules/<layer>/question-manifest.json` — machine-readable structure for this layer. **This is your asking checklist.** It lists, per question: `group`, `required`, `maps_to` (which template placeholders the answer fills), and conditional fields (`required_if`, `auto_derived_when`, `options_vary_by`). Its `groups[]` carries each group's `quick_mode` flag, and `template_placeholders` is the expected-set for the Phase D self-check. Use the manifest to track coverage; use question-bank.md for the actual wording you present to the user. If a question id in one file is absent from the other, trust question-bank.md for content and note the drift.
336
337
 
337
338
  **Phase B — Interactive Q&A:**
338
339
  - Ask questions one group at a time (max 3 questions per message), as defined in question-bank.md
339
340
  - Each question shows a "Recommended" option to reduce decision cost
340
- - **Quick mode**: ask only the following groups per layer. All other groups adopt recommended defaults silently.
341
- - **Frontend**: G1 (Tech Stack), G2 (Styling), G3 (State & Data Fetching), G7 (Testing & Quality). Skip: G4 (Design System), G5 (Responsive), G6 (i18n), G8 (AI Vibecoding), G9 (Performance).
342
- - **Backend**: G1 (Language & Runtime), G2 (Framework & Architecture), G3 (API Style), G4 (Data Layer), G7 (Testing & Quality). Skip: G5 (Auth), G6 (Infrastructure), G8 (Observability), G9 (AI Constraints).
343
- - **Database**: G1 (Database Selection), G2 (Data Modeling), G3 (Migration), G7 (AI Constraints). Skip: G4 (Index & Performance), G5 (Security & Compliance), G6 (High Availability & Ops).
344
- - **Mobile**: G1 (Platform & Language), G2 (Architecture), G3 (UI Framework), G4 (Navigation & State), G7 (Testing). Skip: G5 (Networking & Data), G6 (Platform Features), G8 (App Distribution), G9 (Performance & Accessibility), G10 (AI Constraints).
345
- - **Full mode**: ask all groups in order (G1→G9 for frontend/backend, G1→G7 for database, G1→G10 for mobile)
341
+ - **Quick mode**: ask only the groups whose `quick_mode` is `true` in `question-manifest.json`. All other groups adopt recommended defaults silently. (The manifest is the single source of truth for quick-mode membership — do not hardcode group lists here.)
342
+ - **Full mode**: ask all groups in manifest order (`groups[]`).
343
+ - **Conditional questions** (driven by the manifest's per-question fields):
344
+ - `required_if: "<expr>"` ask this question only when the expression over prior answers holds (e.g. Q14 `required_if: Q13 != D`). If the condition is false, the question is legitimately skipped not a coverage gap.
345
+ - `auto_derived_when: "<expr>"` when this holds, fill the mapped placeholder(s) from the prior answer without asking (e.g. backend Q6 `auto_derived_when: Q5 in [GraphQL, gRPC]`). Count as satisfied, not skipped.
346
+ - `options_vary_by: "<Qid>"` the question is still asked; only its option list depends on that prior answer (e.g. framework/ORM options vary by language). Never affects whether the question is required.
346
347
  - Shortcut commands work at any point:
347
348
  - `recommended` / `default` → adopt all recommended for current group
348
349
  - `all recommended` → adopt all recommended for all remaining groups
349
350
  - `skip` → mark current group as "Not required at this stage"
350
- - Record answers in memory after each group.
351
+ - Record answers in memory after each group. Track which manifest questions are answered, auto-derived, or conditionally skipped so Phase D can verify coverage.
351
352
 
352
353
  **Phase C — Auto-derivation:**
353
354
  - Read `${SKILL_DIR}/references/rules/<layer>/derivation-rules.md`
@@ -357,8 +358,10 @@ For each selected layer, run the rules Q&A workflow. This follows the 4-phase ru
357
358
  **Phase D — Render and write:**
358
359
  - Read `${SKILL_DIR}/references/rules/<layer>/template.md`
359
360
  - Fill all template placeholders with accumulated content from Phases A+B+C
360
- - **Post-render self-check**: scan for residual `{{ ` or ` }}` — count must be 0 before writing
361
- - Generate Appendix A (Deny List) and Appendix B (Recommended Tools) per template instructions
361
+ - **Post-render self-check** (driven by `question-manifest.json` `template_placeholders`):
362
+ 1. **Coverage pass** for every placeholder in `from_questions`, confirm it traces to an answered question OR an `auto_derived_when` path OR a conditionally-skipped question (`required_if` false). If a `from_questions` placeholder has no source, you skipped a required question — go back and ask it before writing.
363
+ 2. **Residual pass** — scan the rendered document for any residual `{{ ` or ` }}`; count must be 0. Placeholders in `from_fixed_rules` / `auto_generated` / `metadata` are filled from fixed-rules.md, Phase D generation, and project metadata respectively — they are NOT expected to come from Q&A, but they MUST still be rendered (no residual braces).
364
+ - Generate Appendix A (Deny List) and Appendix B (Recommended Tools) per template instructions — these fill the `auto_generated` placeholders
362
365
  - Create `.prizmkit/rules/` directory if it doesn't exist
363
366
  - Write `.prizmkit/rules/<layer>-rules.md`
364
367
 
@@ -0,0 +1,46 @@
1
+ {
2
+ "schema_version": "app-planner-question-manifest-v1",
3
+ "layer": "backend",
4
+ "total_questions": 20,
5
+ "_doc": "Machine-readable structure for backend question-bank.md. Question TEXT/options/Recommended/Notes are authoritative in question-bank.md; this file carries ONLY structure: group membership, quick-mode, question->placeholder mapping, and conditional logic. Keep Qids and group ids in sync with question-bank.md. The AI reads this as its asking checklist (Phase A) and self-check expected-set (Phase D).",
6
+ "_conditions": "required_if / auto_derived_when use simple expressions over recorded answers, e.g. 'Q5 == RESTful', 'Q13 != D', 'Q5 in [GraphQL, gRPC]'. options_vary_by names a prior answer that changes the OPTION LIST only (question is still asked; never affects required).",
7
+ "groups": [
8
+ { "id": "G1", "topic": "Language & Runtime", "quick_mode": true },
9
+ { "id": "G2", "topic": "Framework & Architecture", "quick_mode": true },
10
+ { "id": "G3", "topic": "API Style", "quick_mode": true },
11
+ { "id": "G4", "topic": "Data Layer", "quick_mode": true },
12
+ { "id": "G5", "topic": "Auth", "quick_mode": false },
13
+ { "id": "G6", "topic": "Infrastructure", "quick_mode": false },
14
+ { "id": "G7", "topic": "Testing & Quality", "quick_mode": true },
15
+ { "id": "G8", "topic": "Observability", "quick_mode": false },
16
+ { "id": "G9", "topic": "AI Constraints", "quick_mode": false }
17
+ ],
18
+ "questions": [
19
+ { "id": "Q1", "group": "G1", "topic": "Programming Language", "maps_to": ["language", "tech_stack_rules"], "required": true },
20
+ { "id": "Q2", "group": "G1", "topic": "Runtime Version", "maps_to": ["runtime_version"], "required": true },
21
+ { "id": "Q3", "group": "G2", "topic": "Web Framework", "maps_to": ["framework", "tech_stack_rules"], "required": true, "options_vary_by": "Q1", "note_open_ended_when": "Q1 == Custom" },
22
+ { "id": "Q4", "group": "G2", "topic": "Architecture Pattern", "maps_to": ["architecture", "arch_rules"], "required": true },
23
+ { "id": "Q5", "group": "G3", "topic": "API Style", "maps_to": ["api_style", "api_rules"], "required": true },
24
+ { "id": "Q6", "group": "G3", "topic": "API Documentation", "maps_to": ["api_docs"], "required": true, "required_if": "Q5 == RESTful", "auto_derived_when": "Q5 in [GraphQL, gRPC]" },
25
+ { "id": "Q7", "group": "G4", "topic": "ORM / Data Access", "maps_to": ["orm", "data_rules"], "required": true, "options_vary_by": "Q1", "note_open_ended_when": "Q1 == Custom" },
26
+ { "id": "Q8", "group": "G4", "topic": "Database", "maps_to": ["database"], "required": true },
27
+ { "id": "Q9", "group": "G5", "topic": "Authentication Scheme", "maps_to": ["auth_scheme", "auth_rules"], "required": true },
28
+ { "id": "Q10", "group": "G6", "topic": "Caching", "maps_to": ["cache", "cache_rules"], "required": true },
29
+ { "id": "Q11", "group": "G6", "topic": "Message Queue", "maps_to": ["mq", "mq_rules"], "required": true },
30
+ { "id": "Q12", "group": "G6", "topic": "Containerization & Deployment", "maps_to": ["container", "deploy_rules"], "required": true },
31
+ { "id": "Q13", "group": "G7", "topic": "Test Coverage Requirements", "maps_to": ["test_requirement", "test_rules"], "required": true },
32
+ { "id": "Q14", "group": "G7", "topic": "Test Framework", "maps_to": ["test_framework"], "required": true, "required_if": "Q13 != D", "options_vary_by": "Q1" },
33
+ { "id": "Q15", "group": "G7", "topic": "Mock Strategy", "maps_to": ["mock_strategy", "test_rules"], "required": true },
34
+ { "id": "Q16", "group": "G8", "topic": "Logging", "maps_to": ["logging", "observability_rules"], "required": true },
35
+ { "id": "Q17", "group": "G8", "topic": "Monitoring & Tracing", "maps_to": ["monitoring", "observability_rules"], "required": true },
36
+ { "id": "Q18", "group": "G9", "topic": "AI Permission to Add Dependencies", "maps_to": ["ai_dependency_rule"], "required": true },
37
+ { "id": "Q19", "group": "G9", "topic": "AI Modifying Shared Modules", "maps_to": ["ai_breaking_change_rule"], "required": true },
38
+ { "id": "Q20", "group": "G9", "topic": "AI Modifying Configuration", "maps_to": ["ai_config_rule"], "required": true }
39
+ ],
40
+ "template_placeholders": {
41
+ "from_questions": ["language", "runtime_version", "framework", "architecture", "api_style", "api_docs", "orm", "database", "auth_scheme", "cache", "mq", "container", "test_requirement", "test_framework", "mock_strategy", "logging", "monitoring", "ai_dependency_rule", "ai_breaking_change_rule", "ai_config_rule", "tech_stack_rules", "arch_rules", "api_rules", "auth_rules", "data_rules", "cache_rules", "mq_rules", "deploy_rules", "observability_rules", "test_rules"],
42
+ "from_fixed_rules": ["FIXED_RULES_STRUCTURE", "FIXED_RULES_API", "FIXED_RULES_ERROR", "FIXED_RULES_SECURITY", "FIXED_RULES_RATE_LIMITING", "FIXED_RULES_DATABASE", "FIXED_RULES_OBSERVABILITY", "FIXED_RULES_TRACING", "FIXED_RULES_CONFIG", "FIXED_RULES_ASYNC", "FIXED_RULES_MESSAGE_DELIVERY", "FIXED_RULES_GRACEFUL_SHUTDOWN", "FIXED_RULES_TEST", "FIXED_RULES_AI_BASE"],
43
+ "auto_generated": ["deny_list_summary", "recommended_libs"],
44
+ "metadata": ["project_name", "generated_at"]
45
+ }
46
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "schema_version": "app-planner-question-manifest-v1",
3
+ "layer": "database",
4
+ "total_questions": 15,
5
+ "_doc": "Machine-readable structure for database question-bank.md. Question TEXT/options/Recommended/Notes are authoritative in question-bank.md; this file carries ONLY structure: group membership, quick-mode, question->placeholder mapping, and conditional logic. Keep Qids and group ids in sync with question-bank.md. The AI reads this as its asking checklist (Phase A) and self-check expected-set (Phase D).",
6
+ "_conditions": "required_if / auto_derived_when use simple expressions over recorded answers. options_vary_by names a prior answer that changes the OPTION LIST only (question is still asked; never affects required). A single answer may fill more than one placeholder (a TL;DR value + a rules-block), both listed in maps_to.",
7
+ "groups": [
8
+ { "id": "G1", "topic": "Database Selection", "quick_mode": true },
9
+ { "id": "G2", "topic": "Data Modeling", "quick_mode": true },
10
+ { "id": "G3", "topic": "Migration", "quick_mode": true },
11
+ { "id": "G4", "topic": "Index & Performance", "quick_mode": false },
12
+ { "id": "G5", "topic": "Security & Compliance", "quick_mode": false },
13
+ { "id": "G6", "topic": "High Availability & Ops", "quick_mode": false },
14
+ { "id": "G7", "topic": "AI Constraints", "quick_mode": true }
15
+ ],
16
+ "questions": [
17
+ { "id": "Q1", "group": "G1", "topic": "Primary Database", "maps_to": ["database", "tech_rules"], "required": true },
18
+ { "id": "Q2", "group": "G1", "topic": "Cache Layer", "maps_to": ["cache", "cache_rules"], "required": true },
19
+ { "id": "Q3", "group": "G2", "topic": "Primary Key Strategy", "maps_to": ["pk_strategy", "schema_rules"], "required": true },
20
+ { "id": "Q4", "group": "G2", "topic": "Soft Delete", "maps_to": ["soft_delete", "schema_rules"], "required": true },
21
+ { "id": "Q5", "group": "G2", "topic": "Normalization Level", "maps_to": ["normalization", "schema_rules"], "required": true },
22
+ { "id": "Q6", "group": "G3", "topic": "Migration Tool", "maps_to": ["migration_tool", "migration_rules"], "required": true },
23
+ { "id": "Q7", "group": "G4", "topic": "Query Complexity", "maps_to": ["workload_type", "performance_rules"], "required": true },
24
+ { "id": "Q8", "group": "G4", "topic": "Estimated Data Volume", "maps_to": ["data_scale", "performance_rules"], "required": true },
25
+ { "id": "Q9", "group": "G5", "topic": "Data Sensitivity Level", "maps_to": ["data_sensitivity", "security_rules"], "required": true },
26
+ { "id": "Q10", "group": "G5", "topic": "Audit Requirements", "maps_to": ["audit", "audit_rules"], "required": true, "multi_select": true },
27
+ { "id": "Q11", "group": "G6", "topic": "Deployment Method", "maps_to": ["deployment", "ops_rules"], "required": true },
28
+ { "id": "Q12", "group": "G6", "topic": "Backup Strategy", "maps_to": ["backup", "ops_rules"], "required": true },
29
+ { "id": "Q13", "group": "G6", "topic": "High Availability Requirements", "maps_to": ["ha", "ops_rules"], "required": true },
30
+ { "id": "Q14", "group": "G7", "topic": "AI Permission to Modify Database Structure", "maps_to": ["ai_ddl_rule", "ai_ddl_permission"], "required": true },
31
+ { "id": "Q15", "group": "G7", "topic": "AI Safety Constraints", "maps_to": ["ai_safety_rule", "ai_safety_constraint"], "required": true }
32
+ ],
33
+ "template_placeholders": {
34
+ "from_questions": ["database", "tech_rules", "cache", "cache_rules", "pk_strategy", "schema_rules", "soft_delete", "normalization", "migration_tool", "migration_rules", "workload_type", "performance_rules", "data_scale", "data_sensitivity", "security_rules", "audit", "audit_rules", "deployment", "ops_rules", "backup", "ha", "ai_ddl_rule", "ai_ddl_permission", "ai_safety_rule", "ai_safety_constraint"],
35
+ "from_fixed_rules": ["FIXED_RULES_AI_BASE", "FIXED_RULES_BACKUP", "FIXED_RULES_CONNECTION", "FIXED_RULES_INDEX", "FIXED_RULES_MIGRATION", "FIXED_RULES_PERFORMANCE", "FIXED_RULES_QUERY", "FIXED_RULES_SCHEMA", "FIXED_RULES_SECURITY", "FIXED_RULES_TRANSACTION", "FIXED_RULES_TYPES"],
36
+ "auto_generated": ["deny_list_summary", "recommended_libs"],
37
+ "metadata": ["project_name", "generated_at"]
38
+ }
39
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "schema_version": "app-planner-question-manifest-v1",
3
+ "layer": "frontend",
4
+ "total_questions": 25,
5
+ "_doc": "Machine-readable structure for frontend question-bank.md. Question TEXT/options/Recommended/Notes are authoritative in question-bank.md; this file carries ONLY structure: group membership, quick-mode, question->placeholder mapping, and conditional logic. Keep Qids and group ids in sync with question-bank.md. The AI reads this as its asking checklist (Phase A) and self-check expected-set (Phase D).",
6
+ "_conditions": "required_if / auto_derived_when use simple expressions over recorded answers, e.g. 'Q15 in [A, B]'. options_vary_by names a prior answer that changes the OPTION LIST/recommendation only (question is still asked; never affects required).",
7
+ "groups": [
8
+ { "id": "G1", "topic": "Tech Stack", "quick_mode": true },
9
+ { "id": "G2", "topic": "Styling", "quick_mode": true },
10
+ { "id": "G3", "topic": "State & Data Fetching", "quick_mode": true },
11
+ { "id": "G4", "topic": "Design System", "quick_mode": false },
12
+ { "id": "G5", "topic": "Responsive & Adaptation", "quick_mode": false },
13
+ { "id": "G6", "topic": "i18n & Accessibility", "quick_mode": false },
14
+ { "id": "G7", "topic": "Testing & Quality", "quick_mode": true },
15
+ { "id": "G8", "topic": "AI Vibecoding Constraints", "quick_mode": false },
16
+ { "id": "G9", "topic": "Performance Baseline", "quick_mode": false }
17
+ ],
18
+ "questions": [
19
+ { "id": "Q1", "group": "G1", "topic": "Frontend Framework", "maps_to": ["framework", "tech_stack_rules"], "required": true },
20
+ { "id": "Q2", "group": "G1", "topic": "Meta-Framework", "maps_to": ["meta_framework", "tech_stack_rules"], "required": true, "options_vary_by": "Q1" },
21
+ { "id": "Q3", "group": "G1", "topic": "Package Manager", "maps_to": ["package_manager", "tech_stack_rules"], "required": true },
22
+ { "id": "Q4", "group": "G2", "topic": "Styling Solution", "maps_to": ["style_solution", "style_specific_rules"], "required": true },
23
+ { "id": "Q4b", "group": "G2", "topic": "Font Loading Strategy", "maps_to": ["font_strategy", "performance_rules"], "required": true },
24
+ { "id": "Q5", "group": "G3", "topic": "Global State Library", "maps_to": ["state_lib", "state_rules"], "required": true, "options_vary_by": "Q1" },
25
+ { "id": "Q6", "group": "G3", "topic": "Server State Library", "maps_to": ["server_state_lib", "server_state_rules"], "required": true },
26
+ { "id": "Q7", "group": "G3", "topic": "API Type Source", "maps_to": ["api_type_source", "server_state_rules"], "required": true },
27
+ { "id": "Q8", "group": "G4", "topic": "Primary Design/Mockup Source", "maps_to": ["design_source"], "required": true },
28
+ { "id": "Q9", "group": "G4", "topic": "Token Naming Layers", "maps_to": ["token_layering", "token_layering_rules"], "required": true },
29
+ { "id": "Q10", "group": "G4", "topic": "Dark Mode", "maps_to": ["dark_mode", "dark_mode_rules"], "required": true },
30
+ { "id": "Q11", "group": "G5", "topic": "Adaptation Strategy", "maps_to": ["responsive_strategy", "breakpoint_rules"], "required": true },
31
+ { "id": "Q12", "group": "G5", "topic": "Breakpoint Scheme", "maps_to": ["breakpoint_scheme", "breakpoint_rules"], "required": true },
32
+ { "id": "Q13", "group": "G6", "topic": "Internationalization", "maps_to": ["i18n", "i18n_rules"], "required": true },
33
+ { "id": "Q14", "group": "G6", "topic": "Accessibility Target", "maps_to": ["a11y_level", "a11y_extra_rules"], "required": true },
34
+ { "id": "Q15", "group": "G7", "topic": "Test Coverage Requirements", "maps_to": ["test_coverage", "test_rules"], "required": true },
35
+ { "id": "Q16", "group": "G7", "topic": "Unit Test Framework", "maps_to": ["unit_test_framework", "test_rules"], "required": true, "required_if": "Q15 in [A, B]" },
36
+ { "id": "Q17", "group": "G7", "topic": "E2E Framework", "maps_to": ["e2e_framework", "test_rules"], "required": true, "required_if": "Q15 in [A, C]" },
37
+ { "id": "Q18", "group": "G8", "topic": "AI Component Index Sync", "maps_to": ["ai_index_rule"], "required": true },
38
+ { "id": "Q19", "group": "G8", "topic": "AI Permission to Add Dependencies", "maps_to": ["ai_dependency_rule"], "required": true },
39
+ { "id": "Q20", "group": "G8", "topic": "AI Impact Analysis Before Modifying Shared Components", "maps_to": ["ai_breaking_change_rule"], "required": true },
40
+ { "id": "Q21", "group": "G8", "topic": "AI Permission to Modify Config Files", "maps_to": ["ai_config_rule"], "required": true },
41
+ { "id": "Q22", "group": "G8", "topic": "AI Single File Generation Limit", "maps_to": ["ai_max_lines"], "required": true },
42
+ { "id": "Q23", "group": "G9", "topic": "First Screen LCP Target", "maps_to": ["lcp_target", "performance_rules"], "required": true },
43
+ { "id": "Q24", "group": "G9", "topic": "Single Chunk Size Limit", "maps_to": ["bundle_size", "performance_rules"], "required": true }
44
+ ],
45
+ "template_placeholders": {
46
+ "from_questions": ["framework", "meta_framework", "package_manager", "style_solution", "style_specific_rules", "font_strategy", "performance_rules", "state_lib", "state_rules", "server_state_lib", "server_state_rules", "api_type_source", "design_source", "token_layering", "token_layering_rules", "dark_mode", "dark_mode_rules", "responsive_strategy", "breakpoint_rules", "breakpoint_scheme", "i18n", "i18n_rules", "a11y_level", "a11y_extra_rules", "test_coverage", "test_rules", "unit_test_framework", "e2e_framework", "ai_index_rule", "ai_dependency_rule", "ai_breaking_change_rule", "ai_config_rule", "ai_max_lines", "lcp_target", "bundle_size", "tech_stack_rules"],
47
+ "from_fixed_rules": ["FIXED_RULES_A11Y", "FIXED_RULES_AI_BASE", "FIXED_RULES_COMPONENT_CONTRACT", "FIXED_RULES_DENY_LIST", "FIXED_RULES_ERROR_HANDLING", "FIXED_RULES_GIT", "FIXED_RULES_I18N_BASELINE", "FIXED_RULES_NAMING", "FIXED_RULES_PERFORMANCE", "FIXED_RULES_SECURITY", "FIXED_RULES_TYPESCRIPT"],
48
+ "auto_generated": ["deny_list_summary", "recommended_libs"],
49
+ "metadata": ["project_name", "generated_at", "project_scope"]
50
+ }
51
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "schema_version": "app-planner-question-manifest-v1",
3
+ "layer": "mobile",
4
+ "total_questions": 20,
5
+ "_doc": "Machine-readable structure for mobile question-bank.md. Question TEXT/options/Recommended/Notes are authoritative in question-bank.md; this file carries ONLY structure: group membership, quick-mode, question->placeholder mapping, and conditional logic. Keep Qids and group ids in sync with question-bank.md. The AI reads this as its asking checklist (Phase A) and self-check expected-set (Phase D).",
6
+ "_conditions": "required_if / auto_derived_when use simple expressions over recorded answers, e.g. 'Q12 in [A, B]'. options_vary_by names a prior answer that changes the OPTION LIST only (question is still asked; never affects required). dual_native_repeat_when notes Q1=E (both native) repeats the question per platform.",
7
+ "groups": [
8
+ { "id": "G1", "topic": "Platform & Language", "quick_mode": true },
9
+ { "id": "G2", "topic": "Architecture", "quick_mode": true },
10
+ { "id": "G3", "topic": "UI Framework", "quick_mode": true },
11
+ { "id": "G4", "topic": "Navigation & State", "quick_mode": true },
12
+ { "id": "G5", "topic": "Networking & Data", "quick_mode": false },
13
+ { "id": "G6", "topic": "Platform Features", "quick_mode": false },
14
+ { "id": "G7", "topic": "Testing", "quick_mode": true },
15
+ { "id": "G8", "topic": "App Distribution", "quick_mode": false },
16
+ { "id": "G9", "topic": "Performance & Accessibility", "quick_mode": false },
17
+ { "id": "G10", "topic": "AI Constraints", "quick_mode": false }
18
+ ],
19
+ "questions": [
20
+ { "id": "Q1", "group": "G1", "topic": "Target Platform", "maps_to": ["platform", "tech_stack_rules"], "required": true },
21
+ { "id": "Q2", "group": "G1", "topic": "Minimum OS Version", "maps_to": ["min_os_version", "tech_stack_rules"], "required": true },
22
+ { "id": "Q3", "group": "G2", "topic": "Architecture Pattern", "maps_to": ["architecture", "arch_rules"], "required": true },
23
+ { "id": "Q4", "group": "G3", "topic": "UI Framework", "maps_to": ["ui_framework", "ui_rules"], "required": true, "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
24
+ { "id": "Q5", "group": "G4", "topic": "Navigation Strategy", "maps_to": ["navigation", "navigation_rules"], "required": true },
25
+ { "id": "Q6", "group": "G4", "topic": "State Management", "maps_to": ["state_management", "state_rules"], "required": true, "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
26
+ { "id": "Q7", "group": "G5", "topic": "Networking Library", "maps_to": ["networking", "networking_rules"], "required": true, "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
27
+ { "id": "Q8", "group": "G5", "topic": "Local Persistence", "maps_to": ["persistence", "persistence_rules"], "required": true, "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
28
+ { "id": "Q9", "group": "G6", "topic": "Push Notifications", "maps_to": ["push_notifications", "platform_features_rules"], "required": true },
29
+ { "id": "Q10", "group": "G6", "topic": "Background Tasks", "maps_to": ["background_tasks", "platform_features_rules"], "required": true },
30
+ { "id": "Q11", "group": "G6", "topic": "Permissions Strategy", "maps_to": ["permissions_strategy"], "required": true },
31
+ { "id": "Q12", "group": "G7", "topic": "Test Coverage Requirements", "maps_to": ["test_coverage", "test_rules"], "required": true },
32
+ { "id": "Q13", "group": "G7", "topic": "Unit Test Framework", "maps_to": ["unit_test_framework"], "required": true, "required_if": "Q12 in [A, B]", "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
33
+ { "id": "Q14", "group": "G7", "topic": "UI/E2E Test Framework", "maps_to": ["e2e_framework"], "required": true, "required_if": "Q12 in [A, C]", "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
34
+ { "id": "Q15", "group": "G8", "topic": "Distribution Method", "maps_to": ["distribution", "distribution_rules"], "required": true },
35
+ { "id": "Q16", "group": "G9", "topic": "Performance Targets", "maps_to": ["performance_target", "performance_rules"], "required": true },
36
+ { "id": "Q17", "group": "G9", "topic": "Accessibility Targets", "maps_to": ["a11y_target", "a11y_rules"], "required": true },
37
+ { "id": "Q18", "group": "G10", "topic": "AI Permission to Add Dependencies", "maps_to": ["ai_dependency_rule"], "required": true },
38
+ { "id": "Q19", "group": "G10", "topic": "AI Impact Analysis Before Modifying Shared Code", "maps_to": ["ai_breaking_change_rule"], "required": true },
39
+ { "id": "Q20", "group": "G10", "topic": "AI Platform-Specific Code Generation", "maps_to": ["ai_platform_rule"], "required": true }
40
+ ],
41
+ "template_placeholders": {
42
+ "from_questions": ["platform", "tech_stack_rules", "min_os_version", "architecture", "arch_rules", "ui_framework", "ui_rules", "navigation", "navigation_rules", "state_management", "state_rules", "networking", "networking_rules", "persistence", "persistence_rules", "push_notifications", "platform_features_rules", "background_tasks", "permissions_strategy", "test_coverage", "test_rules", "unit_test_framework", "e2e_framework", "distribution", "distribution_rules", "performance_target", "performance_rules", "a11y_target", "a11y_rules", "ai_dependency_rule", "ai_breaking_change_rule", "ai_platform_rule"],
43
+ "from_fixed_rules": ["FIXED_RULES_A11Y", "FIXED_RULES_AI_BASE", "FIXED_RULES_DISTRIBUTION", "FIXED_RULES_NAVIGATION", "FIXED_RULES_NETWORKING", "FIXED_RULES_PERFORMANCE", "FIXED_RULES_PERSISTENCE", "FIXED_RULES_PLATFORM_FEATURES", "FIXED_RULES_SECURITY", "FIXED_RULES_STATE", "FIXED_RULES_STRUCTURE", "FIXED_RULES_TEST", "FIXED_RULES_UI"],
44
+ "auto_generated": ["deny_list_summary", "recommended_libs"],
45
+ "metadata": ["project_name", "generated_at"]
46
+ }
47
+ }
@@ -332,22 +332,23 @@ For each selected layer, run the rules Q&A workflow. This follows the 4-phase ru
332
332
 
333
333
  **Phase A — Load layer resources:**
334
334
  - Read `${SKILL_DIR}/references/rules/<layer>/fixed-rules.md` — industry-consensus rules injected without asking
335
- - Read `${SKILL_DIR}/references/rules/<layer>/question-bank.md` — interactive questions organized in groups (G1→G10)
335
+ - Read `${SKILL_DIR}/references/rules/<layer>/question-bank.md` — interactive questions organized in groups (G1→G10): authoritative source for question text, options, "Recommended" markers, and Notes
336
+ - Read `${SKILL_DIR}/references/rules/<layer>/question-manifest.json` — machine-readable structure for this layer. **This is your asking checklist.** It lists, per question: `group`, `required`, `maps_to` (which template placeholders the answer fills), and conditional fields (`required_if`, `auto_derived_when`, `options_vary_by`). Its `groups[]` carries each group's `quick_mode` flag, and `template_placeholders` is the expected-set for the Phase D self-check. Use the manifest to track coverage; use question-bank.md for the actual wording you present to the user. If a question id in one file is absent from the other, trust question-bank.md for content and note the drift.
336
337
 
337
338
  **Phase B — Interactive Q&A:**
338
339
  - Ask questions one group at a time (max 3 questions per message), as defined in question-bank.md
339
340
  - Each question shows a "Recommended" option to reduce decision cost
340
- - **Quick mode**: ask only the following groups per layer. All other groups adopt recommended defaults silently.
341
- - **Frontend**: G1 (Tech Stack), G2 (Styling), G3 (State & Data Fetching), G7 (Testing & Quality). Skip: G4 (Design System), G5 (Responsive), G6 (i18n), G8 (AI Vibecoding), G9 (Performance).
342
- - **Backend**: G1 (Language & Runtime), G2 (Framework & Architecture), G3 (API Style), G4 (Data Layer), G7 (Testing & Quality). Skip: G5 (Auth), G6 (Infrastructure), G8 (Observability), G9 (AI Constraints).
343
- - **Database**: G1 (Database Selection), G2 (Data Modeling), G3 (Migration), G7 (AI Constraints). Skip: G4 (Index & Performance), G5 (Security & Compliance), G6 (High Availability & Ops).
344
- - **Mobile**: G1 (Platform & Language), G2 (Architecture), G3 (UI Framework), G4 (Navigation & State), G7 (Testing). Skip: G5 (Networking & Data), G6 (Platform Features), G8 (App Distribution), G9 (Performance & Accessibility), G10 (AI Constraints).
345
- - **Full mode**: ask all groups in order (G1→G9 for frontend/backend, G1→G7 for database, G1→G10 for mobile)
341
+ - **Quick mode**: ask only the groups whose `quick_mode` is `true` in `question-manifest.json`. All other groups adopt recommended defaults silently. (The manifest is the single source of truth for quick-mode membership — do not hardcode group lists here.)
342
+ - **Full mode**: ask all groups in manifest order (`groups[]`).
343
+ - **Conditional questions** (driven by the manifest's per-question fields):
344
+ - `required_if: "<expr>"` ask this question only when the expression over prior answers holds (e.g. Q14 `required_if: Q13 != D`). If the condition is false, the question is legitimately skipped not a coverage gap.
345
+ - `auto_derived_when: "<expr>"` when this holds, fill the mapped placeholder(s) from the prior answer without asking (e.g. backend Q6 `auto_derived_when: Q5 in [GraphQL, gRPC]`). Count as satisfied, not skipped.
346
+ - `options_vary_by: "<Qid>"` the question is still asked; only its option list depends on that prior answer (e.g. framework/ORM options vary by language). Never affects whether the question is required.
346
347
  - Shortcut commands work at any point:
347
348
  - `recommended` / `default` → adopt all recommended for current group
348
349
  - `all recommended` → adopt all recommended for all remaining groups
349
350
  - `skip` → mark current group as "Not required at this stage"
350
- - Record answers in memory after each group.
351
+ - Record answers in memory after each group. Track which manifest questions are answered, auto-derived, or conditionally skipped so Phase D can verify coverage.
351
352
 
352
353
  **Phase C — Auto-derivation:**
353
354
  - Read `${SKILL_DIR}/references/rules/<layer>/derivation-rules.md`
@@ -357,8 +358,10 @@ For each selected layer, run the rules Q&A workflow. This follows the 4-phase ru
357
358
  **Phase D — Render and write:**
358
359
  - Read `${SKILL_DIR}/references/rules/<layer>/template.md`
359
360
  - Fill all template placeholders with accumulated content from Phases A+B+C
360
- - **Post-render self-check**: scan for residual `{{ ` or ` }}` — count must be 0 before writing
361
- - Generate Appendix A (Deny List) and Appendix B (Recommended Tools) per template instructions
361
+ - **Post-render self-check** (driven by `question-manifest.json` `template_placeholders`):
362
+ 1. **Coverage pass** for every placeholder in `from_questions`, confirm it traces to an answered question OR an `auto_derived_when` path OR a conditionally-skipped question (`required_if` false). If a `from_questions` placeholder has no source, you skipped a required question — go back and ask it before writing.
363
+ 2. **Residual pass** — scan the rendered document for any residual `{{ ` or ` }}`; count must be 0. Placeholders in `from_fixed_rules` / `auto_generated` / `metadata` are filled from fixed-rules.md, Phase D generation, and project metadata respectively — they are NOT expected to come from Q&A, but they MUST still be rendered (no residual braces).
364
+ - Generate Appendix A (Deny List) and Appendix B (Recommended Tools) per template instructions — these fill the `auto_generated` placeholders
362
365
  - Create `.prizmkit/rules/` directory if it doesn't exist
363
366
  - Write `.prizmkit/rules/<layer>-rules.md`
364
367
 
@@ -0,0 +1,46 @@
1
+ {
2
+ "schema_version": "app-planner-question-manifest-v1",
3
+ "layer": "backend",
4
+ "total_questions": 20,
5
+ "_doc": "Machine-readable structure for backend question-bank.md. Question TEXT/options/Recommended/Notes are authoritative in question-bank.md; this file carries ONLY structure: group membership, quick-mode, question->placeholder mapping, and conditional logic. Keep Qids and group ids in sync with question-bank.md. The AI reads this as its asking checklist (Phase A) and self-check expected-set (Phase D).",
6
+ "_conditions": "required_if / auto_derived_when use simple expressions over recorded answers, e.g. 'Q5 == RESTful', 'Q13 != D', 'Q5 in [GraphQL, gRPC]'. options_vary_by names a prior answer that changes the OPTION LIST only (question is still asked; never affects required).",
7
+ "groups": [
8
+ { "id": "G1", "topic": "Language & Runtime", "quick_mode": true },
9
+ { "id": "G2", "topic": "Framework & Architecture", "quick_mode": true },
10
+ { "id": "G3", "topic": "API Style", "quick_mode": true },
11
+ { "id": "G4", "topic": "Data Layer", "quick_mode": true },
12
+ { "id": "G5", "topic": "Auth", "quick_mode": false },
13
+ { "id": "G6", "topic": "Infrastructure", "quick_mode": false },
14
+ { "id": "G7", "topic": "Testing & Quality", "quick_mode": true },
15
+ { "id": "G8", "topic": "Observability", "quick_mode": false },
16
+ { "id": "G9", "topic": "AI Constraints", "quick_mode": false }
17
+ ],
18
+ "questions": [
19
+ { "id": "Q1", "group": "G1", "topic": "Programming Language", "maps_to": ["language", "tech_stack_rules"], "required": true },
20
+ { "id": "Q2", "group": "G1", "topic": "Runtime Version", "maps_to": ["runtime_version"], "required": true },
21
+ { "id": "Q3", "group": "G2", "topic": "Web Framework", "maps_to": ["framework", "tech_stack_rules"], "required": true, "options_vary_by": "Q1", "note_open_ended_when": "Q1 == Custom" },
22
+ { "id": "Q4", "group": "G2", "topic": "Architecture Pattern", "maps_to": ["architecture", "arch_rules"], "required": true },
23
+ { "id": "Q5", "group": "G3", "topic": "API Style", "maps_to": ["api_style", "api_rules"], "required": true },
24
+ { "id": "Q6", "group": "G3", "topic": "API Documentation", "maps_to": ["api_docs"], "required": true, "required_if": "Q5 == RESTful", "auto_derived_when": "Q5 in [GraphQL, gRPC]" },
25
+ { "id": "Q7", "group": "G4", "topic": "ORM / Data Access", "maps_to": ["orm", "data_rules"], "required": true, "options_vary_by": "Q1", "note_open_ended_when": "Q1 == Custom" },
26
+ { "id": "Q8", "group": "G4", "topic": "Database", "maps_to": ["database"], "required": true },
27
+ { "id": "Q9", "group": "G5", "topic": "Authentication Scheme", "maps_to": ["auth_scheme", "auth_rules"], "required": true },
28
+ { "id": "Q10", "group": "G6", "topic": "Caching", "maps_to": ["cache", "cache_rules"], "required": true },
29
+ { "id": "Q11", "group": "G6", "topic": "Message Queue", "maps_to": ["mq", "mq_rules"], "required": true },
30
+ { "id": "Q12", "group": "G6", "topic": "Containerization & Deployment", "maps_to": ["container", "deploy_rules"], "required": true },
31
+ { "id": "Q13", "group": "G7", "topic": "Test Coverage Requirements", "maps_to": ["test_requirement", "test_rules"], "required": true },
32
+ { "id": "Q14", "group": "G7", "topic": "Test Framework", "maps_to": ["test_framework"], "required": true, "required_if": "Q13 != D", "options_vary_by": "Q1" },
33
+ { "id": "Q15", "group": "G7", "topic": "Mock Strategy", "maps_to": ["mock_strategy", "test_rules"], "required": true },
34
+ { "id": "Q16", "group": "G8", "topic": "Logging", "maps_to": ["logging", "observability_rules"], "required": true },
35
+ { "id": "Q17", "group": "G8", "topic": "Monitoring & Tracing", "maps_to": ["monitoring", "observability_rules"], "required": true },
36
+ { "id": "Q18", "group": "G9", "topic": "AI Permission to Add Dependencies", "maps_to": ["ai_dependency_rule"], "required": true },
37
+ { "id": "Q19", "group": "G9", "topic": "AI Modifying Shared Modules", "maps_to": ["ai_breaking_change_rule"], "required": true },
38
+ { "id": "Q20", "group": "G9", "topic": "AI Modifying Configuration", "maps_to": ["ai_config_rule"], "required": true }
39
+ ],
40
+ "template_placeholders": {
41
+ "from_questions": ["language", "runtime_version", "framework", "architecture", "api_style", "api_docs", "orm", "database", "auth_scheme", "cache", "mq", "container", "test_requirement", "test_framework", "mock_strategy", "logging", "monitoring", "ai_dependency_rule", "ai_breaking_change_rule", "ai_config_rule", "tech_stack_rules", "arch_rules", "api_rules", "auth_rules", "data_rules", "cache_rules", "mq_rules", "deploy_rules", "observability_rules", "test_rules"],
42
+ "from_fixed_rules": ["FIXED_RULES_STRUCTURE", "FIXED_RULES_API", "FIXED_RULES_ERROR", "FIXED_RULES_SECURITY", "FIXED_RULES_RATE_LIMITING", "FIXED_RULES_DATABASE", "FIXED_RULES_OBSERVABILITY", "FIXED_RULES_TRACING", "FIXED_RULES_CONFIG", "FIXED_RULES_ASYNC", "FIXED_RULES_MESSAGE_DELIVERY", "FIXED_RULES_GRACEFUL_SHUTDOWN", "FIXED_RULES_TEST", "FIXED_RULES_AI_BASE"],
43
+ "auto_generated": ["deny_list_summary", "recommended_libs"],
44
+ "metadata": ["project_name", "generated_at"]
45
+ }
46
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "schema_version": "app-planner-question-manifest-v1",
3
+ "layer": "database",
4
+ "total_questions": 15,
5
+ "_doc": "Machine-readable structure for database question-bank.md. Question TEXT/options/Recommended/Notes are authoritative in question-bank.md; this file carries ONLY structure: group membership, quick-mode, question->placeholder mapping, and conditional logic. Keep Qids and group ids in sync with question-bank.md. The AI reads this as its asking checklist (Phase A) and self-check expected-set (Phase D).",
6
+ "_conditions": "required_if / auto_derived_when use simple expressions over recorded answers. options_vary_by names a prior answer that changes the OPTION LIST only (question is still asked; never affects required). A single answer may fill more than one placeholder (a TL;DR value + a rules-block), both listed in maps_to.",
7
+ "groups": [
8
+ { "id": "G1", "topic": "Database Selection", "quick_mode": true },
9
+ { "id": "G2", "topic": "Data Modeling", "quick_mode": true },
10
+ { "id": "G3", "topic": "Migration", "quick_mode": true },
11
+ { "id": "G4", "topic": "Index & Performance", "quick_mode": false },
12
+ { "id": "G5", "topic": "Security & Compliance", "quick_mode": false },
13
+ { "id": "G6", "topic": "High Availability & Ops", "quick_mode": false },
14
+ { "id": "G7", "topic": "AI Constraints", "quick_mode": true }
15
+ ],
16
+ "questions": [
17
+ { "id": "Q1", "group": "G1", "topic": "Primary Database", "maps_to": ["database", "tech_rules"], "required": true },
18
+ { "id": "Q2", "group": "G1", "topic": "Cache Layer", "maps_to": ["cache", "cache_rules"], "required": true },
19
+ { "id": "Q3", "group": "G2", "topic": "Primary Key Strategy", "maps_to": ["pk_strategy", "schema_rules"], "required": true },
20
+ { "id": "Q4", "group": "G2", "topic": "Soft Delete", "maps_to": ["soft_delete", "schema_rules"], "required": true },
21
+ { "id": "Q5", "group": "G2", "topic": "Normalization Level", "maps_to": ["normalization", "schema_rules"], "required": true },
22
+ { "id": "Q6", "group": "G3", "topic": "Migration Tool", "maps_to": ["migration_tool", "migration_rules"], "required": true },
23
+ { "id": "Q7", "group": "G4", "topic": "Query Complexity", "maps_to": ["workload_type", "performance_rules"], "required": true },
24
+ { "id": "Q8", "group": "G4", "topic": "Estimated Data Volume", "maps_to": ["data_scale", "performance_rules"], "required": true },
25
+ { "id": "Q9", "group": "G5", "topic": "Data Sensitivity Level", "maps_to": ["data_sensitivity", "security_rules"], "required": true },
26
+ { "id": "Q10", "group": "G5", "topic": "Audit Requirements", "maps_to": ["audit", "audit_rules"], "required": true, "multi_select": true },
27
+ { "id": "Q11", "group": "G6", "topic": "Deployment Method", "maps_to": ["deployment", "ops_rules"], "required": true },
28
+ { "id": "Q12", "group": "G6", "topic": "Backup Strategy", "maps_to": ["backup", "ops_rules"], "required": true },
29
+ { "id": "Q13", "group": "G6", "topic": "High Availability Requirements", "maps_to": ["ha", "ops_rules"], "required": true },
30
+ { "id": "Q14", "group": "G7", "topic": "AI Permission to Modify Database Structure", "maps_to": ["ai_ddl_rule", "ai_ddl_permission"], "required": true },
31
+ { "id": "Q15", "group": "G7", "topic": "AI Safety Constraints", "maps_to": ["ai_safety_rule", "ai_safety_constraint"], "required": true }
32
+ ],
33
+ "template_placeholders": {
34
+ "from_questions": ["database", "tech_rules", "cache", "cache_rules", "pk_strategy", "schema_rules", "soft_delete", "normalization", "migration_tool", "migration_rules", "workload_type", "performance_rules", "data_scale", "data_sensitivity", "security_rules", "audit", "audit_rules", "deployment", "ops_rules", "backup", "ha", "ai_ddl_rule", "ai_ddl_permission", "ai_safety_rule", "ai_safety_constraint"],
35
+ "from_fixed_rules": ["FIXED_RULES_AI_BASE", "FIXED_RULES_BACKUP", "FIXED_RULES_CONNECTION", "FIXED_RULES_INDEX", "FIXED_RULES_MIGRATION", "FIXED_RULES_PERFORMANCE", "FIXED_RULES_QUERY", "FIXED_RULES_SCHEMA", "FIXED_RULES_SECURITY", "FIXED_RULES_TRANSACTION", "FIXED_RULES_TYPES"],
36
+ "auto_generated": ["deny_list_summary", "recommended_libs"],
37
+ "metadata": ["project_name", "generated_at"]
38
+ }
39
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "schema_version": "app-planner-question-manifest-v1",
3
+ "layer": "frontend",
4
+ "total_questions": 25,
5
+ "_doc": "Machine-readable structure for frontend question-bank.md. Question TEXT/options/Recommended/Notes are authoritative in question-bank.md; this file carries ONLY structure: group membership, quick-mode, question->placeholder mapping, and conditional logic. Keep Qids and group ids in sync with question-bank.md. The AI reads this as its asking checklist (Phase A) and self-check expected-set (Phase D).",
6
+ "_conditions": "required_if / auto_derived_when use simple expressions over recorded answers, e.g. 'Q15 in [A, B]'. options_vary_by names a prior answer that changes the OPTION LIST/recommendation only (question is still asked; never affects required).",
7
+ "groups": [
8
+ { "id": "G1", "topic": "Tech Stack", "quick_mode": true },
9
+ { "id": "G2", "topic": "Styling", "quick_mode": true },
10
+ { "id": "G3", "topic": "State & Data Fetching", "quick_mode": true },
11
+ { "id": "G4", "topic": "Design System", "quick_mode": false },
12
+ { "id": "G5", "topic": "Responsive & Adaptation", "quick_mode": false },
13
+ { "id": "G6", "topic": "i18n & Accessibility", "quick_mode": false },
14
+ { "id": "G7", "topic": "Testing & Quality", "quick_mode": true },
15
+ { "id": "G8", "topic": "AI Vibecoding Constraints", "quick_mode": false },
16
+ { "id": "G9", "topic": "Performance Baseline", "quick_mode": false }
17
+ ],
18
+ "questions": [
19
+ { "id": "Q1", "group": "G1", "topic": "Frontend Framework", "maps_to": ["framework", "tech_stack_rules"], "required": true },
20
+ { "id": "Q2", "group": "G1", "topic": "Meta-Framework", "maps_to": ["meta_framework", "tech_stack_rules"], "required": true, "options_vary_by": "Q1" },
21
+ { "id": "Q3", "group": "G1", "topic": "Package Manager", "maps_to": ["package_manager", "tech_stack_rules"], "required": true },
22
+ { "id": "Q4", "group": "G2", "topic": "Styling Solution", "maps_to": ["style_solution", "style_specific_rules"], "required": true },
23
+ { "id": "Q4b", "group": "G2", "topic": "Font Loading Strategy", "maps_to": ["font_strategy", "performance_rules"], "required": true },
24
+ { "id": "Q5", "group": "G3", "topic": "Global State Library", "maps_to": ["state_lib", "state_rules"], "required": true, "options_vary_by": "Q1" },
25
+ { "id": "Q6", "group": "G3", "topic": "Server State Library", "maps_to": ["server_state_lib", "server_state_rules"], "required": true },
26
+ { "id": "Q7", "group": "G3", "topic": "API Type Source", "maps_to": ["api_type_source", "server_state_rules"], "required": true },
27
+ { "id": "Q8", "group": "G4", "topic": "Primary Design/Mockup Source", "maps_to": ["design_source"], "required": true },
28
+ { "id": "Q9", "group": "G4", "topic": "Token Naming Layers", "maps_to": ["token_layering", "token_layering_rules"], "required": true },
29
+ { "id": "Q10", "group": "G4", "topic": "Dark Mode", "maps_to": ["dark_mode", "dark_mode_rules"], "required": true },
30
+ { "id": "Q11", "group": "G5", "topic": "Adaptation Strategy", "maps_to": ["responsive_strategy", "breakpoint_rules"], "required": true },
31
+ { "id": "Q12", "group": "G5", "topic": "Breakpoint Scheme", "maps_to": ["breakpoint_scheme", "breakpoint_rules"], "required": true },
32
+ { "id": "Q13", "group": "G6", "topic": "Internationalization", "maps_to": ["i18n", "i18n_rules"], "required": true },
33
+ { "id": "Q14", "group": "G6", "topic": "Accessibility Target", "maps_to": ["a11y_level", "a11y_extra_rules"], "required": true },
34
+ { "id": "Q15", "group": "G7", "topic": "Test Coverage Requirements", "maps_to": ["test_coverage", "test_rules"], "required": true },
35
+ { "id": "Q16", "group": "G7", "topic": "Unit Test Framework", "maps_to": ["unit_test_framework", "test_rules"], "required": true, "required_if": "Q15 in [A, B]" },
36
+ { "id": "Q17", "group": "G7", "topic": "E2E Framework", "maps_to": ["e2e_framework", "test_rules"], "required": true, "required_if": "Q15 in [A, C]" },
37
+ { "id": "Q18", "group": "G8", "topic": "AI Component Index Sync", "maps_to": ["ai_index_rule"], "required": true },
38
+ { "id": "Q19", "group": "G8", "topic": "AI Permission to Add Dependencies", "maps_to": ["ai_dependency_rule"], "required": true },
39
+ { "id": "Q20", "group": "G8", "topic": "AI Impact Analysis Before Modifying Shared Components", "maps_to": ["ai_breaking_change_rule"], "required": true },
40
+ { "id": "Q21", "group": "G8", "topic": "AI Permission to Modify Config Files", "maps_to": ["ai_config_rule"], "required": true },
41
+ { "id": "Q22", "group": "G8", "topic": "AI Single File Generation Limit", "maps_to": ["ai_max_lines"], "required": true },
42
+ { "id": "Q23", "group": "G9", "topic": "First Screen LCP Target", "maps_to": ["lcp_target", "performance_rules"], "required": true },
43
+ { "id": "Q24", "group": "G9", "topic": "Single Chunk Size Limit", "maps_to": ["bundle_size", "performance_rules"], "required": true }
44
+ ],
45
+ "template_placeholders": {
46
+ "from_questions": ["framework", "meta_framework", "package_manager", "style_solution", "style_specific_rules", "font_strategy", "performance_rules", "state_lib", "state_rules", "server_state_lib", "server_state_rules", "api_type_source", "design_source", "token_layering", "token_layering_rules", "dark_mode", "dark_mode_rules", "responsive_strategy", "breakpoint_rules", "breakpoint_scheme", "i18n", "i18n_rules", "a11y_level", "a11y_extra_rules", "test_coverage", "test_rules", "unit_test_framework", "e2e_framework", "ai_index_rule", "ai_dependency_rule", "ai_breaking_change_rule", "ai_config_rule", "ai_max_lines", "lcp_target", "bundle_size", "tech_stack_rules"],
47
+ "from_fixed_rules": ["FIXED_RULES_A11Y", "FIXED_RULES_AI_BASE", "FIXED_RULES_COMPONENT_CONTRACT", "FIXED_RULES_DENY_LIST", "FIXED_RULES_ERROR_HANDLING", "FIXED_RULES_GIT", "FIXED_RULES_I18N_BASELINE", "FIXED_RULES_NAMING", "FIXED_RULES_PERFORMANCE", "FIXED_RULES_SECURITY", "FIXED_RULES_TYPESCRIPT"],
48
+ "auto_generated": ["deny_list_summary", "recommended_libs"],
49
+ "metadata": ["project_name", "generated_at", "project_scope"]
50
+ }
51
+ }
@@ -0,0 +1,47 @@
1
+ {
2
+ "schema_version": "app-planner-question-manifest-v1",
3
+ "layer": "mobile",
4
+ "total_questions": 20,
5
+ "_doc": "Machine-readable structure for mobile question-bank.md. Question TEXT/options/Recommended/Notes are authoritative in question-bank.md; this file carries ONLY structure: group membership, quick-mode, question->placeholder mapping, and conditional logic. Keep Qids and group ids in sync with question-bank.md. The AI reads this as its asking checklist (Phase A) and self-check expected-set (Phase D).",
6
+ "_conditions": "required_if / auto_derived_when use simple expressions over recorded answers, e.g. 'Q12 in [A, B]'. options_vary_by names a prior answer that changes the OPTION LIST only (question is still asked; never affects required). dual_native_repeat_when notes Q1=E (both native) repeats the question per platform.",
7
+ "groups": [
8
+ { "id": "G1", "topic": "Platform & Language", "quick_mode": true },
9
+ { "id": "G2", "topic": "Architecture", "quick_mode": true },
10
+ { "id": "G3", "topic": "UI Framework", "quick_mode": true },
11
+ { "id": "G4", "topic": "Navigation & State", "quick_mode": true },
12
+ { "id": "G5", "topic": "Networking & Data", "quick_mode": false },
13
+ { "id": "G6", "topic": "Platform Features", "quick_mode": false },
14
+ { "id": "G7", "topic": "Testing", "quick_mode": true },
15
+ { "id": "G8", "topic": "App Distribution", "quick_mode": false },
16
+ { "id": "G9", "topic": "Performance & Accessibility", "quick_mode": false },
17
+ { "id": "G10", "topic": "AI Constraints", "quick_mode": false }
18
+ ],
19
+ "questions": [
20
+ { "id": "Q1", "group": "G1", "topic": "Target Platform", "maps_to": ["platform", "tech_stack_rules"], "required": true },
21
+ { "id": "Q2", "group": "G1", "topic": "Minimum OS Version", "maps_to": ["min_os_version", "tech_stack_rules"], "required": true },
22
+ { "id": "Q3", "group": "G2", "topic": "Architecture Pattern", "maps_to": ["architecture", "arch_rules"], "required": true },
23
+ { "id": "Q4", "group": "G3", "topic": "UI Framework", "maps_to": ["ui_framework", "ui_rules"], "required": true, "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
24
+ { "id": "Q5", "group": "G4", "topic": "Navigation Strategy", "maps_to": ["navigation", "navigation_rules"], "required": true },
25
+ { "id": "Q6", "group": "G4", "topic": "State Management", "maps_to": ["state_management", "state_rules"], "required": true, "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
26
+ { "id": "Q7", "group": "G5", "topic": "Networking Library", "maps_to": ["networking", "networking_rules"], "required": true, "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
27
+ { "id": "Q8", "group": "G5", "topic": "Local Persistence", "maps_to": ["persistence", "persistence_rules"], "required": true, "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
28
+ { "id": "Q9", "group": "G6", "topic": "Push Notifications", "maps_to": ["push_notifications", "platform_features_rules"], "required": true },
29
+ { "id": "Q10", "group": "G6", "topic": "Background Tasks", "maps_to": ["background_tasks", "platform_features_rules"], "required": true },
30
+ { "id": "Q11", "group": "G6", "topic": "Permissions Strategy", "maps_to": ["permissions_strategy"], "required": true },
31
+ { "id": "Q12", "group": "G7", "topic": "Test Coverage Requirements", "maps_to": ["test_coverage", "test_rules"], "required": true },
32
+ { "id": "Q13", "group": "G7", "topic": "Unit Test Framework", "maps_to": ["unit_test_framework"], "required": true, "required_if": "Q12 in [A, B]", "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
33
+ { "id": "Q14", "group": "G7", "topic": "UI/E2E Test Framework", "maps_to": ["e2e_framework"], "required": true, "required_if": "Q12 in [A, C]", "options_vary_by": "Q1", "dual_native_repeat_when": "Q1 == E" },
34
+ { "id": "Q15", "group": "G8", "topic": "Distribution Method", "maps_to": ["distribution", "distribution_rules"], "required": true },
35
+ { "id": "Q16", "group": "G9", "topic": "Performance Targets", "maps_to": ["performance_target", "performance_rules"], "required": true },
36
+ { "id": "Q17", "group": "G9", "topic": "Accessibility Targets", "maps_to": ["a11y_target", "a11y_rules"], "required": true },
37
+ { "id": "Q18", "group": "G10", "topic": "AI Permission to Add Dependencies", "maps_to": ["ai_dependency_rule"], "required": true },
38
+ { "id": "Q19", "group": "G10", "topic": "AI Impact Analysis Before Modifying Shared Code", "maps_to": ["ai_breaking_change_rule"], "required": true },
39
+ { "id": "Q20", "group": "G10", "topic": "AI Platform-Specific Code Generation", "maps_to": ["ai_platform_rule"], "required": true }
40
+ ],
41
+ "template_placeholders": {
42
+ "from_questions": ["platform", "tech_stack_rules", "min_os_version", "architecture", "arch_rules", "ui_framework", "ui_rules", "navigation", "navigation_rules", "state_management", "state_rules", "networking", "networking_rules", "persistence", "persistence_rules", "push_notifications", "platform_features_rules", "background_tasks", "permissions_strategy", "test_coverage", "test_rules", "unit_test_framework", "e2e_framework", "distribution", "distribution_rules", "performance_target", "performance_rules", "a11y_target", "a11y_rules", "ai_dependency_rule", "ai_breaking_change_rule", "ai_platform_rule"],
43
+ "from_fixed_rules": ["FIXED_RULES_A11Y", "FIXED_RULES_AI_BASE", "FIXED_RULES_DISTRIBUTION", "FIXED_RULES_NAVIGATION", "FIXED_RULES_NETWORKING", "FIXED_RULES_PERFORMANCE", "FIXED_RULES_PERSISTENCE", "FIXED_RULES_PLATFORM_FEATURES", "FIXED_RULES_SECURITY", "FIXED_RULES_STATE", "FIXED_RULES_STRUCTURE", "FIXED_RULES_TEST", "FIXED_RULES_UI"],
44
+ "auto_generated": ["deny_list_summary", "recommended_libs"],
45
+ "metadata": ["project_name", "generated_at"]
46
+ }
47
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prizmkit",
3
- "version": "1.1.76",
3
+ "version": "1.1.77",
4
4
  "description": "Create a new PrizmKit-powered project with clean initialization — no framework dev files, just what you need.",
5
5
  "type": "module",
6
6
  "bin": {