-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtasks.json
More file actions
40 lines (40 loc) · 2.02 KB
/
tasks.json
File metadata and controls
40 lines (40 loc) · 2.02 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
{
"meta": {
"version": 1,
"description": "FrontierBoard task tracker — bugs, features, deferred work. Each task can have a detailed YAML file at docs/tasks/{task-id}.yaml.",
"schema": {
"id": "string — unique task ID (e.g. FB-001)",
"type": "bug | feature | debt | task | epic",
"title": "string — one-line description",
"status": "open | in-progress | deferred | closed",
"severity": "critical | high | medium | low | null",
"found": "date — when discovered (YYYY-MM-DD)",
"source": "string — where it came from (board review, user report, etc.)",
"trigger": "string — for deferred items: condition that promotes to FIX NOW",
"files": "string[] — affected files",
"description": "string — details"
}
},
"tasks": [
{
"id": "FB-003",
"type": "debt",
"title": "Evaluate container isolation cost vs benefit — Docker adds complexity for multi-CLI compatibility",
"status": "closed",
"severity": "major",
"found": "2026-03-27",
"source": "user report — Codex sandbox conflicts, Gemini sandbox conflicts, Qwen Docker limitations",
"trigger": null,
"files": [
"container/Dockerfile",
"container/entrypoint.sh",
"container/fb-credential-proxy.cjs",
"container/build.sh",
"docs/ROADMAP-CONTAINER-ISOLATION.md",
".claude/skills/setup/SKILL.md",
".claude/skills/run/SKILL.md"
],
"description": "Container isolation introduced significant complexity: credential proxy, Docker image management, OAuth workarounds, conditional .env masking, CLI settings chown, proxy health checks. Multiple CLIs have friction in Docker: Codex may run in its own sandbox (double-sandboxing), Gemini potentially the same, Qwen explicitly cannot run in containers. 27+ FIX NOW items across 3 board reviews were container-related. Question: does the isolation benefit outweigh the operational and compatibility costs? Should bare mode be the recommended default?"
}
]
}