feat: add reminders page, BMad skills upgrade, MCP server refactor

- Add reminders page with navigation support
- Upgrade BMad builder module to skills-based architecture
- Refactor MCP server: extract tools and auth into separate modules
- Add connections cache, custom AI provider support
- Update prisma schema and generated client
- Various UI/UX improvements and i18n updates
- Add service worker for PWA support

Made-with: Cursor
This commit is contained in:
Sepehr Ramezani
2026-04-13 21:02:53 +02:00
parent 18ed116e0d
commit fa7e166f3e
3099 changed files with 397228 additions and 14584 deletions

View File

@@ -0,0 +1,6 @@
module,skill,display-name,menu-code,description,action,args,phase,after,before,required,output-location,outputs
BMad Builder,bmad-builder-setup,Setup Builder Module,SB,"Install or update BMad Builder module config and help entries. Collects user preferences, writes config.yaml, and migrates legacy configs.",configure,,anytime,,,false,{project-root}/_bmad,config.yaml and config.user.yaml
BMad Builder,bmad-agent-builder,Build an Agent,BA,"Create, edit, convert, or fix an agent skill.",build-process,"[-H] [description | path]",anytime,,bmad-agent-builder:quality-optimizer,false,output_folder,agent skill
BMad Builder,bmad-agent-builder,Optimize an Agent,OA,Validate and optimize an existing agent skill. Produces a quality report.,quality-optimizer,[-H] [path],anytime,bmad-agent-builder:build-process,,false,bmad_builder_reports,quality report
BMad Builder,bmad-workflow-builder,Build a Workflow,BW,"Create, edit, convert, or fix a workflow or utility skill.",build-process,"[-H] [description | path]",anytime,,bmad-workflow-builder:quality-optimizer,false,output_folder,workflow skill
BMad Builder,bmad-workflow-builder,Optimize a Workflow,OW,Validate and optimize an existing workflow or utility skill. Produces a quality report.,quality-optimizer,[-H] [path],anytime,bmad-workflow-builder:build-process,,false,bmad_builder_reports,quality report
1 module skill display-name menu-code description action args phase after before required output-location outputs
2 BMad Builder bmad-builder-setup Setup Builder Module SB Install or update BMad Builder module config and help entries. Collects user preferences, writes config.yaml, and migrates legacy configs. configure anytime false {project-root}/_bmad config.yaml and config.user.yaml
3 BMad Builder bmad-agent-builder Build an Agent BA Create, edit, convert, or fix an agent skill. build-process [-H] [description | path] anytime bmad-agent-builder:quality-optimizer false output_folder agent skill
4 BMad Builder bmad-agent-builder Optimize an Agent OA Validate and optimize an existing agent skill. Produces a quality report. quality-optimizer [-H] [path] anytime bmad-agent-builder:build-process false bmad_builder_reports quality report
5 BMad Builder bmad-workflow-builder Build a Workflow BW Create, edit, convert, or fix a workflow or utility skill. build-process [-H] [description | path] anytime bmad-workflow-builder:quality-optimizer false output_folder workflow skill
6 BMad Builder bmad-workflow-builder Optimize a Workflow OW Validate and optimize an existing workflow or utility skill. Produces a quality report. quality-optimizer [-H] [path] anytime bmad-workflow-builder:build-process false bmad_builder_reports quality report