claude-dev-env 1.38.1 → 1.40.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.
Files changed (282) hide show
  1. package/CLAUDE.md +10 -36
  2. package/_shared/pr-loop/audit-reply-template.md +147 -0
  3. package/_shared/pr-loop/fix-protocol.md +25 -4
  4. package/_shared/pr-loop/gh-payloads.md +37 -50
  5. package/_shared/pr-loop/scripts/code_rules_gate.py +0 -60
  6. package/_shared/pr-loop/scripts/config/post_audit_thread_constants.py +199 -0
  7. package/_shared/pr-loop/scripts/config/reviews_disabled_constants.py +8 -0
  8. package/_shared/pr-loop/scripts/post_audit_thread.py +1242 -0
  9. package/_shared/pr-loop/scripts/preflight.py +129 -2
  10. package/_shared/pr-loop/scripts/reviews_disabled.py +59 -0
  11. package/_shared/pr-loop/scripts/tests/test_code_rules_gate.py +0 -19
  12. package/_shared/pr-loop/scripts/tests/test_post_audit_thread.py +1116 -0
  13. package/_shared/pr-loop/scripts/tests/test_post_audit_thread_constants.py +127 -0
  14. package/_shared/pr-loop/scripts/tests/test_preflight.py +41 -0
  15. package/_shared/pr-loop/scripts/tests/test_reviews_disabled.py +36 -0
  16. package/_shared/pr-loop/state-schema.md +1 -1
  17. package/agents/clean-coder.md +2 -2
  18. package/agents/pr-description-writer.md +150 -52
  19. package/bin/install.mjs +6 -7
  20. package/bin/install.test.mjs +8 -0
  21. package/commands/doc-gist.md +16 -0
  22. package/commands/plan.md +0 -2
  23. package/commands/review-plan.md +1 -1
  24. package/docs/CODE_RULES.md +122 -2
  25. package/docs/PR_DESCRIPTION_GUIDE.md +127 -64
  26. package/hooks/blocking/bot_mention_comment_blocker.py +75 -0
  27. package/hooks/blocking/code_rules_enforcer.py +1143 -129
  28. package/hooks/blocking/convergence_gate_blocker.py +130 -0
  29. package/hooks/blocking/destructive_command_blocker.py +74 -0
  30. package/hooks/blocking/gh_body_arg_blocker.py +30 -0
  31. package/hooks/blocking/md_to_html_blocker.py +119 -0
  32. package/hooks/blocking/pr_description_enforcer.py +57 -22
  33. package/hooks/blocking/test_bot_mention_comment_blocker.py +131 -0
  34. package/hooks/blocking/test_code_rules_enforcer.py +21 -0
  35. package/hooks/blocking/test_code_rules_enforcer_any_exempt_files.py +70 -0
  36. package/hooks/blocking/test_code_rules_enforcer_any_imports_and_cast.py +92 -0
  37. package/hooks/blocking/test_code_rules_enforcer_banned_import_alias.py +143 -0
  38. package/hooks/blocking/test_code_rules_enforcer_banned_prefixes.py +152 -0
  39. package/hooks/blocking/test_code_rules_enforcer_bare_except.py +120 -0
  40. package/hooks/blocking/test_code_rules_enforcer_boundary_types.py +175 -0
  41. package/hooks/blocking/test_code_rules_enforcer_cap_meta.py +0 -1
  42. package/hooks/blocking/test_code_rules_enforcer_collection_prefix.py +50 -0
  43. package/hooks/blocking/test_code_rules_enforcer_docstring_format.py +255 -0
  44. package/hooks/blocking/test_code_rules_enforcer_inline_tuple_string_magic.py +130 -0
  45. package/hooks/blocking/test_code_rules_enforcer_stub_implementations.py +141 -0
  46. package/hooks/blocking/test_code_rules_enforcer_test_branching.py +143 -0
  47. package/hooks/blocking/test_code_rules_enforcer_thin_wrapper_files.py +169 -0
  48. package/hooks/blocking/test_code_rules_enforcer_todo_markers.py +99 -0
  49. package/hooks/blocking/test_code_rules_enforcer_typed_dict_pairs.py +141 -0
  50. package/hooks/blocking/test_convergence_gate_blocker.py +63 -0
  51. package/hooks/blocking/test_destructive_command_blocker.py +146 -0
  52. package/hooks/blocking/test_destructive_command_blocker_no_verify.py +102 -0
  53. package/hooks/blocking/test_gh_body_arg_blocker.py +45 -0
  54. package/hooks/blocking/test_md_to_html_blocker.py +317 -0
  55. package/hooks/blocking/test_pr_description_enforcer.py +69 -8
  56. package/hooks/config/any_type_config.py +7 -0
  57. package/hooks/config/banned_identifiers_constants.py +11 -0
  58. package/hooks/config/blocking_check_limits.py +38 -0
  59. package/hooks/config/bot_mention_comment_blocker_constants.py +20 -0
  60. package/hooks/config/code_rules_enforcer_constants.py +53 -0
  61. package/hooks/config/convergence_branch_constants.py +9 -0
  62. package/hooks/config/doc_gist_auto_publish_constants.py +18 -0
  63. package/hooks/config/html_companion_constants.py +20 -0
  64. package/hooks/config/inline_tuple_string_magic_constants.py +22 -0
  65. package/hooks/config/pr_description_enforcer_constants.py +14 -0
  66. package/hooks/config/test_banned_identifiers_constants.py +17 -0
  67. package/hooks/hooks.json +28 -20
  68. package/hooks/pyproject.toml +69 -0
  69. package/hooks/validators/mypy_integration.py +47 -1
  70. package/hooks/validators/run_all_validators.py +3 -3
  71. package/hooks/validators/test_mypy_integration.py +50 -1
  72. package/hooks/workflow/doc_gist_auto_publish.py +144 -0
  73. package/hooks/workflow/md_to_html_companion.py +365 -0
  74. package/hooks/workflow/test_doc_gist_auto_publish.py +117 -0
  75. package/hooks/workflow/test_md_to_html_companion.py +452 -0
  76. package/package.json +1 -1
  77. package/rules/gh-body-file.md +2 -0
  78. package/scripts/Install-SweepEmptyDirs.ps1 +111 -0
  79. package/scripts/check.ps1 +106 -0
  80. package/scripts/config/timing.py +11 -0
  81. package/scripts/sweep_empty_dirs.py +138 -0
  82. package/scripts/sync_to_cursor/rules.py +1 -1
  83. package/scripts/test_sweep_empty_dirs.py +183 -0
  84. package/skills/_shared/pr-loop/prompts/pr-consistency-audit.xml +323 -0
  85. package/skills/_shared/pr-loop/scripts/_cli_utils.py +22 -0
  86. package/skills/_shared/pr-loop/scripts/_path_resolver.py +165 -0
  87. package/skills/_shared/pr-loop/scripts/_xml_utils.py +20 -0
  88. package/skills/_shared/pr-loop/scripts/build_audit_prompt.py +182 -0
  89. package/skills/_shared/pr-loop/scripts/build_fix_prompt.py +185 -0
  90. package/skills/_shared/pr-loop/scripts/config/__init__.py +0 -0
  91. package/skills/_shared/pr-loop/scripts/config/path_resolver_constants.py +78 -0
  92. package/skills/_shared/pr-loop/scripts/init_loop_state.py +135 -0
  93. package/skills/_shared/pr-loop/scripts/teardown_worktrees.py +175 -0
  94. package/skills/_shared/pr-loop/scripts/write_audit_outcomes.py +182 -0
  95. package/skills/_shared/pr-loop/scripts/write_fix_outcomes.py +206 -0
  96. package/skills/bugteam/CONSTRAINTS.md +21 -22
  97. package/skills/bugteam/EXAMPLES.md +3 -3
  98. package/skills/bugteam/PROMPTS.md +227 -67
  99. package/skills/bugteam/SKILL.md +132 -455
  100. package/skills/bugteam/reference/README.md +1 -1
  101. package/skills/bugteam/reference/audit-and-teammates.md +112 -39
  102. package/skills/bugteam/reference/audit-contract.md +4 -22
  103. package/skills/bugteam/reference/copilot-gap-analysis.md +8 -5
  104. package/skills/bugteam/reference/design-rationale.md +2 -2
  105. package/skills/bugteam/reference/github-pr-reviews.md +50 -57
  106. package/skills/bugteam/reference/obstacles/audit-assign-ids.md +13 -0
  107. package/skills/bugteam/reference/obstacles/audit-capture-excerpts.md +13 -0
  108. package/skills/bugteam/reference/obstacles/audit-walk-categories.md +13 -0
  109. package/skills/bugteam/reference/obstacles/audit-write-xml.md +13 -0
  110. package/skills/bugteam/reference/obstacles/fix-append-summary.md +13 -0
  111. package/skills/bugteam/reference/obstacles/fix-apply-fixes.md +13 -0
  112. package/skills/bugteam/reference/obstacles/fix-git-add-commit.md +13 -0
  113. package/skills/bugteam/reference/obstacles/fix-git-push.md +13 -0
  114. package/skills/bugteam/reference/obstacles/fix-post-reply.md +13 -0
  115. package/skills/bugteam/reference/obstacles/fix-publish-summary.md +13 -0
  116. package/skills/bugteam/reference/obstacles/fix-py-compile.md +13 -0
  117. package/skills/bugteam/reference/obstacles/fix-read-files.md +13 -0
  118. package/skills/bugteam/reference/obstacles/fix-resolve-thread.md +13 -0
  119. package/skills/bugteam/reference/obstacles/fix-test-suite.md +13 -0
  120. package/skills/bugteam/reference/obstacles/fix-violation-count.md +13 -0
  121. package/skills/bugteam/reference/obstacles/fix-write-xml.md +13 -0
  122. package/skills/bugteam/reference/team-setup.md +111 -9
  123. package/skills/bugteam/reference/teardown-publish-permissions.md +39 -8
  124. package/skills/bugteam/scripts/README.md +60 -0
  125. package/skills/bugteam/scripts/_claude_permissions_common.py +358 -0
  126. package/skills/bugteam/scripts/bugteam_code_rules_gate.py +976 -0
  127. package/skills/bugteam/scripts/bugteam_fix_hookspath.py +375 -0
  128. package/skills/bugteam/scripts/bugteam_preflight.py +328 -0
  129. package/skills/bugteam/scripts/config/bugteam_code_rules_gate_constants.py +25 -0
  130. package/skills/bugteam/scripts/config/bugteam_fix_hookspath_constants.py +26 -0
  131. package/skills/bugteam/scripts/config/bugteam_preflight_constants.py +35 -0
  132. package/skills/bugteam/scripts/config/claude_permissions_common_constants.py +20 -0
  133. package/skills/bugteam/scripts/config/probe_code_rules_enforcer_check_constants.py +12 -0
  134. package/skills/bugteam/scripts/config/windows_safe_rmtree_constants.py +7 -0
  135. package/skills/bugteam/scripts/grant_project_claude_permissions.py +175 -0
  136. package/skills/bugteam/scripts/probe_code_rules_enforcer_check.py +107 -0
  137. package/skills/bugteam/scripts/revoke_project_claude_permissions.py +220 -0
  138. package/skills/bugteam/scripts/test__claude_permissions_common.py +112 -0
  139. package/skills/bugteam/scripts/test_bugteam_code_rules_gate.py +400 -0
  140. package/skills/bugteam/scripts/test_bugteam_fix_hookspath.py +384 -0
  141. package/skills/bugteam/scripts/test_bugteam_preflight.py +309 -0
  142. package/skills/bugteam/scripts/test_claude_permissions_common.py +195 -0
  143. package/skills/bugteam/scripts/test_grant_project_claude_permissions.py +55 -0
  144. package/skills/bugteam/scripts/test_probe_code_rules_enforcer_check.py +76 -0
  145. package/skills/bugteam/scripts/test_revoke_project_claude_permissions.py +55 -0
  146. package/skills/bugteam/scripts/test_windows_safe_rmtree.py +108 -0
  147. package/skills/bugteam/scripts/windows_safe_rmtree.py +100 -0
  148. package/skills/bugteam/test_skill_additions.py +1 -11
  149. package/skills/code/SKILL.md +176 -0
  150. package/skills/copilot-review/SKILL.md +16 -0
  151. package/skills/doc-gist/SKILL.md +99 -0
  152. package/skills/doc-gist/references/examples/01-exploration-code-approaches.html +453 -0
  153. package/skills/doc-gist/references/examples/02-exploration-visual-designs.html +515 -0
  154. package/skills/doc-gist/references/examples/03-code-review-pr.html +638 -0
  155. package/skills/doc-gist/references/examples/04-code-understanding.html +491 -0
  156. package/skills/doc-gist/references/examples/05-design-system.html +629 -0
  157. package/skills/doc-gist/references/examples/06-component-variants.html +605 -0
  158. package/skills/doc-gist/references/examples/07-prototype-animation.html +455 -0
  159. package/skills/doc-gist/references/examples/08-prototype-interaction.html +396 -0
  160. package/skills/doc-gist/references/examples/09-slide-deck.html +592 -0
  161. package/skills/doc-gist/references/examples/10-svg-illustrations.html +492 -0
  162. package/skills/doc-gist/references/examples/11-status-report.html +528 -0
  163. package/skills/doc-gist/references/examples/12-incident-report.html +596 -0
  164. package/skills/doc-gist/references/examples/13-flowchart-diagram.html +395 -0
  165. package/skills/doc-gist/references/examples/14-research-feature-explainer.html +381 -0
  166. package/skills/doc-gist/references/examples/15-research-concept-explainer.html +368 -0
  167. package/skills/doc-gist/references/examples/16-implementation-plan.html +702 -0
  168. package/skills/doc-gist/references/examples/17-pr-writeup.html +595 -0
  169. package/skills/doc-gist/references/examples/18-editor-triage-board.html +573 -0
  170. package/skills/doc-gist/references/examples/19-editor-feature-flags.html +663 -0
  171. package/skills/doc-gist/references/examples/20-editor-prompt-tuner.html +722 -0
  172. package/skills/doc-gist/references/examples/README.md +5 -0
  173. package/skills/doc-gist/scripts/config/__init__.py +0 -0
  174. package/skills/doc-gist/scripts/config/gist_upload_constants.py +16 -0
  175. package/skills/doc-gist/scripts/gist_upload.py +177 -0
  176. package/skills/doc-gist/scripts/test_gist_upload.py +51 -0
  177. package/skills/findbugs/SKILL.md +96 -2
  178. package/skills/monitor-open-prs/SKILL.md +14 -32
  179. package/skills/monitor-open-prs/test_skill_contract.py +0 -11
  180. package/skills/pr-consistency-audit/SKILL.md +112 -0
  181. package/skills/pr-consistency-audit/reference/detection-rules.md +96 -0
  182. package/skills/pr-consistency-audit/reference/illustrations.md +78 -0
  183. package/skills/pr-converge/SKILL.md +229 -23
  184. package/skills/pr-converge/config/__init__.py +0 -0
  185. package/skills/pr-converge/config/constants.py +63 -0
  186. package/skills/pr-converge/reference/convergence-gates.md +138 -44
  187. package/skills/pr-converge/reference/examples.md +43 -11
  188. package/skills/pr-converge/reference/fix-protocol.md +6 -5
  189. package/skills/pr-converge/reference/ground-rules.md +5 -3
  190. package/skills/pr-converge/reference/multi-pr-orchestration.md +44 -19
  191. package/skills/pr-converge/reference/obstacles/fix-post-replies.md +13 -0
  192. package/skills/pr-converge/reference/obstacles/fix-publish-summary.md +13 -0
  193. package/skills/pr-converge/reference/obstacles/fix-push.md +13 -0
  194. package/skills/pr-converge/reference/obstacles/fix-read-filelines.md +13 -0
  195. package/skills/pr-converge/reference/obstacles/fix-reset-state.md +13 -0
  196. package/skills/pr-converge/reference/obstacles/fix-resolve-threads.md +13 -0
  197. package/skills/pr-converge/reference/obstacles/fix-spawn-clean-coder.md +13 -0
  198. package/skills/pr-converge/reference/obstacles/fix-stage-commit.md +13 -0
  199. package/skills/pr-converge/reference/obstacles/fix-trigger-bugbot.md +13 -0
  200. package/skills/pr-converge/reference/obstacles/fix-write-test.md +13 -0
  201. package/skills/pr-converge/reference/per-tick.md +107 -31
  202. package/skills/pr-converge/reference/state-schema.md +22 -1
  203. package/skills/pr-converge/reference/stop-conditions.md +9 -7
  204. package/skills/pr-converge/scripts/README.md +34 -46
  205. package/skills/pr-converge/scripts/check_bugbot_ci.py +279 -0
  206. package/skills/pr-converge/scripts/check_convergence.py +497 -0
  207. package/skills/pr-converge/scripts/check_pending_reviews.py +154 -0
  208. package/skills/pr-converge/scripts/config/pr_converge_constants.py +118 -0
  209. package/skills/pr-converge/scripts/fetch_copilot_reviews.py +134 -0
  210. package/skills/pr-converge/scripts/post_fix_reply.py +168 -0
  211. package/skills/pr-converge/scripts/test_check_bugbot_ci.py +312 -0
  212. package/skills/pr-converge/workflows/schedule-wakeup-loop.md +5 -12
  213. package/skills/qbug/SKILL.md +157 -27
  214. package/skills/session-log/SKILL.md +216 -114
  215. package/skills/session-tidy/SKILL.md +1 -1
  216. package/skills/skill-builder/SKILL.md +138 -56
  217. package/skills/skill-builder/references/delegation-map.md +72 -113
  218. package/skills/skill-builder/references/progressive-disclosure.md +122 -0
  219. package/skills/skill-builder/references/self-audit-checklist.md +92 -0
  220. package/skills/skill-builder/references/skill-types.md +228 -0
  221. package/skills/skill-builder/references/thariq-x-post-skills.json +33 -0
  222. package/skills/skill-builder/templates/gap-analysis.md +15 -8
  223. package/skills/skill-builder/workflows/improve-skill.md +86 -57
  224. package/skills/skill-builder/workflows/new-skill.md +80 -168
  225. package/skills/skill-builder/workflows/polish-skill.md +78 -54
  226. package/skills/structure-prompt/SKILL.md +50 -0
  227. package/skills/structure-prompt/reference/adversarial-tuning.md +62 -0
  228. package/skills/structure-prompt/reference/block-classification.md +27 -0
  229. package/skills/structure-prompt/reference/canonical-case.md +48 -0
  230. package/skills/structure-prompt/reference/citation-depth.md +70 -0
  231. package/skills/structure-prompt/reference/cleanup.md +33 -0
  232. package/skills/structure-prompt/reference/constraints.md +33 -0
  233. package/skills/structure-prompt/reference/directives.md +37 -0
  234. package/skills/structure-prompt/reference/examples.md +72 -0
  235. package/skills/structure-prompt/reference/instantiation.md +51 -0
  236. package/skills/structure-prompt/reference/output-contract.md +72 -0
  237. package/skills/structure-prompt/reference/per-category.md +23 -0
  238. package/skills/structure-prompt/reference/persona.md +38 -0
  239. package/skills/structure-prompt/reference/research.md +33 -0
  240. package/skills/structure-prompt/reference/structure.md +28 -0
  241. package/agents/code-standards-agent.md +0 -93
  242. package/agents/groq-coder.md +0 -113
  243. package/agents/plan-executor.md +0 -226
  244. package/agents/project-docs-analyzer.md +0 -53
  245. package/agents/project-structure-organizer-agent.md +0 -72
  246. package/agents/skill-to-agent-converter.md +0 -370
  247. package/agents/skill-writer-agent.md +0 -470
  248. package/agents/user-docs-writer.md +0 -67
  249. package/agents/workflow-visual-documenter.md +0 -82
  250. package/commands/readability-review.md +0 -20
  251. package/hooks/mypy.ini +0 -2
  252. package/hooks/notification/attention_needed_notify.py +0 -71
  253. package/hooks/notification/claude_notification_handler.py +0 -67
  254. package/hooks/notification/notification_utils.py +0 -267
  255. package/hooks/notification/subagent_complete_notify.py +0 -381
  256. package/hooks/notification/test_attention_needed_notify.py +0 -47
  257. package/hooks/notification/test_claude_notification_handler.py +0 -54
  258. package/hooks/notification/test_notification_utils.py +0 -91
  259. package/hooks/notification/test_subagent_complete_notify.py +0 -79
  260. package/scripts/config/groq_bugteam_config.py +0 -230
  261. package/scripts/config/test_groq_bugteam_config.py +0 -83
  262. package/scripts/config/test_spec_implementer_prompt.py +0 -32
  263. package/scripts/groq_bugteam.README.md +0 -131
  264. package/scripts/groq_bugteam.py +0 -647
  265. package/scripts/groq_bugteam_dotenv.py +0 -40
  266. package/scripts/groq_bugteam_spec.py +0 -226
  267. package/scripts/test_groq_bugteam.py +0 -529
  268. package/scripts/test_groq_bugteam_apply_fix_from_spec.py +0 -426
  269. package/scripts/test_groq_bugteam_dotenv.py +0 -66
  270. package/scripts/test_groq_bugteam_spec.py +0 -338
  271. package/skills/bugteam/SKILL_EVALS.md +0 -309
  272. package/skills/dream/SKILL.md +0 -118
  273. package/skills/ingest/SKILL.md +0 -40
  274. package/skills/npm-creator/SKILL.md +0 -187
  275. package/skills/readability-review/SKILL.md +0 -127
  276. package/skills/resume-review/SKILL.md +0 -261
  277. package/skills/rule-audit/SKILL.md +0 -307
  278. package/skills/rule-creator/SKILL.md +0 -150
  279. package/skills/searching-obsidian-vault/SKILL.md +0 -131
  280. package/skills/skill-writer/REFERENCE.md +0 -284
  281. package/skills/skill-writer/SKILL.md +0 -222
  282. package/skills/tdd-team/SKILL.md +0 -128
