45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
# Agent Customization
 | 
						|
# Customize any section below - all are optional
 | 
						|
# After editing: npx bmad-method build <agent-name>
 | 
						|
 | 
						|
# Override agent name
 | 
						|
agent:
 | 
						|
  metadata:
 | 
						|
    name: ""
 | 
						|
 | 
						|
# Replace entire persona (not merged)
 | 
						|
persona:
 | 
						|
  role: ""
 | 
						|
  identity: ""
 | 
						|
  communication_style: ""
 | 
						|
  principles: []
 | 
						|
 | 
						|
# Add custom critical actions (appended after standard config loading)
 | 
						|
critical_actions: []
 | 
						|
 | 
						|
# Add persistent memories for the agent
 | 
						|
memories: []
 | 
						|
# Example:
 | 
						|
# memories:
 | 
						|
#   - "User prefers detailed technical explanations"
 | 
						|
#   - "Current project uses React and TypeScript"
 | 
						|
 | 
						|
# Add custom menu items (appended to base menu)
 | 
						|
# Don\'t include * prefix or help/exit - auto-injected
 | 
						|
menu:
 | 
						|
  - trigger: browser-control
 | 
						|
    description: "使用浏览器查看issue、代码仓库或前端效果 (通过自然语言提示与chrome-devtools-mcp交互)"
 | 
						|
# Example:
 | 
						|
# menu:
 | 
						|
#   - trigger: my-workflow
 | 
						|
#     workflow: "{project-root}/custom/my.yaml"
 | 
						|
#     description: My custom workflow
 | 
						|
 | 
						|
# Add custom prompts (for action="#id" handlers)
 | 
						|
prompts: []
 | 
						|
# Example:
 | 
						|
# prompts:
 | 
						|
# - id: my-prompt
 | 
						|
#   content: |
 | 
						|
#     Prompt instructions here
 |