-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstandard.json
More file actions
69 lines (69 loc) · 2.28 KB
/
Copy pathstandard.json
File metadata and controls
69 lines (69 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "../schemas/pf-profile.schema.json",
"name": "standard",
"version": "1.4.0",
"_description": "Default v1.4.0. Local-first MVP: Next.js + SQLite + NO Docker. `npm install && npm run db:push && npm run dev` runs in <60s on clean machine. ~60k tokens / ~25 min target. Use for: demo, prototyping, hackathon first-run. Auto-escalates to pro on enterprise signals.",
"stack": {
"db": "sqlite",
"db_file_location": "$HOME/.preview-forge/<project>/dev.db",
"containerize": false,
"migration_cmd": "prisma db push",
"_note": "SQLite file is OUTSIDE project repo tree (security-engineer CP-2). Engineering scaffold writes ABSOLUTE path to DATABASE_URL in .env (Prisma does not expand ~). backend-architect CP-1: schema-lint rejects enum + @db.JsonB to guarantee Postgres portability on upgrade."
},
"previews": {
"count": 9,
"max_user_expand": 26
},
"engineering": {
"teams": 2,
"members_per_team": 5,
"disciplines": ["backend", "frontend"]
},
"qa": {
"security": 2,
"performance": 1,
"accessibility": 1,
"functional": 3,
"tools_retained": ["semgrep", "gitleaks", "axe-core"]
},
"panels": {
"mode": "keyword-trigger",
"keyword_triggers": {
"tp": ["latency", "scale", "throughput", "uptime", "concurrent"],
"bp": ["pricing", "revenue", "customer", "market", "monetization"],
"up": ["usability", "onboarding", "retention", "accessibility", "ux"],
"rp": ["security", "compliance", "gdpr", "pii", "audit", "risk"]
},
"escalation": {
"on_unknown_unknown": true,
"confidence_threshold": 0.6
}
},
"scc": {
"max_iter": 3,
"auto_extend_on_error_decrease": true
},
"budget": {
"advocate_tokens": 1000,
"panel_tokens": 400,
"eng_tokens": 4000,
"spec_tokens": 2500
},
"caching": {
"preview_dd": true,
"ttl_seconds": 604800
},
"cost_ceiling": {
"p95_tokens": 60000,
"p95_minutes": 25,
"hard_tokens": 100000,
"hard_minutes": 40
},
"profile_escalation": {
"upgrade_to": "pro",
"confidence_threshold": 0.8,
"hard_require_signals": ["payments", "phi_healthcare", "pii_storage", "auth_provider"],
"soft_suggest_categories": ["compliance", "multi_tenant", "enterprise_b2b", "scale"],
"min_distinct_categories": 2
}
}