Plan Content Manifest
The production plan-content feed is published from:
https://docs.borgui.com/plan-content.json
This feed controls the text shown in the plan drawer for:
- currently available plan features
- upcoming plan features
- roadmap labels such as
available_in
Update Flow
- Edit docs/plan-content.json.
- Commit and push to
main. - Wait for GitHub Pages to rebuild.
- Verify the live manifest URL returns JSON.
Format
Each entry describes one feature:
{
"id": "backup_reports",
"plan": "pro",
"label": "Backup reports",
"description": "Generate daily, weekly, monthly, or custom backup reports.",
"available_in": "2.0.1"
}
Use either availability or available_in, not both.
availability: "included"means the feature is part of the plan now.availability: "coming_soon"means it is planned but not tied to a version yet.available_in: "2.0.1"means it should appear in a separate versioned roadmap section, not in the generic coming-soon section.
Optional localization fields can be provided directly in the manifest:
label_localizeddescription_localized
Example:
{
"id": "backup_reports",
"plan": "pro",
"label": "Scheduled backup reports",
"label_localized": {
"es": "Informes programados de copias de seguridad"
},
"description": "Generate daily, weekly, and monthly backup summaries.",
"description_localized": {
"es": "Genera resúmenes diarios, semanales y mensuales de copias de seguridad."
},
"available_in": "2.0.1"
}
Resolution order is:
- exact locale, e.g.
es-ES - base language, e.g.
es default- the base field