feat: update web builder to remove IDE-specific properties from agent bundles
- Remove 'root' property from YAML when building web bundles - Remove 'IDE-FILE-RESOLUTION' and 'REQUEST-RESOLUTION' properties - Filter out IDE-specific activation instructions - Keep agent header minimal for web bundles - Ensures web bundles are clean of IDE-specific configuration 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,19 +1,10 @@
|
||||
# File Resolution Context
|
||||
|
||||
## IDE Activation Instructions for Agents
|
||||
|
||||
Add these two lines to any agent's `activation-instructions`:
|
||||
Update the installer/upgrader so that when agents are added to a project (under Add these two lines to any agent's `activation-instructions` for ide installation:
|
||||
|
||||
```yaml
|
||||
- IDE-FILE-RESOLUTION: Dependencies map to files as {root}/{type}/{name}.md where root=".bmad-core", type=folder (tasks/templates/checklists/utils), name=dependency name.
|
||||
- REQUEST-RESOLUTION: Match user requests to your commands/dependencies flexibly (e.g., "draft story"→*create→create-next-story task), or ask for clarification if ambiguous.
|
||||
- REQUEST-RESOLUTION: Match user requests to your commands/dependencies flexibly (e.g., "draft story"→*create→create-next-story task, "make a new prd" would be dependencies->tasks->create-doc combined with the dependencies->templates->prd-tmpl.md), or ask for clarification if ambiguous.
|
||||
```
|
||||
|
||||
## Quick Reference
|
||||
|
||||
| Dependency | File Path |
|
||||
|------------|-----------|
|
||||
| task: `create-next-story` | `.bmad-core/tasks/create-next-story.md` |
|
||||
| template: `story-tmpl` | `.bmad-core/templates/story-tmpl.md` |
|
||||
| checklist: `story-draft-checklist` | `.bmad-core/checklists/story-draft-checklist.md` |
|
||||
| util: `template-format` | `.bmad-core/utils/template-format.md` |
|
||||
and add `root: .bmad-core` as the first root yml property.
|
||||
|
||||
Reference in New Issue
Block a user