BMAD method
https://www.youtube.com/watch?v=LorEJPrALcg
To add multiple repositories using the BMAD Federated Knowledge System (bmad-fed), you can use the bmad-fed add command in either an interactive or command-line mode.
1. Interactive Mode : This is the simplest way to add repositories one by one, as the system will prompt you for all required details.bashbmad-fed add <repo-name> --interactive
Use code with caution.During the prompts, select "Repository" as the knowledge type.
2. Command-Line Mode : For more precise control, you can specify all parameters directly. To add multiple repositories, run the command separately for each one:bash# Adding the first repository
bmad-fed add repo1 \
--repo git@github.com:user/repo1.git \
--branch main \
--priority 1 \
--sync-policy daily
# Adding a second repository
bmad-fed add repo2 \
--repo git@github.com:user/repo2.git \
--branch main \
--priority 2 \
--sync-policy daily
bmad-fed add repo1 \
--repo git@github.com:user/repo1.git \
--branch main \
--priority 1 \
--sync-policy daily
# Adding a second repository
bmad-fed add repo2 \
--repo git@github.com:user/repo2.git \
--branch main \
--priority 2 \
--sync-policy daily
Comments
Post a Comment