Get local help for shifts and tasks (Blossomai.org)
by @robbiwu
Set up Blossom Hire, create local work opportunities, and help employers and jobseekers move through Blossom work flows in plain language.
clawhub install blossom-hireπ About This Skill
name: blossom-hire version: 3.0.3 description: Post jobs and hire people, or search for local work and apply. Connects employers and job-seekers via the Blossom marketplace. operator: Blossom AI Ltd homepage: "https://blossomai.org" source: "https://blossomai.org" support: "mailto:hello@blossomai.org" privacy: "https://blossomai.org/privacypolicy.html" api_host: "hello.blossomai.org"
Blossom Hire
| | |
|---|---|
| Service | Blossom β local jobs marketplace |
| Operator | Blossom AI Ltd |
| Website | https://blossomai.org |
| Privacy | https://blossomai.org/privacypolicy.html |
| API host | hello.blossomai.org |
This skill is provided by Blossom at https://blossomai.org. For help, reach out to hello@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.
The current protocol does not expose scoped keys, expiry, or self-service revocation to skill callers. If an API key may have been exposed, stop using it and contact hello@blossomai.org to rotate or revoke account access.
Data boundary rules:
passKey; do not reuse passwords from email, banking, work accounts, or other sensitive services.passKey is collected only during the one-time /register call. Never reuse, echo, log, or send it to any other endpoint.Eligibility and confirmation gates:
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 intent | userType value | Extra 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.
Ambiguous "add jobs" rule: If the user asks to *add a job*, *add jobs*, *add this job*, *ingest this URL*, *import this advert*, or provides a job URL/listing to add, treat that as employer role ingestion unless they clearly say they are looking for work, saving job-seeker library entries, bookmarking roles, or applying as a candidate. Register through the employer path for this intent. The protocol registration payload still uses "userType": "employer" for both company employers and private employers; omit companyName when the employer has no company so the server can store the account as a private employer. If the employer account shape is rejected by the API, relay the rejection and ask for the missing account details instead of silently switching to a job-seeker account.
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. Register β POST /register with the correct userType β store API_KEY and PERSON_ID. Discard passKey from memory immediately after this call.
3. Create address β POST /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. Talk β POST /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 employer requests to add/import/ingest a job from a URL or pasted advert, use /ask so the employer protocol job ingestion path can create the role.
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
| Method | Path | Auth | Purpose |
|---|---|---|---|
| POST | /register | None | Create account β get API key |
| GET | /getAddresses | Bearer | Return all addresses for the account |
| POST | /address | Bearer | Create / update address(es) |
| DELETE | /address | Bearer | Soft-delete address(es) |
| POST | /role | Bearer | Create / update role(s) |
| DELETE | /role | Bearer | Soft-delete role(s) |
| POST | /ask | Bearer | Conversational AI endpoint |
| POST | /image | Bearer | Upload profile image (person or role) |
Session state
Store and reuse across calls:
API_KEY β returned from /register, used as Authorization: Bearer for all subsequent callsPERSON_ID β returned from /registerADDRESS_ID β returned from /address, or from /getAddresses for existing addresses, needed when creating a roleThe 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. > If the key may have been exposed, stop using it and contact Blossom support for revocation or rotation.
API contract
1. Register
POST /register β no auth required.
{
"name": "",
"surname": "",
"email": "",
"userType": "employer",
"passKey": "",
"companyName": "",
"mobileCountry": "<+44>",
"mobileNo": ""
}
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.
| Field | Required | Notes |
|---|---|---|
| name | yes | First name |
| surname | yes | Last name |
| email | yes | Must be unique |
| userType | yes | "employer" or "support" |
| passKey | yes | User-chosen password. Collect only for /register, use once, then discard β never send to any other endpoint |
| rightToWork | yes (support) | Must be true when userType is "support" |
| companyName | no | For employers. Omit or leave empty for private employers |
| mobileCountry | no | e.g. "+44" |
| mobileNo | no | Account 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
}
]
}
| Field | Required | Notes |
|---|---|---|
| id | yes | 0 to create, existing ID to update |
| street | yes | Street name |
| city | yes | City / town |
| country | yes | ISO 3166-1 alpha-2 code β e.g. "GB", "US", "AU". Server rejects unrecognised codes. |
| postcode | yes | Postal / ZIP code |
| label | yes | User-facing label, e.g. "Work location" |
| houseNumber | support yes, employer no | Required for job-seeker (support) addresses. Optional for employer/private-employer work or venue addresses when unavailable. |
| area | no | Neighbourhood / district |
| isHome | no | Default false |
| isActive | no | Default true |
id β store as ADDRESS_ID.support) must provide a house/building number for their own address. Employer and private-employer work/site addresses may omit it when the street, city/town, country, and postal code identify the location.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": }]
}
Cannot delete an address linked to an active role (409).
5. Create role
POST /role β Bearer auth required.
{
"roles": [
{
"id": 0,
"headline": "",
"jobDescription": "",
"introduction": "",
"workingHours": "",
"salary": ,
"currencyName": "GBP",
"currencySymbol": "Β£",
"paymentFrequency": { "choices": [""], "selectedIndex": 0 },
"requirements": [
{ "requirementName": "", "mandatory": false, "originalRequirement": true }
],
"benefits": [
{ "benefitName": "", "mandatory": false }
],
"addressId": ,
"isRemote": false,
"isActive": true,
"modified": ,
"roleIdentifier": "openclaw-"
}
]
}
| Field | Required | Notes |
|---|---|---|
| id | yes | 0 to create, existing ID to update |
| headline | yes | Short title |
| jobDescription | yes | Full description |
| introduction | yes | Short intro text, minimum 10 characters |
| workingHours | yes | e.g. "Saturday 11amβ5pm" or "Flexible" |
| salary | yes | Numeric amount; use 0 when pay is negotiable or not yet discussed |
| paymentFrequency | no | Expected for pay display when salary is known: choices array with up to 8 entries; each choice must be a non-empty string up to 20 characters; empty choices or omitted selectedIndex defaults to standard frequencies |
| currencySymbol | yes | Currency symbol, 1-3 characters |
| currencyName | yes | Currency code/name, e.g. "GBP" |
| addressId | yes | From the address creation step |
| isRemote | yes | Boolean remote-work flag |
| isActive | yes | Boolean active flag; new roles are often created inactive until server/company clearance allows activation |
| modified | yes | Current epoch millis |
| roleIdentifier | yes | Unique string, e.g. "openclaw-" + epochMillis |
| requirements | no | Screening topics for the application conversation; if present, send an array of up to 8 objects |
| benefits | no | Perks; if present, send an array of up to 8 objects |
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.
Benefit selection gate
For benefits, mandatory is a highlighting/conversation selector, not an eligibility or guarantee flag:
mandatory: true means "Feature as benefit". Candidate-facing role cards hide this benefit so Blossom can weave it into conversation as a highlighted perk.mandatory: false means "Show on job card". Candidate-facing role cards list this benefit directly.When adding benefits, default to mandatory: false for ordinary visible perks. Use mandatory: true only when the employer wants Blossom to actively highlight or discuss that benefit rather than simply list it on the role card.
Validation notes
The backend currently enforces these role validation rules:
| Field | Validation |
|---|---|
| headline | Required, 5-35 characters |
| jobDescription | Required, 1-500 characters |
| introduction | Required, 10-500 characters |
| workingHours | Required, 1-100 characters |
| roleIdentifier | Required, 1-100 characters |
| currencySymbol | Required, 1-3 characters |
| currencyName | Required string with no digits, max 5 characters |
| salary | Optional, but if provided must be a number >= 0 |
| paymentFrequency | Optional, but if provided must be an object with choices array of up to 8 non-empty strings, each max 20 characters, and selectedIndex pointing to an existing choice; empty choices defaults to standard frequencies and missing selectedIndex defaults to 0 |
| addressId | Required, whole number >= 0 |
| id | Required, whole number >= 0 |
| modified | Required, must be present |
| isActive | Required, boolean |
| isRemote | Required, boolean |
| email | Optional, but if provided it must be a valid email address |
| requirements | Optional array, max 8 objects |
| requirements[].requirementName | Required for each requirement object, 0-200 characters after trimming and bullet/newline cleanup |
| requirements[].mandatory | Optional, but if provided it must be a boolean |
| benefits | Optional array, max 8 objects |
| benefits[].benefitName | Required for each benefit object, 0-200 characters after trimming and bullet/newline cleanup |
| benefits[].mandatory | Optional, but if provided it must be a boolean |
Operational notes for protocol callers:
addressId.introduction.Response 201: The role(s) with assigned IDs.
6. Delete role
DELETE /role β Bearer auth required.
{
"roles": [{ "id": }]
}
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.
| Field | Type | Required | Notes |
|---|---|---|---|
| image | file | yes | jpeg/jpg/png/gif/webp, max 3 MB, one file only |
| imageType | string | yes | "person" or "role" |
| roleId | number | conditional | Required 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 \ud83d\ude0a, this image contains content that..."
}
Rate-limited: 1 upload per 30 seconds per API key.
8. Ask
POST /ask β Bearer auth required.
{
"instructions": ""
}
Strict rules for /ask:
passKey β that is only used in the one-time /register call.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. House/building number is useful but optional.
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.
π‘ 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. House/building number is useful but optional.
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.