diff .claude/skills/zenbu-personal-site/SKILL.md @ 264:04fee26ecce0

add authenticated JRPG conversation platform Add reusable auth/session storage, owned conversation recovery, guest quotas, admin workflows, URL-routed conversation UI, mobile frame support, and parallel browser acceptance. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Fri, 07 Aug 2026 07:34:12 -0700
parents b401627fc49e
children 056790c4fb0d
line wrap: on
line diff
--- a/.claude/skills/zenbu-personal-site/SKILL.md	Thu Aug 06 11:31:30 2026 -0700
+++ b/.claude/skills/zenbu-personal-site/SKILL.md	Fri Aug 07 07:34:12 2026 -0700
@@ -72,8 +72,22 @@
 bazel build //mrjunejune:mrjunejune_server
 bazel build //mrjunejune:mrjunejune_server_bundle
 bazel test //mrjunejune/test:integration_test
+bazel test //mrjunejune/test:theme_and_webp_test
 ```
 
+The JRPG browser acceptance is sharded by concern:
+
+- `//mrjunejune/test:jrpg_core_test`
+- `//mrjunejune/test:jrpg_jrpg_test`
+- `//mrjunejune/test:jrpg_routing_test`
+- `//mrjunejune/test:jrpg_hls_test`
+
+`//mrjunejune/test:theme_and_webp_test` is the aggregate `test_suite`; Bazel
+runs its shards in parallel. Keep future slow browser scenarios in the narrowest
+independent shard, or create another shard rather than extending one serial
+test process. Give every shard its own port, temporary database, and fixture
+state.
+
 Run the complete local inference stack with:
 
 ```bash