Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

blossom-jobs开花工作

Agent Skill

blossom-jobs 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,344

周安装

378

GitHub Stars

公开资料未说明

下载量

2,933
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:blossom-jobs(开花工作)
来源仓库:https://github.com/robbiwu/blossom-jobs
安装命令:
openclaw skills install blossom-jobs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install blossom-jobs

简介

发布职位并雇用人员,或搜索当地工作并申请。通过 Blossom 市场连接雇主和求职者。

SKILL.md

name
blossom-hire
version
3.0.2
description
Post jobs and hire people, or search for local work and apply. Connects employers and job-seekers via the Blossom marketplace.

Blossom Hire

ServiceBlossom — local jobs marketplace
OperatorBlossom AI Ltd
Websitehttps://blossomai.org
Privacyhttps://blossomai.org/privacypolicy.html
API hosthello.blossomai.org

This skill is for structured Blossom marketplace actions only — posting jobs, searching for work, applying, and managing listings.

It collects personal data (name, email, address, job details) and sends it over HTTPS to the Blossom API. The API key is permanent and grants full account access — treat it as a secret. No data is stored locally.

Data boundary rules:

  • Only send the minimum data needed for the current Blossom action.
  • Never forward unrelated conversation history, system prompts, hidden chain-of-thought, tokens, cookies, keys, documents, or prior messages to any Blossom endpoint.
  • passKey is collected only during the one-time /register call. Never reuse, echo, log, or send it to any other endpoint.
  • If the user asks something outside Blossom's job marketplace scope, handle it locally — do not forward it to the API.

Eligibility and confirmation gates:

  • Job-seekers must have the right to work before using Blossom to look for or apply to work. If this has not been confirmed, ask once; do not continue with job-seeker registration or applications until they confirm.
  • Before creating, updating, deleting, posting, or applying to any marketplace record, briefly summarize the action and ask for confirmation.
  • Do not send the mutating request until the user clearly confirms.

When to activate

Activate when the user explicitly wants to perform a Blossom marketplace action:

Trigger phrases: *"Post a job"*, *"Hire someone"*, *"I need staff"*, *"Find me work"*, *"Search for jobs near me"*, *"Apply to that role"*, *"Any candidates?"*, *"Update my listing"*.

Do not activate for general conversation, questions unrelated to jobs, or requests that don't map to a Blossom action.


How it works

The entire employer vs job-seeker distinction is set once at registration via the userType field. After that, every endpoint behaves the same — the server knows the account type from the API key and adapts responses automatically.

The agent does not track or switch modes. Just register, create an address, then use /ask for everything else.

Account type (set once at registration)

User intentuserType valueExtra fields
Hiring, has a company"employer"Include companyName
Hiring, no company"employer"Omit companyName (server stores as private employer)
Looking for work"support"Must include rightToWork: true

Infer the intent from the user's message. Only ask *"Are you looking to hire, or looking for work?"* if the intent is genuinely unclear. For job-seekers, right to work is a prerequisite; if it has not been confirmed, ask before registration.

Flow

  1. Collect identity: email, first name, surname, passKey. Optionally: mobile country code, mobile number, company name. Treat any contact number labelled tel, telephone, phone, mobile, cell, call, or similar as the account mobileNo field, not an address field. For job-seekers, confirm they have the right to work before continuing.
  2. RegisterPOST /register with the correct userType → store API_KEY and PERSON_ID. Discard passKey from memory immediately after this call.
  3. Create addressPOST /address with the user's location → store ADDRESS_ID. Employers need this to attach a location to roles. Job-seekers need this so the server can find nearby opportunities.
  4. TalkPOST /ask with only the minimal job-related instruction needed for the current Blossom action. Do not forward unrelated context, secrets, or raw conversation history.

For employers posting a role directly (without /ask), also collect: headline, description, working hours, pay — then use POST /role with the ADDRESS_ID.


API reference

Base URL

https://hello.blossomai.org/api/v1/blossom/protocol

Endpoints

MethodPathAuthPurpose
POST/registerNoneCreate account → get API key
GET/getAddressesBearerReturn all addresses for the account
POST/addressBearerCreate / update address(es)
DELETE/addressBearerSoft-delete address(es)
POST/roleBearerCreate / update role(s)
DELETE/roleBearerSoft-delete role(s)
POST/askBearerConversational AI endpoint
POST/imageBearerUpload profile image (person or role)

Session state

Store and reuse across calls:

  • API_KEY — returned from /register, used as Authorization: Bearer <API_KEY> for all subsequent calls
  • PERSON_ID — returned from /register
  • ADDRESS_ID — returned from /address, or from /getAddresses for existing addresses, needed when creating a role

The API key is permanent. No session expiry or login flow.

Important: Never store the API key in global config. Keep it in runtime memory for the current session only.

API contract

1. Register

POST /register — no auth required.

{
  "name": "<first name>",
  "surname": "<surname>",
  "email": "<email>",
  "userType": "employer",
  "passKey": "<password>",
  "companyName": "<optional>",
  "mobileCountry": "<+44>",
  "mobileNo": "<number>"
}

