feat: Add missing agent persona files for skill-only tools #129
+228
−0
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
This PR adds missing agent persona files (
.md) for tools that were previously only defined as skills. This ensures that these tools can be successfully invoked via theTask(subagent) tool in environments like OpenCode and Claude Code, preventing "Unknown agent type" errors.Problem
In some agentic environments, there is a strict distinction between standalone subagents (which require a persona file in the
agents/directory) and loaded skills. Currently, several core "Every" tools (likefrontend-design,agent-browser, andbrainstorming) are missing these agent definitions, causing them to fail when called as subagents.Solution
Added 9 new agent persona files derived from their corresponding
SKILL.mdinstructions:frontend-design,gemini-imagegencompound-docsagent-browser,brainstorming,create-agent-skills,file-todos,skill-creator,dspy-rubyThis completes the alignment work started in PR #120, ensuring these tools work reliably as both skills and agents across all platforms.