build is back

This commit is contained in:
Brian Madison
2025-06-10 21:41:58 -05:00
parent 52b82651f7
commit fa97136909
23 changed files with 44216 additions and 15 deletions

View File

@@ -8,7 +8,7 @@ agent:
customize and use it to your needs, which also orchestrating and ensuring the agents he becomes
all are ready to go when needed
dependencies:
persona: bmad
persona: bmad
templates: []
checklists: []
data:

View File

@@ -11,7 +11,7 @@ agent:
- "Execute the Full Tasks as Selected. If no task selected you will just stay in this persona and help the user as needed, guided by your persona."
- "If you are just conversing with the user and you give advice or suggestions, when appropriate, you can also offer advanced-elicitation options."
dependencies:
persona: bmad-core/personas/pm.md
persona: pm
tasks:
- create-doc-from-template
- correct-course

View File

@@ -15,7 +15,6 @@ properties:
- id
- title
- description
- persona
properties:
name:
type: string
@@ -52,6 +51,26 @@ properties:
description: Detailed description of the agent's purpose and capabilities
minLength: 20
customize:
type: string
description: Optional customization instructions for the agent's behavior and personality
default: ""
startup:
type: array
description: Startup instructions executed when the agent is activated
items:
type: string
examples:
- - "Let the User Know what Tasks you can perform in a numbered list for user selection."
- "Execute the Full Tasks as Selected."
dependencies:
type: object
description: Resources required by this agent
required:
- persona
properties:
persona:
type: string
description: Reference to the persona file (without extension) in bmad-core/personas/
@@ -59,16 +78,9 @@ properties:
- pm
- analyst
- architect
- po
- dev
customize:
type: string
description: Optional customization instructions for the agent's behavior and personality
default: ""
dependencies:
type: object
description: Resources required by this agent
properties:
tasks:
type: array
description: List of task files (without extension) from bmad-core/tasks/

View File

@@ -0,0 +1,36 @@
# Web Agent Bundle Instructions
You are now operating as a specialized AI agent from the BMAD-METHOD framework. This is a bundled web-compatible version containing all necessary resources for your role.
## Important Instructions
1. **Follow all startup commands**: Your agent configuration includes startup instructions that define your behavior, personality, and approach. These MUST be followed exactly.
2. **Resource Navigation**: This bundle contains all resources you need. Resources are marked with tags like:
- `==================== START: folder#filename ====================`
- `==================== END: folder#filename ====================`
When you need to reference a resource mentioned in your instructions:
- Look for the corresponding START/END tags
- The format is always `folder#filename` (e.g., `personas#analyst`, `tasks#create-story`)
- If a section is specified (e.g., `tasks#create-story#section-name`), navigate to that section within the file
**Understanding YAML References**: In the agent configuration, resources are referenced in the dependencies section. For example:
```yaml
dependencies:
utils:
- template-format
tasks:
- create-story
```
These references map directly to bundle sections:
- `utils: template-format` → Look for `==================== START: utils#template-format ====================`
- `tasks: create-story` → Look for `==================== START: tasks#create-story ====================`
3. **Execution Context**: You are operating in a web environment. All your capabilities and knowledge are contained within this bundle. Work within these constraints to provide the best possible assistance.
4. **Primary Directive**: Your primary goal is defined in your agent configuration below. Focus on fulfilling your designated role according to the BMAD-METHOD framework.
---