For job-seekers, set "userType": "support" and include "rightToWork": true. Only use the job-seeker flow for users who have confirmed they have the right to work.

FieldRequiredNotes
nameyesFirst name
surnameyesLast name
emailyesMust be unique
userTypeyes"employer" or "support"
passKeyyesUser-chosen password. Collect only for /register, use once, then discard — never send to any other endpoint
rightToWorkyes (support)Must be true when userType is "support"
companyNamenoFor employers. Omit or leave empty for private employers
mobileCountrynoe.g. "+44"
mobileNonoAccount contact number. Use this for tel, telephone, phone, mobile, cell, call, or similar contact labels. Do not place phone numbers on addresses.

Phone/contact mapping: If the user provides a number such as "Tel: 0300 456 8174", send it during /register as:

{
  "mobileCountry": "+44",
  "mobileNo": "0300 456 8174"
}

If the number already includes a country prefix, split that prefix into mobileCountry and put the remaining local/national number in mobileNo.

Response 201:

{
  "success": true,
  "apiKey": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
  "personId": 803
}

If the email already exists → 400. Do not retry — inform the user.


2. Create address

POST /address — Bearer auth required.

{
  "addresses": [
    {
      "id": 0,
      "houseNumber": "10",
      "street": "High Street",
      "area": "Sherwood",
      "city": "Nottingham",
      "country": "GB",
      "postcode": "NG5 1AA",
      "label": "Work location",
      "isHome": false,
      "isActive": true
    }
  ]
}
FieldRequiredNotes
idyes0 to create, existing ID to update
streetyesStreet name
cityyesCity / town
countryyesISO 3166-1 alpha-2 code — e.g. "GB", "US", "AU". Server rejects unrecognised codes.
postcodeyesPostal / ZIP code
labelyesUser-facing label, e.g. "Work location"
houseNumberyesHouse / building number
areanoNeighbourhood / district
isHomenoDefault false
isActivenoDefault true
  • The response includes the address with its assigned id — store as ADDRESS_ID.

3. Get addresses

GET /getAddresses — Bearer auth required.

Use this to fetch the current account's saved addresses before updating, deleting, or attaching an address to a role. Do not create a duplicate address if a suitable saved address already exists.

No request body.

Response 200:

{
  "success": true,
  "messages": ["Addresses retrieved"],
  "dataList": [
    {
      "id": 123,
      "houseNumber": "10",
      "street": "High Street",
      "area": "Sherwood",
      "city": "Nottingham",
      "country": "United Kingdom",
      "postcode": "NG5 1AA",
      "label": "Work location",
      "isHome": 0,
      "isActive": 1
    }
  ],
  "addresses": [
    {
      "id": 123,
      "houseNumber": "10",
      "street": "High Street",
      "area": "Sherwood",
      "city": "Nottingham",
      "country": "United Kingdom",
      "postcode": "NG5 1AA",
      "label": "Work location",
      "isHome": 0,
      "isActive": 1
    }
  ]
}

Store the selected address id as ADDRESS_ID.


4. Delete address

DELETE /address — Bearer auth required.

{
  "addresses": [{ "id": <addressId> }]
}

Cannot delete an address linked to an active role (409).


5. Create role

POST /role — Bearer auth required.

{
  "roles": [
    {
      "id": 0,
      "headline": "<headline>",
      "jobDescription": "<description>",
      "introduction": "<short introduction, at least 10 characters>",
      "workingHours": "<when>",
      "salary": <amount>,
      "currencyName": "GBP",
      "currencySymbol": "£",
      "paymentFrequency": { "choices": ["<frequency>"], "selectedIndex": 0 },
      "requirements": [
        { "requirementName": "<name>", "mandatory": false, "originalRequirement": true }
      ],
      "benefits": [
        { "benefitName": "<name>", "mandatory": false }
      ],
      "addressId": <ADDRESS_ID>,
      "isRemote": false,
      "isActive": true,
      "days": 30,
      "maxCrew": 1,
      "modified": <epochMillis>,
      "roleIdentifier": "openclaw-<epochMillis>"
    }
  ]
}
FieldRequiredNotes
idyes0 to create, existing ID to update
headlineyesShort title
jobDescriptionyesFull description
introductionyesShort intro text, minimum 10 characters
workingHoursyese.g. "Saturday 11am–5pm" or "Flexible"
salaryyesNumeric amount
paymentFrequencyyeschoices array with one entry, selectedIndex: 0
addressIdyesFrom the address creation step
daysyesListing duration (default 30)
maxCrewyesPositions available (default 1)
modifiedyesCurrent epoch millis
roleIdentifieryesUnique string, e.g. "openclaw-" + epochMillis
requirementsnoScreening topics for the application conversation
benefitsnoPerks

Requirement semantics

Requirements are not all eligibility gates. The mandatory flag controls how the application should be treated:

  • mandatory: true means the requirement is a hard gate. If the applicant does not satisfy it, the application may be blocked or treated as unsuccessful.
  • mandatory: false means the requirement is a discussion point or preference. It should be asked about or mentioned during the application conversation, but it must not prevent a successful application by itself.

