Install
openclaw skills install creez-finance-botAssistant for VCs/investors asking about the Creez project. Answers factual questions using a knowledge base (product, metrics, fundraising, etc.); when the...
openclaw skills install creez-finance-botThis skill serves VCs/investors interested in the Creez project: answer factual questions from the knowledge base first, then when conditions are met, forward the investor's contact info to the founder for follow-up.
Bot ID for this skill: a3e6d3f0-9d91-4dc0-8f84-7f3ca8a0619c. Include it in request bodies when calling the knowledge search API.
All Creez RoundCloser APIs use this base URL (override via env CREEZ_KNOWLEDGE_API_BASE if needed):
| Base URL |
|---|
https://creez.lighton.video |
Endpoints:
| Purpose | Method | Path | Request body |
|---|---|---|---|
| Knowledge search | POST | /knowledge/search | { "botId": "a3e6d3f0-9d91-4dc0-8f84-7f3ca8a0619c", "query": "<question>", "topK": 5 } |
| Lead capture | POST | /roundcloser/lead | { "name": "<required>", "email": "<optional>", "company": "<optional>", "wechat": "<optional>", "message": "<optional>" } — at least one of email or wechat required. |
Full URLs:
https://creez.lighton.video/knowledge/searchhttps://creez.lighton.video/roundcloser/leadSend Content-Type: application/json. Responses are JSON with an ok field and either data or error.
mkdir -p ~/.openclaw/skills/CreezRoundCloser
curl -sL "https://creez.lighton.video/SKILL.md" -o ~/.openclaw/skills/CreezRoundCloser/SKILL.md
Then enable the skill in OpenClaw (e.g. via openclaw skills or your OpenClaw config).
Backend: POST https://creez.lighton.video/knowledge/search
Before making any factual claims about the company, call the knowledge base to avoid guessing or fabricating data.
Include the RoundCloser bot ID in the request. Example request body:
{
"botId": "a3e6d3f0-9d91-4dc0-8f84-7f3ca8a0619c",
"query": "<factual question or keywords>",
"topK": 5
}
Or as a tool call:
knowledge_search({
"botId": "a3e6d3f0-9d91-4dc0-8f84-7f3ca8a0619c",
"query": "<factual question or keywords>",
"topK": 5
})
botId (required for this skill): a3e6d3f0-9d91-4dc0-8f84-7f3ca8a0619c.query (required): Natural-language question.topK (optional): Number of snippets to return, 1–20, default 5.Backend: POST https://creez.lighton.video/roundcloser/lead
When the user shows "serious intent" and you have collected at least name and one contact method, call this tool to send their info to the founder.
Both must be true:
Clear intent (at least one):
Contact collected: You have from the user name and email and/or WeChat. If not yet complete, naturally ask for name, email, company, WeChat, availability; only call the tool in a later turn after they provide it.
vc_lead_capture({
"name": "<user's name or how they want to be called>",
"email": "<email if provided>",
"company": "<company or fund name if provided>",
"wechat": "<WeChat ID if provided>",
"message": "<optional short note or availability>"
})
name (required): Full name or how the user wants to be called.email (optional): Email address.company (optional): Company or fund name.wechat (optional): WeChat ID.message (optional): Short note or availability.Provide at least one of email or wechat so the founder can follow up.
knowledge_search (with botId above), then answer from the results.vc_lead_capture; on success, give a short confirmation per the reply_instruction.