Skip to content

Claude Cowork Integration

Claude Code and Claude Cowork natively support the SKILL.md format. SiteSkills skills are fully compatible with no additional configuration.

Install Skills

bash
siteskills install amazon-add-to-cart

This installs to .claude/skills/amazon-add-to-cart/ in your project directory.

To install globally (available across all projects):

bash
siteskills install amazon-add-to-cart --global

How It Works

  1. Claude scans the .claude/skills/ directory on startup
  2. Each SKILL.md frontmatter contains trigger phrases:
    yaml
    triggers:
      - "add to cart on amazon"
      - "buy this product on amazon"
  3. When your prompt matches a trigger, Claude loads the full SKILL.md
  4. Claude follows the navigation steps using its browser capabilities

Directory Structure

your-project/
└── .claude/
    └── skills/
        ├── amazon-add-to-cart/
        │   ├── SKILL.md
        │   ├── siteskills.json
        │   └── README.md
        └── google-search-extract/
            ├── SKILL.md
            ├── siteskills.json
            └── README.md

Usage

Once installed, use natural language:

> Add this to my Amazon cart: https://amazon.com/dp/B0EXAMPLE

Claude automatically detects the matching skill and follows the navigation flow.

Specifying an Agent

When installing, you can explicitly target Claude:

bash
siteskills install amazon-add-to-cart --agent claude-cowork

Managing Skills

bash
# List installed skills
siteskills list

# Update all skills
siteskills update

# Remove a skill
siteskills uninstall amazon-add-to-cart

Migrating Existing SKILL.md Files

If you already have SKILL.md files for Claude, you can convert them to SiteSkills format:

  1. Keep your existing SKILL.md as-is (it is already compatible)
  2. Generate the metadata file: siteskills init in the same directory
  3. Add a README.md with install instructions
  4. Publish: siteskills publish ./my-skill/

The siteskills init command infers metadata from your existing SKILL.md frontmatter.

Built for the AI browser agent ecosystem