Skip to main content
Skills are reusable natural language instructions that you can attach to Agent Action nodes. They provide vetted, curated guidance that agents read to perform specific tasks correctly.

Why use skills?

  • Consistency: Encode best practices once, reuse across multiple tasks
  • Domain knowledge: Capture site-specific quirks, workflows, or patterns
  • Team collaboration: Share proven approaches with your team
  • Maintainability: Update a skill once, all attached nodes benefit

Creating a skill

  1. Open Skills in the left navigation
  2. Click New Skill
  3. Fill in:
    • Name: A short, descriptive title (e.g., “Handle Certn ID Verification”)
    • Description: Optional summary shown in the picker
    • Instructions: Detailed guidance for the agent

Writing good instructions

Write instructions as if you’re explaining to a capable assistant:
When processing ID verification on support.certn.co:

1. Navigate to the ID verification list page
2. Click the "Created" column to sort by date
3. For each row that needs review:
   - Click the row to open details
   - Check the document images against the applicant info
   - Select the appropriate verification status
   - Add notes if rejecting
4. Return to the list before processing the next item

Note: The table rows don't have visible IDs. Use network request
inspection (get_network_requests) to capture the API response
which contains the applicant UUIDs.
Tips:
  • Be specific about steps and expected outcomes
  • Mention site-specific quirks or patterns
  • Include error handling guidance
  • Use plain text (no markdown formatting)

Attaching skills to tasks

Skills are attached at the Agent Action node level:
  1. Open your task in the builder
  2. Select or create an Agent Action node
  3. In the node editor, find the Skills section
  4. Select one or more skills to attach
The agent will read the skill instructions alongside the node’s prompt when executing.

Managing skills

Edit a skill

  1. Go to Skills and click the skill name
  2. Make your changes
  3. Click Save
Changes apply to all future runs of tasks using this skill.

Improve with AI

Click the Improve button to have AI clean up your instructions:
  • Fixes grammar and awkward phrasing
  • Reorganizes for clarity
  • Preserves all your original details (never adds new content)

Delete a skill

  1. Open the skill
  2. Click the trash icon
  3. Confirm deletion
Deleting a skill removes it from all Agent Action nodes that reference it. Those nodes will still run but without the skill’s guidance.

Use cases

SkillPurpose
Login with MFAHandle multi-factor auth flows consistently
Extract hidden dataUse network inspection when DOM lacks IDs/URLs
Navigate complex menusGuide through multi-level navigation
Handle rate limitingWait and retry patterns for throttled APIs
Site-specific selectorsDocument brittle selectors that need special handling

Skills vs node prompts

Node PromptSkill
ScopeSingle nodeReusable across nodes/tasks
Purpose”What to do""How to do it well”
MaintenanceEdit each nodeUpdate once, applies everywhere
Best forTask-specific instructionsDomain knowledge, best practices
Combine both: use the node prompt for the specific goal, attach skills for the approach.