Split manifest schema boundaries #125
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Issue #117 identifies
bot_bottle/manifest.pyas a complexity hotspot: schema validation, per-file Markdown loading, two-passextends:resolution, merge rules, and Claude Code subagent frontmatter passthrough policy all live in one broad module. That makes future manifest changes expensive to review and easy to apply inconsistently acrossManifest.from_json_objandManifest.from_md_dirs.Desired outcome
Add a PRD for splitting the manifest loader into clearer internal boundaries while preserving the public manifest schema and
bot_bottle.manifestimport surface. The PRD should cover:extends:resolution and merge rulesParent context
Carved out from the broader hotspot review in #117.