Skip to main content

Plugins

Plugins provide guided AI workflows inside Claude Code. Install a plugin and interact with DEB Cloud tools through natural conversation.

Prerequisites

Installation

# Add the DeBytes marketplace
/plugin marketplace add debytesio/claude-plugins

# Install the Job Hunter plugin
/plugin install job-hunter@debytes
Set your API key:
export DEB_CLOUD_API_KEY=deb_your_api_key_here

Available Plugins

PluginDescriptionStatus
Job HunterAI-powered job search across UK and France platforms with visa sponsorship checking, salary analysis, and ranked Excel exportsAvailable

Using the Job Hunter Plugin

1. Prepare Your Expectations File

Create a JSON file describing your target roles, locations, and preferences. See the example file for the full format.
{
  "candidate": {
    "name": "Your Name",
    "resume_path": "/path/to/resume.tex",
    "home_postcode": "SW1A 1AA",
    "home_city": "London"
  },
  "target_roles": [
    {
      "title": "AI Engineer",
      "search_keywords": ["AI Engineer", "GenAI Engineer"],
      "min_salary": 60000,
      "priority": 1
    }
  ],
  "locations": {
    "p1": {
      "label": "Primary",
      "cities": ["London", "Manchester"]
    }
  },
  "current_situation": {
    "gross_annual_salary": 45000,
    "net_monthly_take_home": 2900
  },
  "visa": {
    "requires_visa": true
  },
  "preferences": {
    "work_mode": ["remote", "hybrid"],
    "contract_type": "permanent",
    "max_commute_minutes": 120,
    "improvement_threshold_pct": 10,
    "results_per_group": 20
  }
}
/find-jobs path/to/expectations.json
The plugin will:
  1. Search across multiple job platforms
  2. Deduplicate results
  3. Score each job against your profile
  4. Check visa sponsorship eligibility
  5. Analyze financial viability
  6. Export ranked results to Excel

3. Review Results

Results are saved as an Excel file in a working directory alongside your expectations file. The spreadsheet includes match scores, salary analysis, and visa status for each position.

Source Code