
Always-On AI Skills: Configuration as Behavior
Stop invoking AI skills manually. Configure them to auto-load, turning one-off commands into persistent background behaviors.

Stop invoking AI skills manually. Configure them to auto-load, turning one-off commands into persistent background behaviors.

Why I automated knowledge capture, and the technical setup that lets AI record ideas while I work.

Learn how to design a modular, secure, and AI-friendly automation system using the ‘Skill’ pattern and SKILL.md documentation.

How to configure skills to auto-load for specific AI agents, turning one-off invocations into persistent behaviors.
Configure skills to auto-load for specific agents via oh-my-opencode.json.
Wanted content-seed harvesting to be always active, not requiring manual /content-seed invocation each session.
Solution: Add skills array to agent config.
// ~/.config/opencode/oh-my-opencode.json
{
"agents": {
"sisyphus": {
"model": "...",
"skills": ["content-seed"] // ← auto-loads
}
}
}