Skip to content

Skills

Skills are pre-built prompts that load agents, run workflows, or execute tasks inside your IDE. The Froid installer generates them from your installed modules at install time. If you later add, remove, or change modules, re-run the installer to keep skills in sync (see Troubleshooting).

Froid offers two ways to start work, and they serve different purposes.

MechanismHow you invoke itWhat happens
SkillType the skill name (e.g. froid-help) in your IDEDirectly loads an agent, runs a workflow, or executes a task
Agent menu triggerLoad an agent first, then type a short code (e.g. BD)The agent interprets the code and starts the matching workflow while staying in character

Agent menu triggers require an active agent session. Use skills when you know which workflow you want. Use triggers when you are already working with an agent and want to switch tasks without leaving the conversation.

When you run npx maxwellai-froid install, the installer reads the manifests for every selected module and writes one skill per agent, workflow, task, and tool. Each skill is a directory containing a SKILL.md file that instructs the AI to load the corresponding source file and follow its instructions.

The installer uses templates for each skill type:

Skill typeWhat the generated file does
Agent launcherLoads the agent persona file, activates its menu, and stays in character
Workflow skillLoads the workflow config and follows its steps
Task skillLoads a standalone task file and follows its instructions
Tool skillLoads a standalone tool file and follows its instructions

The installer writes skill files into an IDE-specific directory inside your project. The exact path depends on which IDE you selected during installation.

IDE / CLISkills directory
Claude Code.claude/skills/
Cursor.agents/skills/
Windsurf.agents/skills/
Other IDEsSee the installer output for the target path

Each skill is a directory containing a SKILL.md file. For example, a Claude Code installation looks like:

.claude/skills/
├── froid-help/
│ └── SKILL.md
├── froid-prd/
│ └── SKILL.md
├── froid-agent-dev/
│ └── SKILL.md
└── ...

The directory name determines the skill name in your IDE. For example, the directory froid-agent-dev/ registers the skill froid-agent-dev.

Type the skill name in your IDE to invoke it. Some platforms require you to enable skills in settings before they appear.

Run froid-help for context-aware guidance on your next step.

Agent skills load a specialized AI persona with a defined role, communication style, and menu of workflows. Once loaded, the agent stays in character and responds to menu triggers.

Example skillAgentRole
froid-agent-devAmelia (Developer)Implements stories with strict adherence to specs
froid-agent-pmJohn (Product Manager)Creates and validates PRDs
froid-agent-architectWinston (Architect)Designs system architecture

See Agents for the full list of default agents and their triggers.

Workflow skills run a structured, multi-step process without loading an agent persona first. They load a workflow configuration and follow its steps.

Example skillPurpose
froid-product-briefCreate or update a product brief — guided discovery when your concept is clear
froid-prfaqWorking Backwards PRFAQ challenge to stress-test your product concept
froid-prdCreate, update, or validate a Product Requirements Document
froid-uxDesign user experience
froid-architectureDesign system architecture
froid-create-epics-and-storiesCreate epics and stories
froid-buildImplement direct intent, an issue, a feature, a fix, or a planned story. See Build a Change
froid-code-reviewRun a code review. See Review a Change
froid-build-autoAutomate one unattended iteration of the Build implementation model

See Workflow Map for the complete workflow reference organized by phase.

Tasks and tools are standalone operations that do not require an agent or workflow context.

Froid-Help: Your Intelligent Guide

froid-help is your primary interface for discovering what to do next. It inspects your project, understands natural language queries, and recommends the next required or optional step based on your installed modules.

Other Core Tasks and Tools

The core module includes 8 built-in tools — help, reviews, refinement, customization, and the thinking skills (brainstorming, forge idea, party mode). See Core Tools for the complete reference.

All skills use the froid- prefix followed by a descriptive name (e.g., froid-agent-dev, froid-prd, froid-help). See Modules for available modules.

Skills not appearing after install. Some platforms require skills to be explicitly enabled in settings. Check your IDE’s documentation or ask your AI assistant how to enable skills. You may also need to restart your IDE or reload the window.

Expected skills are missing. The installer only generates skills for modules you selected. Run npx maxwellai-froid install again and verify your module selection. Check that the skill files exist in the expected directory.

Skills from a removed module still appear. The installer does not delete old skill files automatically. Remove the stale directories from your IDE’s skills directory, or delete the entire skills directory and re-run the installer for a clean set.