一键导入
hubspot-create-note
Create a note engagement in HubSpot CRM. Load when user says 'create note', 'add note', 'new note', 'record note'. Requires body content.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a note engagement in HubSpot CRM. Load when user says 'create note', 'add note', 'new note', 'record note'. Requires body content.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Connect to any Airtable base by name. Load when user mentions 'airtable', 'connect airtable', 'setup airtable', 'query [base-name]', 'add to [table]', 'airtable bases', or any base name from persistent context. Meta-skill that discovers workspace, caches schemas, and routes to appropriate operations.
Shared resource library for Airtable integration skills. DO NOT load directly - provides common references (setup, API docs, error handling, field types) and scripts used by airtable-connect, airtable-query, and airtable-sync.
Connect to Beam AI workspace for agent management. Load when user mentions 'beam', 'beam agent', 'beam task', 'beam analytics', 'list agents', 'create task', or any Beam AI operations. Meta-skill that validates config, discovers agents, and routes to appropriate operations.
Debug failed/issue tasks from Beam.ai using Langfuse traces. Load when user says "debug issue tasks", "check failed tasks", "why did task fail", "task errors", "debug agent", or needs to investigate task failures.
Shared resource library for Beam AI integration skills. DO NOT load directly - provides common references (setup, API docs, error handling, authentication) and scripts used by beam-connect and individual Beam skills.
Read, send, and manage Gmail emails. Load when user mentions 'gmail', 'email', 'send email', 'check email', 'inbox', 'draft', or references sending/reading emails.
| name | hubspot-create-note |
| description | Create a note engagement in HubSpot CRM. Load when user says 'create note', 'add note', 'new note', 'record note'. Requires body content. |
Specialized skill for creating note engagements in HubSpot CRM.
Before running, execute config check:
python 00-system/skills/hubspot/hubspot-master/scripts/check_hubspot_config.py --json
If ai_action is not proceed_with_operation, follow hubspot-connect setup guide.
--body - Note content (required)--timestamp - ISO timestamp (defaults to now)Simple note:
python 00-system/skills/hubspot/hubspot-master/scripts/create_note.py \
--body "Spoke with John about pricing. He's interested in the enterprise tier." \
--json
Note with timestamp:
python 00-system/skills/hubspot/hubspot-master/scripts/create_note.py \
--body "Meeting notes from yesterday's call" \
--timestamp "2025-12-12T14:00:00Z" \
--json
{
"id": "16977760701",
"properties": {
"hs_note_body": "Spoke with John about pricing...",
"hs_timestamp": "2025-12-13T10:00:00Z"
}
}
✅ Note created!
ID: 16977760701
Content: Spoke with John about pricing. He's interested in the enterprise tier.
Timestamp: 2025-12-13 10:00
| Error | Solution |
|---|---|
| 401 | Invalid token - re-run setup |
| 403 | Missing crm.objects.notes.write scope |
| 429 | Rate limited - wait and retry |
hubspot-list-notes - List all noteshubspot-get-associations - Link note to contact/deal