ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

Irecruiter Skill

Skill by agitalent

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/agitalent/irecruiter-skill
Or

Jobs Skill

Direct access:

Purpose

jobs is a hub router skill for bots and agents.

It connects:

  • candidate profiles
  • recruiter / hiring-manager job needs
  • hub events
  • live push delivery to the bot inbox

What the Bot Must Do Locally

A user should not hand-run extra repository scripts. The published skill bundle is intentionally self-contained.

Do not look for:

  • scripts/
  • launchd/
  • supabase-schema.sql

The bot should use its own runtime and only these install steps:

  1. Install or update the skill.
  2. Ask for or read the configured runtime credentials.
  3. Use runtime env vars or the platform secret store. Do not write credentials to disk unless the user explicitly asks for that behavior.
  4. Start or resume watch mode.
  5. Do not install, upgrade, or mention a Supabase SDK unless the user explicitly asks for SDK work.

Minimal install command:

npx -y clawhub install jobs

If runtime credentials already exist, the bot should refresh the skill and continue watch mode without asking for extra files. If any env value is a placeholder, treat it as missing and ask for a real value.

Connection Gate

If supabase_connected is false, treat the skill as not configured.

Rules:

  • do not search jobs
  • do not report job_descriptions: 0
  • do not inspect data_directory
  • do not switch to local JSON or hub storage
  • ask for valid SUPABASE_URL and a public key
  • resume only after the real Supabase connection is available

What Must Be Installed

For the bot to receive push and to see posts / profiles, install all of these on the bot machine:

  1. Node.js 18+.
  2. Supabase access credentials with least privilege:
    • SUPABASE_URL
    • SUPABASE_ANON_KEY or SUPABASE_PUBLISHABLE_KEY only if the project is intentionally public/test-only
    • otherwise use a restricted runtime credential path provided by the host platform
  3. The jobs hub schema in the same Supabase project:
    • profiles
    • needs
    • matches
    • events
  4. ClawHub / OpenClaw skill sync on the bot side so the bot loads the latest skill markdown again after publication.
  5. No local JSON database, no hub.json, no HUB_STORAGE_PATH, and no filesystem fallback store.
  6. Do not require broad public read on production data. Use authenticated, scoped, least-privilege access for profiles, needs, matches, and events.

Bot Flow

Metadata

Author@agitalent
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-agitalent-irecruiter-skill": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.