You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a DocsClaw skill (or CLI wizard) that interactively scaffolds a complete agent config directory by asking questions about the agent's purpose, suggesting existing skills, and generating all necessary files.
Motivation
Setting up a new agent requires creating several files (system-prompt.txt, agent-card.json, agent-config.yaml, skills/) with the right structure and content. An interactive wizard would lower the barrier to creating new agents and ensure consistency.
Proposed workflow
Ask about the agent's purpose and domain (e.g., "document reviewer", "data analyst")
Ask about the target LLM provider and model
Suggest relevant existing skills from a catalog
Ask if additional custom skills are needed
Ask about tool requirements (exec, web_fetch, read_file, etc.)
Generate the complete config directory:
system-prompt.txt — tailored to the stated purpose
agent-card.json — with name, description, skills metadata
agent-config.yaml — with appropriate tools and loop settings
Summary
Create a DocsClaw skill (or CLI wizard) that interactively scaffolds a complete agent config directory by asking questions about the agent's purpose, suggesting existing skills, and generating all necessary files.
Motivation
Setting up a new agent requires creating several files (system-prompt.txt, agent-card.json, agent-config.yaml, skills/) with the right structure and content. An interactive wizard would lower the barrier to creating new agents and ensure consistency.
Proposed workflow
system-prompt.txt— tailored to the stated purposeagent-card.json— with name, description, skills metadataagent-config.yaml— with appropriate tools and loop settingsskills/— copies of selected existing skillsImplementation options
docsclaw init --config-dir ./my-agentwith interactive promptsRelated