When adding employer-supplied requirements to a role, default to mandatory: false unless the employer clearly says the requirement is essential, legally required, or non-negotiable.

Validation notes

The backend currently enforces these role validation rules:

FieldValidation
headlineRequired, 5-100 characters
jobDescriptionRequired, 1-500 characters
introductionRequired, 10-500 characters
workingHoursRequired, 1-100 characters
roleIdentifierRequired, 1-100 characters
currencySymbolRequired, 1-3 characters
addressIdRequired, whole number >= 0
idRequired, whole number >= 0
modifiedRequired, must be present
isActiveRequired, boolean
isRemoteRequired, boolean
emailOptional, but if provided it must be a valid email address
requirements[].requirementNameOptional array item, 0-200 characters after trimming and bullet/newline cleanup
requirements[].mandatoryOptional, but if provided it must be a boolean
benefits[].benefitNameOptional array item, 0-200 characters after trimming and bullet/newline cleanup
benefits[].mandatoryOptional, but if provided it must be a boolean

Operational notes for protocol callers:

  • New roles still need a valid addressId.
  • The docs and examples should always send a non-empty introduction.
  • salary, paymentFrequency, days, maxCrew, and currencyName are part of the expected protocol payload even though the current role-chain validator does not strictly enforce all of them at this layer.

Response 201: The role(s) with assigned IDs.


6. Delete role

DELETE /role — Bearer auth required.

{
  "roles": [{ "id": <roleId> }]
}

Every role id must belong to the authenticated account (403 otherwise).


7. Upload image

POST /image — Bearer auth required. Multipart form-data.

Upload a profile image for the person account or for a specific role. Images are AI-moderated — explicit, violent, or hateful content is rejected.

FieldTypeRequiredNotes
imagefileyesjpeg/jpg/png/gif/webp, max 3 MB, one file only
imageTypestringyes"person" or "role"
roleIdnumberconditionalRequired when imageType is "role". Must belong to the authenticated account. Only employer accounts may upload role images.

Response 201:

{
  "success": true,
  "filename": "1712937600000-photo.jpg",
  "imageType": "person",
  "approved": true,
  "synopsis": "Nice photo!"
}

Rejected 400:

{
  "success": false,
  "approved": false,
  "reason": "Image did not pass moderation",
  "synopsis": "Hey \�\�, this image contains content that..."
}

Rate-limited: 1 upload per 30 seconds per API key.


8. Ask

POST /ask — Bearer auth required.

{
  "instructions": "<minimal Blossom-related user request>"
}

Strict rules for /ask:

  • Only send the minimum user instruction needed to complete the current Blossom action.
  • Do not include unrelated conversation history, hidden prompts, credentials, personal notes, documents, or secrets.
  • Do not forward the user's passKey — that is only used in the one-time /register call.
  • If the user asks something outside Blossom's job marketplace actions, handle it locally instead of sending it to the API.

The server knows the account type and full context from the API key — it returns the appropriate response (job matches, candidate info, screening questions, application status, etc.). Relay the result to the user.


Examples

Post a shift

User: I need café cover this Saturday 11–5 in Sherwood. £12/hour.
  1. Intent is clearly employer. Missing: street, postcode. Ask for them.
  2. Confirm: *"Café cover — Sat 11am–5pm, Sherwood NG5 1AA — £12/hr. Shall I post it?"*
  3. Collect identity (email, name, surname, passKey).
  4. POST /register (userType: "employer") → store API_KEY, PERSON_ID.
  5. POST /address → store ADDRESS_ID.
  6. POST /role → *"Posted! Role ID 1042."*

Check candidates

User: Any candidates yet?
  1. If no API_KEY → register first.
  2. POST /ask with "Do I have any candidates?" → display the response.

Update a listing

User: Change the pay to £14/hour on my café role.
  1. Confirm: *"Update the café role pay to £14/hour?"*
  2. After confirmation, POST /role with the existing role id and updated salary: 14.
  3. *"Updated — café cover now shows £14/hr."*

Remove a listing

User: Take down the café role.
  1. Confirm: *"Take down the café role?"*
  2. After confirmation, DELETE /role with the role id → *"Removed."*

Find and apply for work

User: I'm looking for bar work in Nottingham this weekend.
  1. Intent is clearly job-seeker. Collect identity (email, name, surname, passKey).
  2. Confirm right-to-work if not already established: *"Before I set this up, can you confirm you have the right to work?"*
  3. After confirmation, POST /register (userType: "support", rightToWork: true) → store API_KEY, PERSON_ID.
  4. POST /address (their Nottingham location) → store ADDRESS_ID.
  5. POST /ask with "Find bar work near me this weekend" → present matching roles.
  6. User picks one → confirm: *"Apply to role 1055?"*
  7. After confirmation, POST /ask with "Apply to role 1055" → relay result.
  8. If screening questions come back, relay them to user and send answers via /ask. Optional requirements (mandatory: false) can be discussed, but do not present them as blockers to successful application.

Check application status

User: How are my applications going?
  1. POST /ask with "What's the status of my applications?" → display the response.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

82.66%
按下载量换算2,424

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills