Agent Skills
Added a skill system that extends the AI with custom instructions, reference materials, and executable workflows.
- Define domain-specific behavior via SKILL.md files
- Place reference documents (style guides, templates, etc.) in references/ for automatic loading
- Expose workflows in workflows/ as function calling tools
- Selectively activate skills per conversation via chip UI in the chat input area
Slash Command for Skills
Invoke skills directly with /folder-name for instant execution.
- /weekly-report — Activates the skill and sends immediately
- /weekly-report this week's content — Activates the skill and sends the message together
- Autocomplete support — type / to see available skills, select to send immediately
CLI Mode Skill Support
Skills now work with Gemini CLI, Claude CLI, and Codex CLI backends.
- Skill instructions and references are injected into the CLI system prompt
- Workflow execution uses a text-based [RUN_WORKFLOW: id] marker convention
Bug Fixes
- Fixed workflow parser not recognizing code blocks with 4+ backticks (````)