Skills + Development Frameworks #960
Open
+19,791
−111
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Motivation
Development frameworks like GSD (Get Stuff Done), BMAD, and Superpowers provide structured methodologies that help developers work more effectively with AI agents. Previously, users had to manually prompt the agent with framework-specific instructions or rely on generic responses.
This PR integrates framework awareness directly into Agent Zero, allowing the agent to:
Features
Framework Selection (Global)
Users can select a default development framework in Settings > Agent > Framework:
Project-Level Override
Each project can override the global framework in Projects > Edit > Development Framework:
Framework-Aware Skill Discovery
When a framework is active:
skills_toolpassesframework_idto all skill helper functionsSystem Prompt Integration
Active framework context is injected into the agent's system prompt:
Skills Tab in Settings
Skills Import functionality moved from Agent settings to dedicated Settings > Skills tab for better organization and future expansion.
Supported Frameworks
Architecture
File Changes
Backend - Core
python/helpers/frameworks.pypython/api/frameworks.pypython/helpers/settings.pydev_frameworkfield to Settings TypedDictpython/helpers/projects.pydev_frameworkto BasicProjectDatapython/helpers/skills.pyget_skill_roots()functionBackend - Extensions
python/tools/skills_tool.pyframework_idto all skill helper callspython/extensions/message_loop_prompts_after/_55_recall_skills.pypython/extensions/system_prompt/_10_system_prompt.pyBackend - Prompts
prompts/agent.system.framework.mdFrontend - Settings
webui/components/settings/settings.htmlwebui/components/settings/agent/agent-settings.htmlwebui/components/settings/agent/framework.htmlwebui/components/settings/frameworks/framework-details.htmlwebui/components/settings/frameworks/framework-store.jswebui/components/settings/skills/skills-settings.htmlFrontend - Projects
webui/components/projects/project-edit-basic-data.htmlwebui/components/projects/projects-store.jsframeworkOptionsandloadFrameworkOptions()Frontend - Assets
webui/public/framework.svgSkills
skills/frameworks/gsd/skills/frameworks/superpowers/skills/frameworks/bmad/skills/frameworks/speckit/skills/frameworks/prp/skills/frameworks/agentos/skills/frameworks/amplihack/API Changes
New Endpoint:
/api/frameworksRequest:
{ "action": "list" }
Response:
{ "ok": true, "data": [ { "id": "gsd", "name": "GSD (Get Stuff Done)", "description": "A rapid iteration framework...", "skill_prefix": "gsd", "workflows": [ { "name": "Discuss Phase", "skill_name": "gsd-discuss-phase", "description": "...", "sequence": 1 } ] } ] }Breaking Changes
None. This is a purely additive feature:
Test Plan
Settings - Framework Selection
Settings - Skills Tab
Projects - Framework Override
Agent Behavior
Skill Discovery
Edge Cases