返回顶部
a

articulerAI职业社交助手

AI-powered professional networking assistant. Generate personalized cold emails and outreach playbooks to accelerate career growth and business development.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.2
安全检测
已通过
164
下载量
免费
免费
0
收藏
概述
安装方式
版本历史

articuler

技能名称: articuler
详细描述:

Articuler 技能

打造完美的冷邮件并构建结构化的外联策略手册——一切由您的具体职业目标和领英个人资料驱动。

该技能的功能

  1. 1. 生成冷邮件 — 根据每位联系人的背景撰写个性化的外联邮件
  2. 构建策略手册 — 创建包含时机、谈话要点和跟进节奏的结构化外联策略

使用方法

注意: 在调用任何业务 API 之前,必须先完成步骤 1 和步骤 2。请按顺序完成以获取 token。


步骤 1 — 邮箱验证(必需)

向用户的邮箱发送验证码。

bash
curl --location --request POST https://api.articuler.ai/user/send-check \
--header Content-Type: application/json \
--data {
email: your@email.com,
type: 1
}

参数

字段类型描述
emailstring用户的邮箱地址
type
integer | 验证类型,标准验证请使用 1 |

验证码将发送到用户的收件箱。在进行步骤 2 之前,请用户提供 captcha 验证码。



步骤 2 — 登录(必需)

使用用户的邮箱、验证码和领英个人资料 URL 进行登录。返回所有后续 API 调用所需的 token。

bash
curl --location --request POST https://api.articuler.ai/user/artclaw/login \
--header Content-Type: application/json \
--data {
email: your@email.com,
captcha: xxxxxx,
linkedin_url: https://www.linkedin.com/in/your-profile/
}

参数

字段类型描述
emailstring用户的邮箱地址
captcha
string | 用户在收件箱中收到的验证码(来自步骤 1) | | linkedin_url | string | 用户自己的领英个人资料 URL |

响应

json
{
token: xxxxxx
}

保存 token — 所有后续 API 调用都需要它。



步骤 3 — 生成策略手册(异步)

为当前用户和目标联系人提交策略手册生成任务。这是一个异步 API — 它会立即返回一个 sessionId。使用步骤 4 轮询结果。

bash
curl --location --request POST https://api.articuler.ai/user/artclaw/playbook \
--header Content-Type: application/json \
--data {
token: xxx,
targetlinkedinurl: https://www.linkedin.com/in/your-target-profile/,
objective: Want to be a partner
}

参数

字段类型描述
tokenstring从步骤 2 获取的身份验证令牌
targetlinkedinurl
string | 目标联系人的领英个人资料 URL | | objective | string | 此次外联的目标(例如 Want to be a partner) |

响应

json
{
code: 0,
msg: ,
data: {
sessionId: 31ee76d4-ab7e-4d5f-8196-f4507ef779b9,
status: searching
}
}

保存 sessionId — 它用于在步骤 4 中轮询结果。



步骤 4 — 轮询策略手册结果

重复轮询此端点,直到 status 变为 done。完成后,从响应中读取策略手册内容。

bash
curl --location --request GET https://api.articuler.ai/user/artclaw/playbook/info?sess_id=xxx \
--header Content-Type: application/json

参数

字段类型描述
sess_idstring从步骤 3 返回的 sessionId

轮询逻辑

  • - 每 3 秒 轮询一次
  • 当 data.status === done 时停止轮询
  • 如果 300 秒 后 status 仍为 searching,告知用户生成时间超出预期,并询问是否继续等待

响应 — 进行中

json
{
code: 0,
msg: ,
data: {
sessionId: 31ee76d4-ab7e-4d5f-8196-f4507ef779b9,
status: searching,
objective: Want to be a partner,
playbook: { subtopics: null },
doOrNot: { do: null, doNot: null }
}
}

响应 — 已完成

json
{
code: 0,
msg: ,
data: {
sessionId: 31ee76d4-ab7e-4d5f-8196-f4507ef779b9,
status: done,
objective: Want to be a partner,
playbook: {
subtopics: [
{
subtopicName: Absence of Personal Information for Mason Brown,
insights: [
{
insight: {
title: No Verified Personal Background or Professional Activities Available for Mason Brown,
content: Despite extensive search, no confirmed profiles...,
referenceLinks: []
}
}
]
},
{
subtopicName: Monroe Street Partners Strategic Differentiators,
insights: [
{
insight: {
title: Non-Traditional Private Equity Model Focused on Long-Term Value,
content: Monroe Street Partners (MSP), founded in ...,
referenceLinks: [
https://www.monroestreet-partners.com/aboutmsp,
https://static1.squarespace.com/static/6218510...
]
}
}
]
}
]
},
doOrNot: {
do: [
{
title: Discuss Monroe Street Partners Unique PE Model and Financing Needs,
contentList: [
Leverage intelligence about MSP being ...
]
},
{
title: Explore Synergies Between Masons DCM Experience and MSPs Lower Middle-Market Focus,
contentList: [
Masons background in Debt Capital Markets at PNC...
]
},
{
title: Address Current Private Credit Market Trends Relevant to MSPs Strategy,
contentList: [
The industry context shows private credit doubling...
]
}
],
doNot: [
{
title: Avoid Pushing a Generic \Off-the-Shelf\ Lending Solution,
contentList: [
Monroe Street Partners explicitly differentiates ...
]
},
{
title: Refrain from Unsubstantiated Assumptions about Masons Booth Studies or Long-Term Career Plans,
contentList: [
While Mason is attending Booth, his specific degree...
]
},
{
title: Do Not Undervalue Masons Role as a Summer Associate,
contentList: [
Although a Private Equity Summer Associate role is ...
]
}
]
}
}
}

以可读的格式向用户展示 playbook.subtopics、doOrNot.do 和 doOrNot.doNot。



步骤 5 — 生成冷邮件(异步)

提交冷邮件生成任务。与步骤 3-4 相同的异步模式:立即返回一个 sessionId,使用步骤 6 轮询结果。

bash
curl --location --request POST https://api.articuler.ai/user/artclaw/coldemail \
--header Content-Type: application/json \
--data {
token: xxx,
targetlinkedinurl: https://www.linkedin.com/in/your-target-profile/,
objective: Want to be a partner
}

参数

字段类型描述
tokenstring从步骤 2 获取的身份验证令牌
targetlinkedinurl
string | 目标联系人的领英个人资料 URL | | objective | string | 这封冷邮件的目的(例如 Explore

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 articuler-1776349932 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 articuler-1776349932 技能

通过命令行安装

skillhub install articuler-1776349932

下载

⬇ 下载 articuler v1.0.2(免费)

文件大小: 3.92 KB | 发布时间: 2026-4-17 14:07

v1.0.2 最新 2026-4-17 14:07
**Summary:** This release introduces a two-step authentication and a new async API workflow for playbook generation.

- Added a mandatory login step: users must submit a verification code received by email, then log in to receive a `token` for all business API calls.
- Changed the playbook generation API to an asynchronous process; now returns a `sessionId` and requires polling for completion.
- Updated API parameters: all main functions now require a `token` instead of raw email/captcha.
- Clarified user flow: steps must be performed in order—verification, login, submit job, then poll for results.
- Updated documentation to match the new authentication and async job design.

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部