@@ -0,0 +1,528 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>Birchline — Engineering Status — Week 11</title>
7
+ <style>
8
+ :root {
9
+ --ivory: #FAF9F5;
10
+ --slate: #141413;
11
+ --clay: #D97757;
12
+ --oat: #E3DACC;
13
+ --olive: #788C5D;
14
+ --rust: #B04A3F;
15
+ --gray-100: #F0EEE6;
16
+ --gray-300: #D1CFC5;
17
+ --gray-500: #87867F;
18
+ --gray-700: #3D3D3A;
19
+ --white: #FFFFFF;
20
+
21
+ --serif: ui-serif, Georgia, serif;
22
+ --sans: system-ui, -apple-system, sans-serif;
23
+ --mono: ui-monospace, 'SF Mono', Menlo, monospace;
24
+
25
+ --radius-panel: 12px;
26
+ --radius-row: 8px;
27
+ --border: 1.5px solid var(--gray-300);
28
+ }
29
+
30
+ * { box-sizing: border-box; }
31
+
32
+ body {
33
+ margin: 0;
34
+ padding: 56px 24px 120px;
35
+ background: var(--ivory);
36
+ color: var(--slate);
37
+ font-family: var(--sans);
38
+ font-size: 15px;
39
+ line-height: 1.6;
40
+ -webkit-font-smoothing: antialiased;
41
+ }
42
+
43
+ .page {
44
+ max-width: 860px;
45
+ margin: 0 auto;
46
+ }
47
+
48
+ /* ---------- Header ---------- */
49
+ header {
50
+ margin-bottom: 40px;
51
+ }
52
+ .header-top {
53
+ display: flex;
54
+ align-items: baseline;
55
+ justify-content: space-between;
56
+ flex-wrap: wrap;
57
+ gap: 12px;
58
+ margin-bottom: 8px;
59
+ }
60
+ h1 {
61
+ font-family: var(--serif);
62
+ font-weight: 500;
63
+ font-size: 38px;
64
+ letter-spacing: -0.01em;
65
+ margin: 0;
66
+ }
67
+ .auto-pill {
68
+ font-family: var(--mono);
69
+ font-size: 11px;
70
+ text-transform: uppercase;
71
+ letter-spacing: 0.06em;
72
+ color: var(--gray-500);
73
+ background: var(--gray-100);
74
+ border: var(--border);
75
+ border-radius: 999px;
76
+ padding: 5px 11px;
77
+ white-space: nowrap;
78
+ }
79
+ .date-range {
80
+ color: var(--gray-500);
81
+ font-size: 14px;
82
+ }
83
+ .date-range .repo {
84
+ font-family: var(--mono);
85
+ font-size: 13px;
86
+ color: var(--gray-700);
87
+ }
88
+
89
+ /* ---------- Sections ---------- */
90
+ section {
91
+ margin-bottom: 52px;
92
+ }
93
+ h2 {
94
+ font-family: var(--serif);
95
+ font-weight: 500;
96
+ font-size: 24px;
97
+ letter-spacing: -0.01em;
98
+ margin: 0 0 6px;
99
+ }
100
+ hr.rule {
101
+ border: none;
102
+ border-top: 1px solid var(--gray-300);
103
+ margin: 0 0 22px;
104
+ }
105
+
106
+ /* ---------- Summary band ---------- */
107
+ .summary-band {
108
+ display: grid;
109
+ grid-template-columns: repeat(4, 1fr);
110
+ gap: 14px;
111
+ }
112
+ @media (max-width: 720px) {
113
+ .summary-band { grid-template-columns: repeat(2, 1fr); }
114
+ }
115
+ .stat-card {
116
+ background: var(--white);
117
+ border: var(--border);
118
+ border-radius: var(--radius-panel);
119
+ padding: 20px 22px 18px;
120
+ }
121
+ .stat-card.warn {
122
+ border-left: 4px solid var(--clay);
123
+ padding-left: 19px;
124
+ }
125
+ .stat-num {
126
+ font-family: var(--serif);
127
+ font-size: 44px;
128
+ font-weight: 500;
129
+ line-height: 1;
130
+ color: var(--slate);
131
+ margin-bottom: 8px;
132
+ }
133
+ .stat-label {
134
+ font-family: var(--sans);
135
+ font-size: 12px;
136
+ text-transform: uppercase;
137
+ letter-spacing: 0.05em;
138
+ color: var(--gray-500);
139
+ }
140
+ .stat-delta {
141
+ font-family: var(--mono);
142
+ font-size: 11px;
143
+ margin-top: 6px;
144
+ }
145
+ .stat-delta.up { color: var(--olive); }
146
+ .stat-delta.flat { color: var(--gray-500); }
147
+
148
+ /* ---------- Highlights ---------- */
149
+ .highlights {
150
+ list-style: none;
151
+ margin: 0;
152
+ padding: 0;
153
+ }
154
+ .highlights li {
155
+ position: relative;
156
+ padding: 0 0 14px 26px;
157
+ font-size: 15px;
158
+ color: var(--gray-700);
159
+ }
160
+ .highlights li::before {
161
+ content: "";
162
+ position: absolute;
163
+ left: 6px;
164
+ top: 8px;
165
+ width: 7px;
166
+ height: 7px;
167
+ border-radius: 2px;
168
+ background: var(--clay);
169
+ }
170
+ .highlights li strong {
171
+ color: var(--slate);
172
+ font-weight: 600;
173
+ }
174
+
175
+ /* ---------- Shipped table ---------- */
176
+ table.shipped {
177
+ width: 100%;
178
+ border-collapse: separate;
179
+ border-spacing: 0;
180
+ background: var(--white);
181
+ border: var(--border);
182
+ border-radius: var(--radius-panel);
183
+ overflow: hidden;
184
+ }
185
+ table.shipped thead th {
186
+ text-align: left;
187
+ font-family: var(--sans);
188
+ font-size: 11px;
189
+ font-weight: 600;
190
+ text-transform: uppercase;
191
+ letter-spacing: 0.06em;
192
+ color: var(--gray-500);
193
+ background: var(--gray-100);
194
+ padding: 12px 16px;
195
+ border-bottom: 1px solid var(--gray-300);
196
+ }
197
+ table.shipped tbody td {
198
+ padding: 13px 16px;
199
+ border-bottom: 1px solid var(--gray-100);
200
+ font-size: 14px;
201
+ vertical-align: middle;
202
+ }
203
+ table.shipped tbody tr:last-child td {
204
+ border-bottom: none;
205
+ }
206
+ table.shipped tbody tr:hover {
207
+ background: var(--ivory);
208
+ }
209
+ .pr-link {
210
+ font-family: var(--mono);
211
+ font-size: 13px;
212
+ color: var(--clay);
213
+ text-decoration: none;
214
+ border-bottom: 1px dotted transparent;
215
+ }
216
+ .pr-link:hover {
217
+ border-bottom-color: var(--clay);
218
+ }
219
+ .author {
220
+ color: var(--gray-700);
221
+ font-size: 13px;
222
+ }
223
+ .risk {
224
+ display: inline-flex;
225
+ align-items: center;
226
+ gap: 7px;
227
+ font-size: 12px;
228
+ color: var(--gray-500);
229
+ }
230
+ .risk-dot {
231
+ width: 9px;
232
+ height: 9px;
233
+ border-radius: 50%;
234
+ flex-shrink: 0;
235
+ }
236
+ .risk-dot.low { background: var(--olive); }
237
+ .risk-dot.med { background: var(--clay); }
238
+ .risk-dot.high { background: var(--rust); }
239
+
240
+ /* ---------- Velocity chart ---------- */
241
+ .chart-panel {
242
+ background: var(--white);
243
+ border: var(--border);
244
+ border-radius: var(--radius-panel);
245
+ padding: 24px 28px 18px;
246
+ }
247
+ .chart-panel svg {
248
+ display: block;
249
+ width: 100%;
250
+ height: auto;
251
+ }
252
+ .chart-caption {
253
+ font-size: 12px;
254
+ color: var(--gray-500);
255
+ margin-top: 12px;
256
+ }
257
+
258
+ /* ---------- Carryover ---------- */
259
+ .carryover {
260
+ background: var(--oat);
261
+ border-radius: var(--radius-panel);
262
+ padding: 20px 22px;
263
+ }
264
+ .carry-item {
265
+ display: flex;
266
+ align-items: baseline;
267
+ gap: 14px;
268
+ padding: 8px 0;
269
+ }
270
+ .carry-item + .carry-item {
271
+ border-top: 1px solid rgba(20, 20, 19, 0.08);
272
+ }
273
+ .carry-tag {
274
+ font-family: var(--mono);
275
+ font-size: 11px;
276
+ text-transform: uppercase;
277
+ letter-spacing: 0.05em;
278
+ color: var(--gray-700);
279
+ background: var(--ivory);
280
+ border-radius: 4px;
281
+ padding: 3px 7px;
282
+ flex-shrink: 0;
283
+ }
284
+ .carry-body {
285
+ font-size: 14px;
286
+ color: var(--gray-700);
287
+ }
288
+ .carry-body .who {
289
+ color: var(--gray-500);
290
+ font-size: 12px;
291
+ }
292
+
293
+ /* ---------- Footer ---------- */
294
+ footer {
295
+ margin-top: 64px;
296
+ padding-top: 20px;
297
+ border-top: 1px solid var(--gray-300);
298
+ font-family: var(--mono);
299
+ font-size: 12px;
300
+ color: var(--gray-500);
301
+ }
302
+ </style>
303
+ </head>
304
+ <body>
305
+ <div class="page">
306
+
307
+ <header>
308
+ <div class="header-top">
309
+ <h1>Engineering Status &mdash; Week 11</h1>
310
+ <span class="auto-pill">auto-generated</span>
311
+ </div>
312
+ <div class="date-range">
313
+ Mar 10 &ndash; Mar 16, 2025 &nbsp;&middot;&nbsp;
314
+ <span class="repo">birchline/app @ main</span>
315
+ </div>
316
+ </header>
317
+
318
+ <!-- Summary band -->
319
+ <section>
320
+ <div class="summary-band">
321
+ <div class="stat-card">
322
+ <div class="stat-num">14</div>
323
+ <div class="stat-label">PRs merged</div>
324
+ <div class="stat-delta up">+3 vs wk10</div>
325
+ </div>
326
+ <div class="stat-card">
327
+ <div class="stat-num">6</div>
328
+ <div class="stat-label">Deploys</div>
329
+ <div class="stat-delta flat">&plusmn;0</div>
330
+ </div>
331
+ <div class="stat-card warn">
332
+ <div class="stat-num">1</div>
333
+ <div class="stat-label">Incidents</div>
334
+ <div class="stat-delta flat">SEV-2 &middot; 47m</div>
335
+ </div>
336
+ <div class="stat-card">
337
+ <div class="stat-num">3</div>
338
+ <div class="stat-label">Flaky tests fixed</div>
339
+ <div class="stat-delta up">suite now 99.1%</div>
340
+ </div>
341
+ </div>
342
+ </section>
343
+
344
+ <!-- Highlights -->
345
+ <section>
346
+ <h2>Highlights</h2>
347
+ <hr class="rule">
348
+ <ul class="highlights">
349
+ <li>
350
+ <strong>Bulk task editing shipped to 100%.</strong> The multi-select
351
+ toolbar landed behind a flag on Monday and ramped to all workspaces by
352
+ Thursday with no error-rate regression.
353
+ </li>
354
+ <li>
355
+ <strong>Sync API p95 down 38%.</strong> Replacing per-task auth checks
356
+ with a scoped batch lookup cut the hot path from 410ms to 255ms on the
357
+ staging load test.
358
+ </li>
359
+ <li>
360
+ <strong>One SEV-2 on Wednesday</strong> &mdash; a config rollout pushed
361
+ a bad connection-pool limit to the sync workers. Mitigated in 47 minutes;
362
+ full postmortem linked below.
363
+ </li>
364
+ </ul>
365
+ </section>
366
+
367
+ <!-- Shipped -->
368
+ <section>
369
+ <h2>Shipped</h2>
370
+ <hr class="rule">
371
+ <table class="shipped">
372
+ <thead>
373
+ <tr>
374
+ <th style="width: 90px;">PR</th>
375
+ <th>Title</th>
376
+ <th style="width: 140px;">Author</th>
377
+ <th style="width: 100px;">Risk</th>
378
+ </tr>
379
+ </thead>
380
+ <tbody>
381
+ <tr>
382
+ <td><a class="pr-link" href="#">#4871</a></td>
383
+ <td>Bulk edit toolbar: selection model + keyboard shortcuts</td>
384
+ <td class="author">Mira Okafor</td>
385
+ <td><span class="risk"><span class="risk-dot med"></span>Med</span></td>
386
+ </tr>
387
+ <tr>
388
+ <td><a class="pr-link" href="#">#4874</a></td>
389
+ <td>Batch auth lookup for <code>/v2/sync</code> hot path</td>
390
+ <td class="author">Devon Park</td>
391
+ <td><span class="risk"><span class="risk-dot med"></span>Med</span></td>
392
+ </tr>
393
+ <tr>
394
+ <td><a class="pr-link" href="#">#4878</a></td>
395
+ <td>Fix race in attachment uploader retry loop</td>
396
+ <td class="author">Sam Reyes</td>
397
+ <td><span class="risk"><span class="risk-dot low"></span>Low</span></td>
398
+ </tr>
399
+ <tr>
400
+ <td><a class="pr-link" href="#">#4879</a></td>
401
+ <td>Migrate reminder scheduler to idempotent job keys</td>
402
+ <td class="author">Priya Anand</td>
403
+ <td><span class="risk"><span class="risk-dot high"></span>High</span></td>
404
+ </tr>
405
+ <tr>
406
+ <td><a class="pr-link" href="#">#4882</a></td>
407
+ <td>Board view: collapse empty swimlanes by default</td>
408
+ <td class="author">Mira Okafor</td>
409
+ <td><span class="risk"><span class="risk-dot low"></span>Low</span></td>
410
+ </tr>
411
+ <tr>
412
+ <td><a class="pr-link" href="#">#4885</a></td>
413
+ <td>Quarantine 3 flaky webhook integration tests</td>
414
+ <td class="author">Jules Tan</td>
415
+ <td><span class="risk"><span class="risk-dot low"></span>Low</span></td>
416
+ </tr>
417
+ <tr>
418
+ <td><a class="pr-link" href="#">#4888</a></td>
419
+ <td>Connection pool limits configurable per worker tier</td>
420
+ <td class="author">Devon Park</td>
421
+ <td><span class="risk"><span class="risk-dot med"></span>Med</span></td>
422
+ </tr>
423
+ <tr>
424
+ <td><a class="pr-link" href="#">#4891</a></td>
425
+ <td>Dark mode pass on settings &amp; billing panels</td>
426
+ <td class="author">Noor Halabi</td>
427
+ <td><span class="risk"><span class="risk-dot low"></span>Low</span></td>
428
+ </tr>
429
+ </tbody>
430
+ </table>
431
+ </section>
432
+
433
+ <!-- Velocity -->
434
+ <section>
435
+ <h2>Velocity</h2>
436
+ <hr class="rule">
437
+ <div class="chart-panel">
438
+ <svg viewBox="0 0 640 180" role="img" aria-label="PRs merged per day">
439
+ <!-- gridlines -->
440
+ <line x1="48" y1="20" x2="620" y2="20" stroke="#F0EEE6" stroke-width="1"/>
441
+ <line x1="48" y1="60" x2="620" y2="60" stroke="#F0EEE6" stroke-width="1"/>
442
+ <line x1="48" y1="100" x2="620" y2="100" stroke="#F0EEE6" stroke-width="1"/>
443
+ <line x1="48" y1="140" x2="620" y2="140" stroke="#D1CFC5" stroke-width="1.5"/>
444
+
445
+ <!-- y-axis labels -->
446
+ <text x="40" y="144" text-anchor="end" font-family="system-ui" font-size="11" fill="#87867F">0</text>
447
+ <text x="40" y="104" text-anchor="end" font-family="system-ui" font-size="11" fill="#87867F">1</text>
448
+ <text x="40" y="64" text-anchor="end" font-family="system-ui" font-size="11" fill="#87867F">2</text>
449
+ <text x="40" y="24" text-anchor="end" font-family="system-ui" font-size="11" fill="#87867F">3</text>
450
+
451
+ <!-- bars: 7 days, values 2,3,1,4,2,1,1 (sum 14)
452
+ baseline y=140, unit=40px, bar width=56, gap=24, start x=64 -->
453
+ <!-- Mon: 2 -->
454
+ <rect x="64" y="60" width="56" height="80" rx="6" fill="#E3DACC"/>
455
+ <!-- Tue: 3 -->
456
+ <rect x="144" y="20" width="56" height="120" rx="6" fill="#E3DACC"/>
457
+ <!-- Wed: 1 -->
458
+ <rect x="224" y="100" width="56" height="40" rx="6" fill="#E3DACC"/>
459
+ <!-- Thu: 4 (peak) -->
460
+ <rect x="304" y="0" width="56" height="140" rx="6" fill="#D97757"/>
461
+ <!-- Fri: 2 -->
462
+ <rect x="384" y="60" width="56" height="80" rx="6" fill="#E3DACC"/>
463
+ <!-- Sat: 1 -->
464
+ <rect x="464" y="100" width="56" height="40" rx="6" fill="#E3DACC"/>
465
+ <!-- Sun: 1 -->
466
+ <rect x="544" y="100" width="56" height="40" rx="6" fill="#E3DACC"/>
467
+
468
+ <!-- value labels -->
469
+ <text x="92" y="54" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">2</text>
470
+ <text x="172" y="14" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">3</text>
471
+ <text x="252" y="94" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">1</text>
472
+ <text x="332" y="14" text-anchor="middle" font-family="system-ui" font-size="11" fill="#3D3D3A" font-weight="600">4</text>
473
+ <text x="412" y="54" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">2</text>
474
+ <text x="492" y="94" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">1</text>
475
+ <text x="572" y="94" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">1</text>
476
+
477
+ <!-- x-axis labels -->
478
+ <text x="92" y="158" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">Mon</text>
479
+ <text x="172" y="158" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">Tue</text>
480
+ <text x="252" y="158" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">Wed</text>
481
+ <text x="332" y="158" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">Thu</text>
482
+ <text x="412" y="158" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">Fri</text>
483
+ <text x="492" y="158" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">Sat</text>
484
+ <text x="572" y="158" text-anchor="middle" font-family="system-ui" font-size="11" fill="#87867F">Sun</text>
485
+ </svg>
486
+ <div class="chart-caption">
487
+ PRs merged per day. Thursday spike is the bulk-edit feature train (4 PRs landed together).
488
+ </div>
489
+ </div>
490
+ </section>
491
+
492
+ <!-- Carryover -->
493
+ <section>
494
+ <h2>Carryover</h2>
495
+ <hr class="rule">
496
+ <div class="carryover">
497
+ <div class="carry-item">
498
+ <span class="carry-tag">In review</span>
499
+ <div class="carry-body">
500
+ Workspace export to CSV &mdash; waiting on pagination review.
501
+ <span class="who">&middot; Sam Reyes</span>
502
+ </div>
503
+ </div>
504
+ <div class="carry-item">
505
+ <span class="carry-tag">Blocked</span>
506
+ <div class="carry-body">
507
+ SSO group mapping &mdash; blocked on staging IdP credentials from IT.
508
+ <span class="who">&middot; Priya Anand</span>
509
+ </div>
510
+ </div>
511
+ <div class="carry-item">
512
+ <span class="carry-tag">Slipped</span>
513
+ <div class="carry-body">
514
+ Mobile push reliability dashboard &mdash; deprioritized for incident follow-up.
515
+ <span class="who">&middot; Devon Park</span>
516
+ </div>
517
+ </div>
518
+ </div>
519
+ </section>
520
+
521
+ <footer>
522
+ Sources: git log main..HEAD &middot; CI dashboard &middot; deploy log
523
+ &nbsp;&mdash;&nbsp; generated Mar 16 2025 18:02
524
+ </footer>
525
+
526
+ </div>
527
+ </body>
528
+ </html>